From a14e542ecb5b0ae0a5a1296bc7ddbcd3a020aa2d Mon Sep 17 00:00:00 2001 From: Lean stage0 autoupdater <> Date: Wed, 6 Aug 2025 16:54:50 +0000 Subject: [PATCH] chore: update stage0 --- stage0/src/include/lean/lean.h | 2 - stage0/src/runtime/io.cpp | 7 - stage0/src/runtime/object.cpp | 26 - stage0/src/runtime/object.h | 1 - stage0/src/stdlib_flags.h | 2 - stage0/stdlib/Init/Data/Array/Lemmas.c | 22 +- .../stdlib/Init/Data/Slice/Array/Iterator.c | 92 +- stage0/stdlib/Init/Grind/Ring/OfSemiring.c | 19 +- stage0/stdlib/Init/Grind/Ring/Poly.c | 39 - stage0/stdlib/Init/System/IO.c | 1685 +- stage0/stdlib/Init/Task.c | 717 +- stage0/stdlib/Lake/Build/Common.c | 6 +- stage0/stdlib/Lake/Build/Module.c | 317 +- stage0/stdlib/Lake/Build/Trace.c | 30 +- stage0/stdlib/Lake/Config/Artifact.c | 4 +- stage0/stdlib/Lake/Config/ConfigDecl.c | 108 +- stage0/stdlib/Lake/Config/Module.c | 10 +- stage0/stdlib/Lean/BuiltinDocAttr.c | 124 +- stage0/stdlib/Lean/Compiler/LCNF/ToMono.c | 855 +- stage0/stdlib/Lean/DeclarationRange.c | 66 +- stage0/stdlib/Lean/Elab/BuiltinCommand.c | 124 +- stage0/stdlib/Lean/Elab/DeclModifiers.c | 1581 +- stage0/stdlib/Lean/Elab/Inductive.c | 3803 +- stage0/stdlib/Lean/Elab/LetRec.c | 4064 +- .../stdlib/Lean/Elab/PreDefinition/WF/Eqns.c | 1357 +- stage0/stdlib/Lean/Elab/Structure.c | 9444 ++- .../Elab/Tactic/BVDecide/Frontend/BVDecide.c | 654 +- stage0/stdlib/Lean/Elab/Tactic/Do/LetElim.c | 1486 +- .../Lean/Elab/Tactic/Do/ProofMode/Cases.c | 118 +- .../Lean/Elab/Tactic/Do/ProofMode/Focus.c | 24 +- .../Lean/Elab/Tactic/Do/ProofMode/Frame.c | 2392 +- .../Lean/Elab/Tactic/Do/ProofMode/Have.c | 16 +- .../Lean/Elab/Tactic/Do/ProofMode/Intro.c | 4550 +- .../Lean/Elab/Tactic/Do/ProofMode/MGoal.c | 739 +- .../Lean/Elab/Tactic/Do/ProofMode/Pure.c | 12 +- .../Lean/Elab/Tactic/Do/ProofMode/Revert.c | 6 +- .../Elab/Tactic/Do/ProofMode/Specialize.c | 1461 +- stage0/stdlib/Lean/Elab/Tactic/Do/Spec.c | 5799 +- stage0/stdlib/Lean/Elab/Tactic/Do/VCGen.c | 68054 ++++++++++------ .../stdlib/Lean/Elab/Tactic/Do/VCGen/Basic.c | 10895 +++ .../stdlib/Lean/Elab/Tactic/Do/VCGen/Split.c | 4706 ++ stage0/stdlib/Lean/Elab/Term.c | 1289 +- stage0/stdlib/Lean/Meta/Match/Match.c | 18 +- .../Lean/Meta/Match/MatcherApp/Transform.c | 874 +- stage0/stdlib/Lean/Meta/Tactic/FunInd.c | 15581 ++-- stage0/stdlib/Lean/Server/FileWorker.c | 5 +- stage0/stdlib/Lean/Server/GoTo.c | 124 +- stage0/stdlib/Lean/Server/References.c | 124 +- .../stdlib/Lean/Server/RequestCancellation.c | 63 +- stage0/stdlib/Lean/Server/ServerTask.c | 11 +- stage0/stdlib/Std/Sat/AIG/Basic.c | 48 +- stage0/stdlib/Std/Tactic/Do/Syntax.c | 1798 +- 52 files changed, 89517 insertions(+), 55835 deletions(-) create mode 100644 stage0/stdlib/Lean/Elab/Tactic/Do/VCGen/Basic.c create mode 100644 stage0/stdlib/Lean/Elab/Tactic/Do/VCGen/Split.c diff --git a/stage0/src/include/lean/lean.h b/stage0/src/include/lean/lean.h index 24ceb67337..865b0de5d7 100644 --- a/stage0/src/include/lean/lean.h +++ b/stage0/src/include/lean/lean.h @@ -1203,8 +1203,6 @@ LEAN_EXPORT bool lean_io_check_canceled_core(void); LEAN_EXPORT void lean_io_cancel_core(b_lean_obj_arg t); /* primitive for implementing `IO.getTaskState : Task a -> IO TaskState` */ LEAN_EXPORT uint8_t lean_io_get_task_state_core(b_lean_obj_arg t); -/* primitive for implementing `IO.waitAny : List (Task a) -> IO (Task a)` */ -LEAN_EXPORT b_lean_obj_res lean_io_wait_any_core(b_lean_obj_arg task_list); /* External objects */ diff --git a/stage0/src/runtime/io.cpp b/stage0/src/runtime/io.cpp index 85df6b5b16..b5861f1c09 100644 --- a/stage0/src/runtime/io.cpp +++ b/stage0/src/runtime/io.cpp @@ -1535,13 +1535,6 @@ extern "C" LEAN_EXPORT obj_res lean_io_wait(obj_arg t, obj_arg) { return io_result_mk_ok(lean_task_get_own(t)); } -extern "C" LEAN_EXPORT obj_res lean_io_wait_any(b_obj_arg task_list, obj_arg) { - object * t = lean_io_wait_any_core(task_list); - object * v = lean_task_get(t); - lean_inc(v); - return io_result_mk_ok(v); -} - extern "C" LEAN_EXPORT obj_res lean_io_exit(uint8_t code, obj_arg /* w */) { exit(code); } diff --git a/stage0/src/runtime/object.cpp b/stage0/src/runtime/object.cpp index 6ebe025d52..8e068ece86 100644 --- a/stage0/src/runtime/object.cpp +++ b/stage0/src/runtime/object.cpp @@ -847,17 +847,6 @@ class task_manager { } } - object * wait_any_check(object * task_list) { - object * it = task_list; - while (!is_scalar(it)) { - object * head = lean_ctor_get(it, 0); - if (lean_to_task(head)->m_value) - return head; - it = cnstr_get(it, 1); - } - return nullptr; - } - public: task_manager(unsigned max_std_workers): m_max_std_workers(max_std_workers) { @@ -940,17 +929,6 @@ public: } } - object * wait_any(object * task_list) { - if (object * t = wait_any_check(task_list)) - return t; - unique_lock lock(m_mutex); - while (true) { - if (object * t = wait_any_check(task_list)) - return t; - m_task_finished_cv.wait(lock); - } - } - void deactivate_task(lean_task_object * t) { unique_lock lock(m_mutex); if (object * v = t->m_value) { @@ -1188,10 +1166,6 @@ extern "C" LEAN_EXPORT uint8_t lean_io_get_task_state_core(b_obj_arg t) { return g_task_manager->get_task_state(o); } -extern "C" LEAN_EXPORT b_obj_res lean_io_wait_any_core(b_obj_arg task_list) { - return g_task_manager->wait_any(task_list); -} - obj_res lean_promise_new() { lean_always_assert(g_task_manager); diff --git a/stage0/src/runtime/object.h b/stage0/src/runtime/object.h index 577c92e2f4..3ba387eaac 100644 --- a/stage0/src/runtime/object.h +++ b/stage0/src/runtime/object.h @@ -287,7 +287,6 @@ inline b_obj_res task_get(b_obj_arg t) { return lean_task_get(t); } inline bool io_check_canceled_core() { return lean_io_check_canceled_core(); } inline void io_cancel_core(b_obj_arg t) { return lean_io_cancel_core(t); } inline bool io_get_task_state_core(b_obj_arg t) { return lean_io_get_task_state_core(t); } -inline b_obj_res io_wait_any_core(b_obj_arg task_list) { return lean_io_wait_any_core(task_list); } // ======================================= // External diff --git a/stage0/src/stdlib_flags.h b/stage0/src/stdlib_flags.h index b3911deb05..79a0e58edd 100644 --- a/stage0/src/stdlib_flags.h +++ b/stage0/src/stdlib_flags.h @@ -1,7 +1,5 @@ #include "util/options.h" -// Dear CI, please update stage 0 - namespace lean { options get_default_options() { options opts; diff --git a/stage0/stdlib/Init/Data/Array/Lemmas.c b/stage0/stdlib/Init/Data/Array/Lemmas.c index 78fdadcaaf..7debb1d0c6 100644 --- a/stage0/stdlib/Init/Data/Array/Lemmas.c +++ b/stage0/stdlib/Init/Data/Array/Lemmas.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Init.Data.Array.Lemmas -// Imports: Init.Data.Nat.Lemmas Init.Data.List.Range Init.Data.List.Control Init.Data.List.Nat.TakeDrop Init.Data.List.Nat.Modify Init.Data.List.Nat.Basic Init.Data.List.Monadic Init.Data.List.OfFn Init.Data.Array.Bootstrap Init.Data.Array.Mem Init.Data.Array.DecidableEq Init.Data.Array.Lex.Basic Init.Data.Range.Lemmas Init.TacticsExtra Init.Data.List.ToArray +// Imports: Init.Data.Nat.Lemmas Init.Data.List.Range Init.Data.List.Nat.TakeDrop Init.Data.List.Nat.Modify Init.Data.List.Nat.Basic Init.Data.List.Monadic Init.Data.List.OfFn Init.Data.Array.Mem Init.Data.Array.DecidableEq Init.Data.Array.Lex.Basic Init.Data.Range.Lemmas Init.TacticsExtra Init.Data.List.ToArray Init.Data.List.Control Init.Data.Array.Basic Init.Data.Array.Bootstrap #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -1657,19 +1657,20 @@ return x_6; } lean_object* initialize_Init_Data_Nat_Lemmas(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_List_Range(uint8_t builtin, lean_object*); -lean_object* initialize_Init_Data_List_Control(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_List_Nat_TakeDrop(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_List_Nat_Modify(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_List_Nat_Basic(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_List_Monadic(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_List_OfFn(uint8_t builtin, lean_object*); -lean_object* initialize_Init_Data_Array_Bootstrap(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_Array_Mem(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_Array_DecidableEq(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_Array_Lex_Basic(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_Range_Lemmas(uint8_t builtin, lean_object*); lean_object* initialize_Init_TacticsExtra(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_List_ToArray(uint8_t builtin, lean_object*); +lean_object* initialize_Init_Data_List_Control(uint8_t builtin, lean_object*); +lean_object* initialize_Init_Data_Array_Basic(uint8_t builtin, lean_object*); +lean_object* initialize_Init_Data_Array_Bootstrap(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Init_Data_Array_Lemmas(uint8_t builtin, lean_object* w) { lean_object * res; @@ -1681,9 +1682,6 @@ lean_dec_ref(res); res = initialize_Init_Data_List_Range(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Data_List_Control(builtin, lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); res = initialize_Init_Data_List_Nat_TakeDrop(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); @@ -1699,9 +1697,6 @@ lean_dec_ref(res); res = initialize_Init_Data_List_OfFn(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Data_Array_Bootstrap(builtin, lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); res = initialize_Init_Data_Array_Mem(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); @@ -1720,6 +1715,15 @@ lean_dec_ref(res); res = initialize_Init_Data_List_ToArray(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_Data_List_Control(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_Array_Basic(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_Array_Bootstrap(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l___auto___closed__0____x40_Init_Data_Array_Lemmas___hyg_18471_ = _init_l___auto___closed__0____x40_Init_Data_Array_Lemmas___hyg_18471_(); lean_mark_persistent(l___auto___closed__0____x40_Init_Data_Array_Lemmas___hyg_18471_); l___auto___closed__1____x40_Init_Data_Array_Lemmas___hyg_18471_ = _init_l___auto___closed__1____x40_Init_Data_Array_Lemmas___hyg_18471_(); diff --git a/stage0/stdlib/Init/Data/Slice/Array/Iterator.c b/stage0/stdlib/Init/Data/Slice/Array/Iterator.c index ee7af6a3cc..ba73c1db13 100644 --- a/stage0/stdlib/Init/Data/Slice/Array/Iterator.c +++ b/stage0/stdlib/Init/Data/Slice/Array/Iterator.c @@ -21,6 +21,7 @@ static lean_object* l_instIteratorStateSubarrayId___redArg___closed__6; LEAN_EXPORT lean_object* l_Array_instCoeSubarray(lean_object*); LEAN_EXPORT lean_object* l_Subarray_toArray___redArg___boxed(lean_object*); LEAN_EXPORT lean_object* l_Array_instReprSubarray___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Subarray_foldl___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instIteratorLoopPartialStateSubarrayIdOfMonad___redArg(lean_object*, lean_object*); lean_object* l_Std_Iterators_Map_instIteratorLoopPartial___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_instIteratorStateSubarrayId___redArg___closed__2; @@ -32,6 +33,8 @@ lean_object* l_Nat_decLt___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instForInSubarray___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* l_Std_Iterators_Types_ULiftIterator_instIterator___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Subarray_foldl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Subarray_foldl___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instForInSubarray___lam__3___boxed(lean_object*); LEAN_EXPORT lean_object* l_Array_instAppendSubarray___lam__4___boxed(lean_object*, lean_object*); static lean_object* l_instIteratorStateSubarrayId___redArg___closed__10; @@ -42,10 +45,11 @@ LEAN_EXPORT lean_object* l_instForInSubarray___lam__1___boxed(lean_object*, lean LEAN_EXPORT lean_object* l_Subarray_foldlM___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_instToStringSubarray___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_instIteratorStateSubarrayId___redArg___closed__11; +LEAN_EXPORT lean_object* l_Subarray_forIn(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instForInSubarray___lam__3(lean_object*); lean_object* l_Id_instMonad___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_foldl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_Iterators_instIteratorMap___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Subarray_forIn___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_toArrayMapped_go___at___Array_ofSubarray_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Subarray_foldlM___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_toArrayMapped_go___at___Array_ofSubarray_spec__0___redArg(lean_object*, lean_object*, lean_object*); @@ -101,7 +105,6 @@ static lean_object* l_Array_instCoeSubarray___closed__0; LEAN_EXPORT lean_object* l_instIteratorSizePartialStateSubarrayId(lean_object*, lean_object*); static lean_object* l_instIteratorStateSubarrayId___redArg___closed__3; LEAN_EXPORT lean_object* l_instIteratorLoopStateSubarrayIdOfMonad(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_foldl___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instForInSubarray___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_Subarray_repr___redArg___closed__0; static lean_object* l_instIteratorStateSubarrayId___redArg___closed__1; @@ -115,7 +118,6 @@ static lean_object* l_instIteratorStateSubarrayId___redArg___closed__8; lean_object* l_Id_instMonad___lam__6(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_ofSubarray___redArg___boxed(lean_object*); static lean_object* l_instIteratorCollectPartialStateSubarrayId___redArg___closed__0; -LEAN_EXPORT lean_object* l_foldl___redArg(lean_object*, lean_object*, lean_object*); lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_ofSubarray___boxed(lean_object*, lean_object*); static lean_object* l_Array_Subarray_repr___redArg___closed__1; @@ -806,7 +808,7 @@ x_24 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___redArg(x_23, x_4, x_13 return x_24; } } -LEAN_EXPORT lean_object* l_foldl___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Subarray_foldl___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; @@ -816,7 +818,7 @@ lean_ctor_set(x_6, 0, x_5); return x_6; } } -LEAN_EXPORT lean_object* l_foldl___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Subarray_foldl___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; @@ -829,7 +831,7 @@ x_7 = lean_ctor_get(x_3, 2); lean_inc(x_7); lean_dec_ref(x_3); x_8 = l_Subarray_foldlM___redArg___closed__0; -x_9 = lean_alloc_closure((void*)(l_foldl___redArg___lam__1), 4, 1); +x_9 = lean_alloc_closure((void*)(l_Subarray_foldl___redArg___lam__1), 4, 1); lean_closure_set(x_9, 0, x_1); x_10 = l_instIteratorCollectStateSubarrayId___redArg___closed__0; x_11 = lean_alloc_closure((void*)(l_instForInSubarray___lam__1___boxed), 2, 1); @@ -845,7 +847,7 @@ x_16 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___redArg(x_15, x_4, x_8, return x_16; } } -LEAN_EXPORT lean_object* l_foldl(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Subarray_foldl(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; @@ -858,7 +860,7 @@ x_9 = lean_ctor_get(x_5, 2); lean_inc(x_9); lean_dec_ref(x_5); x_10 = l_Subarray_foldlM___redArg___closed__0; -x_11 = lean_alloc_closure((void*)(l_foldl___redArg___lam__1), 4, 1); +x_11 = lean_alloc_closure((void*)(l_Subarray_foldl___redArg___lam__1), 4, 1); lean_closure_set(x_11, 0, x_3); x_12 = l_instIteratorCollectStateSubarrayId___redArg___closed__0; x_13 = lean_alloc_closure((void*)(l_instForInSubarray___lam__1___boxed), 2, 1); @@ -874,6 +876,80 @@ x_18 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___redArg(x_17, x_6, x_10 return x_18; } } +LEAN_EXPORT lean_object* l_Subarray_forIn___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_5 = lean_ctor_get(x_2, 0); +lean_inc_ref(x_5); +x_6 = lean_ctor_get(x_2, 1); +lean_inc(x_6); +x_7 = lean_ctor_get(x_2, 2); +lean_inc(x_7); +lean_dec_ref(x_2); +x_8 = l_instIteratorStateSubarrayId___redArg___closed__9; +x_9 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_9); +x_10 = lean_ctor_get(x_9, 0); +lean_inc_ref(x_10); +lean_dec_ref(x_9); +x_11 = lean_alloc_closure((void*)(l_instForInSubarray___lam__1___boxed), 2, 1); +lean_closure_set(x_11, 0, x_5); +x_12 = l_Subarray_foldlM___redArg___closed__1; +x_13 = l_instIteratorCollectStateSubarrayId___redArg___closed__0; +x_14 = l_Subarray_foldlM___redArg___closed__0; +x_15 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_15, 0, x_6); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_7); +x_17 = l_instIteratorLoopStateSubarrayIdOfMonad___redArg___closed__0; +x_18 = l_Std_Iterators_instIteratorMap___redArg(x_8, x_17, x_13, x_11); +x_19 = lean_alloc_closure((void*)(l_instForInSubarray___lam__2), 6, 3); +lean_closure_set(x_19, 0, x_10); +lean_closure_set(x_19, 1, x_4); +lean_closure_set(x_19, 2, x_12); +x_20 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___redArg(x_18, x_1, x_14, x_16, x_3, x_19); +return x_20; +} +} +LEAN_EXPORT lean_object* l_Subarray_forIn(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_8 = lean_ctor_get(x_5, 0); +lean_inc_ref(x_8); +x_9 = lean_ctor_get(x_5, 1); +lean_inc(x_9); +x_10 = lean_ctor_get(x_5, 2); +lean_inc(x_10); +lean_dec_ref(x_5); +x_11 = l_instIteratorStateSubarrayId___redArg___closed__9; +x_12 = lean_ctor_get(x_4, 0); +lean_inc_ref(x_12); +x_13 = lean_ctor_get(x_12, 0); +lean_inc_ref(x_13); +lean_dec_ref(x_12); +x_14 = lean_alloc_closure((void*)(l_instForInSubarray___lam__1___boxed), 2, 1); +lean_closure_set(x_14, 0, x_8); +x_15 = l_Subarray_foldlM___redArg___closed__1; +x_16 = l_instIteratorCollectStateSubarrayId___redArg___closed__0; +x_17 = l_Subarray_foldlM___redArg___closed__0; +x_18 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_18, 0, x_9); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_19, 1, x_10); +x_20 = l_instIteratorLoopStateSubarrayIdOfMonad___redArg___closed__0; +x_21 = l_Std_Iterators_instIteratorMap___redArg(x_11, x_20, x_16, x_14); +x_22 = lean_alloc_closure((void*)(l_instForInSubarray___lam__2), 6, 3); +lean_closure_set(x_22, 0, x_13); +lean_closure_set(x_22, 1, x_7); +lean_closure_set(x_22, 2, x_15); +x_23 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___redArg(x_21, x_4, x_17, x_19, x_6, x_22); +return x_23; +} +} LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_toArrayMapped_go___at___Array_ofSubarray_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { diff --git a/stage0/stdlib/Init/Grind/Ring/OfSemiring.c b/stage0/stdlib/Init/Grind/Ring/OfSemiring.c index c9aaa8afe8..f7d517fbc0 100644 --- a/stage0/stdlib/Init/Grind/Ring/OfSemiring.c +++ b/stage0/stdlib/Init/Grind/Ring/OfSemiring.c @@ -29,12 +29,12 @@ LEAN_EXPORT lean_object* l_Lean_Grind_CommRing_Poly_denoteS___redArg(lean_object LEAN_EXPORT lean_object* l_Lean_Grind_CommRing_denoteSInt(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Grind_Ring_OfSemiring_eq__normS__cert(lean_object*, lean_object*); lean_object* l_Lean_RArray_getImpl___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Grind_Ring_OfSemiring_0__Lean_Grind_Ring_OfSemiring_Expr_denote_match__1_splitter___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Grind_Ring_OfSemiring_instHashableExpr; uint8_t l_Lean_Grind_CommRing_beqPoly____x40_Init_Grind_Ring_Poly___hyg_5047_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Grind_Ring_OfSemiring_Var_denote___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Grind_Ring_OfSemiring_Var_denote___redArg___boxed(lean_object*, lean_object*); lean_object* l_Lean_Grind_Ring_OfSemiring_npow___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Grind_Ring_OfSemiring_0__Lean_Grind_Ring_OfSemiring_hashExpr_match__1_splitter___redArg____x40_Init_Grind_Ring_OfSemiring___hyg_315_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Grind_Ring_OfSemiring_Expr_denoteAsRing___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Grind_Ring_OfSemiring_Var_denote___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Grind_Ring_OfSemiring_toQ___redArg(lean_object*, lean_object*); @@ -50,6 +50,7 @@ lean_object* l_Lean_Grind_CommRing_Mon_denote___redArg(lean_object*, lean_object LEAN_EXPORT lean_object* l_Lean_Grind_Ring_OfSemiring_Expr_denote(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Grind_Ring_OfSemiring_Var_denote(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Grind_CommRing_Poly_denoteS___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Grind_Ring_OfSemiring_0__Lean_Grind_Ring_OfSemiring_Expr_denote_match__1_splitter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_abs(lean_object*); lean_object* l_Lean_Grind_CommRing_Poly_ofVar(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Grind_Ring_OfSemiring_0__Lean_Grind_Ring_OfSemiring_Expr_toPoly_match__1_splitter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -57,7 +58,6 @@ uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Grind_Ring_OfSemiring_instInhabitedExpr; LEAN_EXPORT lean_object* l_Lean_Grind_Ring_OfSemiring_Expr_denote___redArg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Grind_CommRing_Poly_ofMon(lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Grind_Ring_OfSemiring_0__Lean_Grind_Ring_OfSemiring_hashExpr_match__1_splitter____x40_Init_Grind_Ring_OfSemiring___hyg_315_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_int_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Grind_CommRing_denoteSInt___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Grind_Ring_OfSemiring_Expr_denote___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -66,6 +66,7 @@ lean_object* l_Lean_Grind_Ring_OfSemiring_add___redArg(lean_object*, lean_object LEAN_EXPORT lean_object* l_Lean_Grind_Ring_OfSemiring_Expr_denoteAsRing(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Grind_Ring_OfSemiring_instBEqExpr___closed__0; LEAN_EXPORT lean_object* l_Lean_Grind_CommRing_Poly_denoteS(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Nat_cast___at___Lean_Grind_Ring_OfSemiring_Expr_toPoly_spec__0(lean_object*); LEAN_EXPORT lean_object* l_Lean_Grind_Ring_OfSemiring_instBEqExpr; LEAN_EXPORT uint8_t l_Lean_Grind_Ring_OfSemiring_beqExpr____x40_Init_Grind_Ring_OfSemiring___hyg_105_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Grind_Ring_OfSemiring_Expr_denoteAsRing___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -569,7 +570,7 @@ lean_dec_ref(x_3); return x_5; } } -LEAN_EXPORT lean_object* l___private_Init_Grind_Ring_OfSemiring_0__Lean_Grind_Ring_OfSemiring_hashExpr_match__1_splitter___redArg____x40_Init_Grind_Ring_OfSemiring___hyg_315_(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_EXPORT lean_object* l___private_Init_Grind_Ring_OfSemiring_0__Lean_Grind_Ring_OfSemiring_Expr_denote_match__1_splitter___redArg(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: { switch (lean_obj_tag(x_1)) { @@ -647,14 +648,22 @@ return x_19; } } } -LEAN_EXPORT lean_object* l___private_Init_Grind_Ring_OfSemiring_0__Lean_Grind_Ring_OfSemiring_hashExpr_match__1_splitter____x40_Init_Grind_Ring_OfSemiring___hyg_315_(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_EXPORT lean_object* l___private_Init_Grind_Ring_OfSemiring_0__Lean_Grind_Ring_OfSemiring_Expr_denote_match__1_splitter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Grind_Ring_OfSemiring_0__Lean_Grind_Ring_OfSemiring_hashExpr_match__1_splitter___redArg____x40_Init_Grind_Ring_OfSemiring___hyg_315_(x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Init_Grind_Ring_OfSemiring_0__Lean_Grind_Ring_OfSemiring_Expr_denote_match__1_splitter___redArg(x_2, x_3, x_4, x_5, x_6, x_7); return x_8; } } +LEAN_EXPORT lean_object* l_Nat_cast___at___Lean_Grind_Ring_OfSemiring_Expr_toPoly_spec__0(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_nat_to_int(x_1); +return x_2; +} +} LEAN_EXPORT lean_object* l_Lean_Grind_Ring_OfSemiring_Expr_toPoly(lean_object* x_1) { _start: { diff --git a/stage0/stdlib/Init/Grind/Ring/Poly.c b/stage0/stdlib/Init/Grind/Ring/Poly.c index 25ac202cef..b5d3f35b93 100644 --- a/stage0/stdlib/Init/Grind/Ring/Poly.c +++ b/stage0/stdlib/Init/Grind/Ring/Poly.c @@ -57,7 +57,6 @@ static lean_object* l_Lean_Grind_CommRing_instReprPoly___closed__0; static lean_object* l_Lean_Grind_CommRing_reprPower___redArg___closed__11____x40_Init_Grind_Ring_Poly___hyg_1440_; LEAN_EXPORT lean_object* l___private_Init_Grind_Ring_Poly_0__Lean_Grind_CommRing_Poly_combine_go_match__1_splitter___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Grind_CommRing_eq__gcd__cert___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Grind_Ring_Poly_0__Lean_Grind_CommRing_reprPoly_match__1_splitter____x40_Init_Grind_Ring_Poly___hyg_5160_(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Grind_Ring_Poly_0__Lean_Grind_CommRing_Poly_insert_go_match__1_splitter(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Grind_Ring_Poly_0__Lean_Grind_CommRing_Expr_toPolyC_go_match__1_splitter___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Grind_Ring_Poly_0__Lean_Grind_CommRing_eq__gcd__cert_match__1_splitter(lean_object*, lean_object*, lean_object*, lean_object*); @@ -222,7 +221,6 @@ static lean_object* l_Lean_Grind_CommRing_Expr_toPoly___closed__0; LEAN_EXPORT lean_object* l_Lean_Grind_CommRing_Mon_denoteAsIntModule___redArg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Grind_CommRing_reprPower___redArg___closed__5____x40_Init_Grind_Ring_Poly___hyg_1440_; static lean_object* l_Lean_Grind_CommRing_reprPoly___closed__1____x40_Init_Grind_Ring_Poly___hyg_5160_; -LEAN_EXPORT lean_object* l___private_Init_Grind_Ring_Poly_0__Lean_Grind_CommRing_reprPoly_match__1_splitter___redArg____x40_Init_Grind_Ring_Poly___hyg_5160_(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Grind_CommRing_reprPower___redArg___closed__0____x40_Init_Grind_Ring_Poly___hyg_1440_; LEAN_EXPORT uint8_t l_Lean_Grind_CommRing_Var_revlex(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Grind_CommRing_Mon_revlex___boxed(lean_object*, lean_object*); @@ -8805,43 +8803,6 @@ lean_dec_ref(x_3); return x_5; } } -LEAN_EXPORT lean_object* l___private_Init_Grind_Ring_Poly_0__Lean_Grind_CommRing_reprPoly_match__1_splitter___redArg____x40_Init_Grind_Ring_Poly___hyg_5160_(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_ref(x_3); -x_4 = lean_ctor_get(x_1, 0); -lean_inc(x_4); -lean_dec_ref(x_1); -x_5 = lean_apply_1(x_2, x_4); -return x_5; -} -else -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; -lean_dec_ref(x_2); -x_6 = lean_ctor_get(x_1, 0); -lean_inc(x_6); -x_7 = lean_ctor_get(x_1, 1); -lean_inc(x_7); -x_8 = lean_ctor_get(x_1, 2); -lean_inc_ref(x_8); -lean_dec_ref(x_1); -x_9 = lean_apply_3(x_3, x_6, x_7, x_8); -return x_9; -} -} -} -LEAN_EXPORT lean_object* l___private_Init_Grind_Ring_Poly_0__Lean_Grind_CommRing_reprPoly_match__1_splitter____x40_Init_Grind_Ring_Poly___hyg_5160_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = l___private_Init_Grind_Ring_Poly_0__Lean_Grind_CommRing_reprPoly_match__1_splitter___redArg____x40_Init_Grind_Ring_Poly___hyg_5160_(x_2, x_3, x_4); -return x_5; -} -} LEAN_EXPORT uint8_t l_Lean_Grind_CommRing_eq__gcd__cert(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { diff --git a/stage0/stdlib/Init/System/IO.c b/stage0/stdlib/Init/System/IO.c index 2170568733..9901dc02d4 100644 --- a/stage0/stdlib/Init/System/IO.c +++ b/stage0/stdlib/Init/System/IO.c @@ -13,28 +13,23 @@ #ifdef __cplusplus extern "C" { #endif -static lean_object* l_IO_FS_reprMetadata___redArg___closed__4____x40_Init_System_IO___hyg_3362_; LEAN_EXPORT lean_object* l_IO_FS_Handle_lock___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l___auto___closed__35____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_IO_FS_withTempDir___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___lam__0___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_readToEnd___boxed(lean_object*, lean_object*); lean_object* lean_io_process_child_try_wait(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_IO_FS_reprMetadata____x40_Init_System_IO___hyg_3362____boxed(lean_object*, lean_object*); static lean_object* l_instMonadExceptOfEIO___closed__0; lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); -static lean_object* l_IO_FS_reprSystemTime___redArg___closed__7____x40_Init_System_IO___hyg_3102_; LEAN_EXPORT lean_object* l_IO_eprint___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___redArg___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_EIO_mapTask___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +static lean_object* l_IO_FS_reprMetadata___redArg___closed__1____x40_Init_System_IO___hyg_3308_; lean_object* lean_byte_array_copy_slice(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); static lean_object* l_termPrintln_x21_______closed__9; static lean_object* l_instOrElseEIO___closed__0; -static lean_object* l___auto___closed__9____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_EIO_toIO_x27(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_cancel(lean_object*, lean_object*); static lean_object* l_IO_FS_instInhabitedSystemTime___closed__1; -static lean_object* l_IO_FS_reprFileType___closed__3____x40_Init_System_IO___hyg_2913_; lean_object* lean_io_prim_handle_lock(lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_IO_getNumHeartbeats___boxed(lean_object*); static lean_object* l_instMonadEIO___closed__2; @@ -43,13 +38,11 @@ LEAN_EXPORT lean_object* l_unsafeBaseIO(lean_object*, lean_object*); uint32_t lean_string_utf8_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_EIO_chainTask(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_termPrintln_x21____; -LEAN_EXPORT lean_object* l_IO_FS_reprSystemTime____x40_Init_System_IO___hyg_3102_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_readBinToEnd(lean_object*, lean_object*); lean_object* lean_io_prim_handle_unlock(lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_FileType_noConfusion___redArg(uint8_t, uint8_t); LEAN_EXPORT lean_object* l_EIO_toIO(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_IO_FS_reprFileType___closed__5____x40_Init_System_IO___hyg_2913_; lean_object* l_EStateM_instMonad___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_instOrElseEIO___closed__2; LEAN_EXPORT lean_object* l_IO_FS_instInhabitedStream___lam__1(size_t, lean_object*); @@ -67,44 +60,41 @@ LEAN_EXPORT lean_object* l_IO_FS_removeFile___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___lam__2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_EStateM_instMonad___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__43; LEAN_EXPORT lean_object* l_IO_Process_spawn___boxed(lean_object*, lean_object*); -static lean_object* l_IO_FS_reprFileType___closed__4____x40_Init_System_IO___hyg_2913_; LEAN_EXPORT lean_object* l_IO_withStdout___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_remove_file(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_chainTask___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_FileType_noConfusion___redArg___boxed(lean_object*, lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__11; LEAN_EXPORT lean_object* l_IO_println(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_IO_FS_reprMetadata___redArg____x40_Init_System_IO___hyg_3308_(lean_object*); lean_object* lean_io_prim_handle_read(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_readFile___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Runtime_markPersistent___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_io_check_canceled(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_appPath___boxed(lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__47; LEAN_EXPORT lean_object* l_IO_FS_createDirAll___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_hasFinished(lean_object*, lean_object*, lean_object*); lean_object* lean_io_get_tid(lean_object*); -static lean_object* l___auto___closed__33____x40_Init_System_IO___hyg_1906_; +LEAN_EXPORT lean_object* l_IO_FS_reprSystemTime____x40_Init_System_IO___hyg_3048_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -static lean_object* l_IO_FS_reprMetadata___redArg___closed__2____x40_Init_System_IO___hyg_3362_; LEAN_EXPORT lean_object* l_IO_CancelToken_isSet(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_EIO_asTask(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___auto___closed__20____x40_Init_System_IO___hyg_1906_; lean_object* lean_io_create_tempdir(lean_object*); lean_object* lean_get_set_stdout(lean_object*, lean_object*); -static lean_object* l_IO_FS_reprDirEntry___redArg___closed__15____x40_Init_System_IO___hyg_2835_; LEAN_EXPORT lean_object* l_IO_reprTaskState____x40_Init_System_IO___hyg_1437_(uint8_t, lean_object*); -static lean_object* l___auto___closed__4____x40_Init_System_IO___hyg_1906_; static lean_object* l_termPrintln_x21_______closed__8; -static lean_object* l___auto___closed__13____x40_Init_System_IO___hyg_1906_; static lean_object* l_IO_FS_instReprFileType___closed__0; size_t lean_uint64_to_usize(uint64_t); -static lean_object* l_IO_FS_reprMetadata___redArg___closed__5____x40_Init_System_IO___hyg_3362_; static lean_object* l_IO_println___redArg___closed__0; LEAN_EXPORT lean_object* l_IO_mkRef(lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_byte_array(lean_object*); lean_object* lean_io_as_task(lean_object*, lean_object*, lean_object*); lean_object* l_String_quote(lean_object*); +static lean_object* l_IO_FS_reprDirEntry___redArg___closed__7____x40_Init_System_IO___hyg_2781_; lean_object* lean_io_prim_handle_flush(lean_object*, lean_object*); static lean_object* l_IO_FS_instInhabitedStream___closed__0; LEAN_EXPORT lean_object* l_BaseIO_mapTasks(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); @@ -143,39 +133,36 @@ LEAN_EXPORT lean_object* l_IO_FS_Stream_lines(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_iterate(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_ofExcept___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* lean_io_cancel_token_is_set(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_IO_FS_reprMetadata___redArg____x40_Init_System_IO___hyg_3362____boxed(lean_object*); LEAN_EXPORT lean_object* l_IO_mapTask___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); static lean_object* l_IO_reprTaskState___closed__1____x40_Init_System_IO___hyg_1437_; -static lean_object* l___auto___closed__38____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_System_FilePath_metadata___boxed(lean_object*, lean_object*); lean_object* lean_io_getenv(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_EIO_toBaseIO___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_mapTasks___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_IO_bindTask___redArg___lam__0(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_IO_FS_reprMetadata___redArg____x40_Init_System_IO___hyg_3362_(lean_object*); -LEAN_EXPORT lean_object* l_IO_FS_reprSystemTime____x40_Init_System_IO___hyg_3102____boxed(lean_object*, lean_object*); +static lean_object* l_IO_FS_reprFileType___closed__7____x40_Init_System_IO___hyg_2859_; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__49; lean_object* l_ByteArray_extract(lean_object*, lean_object*, lean_object*); -static lean_object* l_IO_FS_reprDirEntry___redArg___closed__7____x40_Init_System_IO___hyg_2835_; LEAN_EXPORT lean_object* l_IO_eprintln___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_reprTaskState____x40_Init_System_IO___hyg_1437____boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_IO_FS_reprMetadata____x40_Init_System_IO___hyg_3362_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_IO_FS_beqFileType____x40_Init_System_IO___hyg_3061____boxed(lean_object*, lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__44; lean_object* lean_io_remove_dir(lean_object*, lean_object*); -static lean_object* l_IO_FS_reprMetadata___redArg___closed__1____x40_Init_System_IO___hyg_3362_; +static lean_object* l_IO_FS_reprSystemTime___redArg___closed__4____x40_Init_System_IO___hyg_3048_; LEAN_EXPORT lean_object* l_IO_FS_DirEntry_path(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_instInhabitedStream___lam__2(lean_object*, lean_object*); +static lean_object* l_IO_FS_reprMetadata___redArg___closed__7____x40_Init_System_IO___hyg_3308_; LEAN_EXPORT lean_object* l_IO_checkCanceled___boxed(lean_object*); LEAN_EXPORT lean_object* l_IO_monoMsNow___boxed(lean_object*); lean_object* lean_io_symlink_metadata(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_mapTasks(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); static lean_object* l_termPrintln_x21_______closed__13; LEAN_EXPORT lean_object* l_allocprof___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_IO_FS_reprSystemTime___redArg___closed__3____x40_Init_System_IO___hyg_3048_; static lean_object* l_IO_FS_instReprSystemTime___closed__0; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__37; LEAN_EXPORT lean_object* l_IO_FS_instInhabitedSystemTime; static lean_object* l_termPrintln_x21_______closed__3; LEAN_EXPORT lean_object* l_IO_FS_FileType_toCtorIdx(uint8_t); -static lean_object* l___auto___closed__7____x40_Init_System_IO___hyg_1906_; lean_object* l_Lean_Syntax_node5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_get_num_heartbeats(lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); @@ -184,11 +171,11 @@ static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21__ lean_object* l_panic___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_TaskState_toCtorIdx(uint8_t); lean_object* l_EStateM_bind(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_IO_FS_reprDirEntry___redArg____x40_Init_System_IO___hyg_2781_(lean_object*); LEAN_EXPORT lean_object* l_ByteArray_findIdx_x3f_loop___at___IO_FS_Stream_ofBuffer_spec__0___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_Process_Stdio_noConfusion(lean_object*, uint8_t, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_instMonadFinallyBaseIO; static lean_object* l_IO_Process_run___closed__0; -static lean_object* l_IO_FS_reprDirEntry___redArg___closed__4____x40_Init_System_IO___hyg_2835_; LEAN_EXPORT lean_object* l_System_FilePath_readDir___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_lines_read___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_EIO_ofExcept___redArg(lean_object*, lean_object*); @@ -197,12 +184,12 @@ LEAN_EXPORT lean_object* l_BaseIO_chainTask(lean_object*, lean_object*, lean_obj static lean_object* l_IO_FS_withIsolatedStreams___redArg___closed__0; static lean_object* l_IO_FS_readBinFile___closed__0; LEAN_EXPORT lean_object* l_IO_instDecidableEqTaskState___boxed(lean_object*, lean_object*); -static lean_object* l_IO_FS_reprSystemTime___redArg___closed__0____x40_Init_System_IO___hyg_3102_; +LEAN_EXPORT lean_object* l_IO_FS_beqSystemTime____x40_Init_System_IO___hyg_3106____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_getStdout___boxed(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_FileType_noConfusion(lean_object*, uint8_t, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_readBinToEnd___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_bindTask___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_IO_FS_reprDirEntry___redArg___closed__6____x40_Init_System_IO___hyg_2835_; +LEAN_EXPORT uint8_t l_IO_FS_beqSystemTime____x40_Init_System_IO___hyg_3106_(lean_object*, lean_object*); lean_object* l_ByteArray_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_EIO_mapTask___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_lines(lean_object*, lean_object*); @@ -217,24 +204,20 @@ LEAN_EXPORT lean_object* l_IO_lazyPure___redArg(lean_object*, lean_object*); lean_object* l_instToStringString___lam__0___boxed(lean_object*); LEAN_EXPORT uint8_t l_IO_instMaxTaskState___lam__0(uint8_t, uint8_t); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__32; -LEAN_EXPORT lean_object* l_IO_FS_beqSystemTime____x40_Init_System_IO___hyg_3160____boxed(lean_object*, lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__26; lean_object* lean_string_utf8_byte_size(lean_object*); -static lean_object* l___auto___closed__23____x40_Init_System_IO___hyg_1906_; lean_object* lean_string_push(lean_object*, uint32_t); LEAN_EXPORT lean_object* l_IO_FS_instInhabitedStream; uint8_t lean_string_validate_utf8(lean_object*); LEAN_EXPORT lean_object* l_instMonadExceptOfEIO(lean_object*); LEAN_EXPORT lean_object* l_EIO_chainTask___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_IO_FS_beqSystemTime____x40_Init_System_IO___hyg_3160_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_cancel___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_IO_FS_reprDirEntry___redArg___closed__13____x40_Init_System_IO___hyg_2835_; LEAN_EXPORT lean_object* l_IO_withStdin(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_createDirAll(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_TaskState_noConfusion(lean_object*, uint8_t, uint8_t, lean_object*); -LEAN_EXPORT lean_object* l___auto____x40_Init_System_IO___hyg_1906_; lean_object* lean_get_stdout(lean_object*); static lean_object* l_termPrintln_x21_______closed__4; +static lean_object* l_IO_FS_reprSystemTime___redArg___closed__0____x40_Init_System_IO___hyg_3048_; LEAN_EXPORT lean_object* l_instInhabitedEIO(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_withStdin___redArg___lam__0___boxed(lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__31; @@ -244,21 +227,20 @@ LEAN_EXPORT lean_object* l_IO_instReprTaskState; LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___redArg___lam__0(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_writeBinFile(lean_object*, lean_object*, lean_object*); lean_object* lean_io_process_child_wait(lean_object*, lean_object*, lean_object*); -static lean_object* l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2835_; lean_object* l_Nat_reprFast(lean_object*); LEAN_EXPORT lean_object* l_EIO_catchExceptions___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_ofExcept___at___IO_Process_output_spec__0___redArg(lean_object*, lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__48; LEAN_EXPORT lean_object* l_IO_withStdin___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_IO_Process_output___closed__1; -static lean_object* l___auto___closed__37____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_IO_FS_Handle_readBinToEndInto(lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__20; LEAN_EXPORT lean_object* l_IO_FS_Handle_readBinToEndInto___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_IO_FS_reprDirEntry___redArg___closed__9____x40_Init_System_IO___hyg_2781_; LEAN_EXPORT lean_object* l_EIO_mapTask(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___lam__3(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___lam__0(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Mode_toCtorIdx___boxed(lean_object*); -static lean_object* l___auto___closed__1____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_IO_CancelToken_new(lean_object*); LEAN_EXPORT lean_object* l_unsafeEIO(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_BaseIO_mapTask___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -271,15 +253,13 @@ LEAN_EXPORT lean_object* l_IO_getStdin___boxed(lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__21; static lean_object* l_IO_FS_Mode_noConfusion___redArg___closed__0; LEAN_EXPORT lean_object* l_IO_eprint(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_IO_FS_reprFileType____x40_Init_System_IO___hyg_2913_(uint8_t, lean_object*); +static lean_object* l_IO_FS_reprSystemTime___redArg___closed__7____x40_Init_System_IO___hyg_3048_; LEAN_EXPORT lean_object* l_IO_ofExcept(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_IO_instToStringTaskState___closed__0; lean_object* lean_st_ref_take(lean_object*, lean_object*); lean_object* lean_io_allocprof(lean_object*, lean_object*, lean_object*); static lean_object* l_IO_reprTaskState___closed__0____x40_Init_System_IO___hyg_1437_; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -static lean_object* l___auto___closed__10____x40_Init_System_IO___hyg_1906_; -static lean_object* l___auto___closed__11____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_IO_bindTask___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); static lean_object* l_IO_FS_Stream_readToEnd___closed__0; lean_object* lean_io_set_heartbeats(lean_object*, lean_object*); @@ -291,28 +271,24 @@ LEAN_EXPORT lean_object* l_IO_FS_Handle_truncate___boxed(lean_object*, lean_obje LEAN_EXPORT lean_object* l_IO_FS_Stream_readBinToEnd(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_System_FilePath_isDir(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_Process_Stdio_toCtorIdx(uint8_t); -LEAN_EXPORT lean_object* l_IO_waitAny___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); -static lean_object* l___auto___closed__17____x40_Init_System_IO___hyg_1906_; lean_object* lean_io_timeit(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_withStderr___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_to_int(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_putStrLn(lean_object*, lean_object*, lean_object*); extern lean_object* l_ByteArray_empty; LEAN_EXPORT lean_object* l_System_FilePath_walkDir_go(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__46; LEAN_EXPORT lean_object* l_IO_addHeartbeats(lean_object*, lean_object*); -lean_object* l_Array_empty(lean_object*); +LEAN_EXPORT lean_object* l_IO_FS_beqFileType____x40_Init_System_IO___hyg_3007____boxed(lean_object*, lean_object*); uint32_t lean_uint32_of_nat(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___redArg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_IO_CancelToken_set___boxed(lean_object*, lean_object*); static lean_object* l_IO_Process_output___closed__0; LEAN_EXPORT lean_object* l_IO_instLTTaskState; -static lean_object* l___auto___closed__6____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_IO_sleep___lam__0___boxed(lean_object*, lean_object*); static lean_object* l_IO_Process_run___closed__1; -static lean_object* l___auto___closed__16____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_IO_Process_Stdio_noConfusion___redArg___boxed(lean_object*, lean_object*); -static lean_object* l_IO_FS_reprFileType___closed__7____x40_Init_System_IO___hyg_2913_; static lean_object* l_IO_FS_Stream_readBinToEndInto_loop___boxed__const__1; LEAN_EXPORT lean_object* l_instMonadEIO(lean_object*); static lean_object* l_IO_FS_Handle_lines___closed__0; @@ -320,18 +296,18 @@ LEAN_EXPORT lean_object* l_IO_FS_Handle_readBinToEndInto_loop___boxed(lean_objec LEAN_EXPORT lean_object* l_BaseIO_mapTasks___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_IO_getTaskState___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__40; +static lean_object* l_IO_FS_reprMetadata___redArg___closed__2____x40_Init_System_IO___hyg_3308_; +static lean_object* l_IO_FS_reprDirEntry___redArg___closed__4____x40_Init_System_IO___hyg_2781_; LEAN_EXPORT lean_object* l_EIO_chainTask___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_EStateM_instMonad___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_instMinTaskState; LEAN_EXPORT lean_object* l_IO_Process_output___lam__0(lean_object*, lean_object*); -lean_object* lean_io_wait_any(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_createTempDir___boxed(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_tryLock___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_IO_FS_reprDirEntry___redArg___closed__0____x40_Init_System_IO___hyg_2835_; LEAN_EXPORT lean_object* l_IO_FS_Stream_readBinToEndInto_loop(lean_object*, lean_object*, lean_object*); -static lean_object* l___auto___closed__39____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_IO_FS_withFile(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__30; +static lean_object* l_IO_FS_reprMetadata___redArg___closed__0____x40_Init_System_IO___hyg_3308_; lean_object* lean_uint64_to_nat(uint64_t); LEAN_EXPORT lean_object* l_EIO_toIO___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l_instMonadFinallyEIO___closed__0; @@ -340,6 +316,7 @@ LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___lam__1___boxed(lean_object*, LEAN_EXPORT lean_object* l_IO_CancelToken_set(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_IO_ordTaskState____x40_Init_System_IO___hyg_1650_(uint8_t, uint8_t); LEAN_EXPORT lean_object* l_IO_instMinTaskState___lam__0___boxed(lean_object*, lean_object*); +static lean_object* l_IO_FS_reprMetadata___redArg___closed__6____x40_Init_System_IO___hyg_3308_; LEAN_EXPORT lean_object* l_IO_FS_instInhabitedStream___lam__4(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_sleep(uint32_t, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_removeDirAll___boxed(lean_object*, lean_object*); @@ -348,12 +325,11 @@ LEAN_EXPORT lean_object* l_IO_TaskState_noConfusion___redArg___lam__0___boxed(le lean_object* lean_st_ref_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_timeit___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_AccessRight_flags___boxed(lean_object*); -static lean_object* l_IO_FS_reprSystemTime___redArg___closed__6____x40_Init_System_IO___hyg_3102_; LEAN_EXPORT lean_object* l_IO_FS_Mode_noConfusion___redArg(uint8_t, uint8_t); -static lean_object* l_IO_FS_reprSystemTime___redArg___closed__3____x40_Init_System_IO___hyg_3102_; lean_object* lean_st_mk_ref(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_mk___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Runtime_markMultiThreaded___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_IO_FS_reprDirEntry___redArg___closed__12____x40_Init_System_IO___hyg_2781_; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__34; LEAN_EXPORT lean_object* l_IO_FS_Handle_isTty___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_print(lean_object*, lean_object*, lean_object*, lean_object*); @@ -362,14 +338,13 @@ static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21__ LEAN_EXPORT lean_object* l_IO_toEIO___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l_instMonadEIO___closed__0; static lean_object* l_IO_FS_withIsolatedStreams___redArg___lam__1___closed__0; -static lean_object* l_IO_FS_reprDirEntry___redArg___closed__14____x40_Init_System_IO___hyg_2835_; LEAN_EXPORT lean_object* l_IO_appDir(lean_object*); +static lean_object* l_IO_FS_reprDirEntry___redArg___closed__15____x40_Init_System_IO___hyg_2781_; LEAN_EXPORT lean_object* l_IO_chainTask___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_withTempFile___redArg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_node3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_lines___boxed(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2835____boxed(lean_object*, lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__45; LEAN_EXPORT lean_object* lean_stream_of_handle(lean_object*); LEAN_EXPORT lean_object* l_EIO_chainTask___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* lean_io_process_spawn(lean_object*, lean_object*); @@ -377,7 +352,6 @@ LEAN_EXPORT lean_object* l_IO_getTID___boxed(lean_object*); LEAN_EXPORT lean_object* l_IO_hasFinished___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_removeDirAll(lean_object*, lean_object*); lean_object* lean_io_map_task(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); -static lean_object* l___auto___closed__3____x40_Init_System_IO___hyg_1906_; lean_object* l_System_FilePath_parent(lean_object*); lean_object* l_Int_repr(lean_object*); LEAN_EXPORT lean_object* l_BaseIO_toIO___redArg(lean_object*, lean_object*); @@ -385,55 +359,56 @@ lean_object* lean_io_mono_nanos_now(lean_object*); static lean_object* l_IO_FS_withIsolatedStreams___redArg___lam__1___closed__4; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__0; lean_object* lean_get_stdin(lean_object*); -static lean_object* l___auto___closed__24____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_IO_FS_instBEqSystemTime; static lean_object* l_IO_FS_Stream_ofBuffer___lam__3___closed__1; lean_object* lean_io_prim_handle_is_tty(lean_object*, lean_object*); lean_object* l_EStateM_instInhabited___redArg___lam__0(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_instInhabitedStream___lam__3(lean_object*); -static lean_object* l_IO_FS_reprSystemTime___redArg___closed__5____x40_Init_System_IO___hyg_3102_; +LEAN_EXPORT lean_object* l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3048____boxed(lean_object*); lean_object* lean_get_stderr(lean_object*); static lean_object* l_IO_instReprTaskState___closed__0; LEAN_EXPORT lean_object* l_IO_FS_Handle_readBinToEndInto_loop(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Nat_cast___at___IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2781__spec__0(lean_object*); +static lean_object* l_IO_FS_reprDirEntry___redArg___closed__13____x40_Init_System_IO___hyg_2781_; LEAN_EXPORT lean_object* l_IO_Process_output(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_lines_read(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_hasFinished___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_Process_exit___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); -static lean_object* l_IO_FS_reprFileType___closed__2____x40_Init_System_IO___hyg_2913_; +LEAN_EXPORT lean_object* l_IO_FS_reprFileType____x40_Init_System_IO___hyg_2859_(uint8_t, lean_object*); LEAN_EXPORT lean_object* l_IO_Process_Child_pid___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instMonadLiftBaseIOEIO___lam__0(lean_object*, lean_object*, lean_object*); lean_object* lean_runtime_mark_multi_threaded(lean_object*, lean_object*); static lean_object* l_IO_FS_readFile___closed__0; -LEAN_EXPORT uint8_t l_IO_FS_beqFileType____x40_Init_System_IO___hyg_3061_(uint8_t, uint8_t); +static lean_object* l_IO_FS_reprDirEntry___redArg___closed__10____x40_Init_System_IO___hyg_2781_; LEAN_EXPORT lean_object* l_IO_FS_Handle_flush___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer(lean_object*); -static lean_object* l___auto___closed__31____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_IO_withStdout(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_prim_handle_write(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_Process_Child_wait___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_prev(lean_object*, lean_object*); +static lean_object* l_IO_FS_reprMetadata___redArg___closed__3____x40_Init_System_IO___hyg_3308_; LEAN_EXPORT lean_object* l_IO_setNumHeartbeats___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instMonadBaseIO; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +static lean_object* l_IO_FS_reprSystemTime___redArg___closed__6____x40_Init_System_IO___hyg_3048_; +static lean_object* l_IO_FS_reprDirEntry___redArg___closed__2____x40_Init_System_IO___hyg_2781_; LEAN_EXPORT lean_object* l_System_FilePath_symlinkMetadata___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_Process_run___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_io_prim_handle_mk(lean_object*, uint8_t, lean_object*); lean_object* lean_io_create_tempfile(lean_object*); LEAN_EXPORT lean_object* l_unsafeIO___redArg(lean_object*); -static lean_object* l_IO_FS_reprMetadata___redArg___closed__7____x40_Init_System_IO___hyg_3362_; LEAN_EXPORT lean_object* l_IO_FS_Stream_readToEnd(lean_object*, lean_object*); +static lean_object* l_IO_FS_reprDirEntry___redArg___closed__11____x40_Init_System_IO___hyg_2781_; lean_object* l_EStateM_instMonadExceptOfOfBacktrackable___redArg(lean_object*); -static lean_object* l_IO_FS_reprSystemTime___redArg___closed__2____x40_Init_System_IO___hyg_3102_; LEAN_EXPORT lean_object* l_IO_FS_withFile___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_withTempDir(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_get_set_stderr(lean_object*, lean_object*); static lean_object* l_instMonadEIO___closed__4; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__3; LEAN_EXPORT lean_object* l_BaseIO_mapTasks___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_IO_FS_reprSystemTime___redArg___closed__1____x40_Init_System_IO___hyg_3102_; LEAN_EXPORT lean_object* l_EIO_toBaseIO(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_sleep___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_unsafeBaseIO___redArg(lean_object*); @@ -442,29 +417,27 @@ lean_object* lean_task_get_own(lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__13; lean_object* lean_string_from_utf8_unchecked(lean_object*); LEAN_EXPORT lean_object* l_EIO_mapTasks___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___auto___closed__14____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_IO_Process_output___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_IO_FS_readFile___closed__1; static lean_object* l_instMonadEIO___closed__1; -static lean_object* l___auto___closed__2____x40_Init_System_IO___hyg_1906_; +static lean_object* l_IO_FS_reprDirEntry___redArg___closed__3____x40_Init_System_IO___hyg_2781_; +LEAN_EXPORT uint8_t l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___lam__3___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_BaseIO_mapTasks_go___redArg___lam__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_setStderr___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_getRandomBytes___boxed(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_IO_TaskState_ofNat(lean_object*); -LEAN_EXPORT lean_object* l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3102____boxed(lean_object*); lean_object* lean_usize_to_nat(size_t); lean_object* l_EStateM_map(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___lam__4(lean_object*, lean_object*); -static lean_object* l_IO_FS_reprFileType___closed__0____x40_Init_System_IO___hyg_2913_; +static lean_object* l_IO_FS_reprDirEntry___redArg___closed__0____x40_Init_System_IO___hyg_2781_; LEAN_EXPORT lean_object* l_IO_FS_instReprDirEntry; LEAN_EXPORT lean_object* l_IO_instToStringTaskState; -LEAN_EXPORT lean_object* l_IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2835_(lean_object*, lean_object*); lean_object* lean_io_process_set_current_dir(lean_object*, lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__17; lean_object* lean_io_prim_handle_get_line(lean_object*, lean_object*); +static lean_object* l_IO_FS_reprFileType___closed__0____x40_Init_System_IO___hyg_2859_; static lean_object* l_IO_FS_instReprMetadata___closed__0; -static lean_object* l___auto___closed__27____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_IO_FS_withTempFile___redArg___closed__0; LEAN_EXPORT lean_object* l_EIO_ofExcept___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -473,16 +446,12 @@ LEAN_EXPORT lean_object* l_IO_TaskState_toString(uint8_t); LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___redArg___lam__0___boxed(lean_object*, lean_object*); static lean_object* l_instMonadEIO___closed__8; static lean_object* l_IO_reprTaskState___closed__4____x40_Init_System_IO___hyg_1437_; -static lean_object* l___auto___closed__8____x40_Init_System_IO___hyg_1906_; static lean_object* l_termPrintln_x21_______closed__12; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__7; LEAN_EXPORT lean_object* l_IO_FS_readFile(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_EIO_mapTasks___redArg___lam__0(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_readBinFile___boxed(lean_object*, lean_object*); -static lean_object* l___auto___closed__36____x40_Init_System_IO___hyg_1906_; -static lean_object* l___auto___closed__40____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_IO_FS_FileType_toCtorIdx___boxed(lean_object*); -static lean_object* l___auto___closed__42____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___lam__2___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_termPrintln_x21_______closed__15; LEAN_EXPORT lean_object* l_IO_FS_createDir___boxed(lean_object*, lean_object*); @@ -493,20 +462,20 @@ LEAN_EXPORT lean_object* l_IO_FS_withFile___redArg(lean_object*, uint8_t, lean_o LEAN_EXPORT lean_object* l_BaseIO_bindTask___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_termPrintln_x21_______closed__5; LEAN_EXPORT uint8_t l_IO_instMinTaskState___lam__0(uint8_t, uint8_t); -static lean_object* l_IO_FS_reprDirEntry___redArg___closed__8____x40_Init_System_IO___hyg_2835_; +static lean_object* l_IO_FS_reprDirEntry___redArg___closed__8____x40_Init_System_IO___hyg_2781_; LEAN_EXPORT lean_object* l_IO_FS_writeFile___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_mkRef___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3102_(lean_object*); +static lean_object* l_IO_FS_reprSystemTime___redArg___closed__1____x40_Init_System_IO___hyg_3048_; +static lean_object* l_IO_FS_reprDirEntry___redArg___closed__6____x40_Init_System_IO___hyg_2781_; LEAN_EXPORT lean_object* l_IO_FS_createTempFile___boxed(lean_object*); -static lean_object* l_IO_FS_reprDirEntry___redArg___closed__16____x40_Init_System_IO___hyg_2835_; static lean_object* l_IO_reprTaskState___closed__5____x40_Init_System_IO___hyg_1437_; +LEAN_EXPORT uint8_t l_IO_FS_beqFileType____x40_Init_System_IO___hyg_3007_(uint8_t, uint8_t); lean_object* l_EStateM_pure(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___auto___closed__22____x40_Init_System_IO___hyg_1906_; -static lean_object* l_IO_FS_reprMetadata___redArg___closed__8____x40_Init_System_IO___hyg_3362_; static lean_object* l_IO_reprTaskState___closed__7____x40_Init_System_IO___hyg_1437_; +static lean_object* l_IO_FS_reprFileType___closed__6____x40_Init_System_IO___hyg_2859_; LEAN_EXPORT lean_object* l_EIO_ofExcept___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___System_FilePath_walkDir_go_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2781_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_BaseIO_mapTasks_go(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_TaskState_noConfusion___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_BaseIO_toIO(lean_object*, lean_object*, lean_object*); @@ -519,23 +488,24 @@ LEAN_EXPORT lean_object* l_IO_getEnv___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_withTempFile___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_Process_Stdio_noConfusion___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_length(lean_object*); +LEAN_EXPORT lean_object* l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3048_(lean_object*); static lean_object* l_IO_reprTaskState___closed__3____x40_Init_System_IO___hyg_1437_; static lean_object* l_termPrintln_x21_______closed__16; -static lean_object* l_IO_FS_reprDirEntry___redArg___closed__17____x40_Init_System_IO___hyg_2835_; +static lean_object* l_IO_FS_reprMetadata___redArg___closed__9____x40_Init_System_IO___hyg_3308_; LEAN_EXPORT lean_object* l_EIO_bindTask(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_TaskState_noConfusion___redArg(uint8_t, uint8_t); -static lean_object* l_IO_FS_reprDirEntry___redArg___closed__11____x40_Init_System_IO___hyg_2835_; +static lean_object* l_IO_FS_reprDirEntry___redArg___closed__16____x40_Init_System_IO___hyg_2781_; static lean_object* l_instMonadEIO___closed__3; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__6; LEAN_EXPORT lean_object* l_IO_TaskState_toString___boxed(lean_object*); +LEAN_EXPORT lean_object* l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1(lean_object*, lean_object*, lean_object*); lean_object* lean_runtime_forget(lean_object*, lean_object*); -static lean_object* l_IO_FS_reprMetadata___redArg___closed__0____x40_Init_System_IO___hyg_3362_; LEAN_EXPORT lean_object* l_ByteArray_findIdx_x3f_loop___at___IO_FS_Stream_ofBuffer_spec__0(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_instInhabitedStream___lam__4___boxed(lean_object*, lean_object*); -static lean_object* l_IO_FS_reprMetadata___redArg___closed__6____x40_Init_System_IO___hyg_3362_; +static lean_object* l_IO_FS_reprDirEntry___redArg___closed__1____x40_Init_System_IO___hyg_2781_; static lean_object* l_IO_withStdout___redArg___closed__0; uint8_t lean_uint32_dec_eq(uint32_t, uint32_t); LEAN_EXPORT lean_object* l_IO_setAccessRights___boxed(lean_object*, lean_object*, lean_object*); @@ -548,18 +518,16 @@ static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21__ LEAN_EXPORT lean_object* l_IO_FS_instReprFileType; lean_object* lean_io_app_path(lean_object*); LEAN_EXPORT lean_object* l_IO_chainTask(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); -static lean_object* l_IO_FS_reprDirEntry___redArg___closed__2____x40_Init_System_IO___hyg_2835_; LEAN_EXPORT lean_object* l_System_FilePath_isDir___boxed(lean_object*, lean_object*); static lean_object* l_instMonadExceptOfEIO___closed__1; LEAN_EXPORT lean_object* l_IO_Process_getPID___boxed(lean_object*); -static lean_object* l___auto___closed__19____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_BaseIO_asTask___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_BaseIO_mapTasks_go___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_node1(lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__23; -static lean_object* l___auto___closed__26____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_IO_Process_output___lam__0___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_withStdout___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_IO_FS_reprSystemTime___redArg___closed__5____x40_Init_System_IO___hyg_3048_; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__12; lean_object* lean_io_realpath(lean_object*, lean_object*); lean_object* lean_io_get_task_state(lean_object*, lean_object*); @@ -575,24 +543,19 @@ LEAN_EXPORT lean_object* l_unsafeIO(lean_object*, lean_object*); static lean_object* l_termPrintln_x21_______closed__2; lean_object* l_Repr_addAppParen(lean_object*, lean_object*); uint32_t lean_uint32_lor(uint32_t, uint32_t); -static lean_object* l_IO_FS_reprDirEntry___redArg___closed__9____x40_Init_System_IO___hyg_2835_; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__22; uint32_t lean_uint32_shift_left(uint32_t, uint32_t); static lean_object* l_IO_FS_instInhabitedStream___lam__0___closed__1; lean_object* lean_chmod(lean_object*, uint32_t, lean_object*); LEAN_EXPORT lean_object* l_EIO_mapTasks___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); -static lean_object* l_IO_FS_reprMetadata___redArg___closed__9____x40_Init_System_IO___hyg_3362_; LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_withStdin___redArg___lam__1(lean_object*, lean_object*); lean_object* l_List_reverse___redArg(lean_object*); uint8_t lean_int_dec_lt(lean_object*, lean_object*); -static lean_object* l___auto___closed__30____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_IO_FS_instBEqFileType; LEAN_EXPORT lean_object* l_IO_instMaxTaskState; LEAN_EXPORT lean_object* l_IO_TaskState_toCtorIdx___boxed(lean_object*); lean_object* l_MonadExcept_orElse(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_IO_FS_reprFileType___closed__6____x40_Init_System_IO___hyg_2913_; -static lean_object* l___auto___closed__25____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_IO_FS_withFile___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_currentDir___boxed(lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___System_FilePath_walkDir_go_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); @@ -600,51 +563,48 @@ LEAN_EXPORT lean_object* l_IO_TaskState_noConfusion___redArg___boxed(lean_object LEAN_EXPORT lean_object* l_IO_Process_Stdio_toCtorIdx___boxed(lean_object*); LEAN_EXPORT lean_object* l_IO_withStderr___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_bind_task(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +LEAN_EXPORT lean_object* l_IO_FS_reprMetadata____x40_Init_System_IO___hyg_3308_(lean_object*, lean_object*); +static lean_object* l_IO_FS_reprMetadata___redArg___closed__8____x40_Init_System_IO___hyg_3308_; LEAN_EXPORT lean_object* l_IO_FS_FileType_noConfusion___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_IO_FS_reprDirEntry___redArg___closed__17____x40_Init_System_IO___hyg_2781_; lean_object* lean_get_set_stdin(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_lazyPure(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint32_t l_IO_FileRight_flags(lean_object*); -static lean_object* l_IO_FS_reprDirEntry___redArg___closed__1____x40_Init_System_IO___hyg_2835_; static lean_object* l_termPrintln_x21_______closed__14; LEAN_EXPORT lean_object* l_IO_instOrdTaskState; LEAN_EXPORT lean_object* l_BaseIO_chainTask___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___auto___closed__0____x40_Init_System_IO___hyg_1906_; +static lean_object* l_IO_FS_reprFileType___closed__1____x40_Init_System_IO___hyg_2859_; +static lean_object* l_IO_FS_reprSystemTime___redArg___closed__2____x40_Init_System_IO___hyg_3048_; static lean_object* l_instMonadEIO___closed__9; static lean_object* l_instOrElseEIO___closed__1; -static lean_object* l___auto___closed__29____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_IO_TaskState_ofNat___boxed(lean_object*); static lean_object* l_IO_FS_withIsolatedStreams___redArg___lam__1___closed__1; -static lean_object* l___auto___closed__12____x40_Init_System_IO___hyg_1906_; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__41; LEAN_EXPORT lean_object* l_IO_Process_Child_takeStdin___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_IO_FS_reprMetadata___redArg___closed__3____x40_Init_System_IO___hyg_3362_; LEAN_EXPORT lean_object* l_IO_setStdout___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_BaseIO_chainTask___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___auto___closed__32____x40_Init_System_IO___hyg_1906_; +LEAN_EXPORT lean_object* l_IO_FS_reprFileType____x40_Init_System_IO___hyg_2859____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_BaseIO_mapTasks_go___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); -static lean_object* l___auto___closed__21____x40_Init_System_IO___hyg_1906_; static lean_object* l_IO_FS_withIsolatedStreams___redArg___lam__1___closed__2; static lean_object* l_IO_TaskState_toString___closed__2; -LEAN_EXPORT lean_object* l_Nat_cast___at___IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2835__spec__0(lean_object*); +static lean_object* l_IO_FS_reprMetadata___redArg___closed__5____x40_Init_System_IO___hyg_3308_; LEAN_EXPORT lean_object* l_IO_mapTasks___redArg___lam__0(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_instLESystemTime; +static lean_object* l_IO_FS_reprFileType___closed__2____x40_Init_System_IO___hyg_2859_; lean_object* lean_io_initializing(lean_object*); LEAN_EXPORT lean_object* l_BaseIO_chainTask___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_IO_eprint___at_____private_Init_System_IO_0__IO_eprintAux_spec__0(lean_object*, lean_object*); lean_object* l_EStateM_instMonadFinally___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_BaseIO_mapTasks_go___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_instLETaskState; -LEAN_EXPORT lean_object* l_IO_FS_reprFileType____x40_Init_System_IO___hyg_2913____boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_IO_FS_reprSystemTime____x40_Init_System_IO___hyg_3048____boxed(lean_object*, lean_object*); lean_object* lean_io_read_dir(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_monoNanosNow___boxed(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_unlock___boxed(lean_object*, lean_object*); lean_object* l_EStateM_seqRight(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_IO_FS_Handle_readToEnd___closed__1; -static lean_object* l___auto___closed__41____x40_Init_System_IO___hyg_1906_; -static lean_object* l_IO_FS_reprDirEntry___redArg___closed__3____x40_Init_System_IO___hyg_2835_; uint8_t lean_byte_array_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_withStdin___redArg___lam__1___boxed(lean_object*, lean_object*); -static lean_object* l___auto___closed__5____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_IO_sleep___lam__0(lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); static lean_object* l_IO_FS_instInhabitedStream___lam__0___closed__0; @@ -656,13 +616,14 @@ static lean_object* l_IO_FS_instBEqFileType___closed__0; uint8_t lean_uint32_dec_lt(uint32_t, uint32_t); LEAN_EXPORT lean_object* l_IO_print___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_EIO_bindTask___redArg___lam__0(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_IO_FS_reprMetadata____x40_Init_System_IO___hyg_3308____boxed(lean_object*, lean_object*); lean_object* lean_array_uget(lean_object*, size_t); size_t lean_array_size(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_instReprMetadata; LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_withStdin___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_mapTasks___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_IO_FS_reprSystemTime___redArg___closed__4____x40_Init_System_IO___hyg_3102_; +static lean_object* l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2781_; lean_object* lean_io_error_to_string(lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr1(lean_object*); @@ -680,6 +641,7 @@ LEAN_EXPORT lean_object* l_IO_FS_realPath___boxed(lean_object*, lean_object*); static lean_object* l_IO_TaskState_toString___closed__0; LEAN_EXPORT lean_object* l_IO_ofExcept___at___IO_Process_output_spec__0(lean_object*, lean_object*, lean_object*); static lean_object* l_IO_FS_instOrdSystemTime___closed__0; +static lean_object* l_IO_FS_reprFileType___closed__5____x40_Init_System_IO___hyg_2859_; LEAN_EXPORT lean_object* l_BaseIO_toEIO(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_termPrintln_x21_______closed__11; static lean_object* l_IO_instOrdTaskState___closed__0; @@ -690,15 +652,11 @@ lean_object* lean_string_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_instMaxTaskState___lam__0___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___IO_FS_removeDirAll_spec__0(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Mode_toCtorIdx(uint8_t); -static lean_object* l___auto___closed__18____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_IO_eprintln(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_wait(lean_object*, lean_object*); -static lean_object* l_IO_FS_reprDirEntry___redArg___closed__12____x40_Init_System_IO___hyg_2835_; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__1; static lean_object* l_termPrintln_x21_______closed__0; LEAN_EXPORT lean_object* l_IO_FS_writeBinFile___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l___auto___closed__15____x40_Init_System_IO___hyg_1906_; -lean_object* l_Lean_mkAtom(lean_object*); LEAN_EXPORT lean_object* l_IO_asTask(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_BaseIO_mapTasks_go___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_System_FilePath_pathExists___boxed(lean_object*, lean_object*); @@ -710,10 +668,7 @@ static uint32_t l_IO_FS_instInhabitedSystemTime___closed__0; LEAN_EXPORT lean_object* l_IO_eprintln___at_____private_Init_System_IO_0__IO_eprintlnAux_spec__0(lean_object*, lean_object*); static lean_object* l_IO_FS_instBEqSystemTime___closed__0; LEAN_EXPORT lean_object* l_IO_println___redArg(lean_object*, lean_object*, lean_object*); -static lean_object* l_IO_FS_reprFileType___closed__1____x40_Init_System_IO___hyg_2913_; -static lean_object* l___auto___closed__34____x40_Init_System_IO___hyg_1906_; lean_object* lean_nat_add(lean_object*, lean_object*); -static lean_object* l___auto___closed__28____x40_Init_System_IO___hyg_1906_; LEAN_EXPORT lean_object* l_instMonadLiftBaseIOEIO(lean_object*); lean_object* lean_runtime_mark_persistent(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_EIO_mapTasks___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -727,10 +682,10 @@ LEAN_EXPORT lean_object* l_EIO_chainTask___redArg___lam__0(lean_object*, lean_ob LEAN_EXPORT lean_object* l_IO_FS_Handle_lines(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_EIO_toIO_x27___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_rewind___boxed(lean_object*, lean_object*); +static lean_object* l_IO_FS_reprMetadata___redArg___closed__4____x40_Init_System_IO___hyg_3308_; LEAN_EXPORT lean_object* l_IO_bindTask(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); -static lean_object* l_IO_FS_reprDirEntry___redArg___closed__10____x40_Init_System_IO___hyg_2835_; LEAN_EXPORT lean_object* l_IO_FS_Stream_lines_read(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_IO_FS_reprDirEntry___redArg____x40_Init_System_IO___hyg_2835_(lean_object*); +LEAN_EXPORT lean_object* l_IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2781____boxed(lean_object*, lean_object*); lean_object* lean_byte_array_size(lean_object*); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__36; uint8_t lean_uint8_dec_eq(uint8_t, uint8_t); @@ -738,17 +693,21 @@ lean_object* l_EStateM_nonBacktrackable(lean_object*); lean_object* l_String_toSubstring_x27(lean_object*); LEAN_EXPORT lean_object* l_IO_Process_run(lean_object*, lean_object*, lean_object*); static lean_object* l_IO_reprTaskState___closed__6____x40_Init_System_IO___hyg_1437_; +static lean_object* l_IO_FS_reprFileType___closed__4____x40_Init_System_IO___hyg_2859_; LEAN_EXPORT lean_object* l_IO_setAccessRights(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__9; lean_object* lean_io_process_child_kill(lean_object*, lean_object*, lean_object*); +static lean_object* l_IO_FS_reprFileType___closed__3____x40_Init_System_IO___hyg_2859_; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__38; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__42; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__10; LEAN_EXPORT lean_object* l_IO_Process_Child_kill___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_IO_FS_reprDirEntry___redArg___closed__14____x40_Init_System_IO___hyg_2781_; lean_object* lean_io_prim_handle_rewind(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___lam__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___redArg___lam__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_IO_FS_reprMetadata___redArg____x40_Init_System_IO___hyg_3308____boxed(lean_object*); static lean_object* l_IO_appDir___closed__0; static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__18; LEAN_EXPORT lean_object* l_Runtime_forget___boxed(lean_object*, lean_object*, lean_object*); @@ -3878,467 +3837,6 @@ x_4 = lean_io_wait(x_2, x_3); return x_4; } } -static lean_object* _init_l___auto___closed__0____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Lean", 4, 4); -return x_1; -} -} -static lean_object* _init_l___auto___closed__1____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Parser", 6, 6); -return x_1; -} -} -static lean_object* _init_l___auto___closed__2____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Tactic", 6, 6); -return x_1; -} -} -static lean_object* _init_l___auto___closed__3____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("tacticSeq", 9, 9); -return x_1; -} -} -static lean_object* _init_l___auto___closed__4____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___auto___closed__3____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__2____x40_Init_System_IO___hyg_1906_; -x_3 = l___auto___closed__1____x40_Init_System_IO___hyg_1906_; -x_4 = l___auto___closed__0____x40_Init_System_IO___hyg_1906_; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -static lean_object* _init_l___auto___closed__5____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; -x_1 = l_Array_empty(lean_box(0)); -return x_1; -} -} -static lean_object* _init_l___auto___closed__6____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("tacticSeq1Indented", 18, 18); -return x_1; -} -} -static lean_object* _init_l___auto___closed__7____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___auto___closed__6____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__2____x40_Init_System_IO___hyg_1906_; -x_3 = l___auto___closed__1____x40_Init_System_IO___hyg_1906_; -x_4 = l___auto___closed__0____x40_Init_System_IO___hyg_1906_; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -static lean_object* _init_l___auto___closed__8____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("null", 4, 4); -return x_1; -} -} -static lean_object* _init_l___auto___closed__9____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___auto___closed__8____x40_Init_System_IO___hyg_1906_; -x_2 = l_Lean_Name_mkStr1(x_1); -return x_2; -} -} -static lean_object* _init_l___auto___closed__10____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("exact", 5, 5); -return x_1; -} -} -static lean_object* _init_l___auto___closed__11____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___auto___closed__10____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__2____x40_Init_System_IO___hyg_1906_; -x_3 = l___auto___closed__1____x40_Init_System_IO___hyg_1906_; -x_4 = l___auto___closed__0____x40_Init_System_IO___hyg_1906_; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -static lean_object* _init_l___auto___closed__12____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___auto___closed__10____x40_Init_System_IO___hyg_1906_; -x_2 = l_Lean_mkAtom(x_1); -return x_2; -} -} -static lean_object* _init_l___auto___closed__13____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___auto___closed__12____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__5____x40_Init_System_IO___hyg_1906_; -x_3 = lean_array_push(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___auto___closed__14____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Term", 4, 4); -return x_1; -} -} -static lean_object* _init_l___auto___closed__15____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("app", 3, 3); -return x_1; -} -} -static lean_object* _init_l___auto___closed__16____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___auto___closed__15____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__14____x40_Init_System_IO___hyg_1906_; -x_3 = l___auto___closed__1____x40_Init_System_IO___hyg_1906_; -x_4 = l___auto___closed__0____x40_Init_System_IO___hyg_1906_; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -static lean_object* _init_l___auto___closed__17____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Nat.zero_lt_succ", 16, 16); -return x_1; -} -} -static lean_object* _init_l___auto___closed__18____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___auto___closed__17____x40_Init_System_IO___hyg_1906_; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; -} -} -static lean_object* _init_l___auto___closed__19____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___auto___closed__18____x40_Init_System_IO___hyg_1906_; -x_2 = lean_unsigned_to_nat(0u); -x_3 = l___auto___closed__17____x40_Init_System_IO___hyg_1906_; -x_4 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_4, 0, x_3); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_1); -return x_4; -} -} -static lean_object* _init_l___auto___closed__20____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Nat", 3, 3); -return x_1; -} -} -static lean_object* _init_l___auto___closed__21____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("zero_lt_succ", 12, 12); -return x_1; -} -} -static lean_object* _init_l___auto___closed__22____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___auto___closed__21____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__20____x40_Init_System_IO___hyg_1906_; -x_3 = l_Lean_Name_mkStr2(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___auto___closed__23____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = lean_box(0); -x_2 = l___auto___closed__22____x40_Init_System_IO___hyg_1906_; -x_3 = l___auto___closed__19____x40_Init_System_IO___hyg_1906_; -x_4 = lean_box(2); -x_5 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_5, 0, x_4); -lean_ctor_set(x_5, 1, x_3); -lean_ctor_set(x_5, 2, x_2); -lean_ctor_set(x_5, 3, x_1); -return x_5; -} -} -static lean_object* _init_l___auto___closed__24____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___auto___closed__23____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__5____x40_Init_System_IO___hyg_1906_; -x_3 = lean_array_push(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___auto___closed__25____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("hole", 4, 4); -return x_1; -} -} -static lean_object* _init_l___auto___closed__26____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___auto___closed__25____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__14____x40_Init_System_IO___hyg_1906_; -x_3 = l___auto___closed__1____x40_Init_System_IO___hyg_1906_; -x_4 = l___auto___closed__0____x40_Init_System_IO___hyg_1906_; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -static lean_object* _init_l___auto___closed__27____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("_", 1, 1); -return x_1; -} -} -static lean_object* _init_l___auto___closed__28____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___auto___closed__27____x40_Init_System_IO___hyg_1906_; -x_2 = l_Lean_mkAtom(x_1); -return x_2; -} -} -static lean_object* _init_l___auto___closed__29____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___auto___closed__28____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__5____x40_Init_System_IO___hyg_1906_; -x_3 = lean_array_push(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___auto___closed__30____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___auto___closed__29____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__26____x40_Init_System_IO___hyg_1906_; -x_3 = lean_box(2); -x_4 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_4, 0, x_3); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_1); -return x_4; -} -} -static lean_object* _init_l___auto___closed__31____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___auto___closed__30____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__5____x40_Init_System_IO___hyg_1906_; -x_3 = lean_array_push(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___auto___closed__32____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___auto___closed__31____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__9____x40_Init_System_IO___hyg_1906_; -x_3 = lean_box(2); -x_4 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_4, 0, x_3); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_1); -return x_4; -} -} -static lean_object* _init_l___auto___closed__33____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___auto___closed__32____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__24____x40_Init_System_IO___hyg_1906_; -x_3 = lean_array_push(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___auto___closed__34____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___auto___closed__33____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__16____x40_Init_System_IO___hyg_1906_; -x_3 = lean_box(2); -x_4 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_4, 0, x_3); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_1); -return x_4; -} -} -static lean_object* _init_l___auto___closed__35____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___auto___closed__34____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__13____x40_Init_System_IO___hyg_1906_; -x_3 = lean_array_push(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___auto___closed__36____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___auto___closed__35____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__11____x40_Init_System_IO___hyg_1906_; -x_3 = lean_box(2); -x_4 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_4, 0, x_3); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_1); -return x_4; -} -} -static lean_object* _init_l___auto___closed__37____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___auto___closed__36____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__5____x40_Init_System_IO___hyg_1906_; -x_3 = lean_array_push(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___auto___closed__38____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___auto___closed__37____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__9____x40_Init_System_IO___hyg_1906_; -x_3 = lean_box(2); -x_4 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_4, 0, x_3); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_1); -return x_4; -} -} -static lean_object* _init_l___auto___closed__39____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___auto___closed__38____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__5____x40_Init_System_IO___hyg_1906_; -x_3 = lean_array_push(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___auto___closed__40____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___auto___closed__39____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__7____x40_Init_System_IO___hyg_1906_; -x_3 = lean_box(2); -x_4 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_4, 0, x_3); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_1); -return x_4; -} -} -static lean_object* _init_l___auto___closed__41____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___auto___closed__40____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__5____x40_Init_System_IO___hyg_1906_; -x_3 = lean_array_push(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___auto___closed__42____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___auto___closed__41____x40_Init_System_IO___hyg_1906_; -x_2 = l___auto___closed__4____x40_Init_System_IO___hyg_1906_; -x_3 = lean_box(2); -x_4 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_4, 0, x_3); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_1); -return x_4; -} -} -static lean_object* _init_l___auto____x40_Init_System_IO___hyg_1906_() { -_start: -{ -lean_object* x_1; -x_1 = l___auto___closed__42____x40_Init_System_IO___hyg_1906_; -return x_1; -} -} -LEAN_EXPORT lean_object* l_IO_waitAny___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = lean_io_wait_any(x_2, x_4); -lean_dec(x_2); -return x_5; -} -} LEAN_EXPORT lean_object* l_IO_getNumHeartbeats___boxed(lean_object* x_1) { _start: { @@ -5714,7 +5212,7 @@ x_7 = lean_apply_2(x_4, x_6, x_3); return x_7; } } -LEAN_EXPORT lean_object* l_Nat_cast___at___IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2835__spec__0(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Nat_cast___at___IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2781__spec__0(lean_object* x_1) { _start: { lean_object* x_2; @@ -5722,7 +5220,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__0____x40_Init_System_IO___hyg_2835_() { +static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__0____x40_Init_System_IO___hyg_2781_() { _start: { lean_object* x_1; @@ -5730,7 +5228,7 @@ x_1 = lean_mk_string_unchecked("{ ", 2, 2); return x_1; } } -static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__1____x40_Init_System_IO___hyg_2835_() { +static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__1____x40_Init_System_IO___hyg_2781_() { _start: { lean_object* x_1; @@ -5738,21 +5236,21 @@ x_1 = lean_mk_string_unchecked("root", 4, 4); return x_1; } } -static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__2____x40_Init_System_IO___hyg_2835_() { +static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__2____x40_Init_System_IO___hyg_2781_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_IO_FS_reprDirEntry___redArg___closed__1____x40_Init_System_IO___hyg_2835_; +x_1 = l_IO_FS_reprDirEntry___redArg___closed__1____x40_Init_System_IO___hyg_2781_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__3____x40_Init_System_IO___hyg_2835_() { +static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__3____x40_Init_System_IO___hyg_2781_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_IO_FS_reprDirEntry___redArg___closed__2____x40_Init_System_IO___hyg_2835_; +x_1 = l_IO_FS_reprDirEntry___redArg___closed__2____x40_Init_System_IO___hyg_2781_; x_2 = lean_box(0); x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_2); @@ -5760,7 +5258,7 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__4____x40_Init_System_IO___hyg_2835_() { +static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__4____x40_Init_System_IO___hyg_2781_() { _start: { lean_object* x_1; @@ -5768,29 +5266,29 @@ x_1 = lean_mk_string_unchecked(" := ", 4, 4); return x_1; } } -static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2835_() { +static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2781_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_IO_FS_reprDirEntry___redArg___closed__4____x40_Init_System_IO___hyg_2835_; +x_1 = l_IO_FS_reprDirEntry___redArg___closed__4____x40_Init_System_IO___hyg_2781_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__6____x40_Init_System_IO___hyg_2835_() { +static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__6____x40_Init_System_IO___hyg_2781_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2835_; -x_2 = l_IO_FS_reprDirEntry___redArg___closed__3____x40_Init_System_IO___hyg_2835_; +x_1 = l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2781_; +x_2 = l_IO_FS_reprDirEntry___redArg___closed__3____x40_Init_System_IO___hyg_2781_; x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__7____x40_Init_System_IO___hyg_2835_() { +static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__7____x40_Init_System_IO___hyg_2781_() { _start: { lean_object* x_1; lean_object* x_2; @@ -5799,7 +5297,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__8____x40_Init_System_IO___hyg_2835_() { +static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__8____x40_Init_System_IO___hyg_2781_() { _start: { lean_object* x_1; @@ -5807,17 +5305,17 @@ x_1 = lean_mk_string_unchecked("FilePath.mk ", 12, 12); return x_1; } } -static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__9____x40_Init_System_IO___hyg_2835_() { +static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__9____x40_Init_System_IO___hyg_2781_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_IO_FS_reprDirEntry___redArg___closed__8____x40_Init_System_IO___hyg_2835_; +x_1 = l_IO_FS_reprDirEntry___redArg___closed__8____x40_Init_System_IO___hyg_2781_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__10____x40_Init_System_IO___hyg_2835_() { +static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__10____x40_Init_System_IO___hyg_2781_() { _start: { lean_object* x_1; @@ -5825,17 +5323,17 @@ x_1 = lean_mk_string_unchecked(",", 1, 1); return x_1; } } -static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__11____x40_Init_System_IO___hyg_2835_() { +static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__11____x40_Init_System_IO___hyg_2781_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_IO_FS_reprDirEntry___redArg___closed__10____x40_Init_System_IO___hyg_2835_; +x_1 = l_IO_FS_reprDirEntry___redArg___closed__10____x40_Init_System_IO___hyg_2781_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__12____x40_Init_System_IO___hyg_2835_() { +static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__12____x40_Init_System_IO___hyg_2781_() { _start: { lean_object* x_1; @@ -5843,17 +5341,17 @@ x_1 = lean_mk_string_unchecked("fileName", 8, 8); return x_1; } } -static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__13____x40_Init_System_IO___hyg_2835_() { +static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__13____x40_Init_System_IO___hyg_2781_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_IO_FS_reprDirEntry___redArg___closed__12____x40_Init_System_IO___hyg_2835_; +x_1 = l_IO_FS_reprDirEntry___redArg___closed__12____x40_Init_System_IO___hyg_2781_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__14____x40_Init_System_IO___hyg_2835_() { +static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__14____x40_Init_System_IO___hyg_2781_() { _start: { lean_object* x_1; lean_object* x_2; @@ -5862,7 +5360,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__15____x40_Init_System_IO___hyg_2835_() { +static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__15____x40_Init_System_IO___hyg_2781_() { _start: { lean_object* x_1; @@ -5870,27 +5368,27 @@ x_1 = lean_mk_string_unchecked(" }", 2, 2); return x_1; } } -static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__16____x40_Init_System_IO___hyg_2835_() { +static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__16____x40_Init_System_IO___hyg_2781_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_IO_FS_reprDirEntry___redArg___closed__0____x40_Init_System_IO___hyg_2835_; +x_1 = l_IO_FS_reprDirEntry___redArg___closed__0____x40_Init_System_IO___hyg_2781_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__17____x40_Init_System_IO___hyg_2835_() { +static lean_object* _init_l_IO_FS_reprDirEntry___redArg___closed__17____x40_Init_System_IO___hyg_2781_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_IO_FS_reprDirEntry___redArg___closed__15____x40_Init_System_IO___hyg_2835_; +x_1 = l_IO_FS_reprDirEntry___redArg___closed__15____x40_Init_System_IO___hyg_2781_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_IO_FS_reprDirEntry___redArg____x40_Init_System_IO___hyg_2835_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_IO_FS_reprDirEntry___redArg____x40_Init_System_IO___hyg_2781_(lean_object* x_1) { _start: { uint8_t x_2; @@ -5900,11 +5398,11 @@ if (x_2 == 0) lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; x_3 = lean_ctor_get(x_1, 0); x_4 = lean_ctor_get(x_1, 1); -x_5 = l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2835_; -x_6 = l_IO_FS_reprDirEntry___redArg___closed__6____x40_Init_System_IO___hyg_2835_; -x_7 = l_IO_FS_reprDirEntry___redArg___closed__7____x40_Init_System_IO___hyg_2835_; +x_5 = l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2781_; +x_6 = l_IO_FS_reprDirEntry___redArg___closed__6____x40_Init_System_IO___hyg_2781_; +x_7 = l_IO_FS_reprDirEntry___redArg___closed__7____x40_Init_System_IO___hyg_2781_; x_8 = lean_unsigned_to_nat(0u); -x_9 = l_IO_FS_reprDirEntry___redArg___closed__9____x40_Init_System_IO___hyg_2835_; +x_9 = l_IO_FS_reprDirEntry___redArg___closed__9____x40_Init_System_IO___hyg_2781_; x_10 = l_String_quote(x_3); lean_dec_ref(x_3); x_11 = lean_alloc_ctor(3, 1, 0); @@ -5923,7 +5421,7 @@ lean_ctor_set_uint8(x_15, sizeof(void*)*1, x_14); x_16 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_16, 0, x_6); lean_ctor_set(x_16, 1, x_15); -x_17 = l_IO_FS_reprDirEntry___redArg___closed__11____x40_Init_System_IO___hyg_2835_; +x_17 = l_IO_FS_reprDirEntry___redArg___closed__11____x40_Init_System_IO___hyg_2781_; x_18 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_18, 0, x_16); lean_ctor_set(x_18, 1, x_17); @@ -5931,14 +5429,14 @@ x_19 = lean_box(1); x_20 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_20, 0, x_18); lean_ctor_set(x_20, 1, x_19); -x_21 = l_IO_FS_reprDirEntry___redArg___closed__13____x40_Init_System_IO___hyg_2835_; +x_21 = l_IO_FS_reprDirEntry___redArg___closed__13____x40_Init_System_IO___hyg_2781_; x_22 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_22, 0, x_20); lean_ctor_set(x_22, 1, x_21); x_23 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_5); -x_24 = l_IO_FS_reprDirEntry___redArg___closed__14____x40_Init_System_IO___hyg_2835_; +x_24 = l_IO_FS_reprDirEntry___redArg___closed__14____x40_Init_System_IO___hyg_2781_; x_25 = l_String_quote(x_4); lean_dec_ref(x_4); x_26 = lean_alloc_ctor(3, 1, 0); @@ -5953,11 +5451,11 @@ x_29 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_29, 0, x_23); lean_ctor_set(x_29, 1, x_28); x_30 = l_IO_reprTaskState___closed__6____x40_Init_System_IO___hyg_1437_; -x_31 = l_IO_FS_reprDirEntry___redArg___closed__16____x40_Init_System_IO___hyg_2835_; +x_31 = l_IO_FS_reprDirEntry___redArg___closed__16____x40_Init_System_IO___hyg_2781_; x_32 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_29); -x_33 = l_IO_FS_reprDirEntry___redArg___closed__17____x40_Init_System_IO___hyg_2835_; +x_33 = l_IO_FS_reprDirEntry___redArg___closed__17____x40_Init_System_IO___hyg_2781_; x_34 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_34, 0, x_32); lean_ctor_set(x_34, 1, x_33); @@ -5977,11 +5475,11 @@ x_38 = lean_ctor_get(x_1, 1); lean_inc(x_38); lean_inc(x_37); lean_dec(x_1); -x_39 = l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2835_; -x_40 = l_IO_FS_reprDirEntry___redArg___closed__6____x40_Init_System_IO___hyg_2835_; -x_41 = l_IO_FS_reprDirEntry___redArg___closed__7____x40_Init_System_IO___hyg_2835_; +x_39 = l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2781_; +x_40 = l_IO_FS_reprDirEntry___redArg___closed__6____x40_Init_System_IO___hyg_2781_; +x_41 = l_IO_FS_reprDirEntry___redArg___closed__7____x40_Init_System_IO___hyg_2781_; x_42 = lean_unsigned_to_nat(0u); -x_43 = l_IO_FS_reprDirEntry___redArg___closed__9____x40_Init_System_IO___hyg_2835_; +x_43 = l_IO_FS_reprDirEntry___redArg___closed__9____x40_Init_System_IO___hyg_2781_; x_44 = l_String_quote(x_37); lean_dec_ref(x_37); x_45 = lean_alloc_ctor(3, 1, 0); @@ -6000,7 +5498,7 @@ lean_ctor_set_uint8(x_50, sizeof(void*)*1, x_49); x_51 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_51, 0, x_40); lean_ctor_set(x_51, 1, x_50); -x_52 = l_IO_FS_reprDirEntry___redArg___closed__11____x40_Init_System_IO___hyg_2835_; +x_52 = l_IO_FS_reprDirEntry___redArg___closed__11____x40_Init_System_IO___hyg_2781_; x_53 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_53, 0, x_51); lean_ctor_set(x_53, 1, x_52); @@ -6008,14 +5506,14 @@ x_54 = lean_box(1); x_55 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_55, 0, x_53); lean_ctor_set(x_55, 1, x_54); -x_56 = l_IO_FS_reprDirEntry___redArg___closed__13____x40_Init_System_IO___hyg_2835_; +x_56 = l_IO_FS_reprDirEntry___redArg___closed__13____x40_Init_System_IO___hyg_2781_; x_57 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_57, 0, x_55); lean_ctor_set(x_57, 1, x_56); x_58 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_39); -x_59 = l_IO_FS_reprDirEntry___redArg___closed__14____x40_Init_System_IO___hyg_2835_; +x_59 = l_IO_FS_reprDirEntry___redArg___closed__14____x40_Init_System_IO___hyg_2781_; x_60 = l_String_quote(x_38); lean_dec_ref(x_38); x_61 = lean_alloc_ctor(3, 1, 0); @@ -6030,11 +5528,11 @@ x_64 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_64, 0, x_58); lean_ctor_set(x_64, 1, x_63); x_65 = l_IO_reprTaskState___closed__6____x40_Init_System_IO___hyg_1437_; -x_66 = l_IO_FS_reprDirEntry___redArg___closed__16____x40_Init_System_IO___hyg_2835_; +x_66 = l_IO_FS_reprDirEntry___redArg___closed__16____x40_Init_System_IO___hyg_2781_; x_67 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_67, 0, x_66); lean_ctor_set(x_67, 1, x_64); -x_68 = l_IO_FS_reprDirEntry___redArg___closed__17____x40_Init_System_IO___hyg_2835_; +x_68 = l_IO_FS_reprDirEntry___redArg___closed__17____x40_Init_System_IO___hyg_2781_; x_69 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_69, 0, x_67); lean_ctor_set(x_69, 1, x_68); @@ -6048,19 +5546,19 @@ return x_71; } } } -LEAN_EXPORT lean_object* l_IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2835_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2781_(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_IO_FS_reprDirEntry___redArg____x40_Init_System_IO___hyg_2835_(x_1); +x_3 = l_IO_FS_reprDirEntry___redArg____x40_Init_System_IO___hyg_2781_(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2835____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2781____boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2835_(x_1, x_2); +x_3 = l_IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2781_(x_1, x_2); lean_dec(x_2); return x_3; } @@ -6069,7 +5567,7 @@ static lean_object* _init_l_IO_FS_instReprDirEntry___closed__0() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2835____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l_IO_FS_reprDirEntry____x40_Init_System_IO___hyg_2781____boxed), 2, 0); return x_1; } } @@ -6171,7 +5669,7 @@ x_7 = l_IO_FS_FileType_noConfusion(x_1, x_5, x_6, x_4); return x_7; } } -static lean_object* _init_l_IO_FS_reprFileType___closed__0____x40_Init_System_IO___hyg_2913_() { +static lean_object* _init_l_IO_FS_reprFileType___closed__0____x40_Init_System_IO___hyg_2859_() { _start: { lean_object* x_1; @@ -6179,17 +5677,17 @@ x_1 = lean_mk_string_unchecked("IO.FS.FileType.dir", 18, 18); return x_1; } } -static lean_object* _init_l_IO_FS_reprFileType___closed__1____x40_Init_System_IO___hyg_2913_() { +static lean_object* _init_l_IO_FS_reprFileType___closed__1____x40_Init_System_IO___hyg_2859_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_IO_FS_reprFileType___closed__0____x40_Init_System_IO___hyg_2913_; +x_1 = l_IO_FS_reprFileType___closed__0____x40_Init_System_IO___hyg_2859_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_IO_FS_reprFileType___closed__2____x40_Init_System_IO___hyg_2913_() { +static lean_object* _init_l_IO_FS_reprFileType___closed__2____x40_Init_System_IO___hyg_2859_() { _start: { lean_object* x_1; @@ -6197,17 +5695,17 @@ x_1 = lean_mk_string_unchecked("IO.FS.FileType.file", 19, 19); return x_1; } } -static lean_object* _init_l_IO_FS_reprFileType___closed__3____x40_Init_System_IO___hyg_2913_() { +static lean_object* _init_l_IO_FS_reprFileType___closed__3____x40_Init_System_IO___hyg_2859_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_IO_FS_reprFileType___closed__2____x40_Init_System_IO___hyg_2913_; +x_1 = l_IO_FS_reprFileType___closed__2____x40_Init_System_IO___hyg_2859_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_IO_FS_reprFileType___closed__4____x40_Init_System_IO___hyg_2913_() { +static lean_object* _init_l_IO_FS_reprFileType___closed__4____x40_Init_System_IO___hyg_2859_() { _start: { lean_object* x_1; @@ -6215,17 +5713,17 @@ x_1 = lean_mk_string_unchecked("IO.FS.FileType.symlink", 22, 22); return x_1; } } -static lean_object* _init_l_IO_FS_reprFileType___closed__5____x40_Init_System_IO___hyg_2913_() { +static lean_object* _init_l_IO_FS_reprFileType___closed__5____x40_Init_System_IO___hyg_2859_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_IO_FS_reprFileType___closed__4____x40_Init_System_IO___hyg_2913_; +x_1 = l_IO_FS_reprFileType___closed__4____x40_Init_System_IO___hyg_2859_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_IO_FS_reprFileType___closed__6____x40_Init_System_IO___hyg_2913_() { +static lean_object* _init_l_IO_FS_reprFileType___closed__6____x40_Init_System_IO___hyg_2859_() { _start: { lean_object* x_1; @@ -6233,17 +5731,17 @@ x_1 = lean_mk_string_unchecked("IO.FS.FileType.other", 20, 20); return x_1; } } -static lean_object* _init_l_IO_FS_reprFileType___closed__7____x40_Init_System_IO___hyg_2913_() { +static lean_object* _init_l_IO_FS_reprFileType___closed__7____x40_Init_System_IO___hyg_2859_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_IO_FS_reprFileType___closed__6____x40_Init_System_IO___hyg_2913_; +x_1 = l_IO_FS_reprFileType___closed__6____x40_Init_System_IO___hyg_2859_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_IO_FS_reprFileType____x40_Init_System_IO___hyg_2913_(uint8_t x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_IO_FS_reprFileType____x40_Init_System_IO___hyg_2859_(uint8_t x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_10; lean_object* x_17; lean_object* x_24; @@ -6332,7 +5830,7 @@ goto block_30; block_9: { lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; lean_object* x_8; -x_4 = l_IO_FS_reprFileType___closed__1____x40_Init_System_IO___hyg_2913_; +x_4 = l_IO_FS_reprFileType___closed__1____x40_Init_System_IO___hyg_2859_; x_5 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_5, 0, x_3); lean_ctor_set(x_5, 1, x_4); @@ -6346,7 +5844,7 @@ return x_8; block_16: { lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; -x_11 = l_IO_FS_reprFileType___closed__3____x40_Init_System_IO___hyg_2913_; +x_11 = l_IO_FS_reprFileType___closed__3____x40_Init_System_IO___hyg_2859_; x_12 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); @@ -6360,7 +5858,7 @@ return x_15; block_23: { lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_object* x_21; lean_object* x_22; -x_18 = l_IO_FS_reprFileType___closed__5____x40_Init_System_IO___hyg_2913_; +x_18 = l_IO_FS_reprFileType___closed__5____x40_Init_System_IO___hyg_2859_; x_19 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_19, 0, x_17); lean_ctor_set(x_19, 1, x_18); @@ -6374,7 +5872,7 @@ return x_22; block_30: { lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_28; lean_object* x_29; -x_25 = l_IO_FS_reprFileType___closed__7____x40_Init_System_IO___hyg_2913_; +x_25 = l_IO_FS_reprFileType___closed__7____x40_Init_System_IO___hyg_2859_; x_26 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); @@ -6387,12 +5885,12 @@ return x_29; } } } -LEAN_EXPORT lean_object* l_IO_FS_reprFileType____x40_Init_System_IO___hyg_2913____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_IO_FS_reprFileType____x40_Init_System_IO___hyg_2859____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; x_3 = lean_unbox(x_1); -x_4 = l_IO_FS_reprFileType____x40_Init_System_IO___hyg_2913_(x_3, x_2); +x_4 = l_IO_FS_reprFileType____x40_Init_System_IO___hyg_2859_(x_3, x_2); lean_dec(x_2); return x_4; } @@ -6401,7 +5899,7 @@ static lean_object* _init_l_IO_FS_instReprFileType___closed__0() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_IO_FS_reprFileType____x40_Init_System_IO___hyg_2913____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l_IO_FS_reprFileType____x40_Init_System_IO___hyg_2859____boxed), 2, 0); return x_1; } } @@ -6413,7 +5911,7 @@ x_1 = l_IO_FS_instReprFileType___closed__0; return x_1; } } -LEAN_EXPORT uint8_t l_IO_FS_beqFileType____x40_Init_System_IO___hyg_3061_(uint8_t x_1, uint8_t x_2) { +LEAN_EXPORT uint8_t l_IO_FS_beqFileType____x40_Init_System_IO___hyg_3007_(uint8_t x_1, uint8_t x_2) { _start: { lean_object* x_3; lean_object* x_4; uint8_t x_5; @@ -6425,13 +5923,13 @@ lean_dec(x_3); return x_5; } } -LEAN_EXPORT lean_object* l_IO_FS_beqFileType____x40_Init_System_IO___hyg_3061____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_IO_FS_beqFileType____x40_Init_System_IO___hyg_3007____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; uint8_t x_4; uint8_t x_5; lean_object* x_6; x_3 = lean_unbox(x_1); x_4 = lean_unbox(x_2); -x_5 = l_IO_FS_beqFileType____x40_Init_System_IO___hyg_3061_(x_3, x_4); +x_5 = l_IO_FS_beqFileType____x40_Init_System_IO___hyg_3007_(x_3, x_4); x_6 = lean_box(x_5); return x_6; } @@ -6440,7 +5938,7 @@ static lean_object* _init_l_IO_FS_instBEqFileType___closed__0() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_IO_FS_beqFileType____x40_Init_System_IO___hyg_3061____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l_IO_FS_beqFileType____x40_Init_System_IO___hyg_3007____boxed), 2, 0); return x_1; } } @@ -6452,7 +5950,7 @@ x_1 = l_IO_FS_instBEqFileType___closed__0; return x_1; } } -static lean_object* _init_l_IO_FS_reprSystemTime___redArg___closed__0____x40_Init_System_IO___hyg_3102_() { +static lean_object* _init_l_IO_FS_reprSystemTime___redArg___closed__0____x40_Init_System_IO___hyg_3048_() { _start: { lean_object* x_1; @@ -6460,21 +5958,21 @@ x_1 = lean_mk_string_unchecked("sec", 3, 3); return x_1; } } -static lean_object* _init_l_IO_FS_reprSystemTime___redArg___closed__1____x40_Init_System_IO___hyg_3102_() { +static lean_object* _init_l_IO_FS_reprSystemTime___redArg___closed__1____x40_Init_System_IO___hyg_3048_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_IO_FS_reprSystemTime___redArg___closed__0____x40_Init_System_IO___hyg_3102_; +x_1 = l_IO_FS_reprSystemTime___redArg___closed__0____x40_Init_System_IO___hyg_3048_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_IO_FS_reprSystemTime___redArg___closed__2____x40_Init_System_IO___hyg_3102_() { +static lean_object* _init_l_IO_FS_reprSystemTime___redArg___closed__2____x40_Init_System_IO___hyg_3048_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_IO_FS_reprSystemTime___redArg___closed__1____x40_Init_System_IO___hyg_3102_; +x_1 = l_IO_FS_reprSystemTime___redArg___closed__1____x40_Init_System_IO___hyg_3048_; x_2 = lean_box(0); x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_2); @@ -6482,19 +5980,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_IO_FS_reprSystemTime___redArg___closed__3____x40_Init_System_IO___hyg_3102_() { +static lean_object* _init_l_IO_FS_reprSystemTime___redArg___closed__3____x40_Init_System_IO___hyg_3048_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2835_; -x_2 = l_IO_FS_reprSystemTime___redArg___closed__2____x40_Init_System_IO___hyg_3102_; +x_1 = l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2781_; +x_2 = l_IO_FS_reprSystemTime___redArg___closed__2____x40_Init_System_IO___hyg_3048_; x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_IO_FS_reprSystemTime___redArg___closed__4____x40_Init_System_IO___hyg_3102_() { +static lean_object* _init_l_IO_FS_reprSystemTime___redArg___closed__4____x40_Init_System_IO___hyg_3048_() { _start: { lean_object* x_1; lean_object* x_2; @@ -6503,7 +6001,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l_IO_FS_reprSystemTime___redArg___closed__5____x40_Init_System_IO___hyg_3102_() { +static lean_object* _init_l_IO_FS_reprSystemTime___redArg___closed__5____x40_Init_System_IO___hyg_3048_() { _start: { lean_object* x_1; @@ -6511,17 +6009,17 @@ x_1 = lean_mk_string_unchecked("nsec", 4, 4); return x_1; } } -static lean_object* _init_l_IO_FS_reprSystemTime___redArg___closed__6____x40_Init_System_IO___hyg_3102_() { +static lean_object* _init_l_IO_FS_reprSystemTime___redArg___closed__6____x40_Init_System_IO___hyg_3048_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_IO_FS_reprSystemTime___redArg___closed__5____x40_Init_System_IO___hyg_3102_; +x_1 = l_IO_FS_reprSystemTime___redArg___closed__5____x40_Init_System_IO___hyg_3048_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_IO_FS_reprSystemTime___redArg___closed__7____x40_Init_System_IO___hyg_3102_() { +static lean_object* _init_l_IO_FS_reprSystemTime___redArg___closed__7____x40_Init_System_IO___hyg_3048_() { _start: { lean_object* x_1; lean_object* x_2; @@ -6530,17 +6028,17 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3102_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3048_(lean_object* x_1) { _start: { lean_object* x_2; uint32_t x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_34; lean_object* x_35; uint8_t x_36; x_2 = lean_ctor_get(x_1, 0); x_3 = lean_ctor_get_uint32(x_1, sizeof(void*)*1); -x_4 = l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2835_; -x_5 = l_IO_FS_reprSystemTime___redArg___closed__3____x40_Init_System_IO___hyg_3102_; -x_6 = l_IO_FS_reprSystemTime___redArg___closed__4____x40_Init_System_IO___hyg_3102_; +x_4 = l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2781_; +x_5 = l_IO_FS_reprSystemTime___redArg___closed__3____x40_Init_System_IO___hyg_3048_; +x_6 = l_IO_FS_reprSystemTime___redArg___closed__4____x40_Init_System_IO___hyg_3048_; x_34 = lean_unsigned_to_nat(0u); -x_35 = l_IO_FS_reprSystemTime___redArg___closed__7____x40_Init_System_IO___hyg_3102_; +x_35 = l_IO_FS_reprSystemTime___redArg___closed__7____x40_Init_System_IO___hyg_3048_; x_36 = lean_int_dec_lt(x_2, x_35); if (x_36 == 0) { @@ -6574,7 +6072,7 @@ lean_ctor_set_uint8(x_10, sizeof(void*)*1, x_9); x_11 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_11, 0, x_5); lean_ctor_set(x_11, 1, x_10); -x_12 = l_IO_FS_reprDirEntry___redArg___closed__11____x40_Init_System_IO___hyg_2835_; +x_12 = l_IO_FS_reprDirEntry___redArg___closed__11____x40_Init_System_IO___hyg_2781_; x_13 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_13, 0, x_11); lean_ctor_set(x_13, 1, x_12); @@ -6582,14 +6080,14 @@ x_14 = lean_box(1); x_15 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_15, 0, x_13); lean_ctor_set(x_15, 1, x_14); -x_16 = l_IO_FS_reprSystemTime___redArg___closed__6____x40_Init_System_IO___hyg_3102_; +x_16 = l_IO_FS_reprSystemTime___redArg___closed__6____x40_Init_System_IO___hyg_3048_; x_17 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_17, 0, x_15); lean_ctor_set(x_17, 1, x_16); x_18 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_18, 0, x_17); lean_ctor_set(x_18, 1, x_4); -x_19 = l_IO_FS_reprDirEntry___redArg___closed__7____x40_Init_System_IO___hyg_2835_; +x_19 = l_IO_FS_reprDirEntry___redArg___closed__7____x40_Init_System_IO___hyg_2781_; x_20 = lean_uint32_to_nat(x_3); x_21 = l_Nat_reprFast(x_20); x_22 = lean_alloc_ctor(3, 1, 0); @@ -6604,11 +6102,11 @@ x_25 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_25, 0, x_18); lean_ctor_set(x_25, 1, x_24); x_26 = l_IO_reprTaskState___closed__6____x40_Init_System_IO___hyg_1437_; -x_27 = l_IO_FS_reprDirEntry___redArg___closed__16____x40_Init_System_IO___hyg_2835_; +x_27 = l_IO_FS_reprDirEntry___redArg___closed__16____x40_Init_System_IO___hyg_2781_; x_28 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_25); -x_29 = l_IO_FS_reprDirEntry___redArg___closed__17____x40_Init_System_IO___hyg_2835_; +x_29 = l_IO_FS_reprDirEntry___redArg___closed__17____x40_Init_System_IO___hyg_2781_; x_30 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_30, 0, x_28); lean_ctor_set(x_30, 1, x_29); @@ -6622,28 +6120,28 @@ return x_32; } } } -LEAN_EXPORT lean_object* l_IO_FS_reprSystemTime____x40_Init_System_IO___hyg_3102_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_IO_FS_reprSystemTime____x40_Init_System_IO___hyg_3048_(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3102_(x_1); +x_3 = l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3048_(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3102____boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3048____boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3102_(x_1); +x_2 = l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3048_(x_1); lean_dec_ref(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_IO_FS_reprSystemTime____x40_Init_System_IO___hyg_3102____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_IO_FS_reprSystemTime____x40_Init_System_IO___hyg_3048____boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_IO_FS_reprSystemTime____x40_Init_System_IO___hyg_3102_(x_1, x_2); +x_3 = l_IO_FS_reprSystemTime____x40_Init_System_IO___hyg_3048_(x_1, x_2); lean_dec(x_2); lean_dec_ref(x_1); return x_3; @@ -6653,7 +6151,7 @@ static lean_object* _init_l_IO_FS_instReprSystemTime___closed__0() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_IO_FS_reprSystemTime____x40_Init_System_IO___hyg_3102____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l_IO_FS_reprSystemTime____x40_Init_System_IO___hyg_3048____boxed), 2, 0); return x_1; } } @@ -6665,7 +6163,7 @@ x_1 = l_IO_FS_instReprSystemTime___closed__0; return x_1; } } -LEAN_EXPORT uint8_t l_IO_FS_beqSystemTime____x40_Init_System_IO___hyg_3160_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l_IO_FS_beqSystemTime____x40_Init_System_IO___hyg_3106_(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint32_t x_4; lean_object* x_5; uint32_t x_6; uint8_t x_7; @@ -6686,11 +6184,11 @@ return x_8; } } } -LEAN_EXPORT lean_object* l_IO_FS_beqSystemTime____x40_Init_System_IO___hyg_3160____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_IO_FS_beqSystemTime____x40_Init_System_IO___hyg_3106____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_IO_FS_beqSystemTime____x40_Init_System_IO___hyg_3160_(x_1, x_2); +x_3 = l_IO_FS_beqSystemTime____x40_Init_System_IO___hyg_3106_(x_1, x_2); lean_dec_ref(x_2); lean_dec_ref(x_1); x_4 = lean_box(x_3); @@ -6701,7 +6199,7 @@ static lean_object* _init_l_IO_FS_instBEqSystemTime___closed__0() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_IO_FS_beqSystemTime____x40_Init_System_IO___hyg_3160____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l_IO_FS_beqSystemTime____x40_Init_System_IO___hyg_3106____boxed), 2, 0); return x_1; } } @@ -6713,7 +6211,7 @@ x_1 = l_IO_FS_instBEqSystemTime___closed__0; return x_1; } } -LEAN_EXPORT uint8_t l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180_(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint32_t x_4; lean_object* x_5; uint32_t x_6; uint8_t x_7; @@ -6769,11 +6267,11 @@ return x_15; } } } -LEAN_EXPORT lean_object* l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234_(x_1, x_2); +x_3 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180_(x_1, x_2); lean_dec_ref(x_2); lean_dec_ref(x_1); x_4 = lean_box(x_3); @@ -6784,7 +6282,7 @@ static lean_object* _init_l_IO_FS_instOrdSystemTime___closed__0() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180____boxed), 2, 0); return x_1; } } @@ -6810,7 +6308,7 @@ _start: { uint32_t x_1; lean_object* x_2; lean_object* x_3; x_1 = l_IO_FS_instInhabitedSystemTime___closed__0; -x_2 = l_IO_FS_reprSystemTime___redArg___closed__7____x40_Init_System_IO___hyg_3102_; +x_2 = l_IO_FS_reprSystemTime___redArg___closed__7____x40_Init_System_IO___hyg_3048_; x_3 = lean_alloc_ctor(0, 1, 4); lean_ctor_set(x_3, 0, x_2); lean_ctor_set_uint32(x_3, sizeof(void*)*1, x_1); @@ -6841,7 +6339,7 @@ x_1 = lean_box(0); return x_1; } } -static lean_object* _init_l_IO_FS_reprMetadata___redArg___closed__0____x40_Init_System_IO___hyg_3362_() { +static lean_object* _init_l_IO_FS_reprMetadata___redArg___closed__0____x40_Init_System_IO___hyg_3308_() { _start: { lean_object* x_1; @@ -6849,21 +6347,21 @@ x_1 = lean_mk_string_unchecked("accessed", 8, 8); return x_1; } } -static lean_object* _init_l_IO_FS_reprMetadata___redArg___closed__1____x40_Init_System_IO___hyg_3362_() { +static lean_object* _init_l_IO_FS_reprMetadata___redArg___closed__1____x40_Init_System_IO___hyg_3308_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_IO_FS_reprMetadata___redArg___closed__0____x40_Init_System_IO___hyg_3362_; +x_1 = l_IO_FS_reprMetadata___redArg___closed__0____x40_Init_System_IO___hyg_3308_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_IO_FS_reprMetadata___redArg___closed__2____x40_Init_System_IO___hyg_3362_() { +static lean_object* _init_l_IO_FS_reprMetadata___redArg___closed__2____x40_Init_System_IO___hyg_3308_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_IO_FS_reprMetadata___redArg___closed__1____x40_Init_System_IO___hyg_3362_; +x_1 = l_IO_FS_reprMetadata___redArg___closed__1____x40_Init_System_IO___hyg_3308_; x_2 = lean_box(0); x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_2); @@ -6871,19 +6369,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_IO_FS_reprMetadata___redArg___closed__3____x40_Init_System_IO___hyg_3362_() { +static lean_object* _init_l_IO_FS_reprMetadata___redArg___closed__3____x40_Init_System_IO___hyg_3308_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2835_; -x_2 = l_IO_FS_reprMetadata___redArg___closed__2____x40_Init_System_IO___hyg_3362_; +x_1 = l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2781_; +x_2 = l_IO_FS_reprMetadata___redArg___closed__2____x40_Init_System_IO___hyg_3308_; x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_IO_FS_reprMetadata___redArg___closed__4____x40_Init_System_IO___hyg_3362_() { +static lean_object* _init_l_IO_FS_reprMetadata___redArg___closed__4____x40_Init_System_IO___hyg_3308_() { _start: { lean_object* x_1; @@ -6891,17 +6389,17 @@ x_1 = lean_mk_string_unchecked("modified", 8, 8); return x_1; } } -static lean_object* _init_l_IO_FS_reprMetadata___redArg___closed__5____x40_Init_System_IO___hyg_3362_() { +static lean_object* _init_l_IO_FS_reprMetadata___redArg___closed__5____x40_Init_System_IO___hyg_3308_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_IO_FS_reprMetadata___redArg___closed__4____x40_Init_System_IO___hyg_3362_; +x_1 = l_IO_FS_reprMetadata___redArg___closed__4____x40_Init_System_IO___hyg_3308_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_IO_FS_reprMetadata___redArg___closed__6____x40_Init_System_IO___hyg_3362_() { +static lean_object* _init_l_IO_FS_reprMetadata___redArg___closed__6____x40_Init_System_IO___hyg_3308_() { _start: { lean_object* x_1; @@ -6909,17 +6407,17 @@ x_1 = lean_mk_string_unchecked("byteSize", 8, 8); return x_1; } } -static lean_object* _init_l_IO_FS_reprMetadata___redArg___closed__7____x40_Init_System_IO___hyg_3362_() { +static lean_object* _init_l_IO_FS_reprMetadata___redArg___closed__7____x40_Init_System_IO___hyg_3308_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_IO_FS_reprMetadata___redArg___closed__6____x40_Init_System_IO___hyg_3362_; +x_1 = l_IO_FS_reprMetadata___redArg___closed__6____x40_Init_System_IO___hyg_3308_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_IO_FS_reprMetadata___redArg___closed__8____x40_Init_System_IO___hyg_3362_() { +static lean_object* _init_l_IO_FS_reprMetadata___redArg___closed__8____x40_Init_System_IO___hyg_3308_() { _start: { lean_object* x_1; @@ -6927,17 +6425,17 @@ x_1 = lean_mk_string_unchecked("type", 4, 4); return x_1; } } -static lean_object* _init_l_IO_FS_reprMetadata___redArg___closed__9____x40_Init_System_IO___hyg_3362_() { +static lean_object* _init_l_IO_FS_reprMetadata___redArg___closed__9____x40_Init_System_IO___hyg_3308_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_IO_FS_reprMetadata___redArg___closed__8____x40_Init_System_IO___hyg_3362_; +x_1 = l_IO_FS_reprMetadata___redArg___closed__8____x40_Init_System_IO___hyg_3308_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_IO_FS_reprMetadata___redArg____x40_Init_System_IO___hyg_3362_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_IO_FS_reprMetadata___redArg____x40_Init_System_IO___hyg_3308_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint64_t x_4; uint8_t 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; uint8_t x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; @@ -6945,11 +6443,11 @@ x_2 = lean_ctor_get(x_1, 0); x_3 = lean_ctor_get(x_1, 1); x_4 = lean_ctor_get_uint64(x_1, sizeof(void*)*2); x_5 = lean_ctor_get_uint8(x_1, sizeof(void*)*2 + 8); -x_6 = l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2835_; -x_7 = l_IO_FS_reprMetadata___redArg___closed__3____x40_Init_System_IO___hyg_3362_; -x_8 = l_IO_FS_reprDirEntry___redArg___closed__14____x40_Init_System_IO___hyg_2835_; +x_6 = l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2781_; +x_7 = l_IO_FS_reprMetadata___redArg___closed__3____x40_Init_System_IO___hyg_3308_; +x_8 = l_IO_FS_reprDirEntry___redArg___closed__14____x40_Init_System_IO___hyg_2781_; x_9 = lean_unsigned_to_nat(0u); -x_10 = l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3102_(x_2); +x_10 = l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3048_(x_2); x_11 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_11, 0, x_8); lean_ctor_set(x_11, 1, x_10); @@ -6960,7 +6458,7 @@ lean_ctor_set_uint8(x_13, sizeof(void*)*1, x_12); x_14 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_14, 0, x_7); lean_ctor_set(x_14, 1, x_13); -x_15 = l_IO_FS_reprDirEntry___redArg___closed__11____x40_Init_System_IO___hyg_2835_; +x_15 = l_IO_FS_reprDirEntry___redArg___closed__11____x40_Init_System_IO___hyg_2781_; x_16 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_16, 0, x_14); lean_ctor_set(x_16, 1, x_15); @@ -6968,14 +6466,14 @@ x_17 = lean_box(1); x_18 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_18, 0, x_16); lean_ctor_set(x_18, 1, x_17); -x_19 = l_IO_FS_reprMetadata___redArg___closed__5____x40_Init_System_IO___hyg_3362_; +x_19 = l_IO_FS_reprMetadata___redArg___closed__5____x40_Init_System_IO___hyg_3308_; x_20 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_20, 0, x_18); lean_ctor_set(x_20, 1, x_19); x_21 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_6); -x_22 = l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3102_(x_3); +x_22 = l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3048_(x_3); x_23 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_23, 0, x_8); lean_ctor_set(x_23, 1, x_22); @@ -6991,7 +6489,7 @@ lean_ctor_set(x_26, 1, x_15); x_27 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_27, 0, x_26); lean_ctor_set(x_27, 1, x_17); -x_28 = l_IO_FS_reprMetadata___redArg___closed__7____x40_Init_System_IO___hyg_3362_; +x_28 = l_IO_FS_reprMetadata___redArg___closed__7____x40_Init_System_IO___hyg_3308_; x_29 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_29, 0, x_27); lean_ctor_set(x_29, 1, x_28); @@ -7017,15 +6515,15 @@ lean_ctor_set(x_37, 1, x_15); x_38 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_38, 0, x_37); lean_ctor_set(x_38, 1, x_17); -x_39 = l_IO_FS_reprMetadata___redArg___closed__9____x40_Init_System_IO___hyg_3362_; +x_39 = l_IO_FS_reprMetadata___redArg___closed__9____x40_Init_System_IO___hyg_3308_; x_40 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_40, 0, x_38); lean_ctor_set(x_40, 1, x_39); x_41 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_6); -x_42 = l_IO_FS_reprDirEntry___redArg___closed__7____x40_Init_System_IO___hyg_2835_; -x_43 = l_IO_FS_reprFileType____x40_Init_System_IO___hyg_2913_(x_5, x_9); +x_42 = l_IO_FS_reprDirEntry___redArg___closed__7____x40_Init_System_IO___hyg_2781_; +x_43 = l_IO_FS_reprFileType____x40_Init_System_IO___hyg_2859_(x_5, x_9); x_44 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_44, 0, x_42); lean_ctor_set(x_44, 1, x_43); @@ -7036,11 +6534,11 @@ x_46 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_46, 0, x_41); lean_ctor_set(x_46, 1, x_45); x_47 = l_IO_reprTaskState___closed__6____x40_Init_System_IO___hyg_1437_; -x_48 = l_IO_FS_reprDirEntry___redArg___closed__16____x40_Init_System_IO___hyg_2835_; +x_48 = l_IO_FS_reprDirEntry___redArg___closed__16____x40_Init_System_IO___hyg_2781_; x_49 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_46); -x_50 = l_IO_FS_reprDirEntry___redArg___closed__17____x40_Init_System_IO___hyg_2835_; +x_50 = l_IO_FS_reprDirEntry___redArg___closed__17____x40_Init_System_IO___hyg_2781_; x_51 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_51, 0, x_49); lean_ctor_set(x_51, 1, x_50); @@ -7053,28 +6551,28 @@ lean_ctor_set_uint8(x_53, sizeof(void*)*1, x_12); return x_53; } } -LEAN_EXPORT lean_object* l_IO_FS_reprMetadata____x40_Init_System_IO___hyg_3362_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_IO_FS_reprMetadata____x40_Init_System_IO___hyg_3308_(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_IO_FS_reprMetadata___redArg____x40_Init_System_IO___hyg_3362_(x_1); +x_3 = l_IO_FS_reprMetadata___redArg____x40_Init_System_IO___hyg_3308_(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_IO_FS_reprMetadata___redArg____x40_Init_System_IO___hyg_3362____boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_IO_FS_reprMetadata___redArg____x40_Init_System_IO___hyg_3308____boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_IO_FS_reprMetadata___redArg____x40_Init_System_IO___hyg_3362_(x_1); +x_2 = l_IO_FS_reprMetadata___redArg____x40_Init_System_IO___hyg_3308_(x_1); lean_dec_ref(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_IO_FS_reprMetadata____x40_Init_System_IO___hyg_3362____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_IO_FS_reprMetadata____x40_Init_System_IO___hyg_3308____boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_IO_FS_reprMetadata____x40_Init_System_IO___hyg_3362_(x_1, x_2); +x_3 = l_IO_FS_reprMetadata____x40_Init_System_IO___hyg_3308_(x_1, x_2); lean_dec(x_2); lean_dec_ref(x_1); return x_3; @@ -7084,7 +6582,7 @@ static lean_object* _init_l_IO_FS_instReprMetadata___closed__0() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_IO_FS_reprMetadata____x40_Init_System_IO___hyg_3362____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l_IO_FS_reprMetadata____x40_Init_System_IO___hyg_3308____boxed), 2, 0); return x_1; } } @@ -7139,7 +6637,7 @@ x_5 = lean_ctor_get(x_3, 0); x_6 = lean_ctor_get_uint8(x_5, sizeof(void*)*2 + 8); lean_dec(x_5); x_7 = 0; -x_8 = l_IO_FS_beqFileType____x40_Init_System_IO___hyg_3061_(x_6, x_7); +x_8 = l_IO_FS_beqFileType____x40_Init_System_IO___hyg_3007_(x_6, x_7); x_9 = lean_box(x_8); lean_ctor_set(x_3, 0, x_9); return x_3; @@ -7155,7 +6653,7 @@ lean_dec(x_3); x_12 = lean_ctor_get_uint8(x_10, sizeof(void*)*2 + 8); lean_dec(x_10); x_13 = 0; -x_14 = l_IO_FS_beqFileType____x40_Init_System_IO___hyg_3061_(x_12, x_13); +x_14 = l_IO_FS_beqFileType____x40_Init_System_IO___hyg_3007_(x_12, x_13); x_15 = lean_box(x_14); x_16 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_16, 0, x_15); @@ -8708,7 +8206,7 @@ lean_dec_ref(x_17); x_20 = lean_ctor_get_uint8(x_18, sizeof(void*)*2 + 8); lean_dec(x_18); x_21 = 0; -x_22 = l_IO_FS_beqFileType____x40_Init_System_IO___hyg_3061_(x_20, x_21); +x_22 = l_IO_FS_beqFileType____x40_Init_System_IO___hyg_3007_(x_20, x_21); if (x_22 == 0) { lean_object* x_23; @@ -10102,8 +9600,8 @@ goto block_19; block_7: { uint32_t x_5; uint32_t x_6; -x_5 = lean_uint32_lor(x_3, x_4); -x_6 = lean_uint32_lor(x_2, x_5); +x_5 = lean_uint32_lor(x_2, x_4); +x_6 = lean_uint32_lor(x_3, x_5); return x_6; } block_15: @@ -10112,8 +9610,8 @@ if (x_10 == 0) { uint32_t x_13; x_13 = 0; -x_2 = x_11; -x_3 = x_12; +x_2 = x_12; +x_3 = x_11; x_4 = x_13; goto block_7; } @@ -10121,8 +9619,8 @@ else { uint32_t x_14; x_14 = 1; -x_2 = x_11; -x_3 = x_12; +x_2 = x_12; +x_3 = x_11; x_4 = x_14; goto block_7; } @@ -11858,23 +11356,47 @@ static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("typeAscription", 14, 14); +x_1 = lean_mk_string_unchecked("Lean", 4, 4); return x_1; } } static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__3() { _start: { +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Parser", 6, 6); +return x_1; +} +} +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Term", 4, 4); +return x_1; +} +} +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("typeAscription", 14, 14); +return x_1; +} +} +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__6() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__2; -x_2 = l___auto___closed__14____x40_Init_System_IO___hyg_1906_; -x_3 = l___auto___closed__1____x40_Init_System_IO___hyg_1906_; -x_4 = l___auto___closed__0____x40_Init_System_IO___hyg_1906_; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__5; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__4; +x_3 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__3; +x_4 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__2; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__4() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__7() { _start: { lean_object* x_1; @@ -11882,19 +11404,19 @@ x_1 = lean_mk_string_unchecked("hygienicLParen", 14, 14); return x_1; } } -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__5() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__4; -x_2 = l___auto___closed__14____x40_Init_System_IO___hyg_1906_; -x_3 = l___auto___closed__1____x40_Init_System_IO___hyg_1906_; -x_4 = l___auto___closed__0____x40_Init_System_IO___hyg_1906_; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__7; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__4; +x_3 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__3; +x_4 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__2; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__6() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__9() { _start: { lean_object* x_1; @@ -11902,7 +11424,7 @@ x_1 = lean_mk_string_unchecked("(", 1, 1); return x_1; } } -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__7() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__10() { _start: { lean_object* x_1; @@ -11910,16 +11432,16 @@ x_1 = lean_mk_string_unchecked("hygieneInfo", 11, 11); return x_1; } } -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__8() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__7; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__10; x_2 = l_Lean_Name_mkStr1(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__9() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; @@ -11928,38 +11450,11 @@ x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_box(0); -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__11() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("System", 6, 6); -return x_1; -} -} -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__11; -x_2 = l_Lean_Name_mkStr1(x_1); -return x_2; -} -} static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__12; +x_1 = lean_box(0); x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -11968,8 +11463,47 @@ return x_2; static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__14() { _start: { +lean_object* x_1; +x_1 = lean_mk_string_unchecked("System", 6, 6); +return x_1; +} +} +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__14; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__15; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__17() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__16; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__17; x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__13; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); @@ -11977,19 +11511,27 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__15() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__19() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__14; -x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__10; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_unchecked("app", 3, 3); +return x_1; } } -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__16() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__19; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__4; +x_3 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__3; +x_4 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__2; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__21() { _start: { lean_object* x_1; @@ -11997,16 +11539,16 @@ x_1 = lean_mk_string_unchecked("IO.println", 10, 10); return x_1; } } -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__17() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__22() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__16; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__21; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__18() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__23() { _start: { lean_object* x_1; @@ -12014,7 +11556,7 @@ x_1 = lean_mk_string_unchecked("IO", 2, 2); return x_1; } } -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__19() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__24() { _start: { lean_object* x_1; @@ -12022,64 +11564,14 @@ x_1 = lean_mk_string_unchecked("println", 7, 7); return x_1; } } -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__20() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__19; -x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__18; -x_3 = l_Lean_Name_mkStr2(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__21() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__20; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__22() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__21; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__23() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked(":", 1, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__24() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__18; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__25() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__18; -x_2 = l_Lean_Name_mkStr1(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__24; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__23; +x_3 = l_Lean_Name_mkStr2(x_2, x_1); +return x_3; } } static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__26() { @@ -12097,30 +11589,8 @@ return x_3; static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__27() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__25; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__28() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__27; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__29() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__28; x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__26; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); @@ -12128,11 +11598,28 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__28() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("null", 4, 4); +return x_1; +} +} +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__29() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__28; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__30() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("Unit", 4, 4); +x_1 = lean_mk_string_unchecked(":", 1, 1); return x_1; } } @@ -12140,7 +11627,7 @@ static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__30; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__23; x_2 = l_String_toSubstring_x27(x_1); return x_2; } @@ -12149,7 +11636,7 @@ static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__30; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__23; x_2 = l_Lean_Name_mkStr1(x_1); return x_2; } @@ -12204,31 +11691,103 @@ static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked(")", 1, 1); +x_1 = lean_mk_string_unchecked("Unit", 4, 4); return x_1; } } static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__38() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__37; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__39() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__37; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__40() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__39; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__41() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__39; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__42() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__41; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__43() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__42; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__40; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__44() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(")", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__45() { +_start: +{ lean_object* x_1; x_1 = lean_mk_string_unchecked("paren", 5, 5); return x_1; } } -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__39() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__46() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__38; -x_2 = l___auto___closed__14____x40_Init_System_IO___hyg_1906_; -x_3 = l___auto___closed__1____x40_Init_System_IO___hyg_1906_; -x_4 = l___auto___closed__0____x40_Init_System_IO___hyg_1906_; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__45; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__4; +x_3 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__3; +x_4 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__2; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__40() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__47() { _start: { lean_object* x_1; @@ -12236,16 +11795,16 @@ x_1 = lean_mk_string_unchecked("termS!_", 7, 7); return x_1; } } -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__41() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__48() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__40; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__47; x_2 = l_Lean_Name_mkStr1(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__42() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__49() { _start: { lean_object* x_1; @@ -12292,20 +11851,20 @@ lean_inc(x_14); lean_dec_ref(x_2); x_15 = l_Lean_SourceInfo_fromRef(x_14, x_11); lean_dec(x_14); -x_16 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__3; -x_17 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__5; -x_18 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__6; +x_16 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__6; +x_17 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__8; +x_18 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__9; lean_inc(x_15); x_19 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_19, 0, x_15); lean_ctor_set(x_19, 1, x_18); -x_20 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__8; -x_21 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__9; +x_20 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__11; +x_21 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__12; x_22 = lean_box(0); lean_inc(x_13); lean_inc(x_12); x_23 = l_Lean_addMacroScope(x_12, x_22, x_13); -x_24 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__15; +x_24 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__18; lean_inc(x_15); x_25 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_25, 0, x_15); @@ -12316,45 +11875,45 @@ lean_inc(x_15); x_26 = l_Lean_Syntax_node1(x_15, x_20, x_25); lean_inc(x_15); x_27 = l_Lean_Syntax_node2(x_15, x_17, x_19, x_26); -x_28 = l___auto___closed__16____x40_Init_System_IO___hyg_1906_; -x_29 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__17; -x_30 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__20; +x_28 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__20; +x_29 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__22; +x_30 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__25; lean_inc(x_13); lean_inc(x_12); x_31 = l_Lean_addMacroScope(x_12, x_30, x_13); -x_32 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__22; +x_32 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__27; lean_inc(x_15); x_33 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_33, 0, x_15); lean_ctor_set(x_33, 1, x_29); lean_ctor_set(x_33, 2, x_31); lean_ctor_set(x_33, 3, x_32); -x_34 = l___auto___closed__9____x40_Init_System_IO___hyg_1906_; +x_34 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__29; lean_inc(x_15); x_35 = l_Lean_Syntax_node1(x_15, x_34, x_9); lean_inc(x_15); x_36 = l_Lean_Syntax_node2(x_15, x_28, x_33, x_35); -x_37 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__23; +x_37 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__30; lean_inc(x_15); x_38 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_38, 0, x_15); lean_ctor_set(x_38, 1, x_37); -x_39 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__24; -x_40 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__25; +x_39 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__31; +x_40 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__32; lean_inc(x_13); lean_inc(x_12); x_41 = l_Lean_addMacroScope(x_12, x_40, x_13); -x_42 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__29; +x_42 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__36; lean_inc(x_15); x_43 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_43, 0, x_15); lean_ctor_set(x_43, 1, x_39); lean_ctor_set(x_43, 2, x_41); lean_ctor_set(x_43, 3, x_42); -x_44 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__31; -x_45 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__32; +x_44 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__38; +x_45 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__39; x_46 = l_Lean_addMacroScope(x_12, x_45, x_13); -x_47 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__36; +x_47 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__43; lean_inc(x_15); x_48 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_48, 0, x_15); @@ -12367,7 +11926,7 @@ lean_inc(x_15); x_50 = l_Lean_Syntax_node2(x_15, x_28, x_43, x_49); lean_inc(x_15); x_51 = l_Lean_Syntax_node1(x_15, x_34, x_50); -x_52 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__37; +x_52 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__44; lean_inc(x_15); x_53 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_53, 0, x_15); @@ -12391,20 +11950,20 @@ lean_dec_ref(x_2); x_59 = 0; x_60 = l_Lean_SourceInfo_fromRef(x_58, x_59); lean_dec(x_58); -x_61 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__3; -x_62 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__5; -x_63 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__6; +x_61 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__6; +x_62 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__8; +x_63 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__9; lean_inc(x_60); x_64 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_64, 0, x_60); lean_ctor_set(x_64, 1, x_63); -x_65 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__8; -x_66 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__9; +x_65 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__11; +x_66 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__12; x_67 = lean_box(0); lean_inc(x_57); lean_inc(x_56); x_68 = l_Lean_addMacroScope(x_56, x_67, x_57); -x_69 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__15; +x_69 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__18; lean_inc(x_60); x_70 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_70, 0, x_60); @@ -12415,30 +11974,30 @@ lean_inc(x_60); x_71 = l_Lean_Syntax_node1(x_60, x_65, x_70); lean_inc(x_60); x_72 = l_Lean_Syntax_node2(x_60, x_62, x_64, x_71); -x_73 = l___auto___closed__16____x40_Init_System_IO___hyg_1906_; -x_74 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__17; -x_75 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__20; +x_73 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__20; +x_74 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__22; +x_75 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__25; lean_inc(x_57); lean_inc(x_56); x_76 = l_Lean_addMacroScope(x_56, x_75, x_57); -x_77 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__22; +x_77 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__27; lean_inc(x_60); x_78 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_78, 0, x_60); lean_ctor_set(x_78, 1, x_74); lean_ctor_set(x_78, 2, x_76); lean_ctor_set(x_78, 3, x_77); -x_79 = l___auto___closed__9____x40_Init_System_IO___hyg_1906_; -x_80 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__39; -x_81 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__41; -x_82 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__42; +x_79 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__29; +x_80 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__46; +x_81 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__48; +x_82 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__49; lean_inc(x_60); x_83 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_83, 0, x_60); lean_ctor_set(x_83, 1, x_82); lean_inc(x_60); x_84 = l_Lean_Syntax_node2(x_60, x_81, x_83, x_9); -x_85 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__37; +x_85 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__44; lean_inc(x_60); x_86 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_86, 0, x_60); @@ -12451,27 +12010,27 @@ lean_inc(x_60); x_88 = l_Lean_Syntax_node1(x_60, x_79, x_87); lean_inc(x_60); x_89 = l_Lean_Syntax_node2(x_60, x_73, x_78, x_88); -x_90 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__23; +x_90 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__30; lean_inc(x_60); x_91 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_91, 0, x_60); lean_ctor_set(x_91, 1, x_90); -x_92 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__24; -x_93 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__25; +x_92 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__31; +x_93 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__32; lean_inc(x_57); lean_inc(x_56); x_94 = l_Lean_addMacroScope(x_56, x_93, x_57); -x_95 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__29; +x_95 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__36; lean_inc(x_60); x_96 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_96, 0, x_60); lean_ctor_set(x_96, 1, x_92); lean_ctor_set(x_96, 2, x_94); lean_ctor_set(x_96, 3, x_95); -x_97 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__31; -x_98 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__32; +x_97 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__38; +x_98 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__39; x_99 = l_Lean_addMacroScope(x_56, x_98, x_57); -x_100 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__36; +x_100 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__43; lean_inc(x_60); x_101 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_101, 0, x_60); @@ -12623,94 +12182,6 @@ l_IO_instToStringTaskState___closed__0 = _init_l_IO_instToStringTaskState___clos lean_mark_persistent(l_IO_instToStringTaskState___closed__0); l_IO_instToStringTaskState = _init_l_IO_instToStringTaskState(); lean_mark_persistent(l_IO_instToStringTaskState); -l___auto___closed__0____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__0____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__0____x40_Init_System_IO___hyg_1906_); -l___auto___closed__1____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__1____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__1____x40_Init_System_IO___hyg_1906_); -l___auto___closed__2____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__2____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__2____x40_Init_System_IO___hyg_1906_); -l___auto___closed__3____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__3____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__3____x40_Init_System_IO___hyg_1906_); -l___auto___closed__4____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__4____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__4____x40_Init_System_IO___hyg_1906_); -l___auto___closed__5____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__5____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__5____x40_Init_System_IO___hyg_1906_); -l___auto___closed__6____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__6____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__6____x40_Init_System_IO___hyg_1906_); -l___auto___closed__7____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__7____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__7____x40_Init_System_IO___hyg_1906_); -l___auto___closed__8____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__8____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__8____x40_Init_System_IO___hyg_1906_); -l___auto___closed__9____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__9____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__9____x40_Init_System_IO___hyg_1906_); -l___auto___closed__10____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__10____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__10____x40_Init_System_IO___hyg_1906_); -l___auto___closed__11____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__11____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__11____x40_Init_System_IO___hyg_1906_); -l___auto___closed__12____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__12____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__12____x40_Init_System_IO___hyg_1906_); -l___auto___closed__13____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__13____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__13____x40_Init_System_IO___hyg_1906_); -l___auto___closed__14____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__14____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__14____x40_Init_System_IO___hyg_1906_); -l___auto___closed__15____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__15____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__15____x40_Init_System_IO___hyg_1906_); -l___auto___closed__16____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__16____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__16____x40_Init_System_IO___hyg_1906_); -l___auto___closed__17____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__17____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__17____x40_Init_System_IO___hyg_1906_); -l___auto___closed__18____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__18____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__18____x40_Init_System_IO___hyg_1906_); -l___auto___closed__19____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__19____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__19____x40_Init_System_IO___hyg_1906_); -l___auto___closed__20____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__20____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__20____x40_Init_System_IO___hyg_1906_); -l___auto___closed__21____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__21____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__21____x40_Init_System_IO___hyg_1906_); -l___auto___closed__22____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__22____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__22____x40_Init_System_IO___hyg_1906_); -l___auto___closed__23____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__23____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__23____x40_Init_System_IO___hyg_1906_); -l___auto___closed__24____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__24____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__24____x40_Init_System_IO___hyg_1906_); -l___auto___closed__25____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__25____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__25____x40_Init_System_IO___hyg_1906_); -l___auto___closed__26____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__26____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__26____x40_Init_System_IO___hyg_1906_); -l___auto___closed__27____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__27____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__27____x40_Init_System_IO___hyg_1906_); -l___auto___closed__28____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__28____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__28____x40_Init_System_IO___hyg_1906_); -l___auto___closed__29____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__29____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__29____x40_Init_System_IO___hyg_1906_); -l___auto___closed__30____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__30____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__30____x40_Init_System_IO___hyg_1906_); -l___auto___closed__31____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__31____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__31____x40_Init_System_IO___hyg_1906_); -l___auto___closed__32____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__32____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__32____x40_Init_System_IO___hyg_1906_); -l___auto___closed__33____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__33____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__33____x40_Init_System_IO___hyg_1906_); -l___auto___closed__34____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__34____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__34____x40_Init_System_IO___hyg_1906_); -l___auto___closed__35____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__35____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__35____x40_Init_System_IO___hyg_1906_); -l___auto___closed__36____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__36____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__36____x40_Init_System_IO___hyg_1906_); -l___auto___closed__37____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__37____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__37____x40_Init_System_IO___hyg_1906_); -l___auto___closed__38____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__38____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__38____x40_Init_System_IO___hyg_1906_); -l___auto___closed__39____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__39____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__39____x40_Init_System_IO___hyg_1906_); -l___auto___closed__40____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__40____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__40____x40_Init_System_IO___hyg_1906_); -l___auto___closed__41____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__41____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__41____x40_Init_System_IO___hyg_1906_); -l___auto___closed__42____x40_Init_System_IO___hyg_1906_ = _init_l___auto___closed__42____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto___closed__42____x40_Init_System_IO___hyg_1906_); -l___auto____x40_Init_System_IO___hyg_1906_ = _init_l___auto____x40_Init_System_IO___hyg_1906_(); -lean_mark_persistent(l___auto____x40_Init_System_IO___hyg_1906_); l_IO_FS_Mode_noConfusion___redArg___closed__0 = _init_l_IO_FS_Mode_noConfusion___redArg___closed__0(); lean_mark_persistent(l_IO_FS_Mode_noConfusion___redArg___closed__0); l_IO_FS_instInhabitedStream___lam__0___closed__0 = _init_l_IO_FS_instInhabitedStream___lam__0___closed__0(); @@ -12727,62 +12198,62 @@ l_IO_FS_Handle_readToEnd___closed__1 = _init_l_IO_FS_Handle_readToEnd___closed__ lean_mark_persistent(l_IO_FS_Handle_readToEnd___closed__1); l_IO_FS_Handle_lines___closed__0 = _init_l_IO_FS_Handle_lines___closed__0(); lean_mark_persistent(l_IO_FS_Handle_lines___closed__0); -l_IO_FS_reprDirEntry___redArg___closed__0____x40_Init_System_IO___hyg_2835_ = _init_l_IO_FS_reprDirEntry___redArg___closed__0____x40_Init_System_IO___hyg_2835_(); -lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__0____x40_Init_System_IO___hyg_2835_); -l_IO_FS_reprDirEntry___redArg___closed__1____x40_Init_System_IO___hyg_2835_ = _init_l_IO_FS_reprDirEntry___redArg___closed__1____x40_Init_System_IO___hyg_2835_(); -lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__1____x40_Init_System_IO___hyg_2835_); -l_IO_FS_reprDirEntry___redArg___closed__2____x40_Init_System_IO___hyg_2835_ = _init_l_IO_FS_reprDirEntry___redArg___closed__2____x40_Init_System_IO___hyg_2835_(); -lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__2____x40_Init_System_IO___hyg_2835_); -l_IO_FS_reprDirEntry___redArg___closed__3____x40_Init_System_IO___hyg_2835_ = _init_l_IO_FS_reprDirEntry___redArg___closed__3____x40_Init_System_IO___hyg_2835_(); -lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__3____x40_Init_System_IO___hyg_2835_); -l_IO_FS_reprDirEntry___redArg___closed__4____x40_Init_System_IO___hyg_2835_ = _init_l_IO_FS_reprDirEntry___redArg___closed__4____x40_Init_System_IO___hyg_2835_(); -lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__4____x40_Init_System_IO___hyg_2835_); -l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2835_ = _init_l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2835_(); -lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2835_); -l_IO_FS_reprDirEntry___redArg___closed__6____x40_Init_System_IO___hyg_2835_ = _init_l_IO_FS_reprDirEntry___redArg___closed__6____x40_Init_System_IO___hyg_2835_(); -lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__6____x40_Init_System_IO___hyg_2835_); -l_IO_FS_reprDirEntry___redArg___closed__7____x40_Init_System_IO___hyg_2835_ = _init_l_IO_FS_reprDirEntry___redArg___closed__7____x40_Init_System_IO___hyg_2835_(); -lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__7____x40_Init_System_IO___hyg_2835_); -l_IO_FS_reprDirEntry___redArg___closed__8____x40_Init_System_IO___hyg_2835_ = _init_l_IO_FS_reprDirEntry___redArg___closed__8____x40_Init_System_IO___hyg_2835_(); -lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__8____x40_Init_System_IO___hyg_2835_); -l_IO_FS_reprDirEntry___redArg___closed__9____x40_Init_System_IO___hyg_2835_ = _init_l_IO_FS_reprDirEntry___redArg___closed__9____x40_Init_System_IO___hyg_2835_(); -lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__9____x40_Init_System_IO___hyg_2835_); -l_IO_FS_reprDirEntry___redArg___closed__10____x40_Init_System_IO___hyg_2835_ = _init_l_IO_FS_reprDirEntry___redArg___closed__10____x40_Init_System_IO___hyg_2835_(); -lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__10____x40_Init_System_IO___hyg_2835_); -l_IO_FS_reprDirEntry___redArg___closed__11____x40_Init_System_IO___hyg_2835_ = _init_l_IO_FS_reprDirEntry___redArg___closed__11____x40_Init_System_IO___hyg_2835_(); -lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__11____x40_Init_System_IO___hyg_2835_); -l_IO_FS_reprDirEntry___redArg___closed__12____x40_Init_System_IO___hyg_2835_ = _init_l_IO_FS_reprDirEntry___redArg___closed__12____x40_Init_System_IO___hyg_2835_(); -lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__12____x40_Init_System_IO___hyg_2835_); -l_IO_FS_reprDirEntry___redArg___closed__13____x40_Init_System_IO___hyg_2835_ = _init_l_IO_FS_reprDirEntry___redArg___closed__13____x40_Init_System_IO___hyg_2835_(); -lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__13____x40_Init_System_IO___hyg_2835_); -l_IO_FS_reprDirEntry___redArg___closed__14____x40_Init_System_IO___hyg_2835_ = _init_l_IO_FS_reprDirEntry___redArg___closed__14____x40_Init_System_IO___hyg_2835_(); -lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__14____x40_Init_System_IO___hyg_2835_); -l_IO_FS_reprDirEntry___redArg___closed__15____x40_Init_System_IO___hyg_2835_ = _init_l_IO_FS_reprDirEntry___redArg___closed__15____x40_Init_System_IO___hyg_2835_(); -lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__15____x40_Init_System_IO___hyg_2835_); -l_IO_FS_reprDirEntry___redArg___closed__16____x40_Init_System_IO___hyg_2835_ = _init_l_IO_FS_reprDirEntry___redArg___closed__16____x40_Init_System_IO___hyg_2835_(); -lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__16____x40_Init_System_IO___hyg_2835_); -l_IO_FS_reprDirEntry___redArg___closed__17____x40_Init_System_IO___hyg_2835_ = _init_l_IO_FS_reprDirEntry___redArg___closed__17____x40_Init_System_IO___hyg_2835_(); -lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__17____x40_Init_System_IO___hyg_2835_); +l_IO_FS_reprDirEntry___redArg___closed__0____x40_Init_System_IO___hyg_2781_ = _init_l_IO_FS_reprDirEntry___redArg___closed__0____x40_Init_System_IO___hyg_2781_(); +lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__0____x40_Init_System_IO___hyg_2781_); +l_IO_FS_reprDirEntry___redArg___closed__1____x40_Init_System_IO___hyg_2781_ = _init_l_IO_FS_reprDirEntry___redArg___closed__1____x40_Init_System_IO___hyg_2781_(); +lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__1____x40_Init_System_IO___hyg_2781_); +l_IO_FS_reprDirEntry___redArg___closed__2____x40_Init_System_IO___hyg_2781_ = _init_l_IO_FS_reprDirEntry___redArg___closed__2____x40_Init_System_IO___hyg_2781_(); +lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__2____x40_Init_System_IO___hyg_2781_); +l_IO_FS_reprDirEntry___redArg___closed__3____x40_Init_System_IO___hyg_2781_ = _init_l_IO_FS_reprDirEntry___redArg___closed__3____x40_Init_System_IO___hyg_2781_(); +lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__3____x40_Init_System_IO___hyg_2781_); +l_IO_FS_reprDirEntry___redArg___closed__4____x40_Init_System_IO___hyg_2781_ = _init_l_IO_FS_reprDirEntry___redArg___closed__4____x40_Init_System_IO___hyg_2781_(); +lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__4____x40_Init_System_IO___hyg_2781_); +l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2781_ = _init_l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2781_(); +lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__5____x40_Init_System_IO___hyg_2781_); +l_IO_FS_reprDirEntry___redArg___closed__6____x40_Init_System_IO___hyg_2781_ = _init_l_IO_FS_reprDirEntry___redArg___closed__6____x40_Init_System_IO___hyg_2781_(); +lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__6____x40_Init_System_IO___hyg_2781_); +l_IO_FS_reprDirEntry___redArg___closed__7____x40_Init_System_IO___hyg_2781_ = _init_l_IO_FS_reprDirEntry___redArg___closed__7____x40_Init_System_IO___hyg_2781_(); +lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__7____x40_Init_System_IO___hyg_2781_); +l_IO_FS_reprDirEntry___redArg___closed__8____x40_Init_System_IO___hyg_2781_ = _init_l_IO_FS_reprDirEntry___redArg___closed__8____x40_Init_System_IO___hyg_2781_(); +lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__8____x40_Init_System_IO___hyg_2781_); +l_IO_FS_reprDirEntry___redArg___closed__9____x40_Init_System_IO___hyg_2781_ = _init_l_IO_FS_reprDirEntry___redArg___closed__9____x40_Init_System_IO___hyg_2781_(); +lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__9____x40_Init_System_IO___hyg_2781_); +l_IO_FS_reprDirEntry___redArg___closed__10____x40_Init_System_IO___hyg_2781_ = _init_l_IO_FS_reprDirEntry___redArg___closed__10____x40_Init_System_IO___hyg_2781_(); +lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__10____x40_Init_System_IO___hyg_2781_); +l_IO_FS_reprDirEntry___redArg___closed__11____x40_Init_System_IO___hyg_2781_ = _init_l_IO_FS_reprDirEntry___redArg___closed__11____x40_Init_System_IO___hyg_2781_(); +lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__11____x40_Init_System_IO___hyg_2781_); +l_IO_FS_reprDirEntry___redArg___closed__12____x40_Init_System_IO___hyg_2781_ = _init_l_IO_FS_reprDirEntry___redArg___closed__12____x40_Init_System_IO___hyg_2781_(); +lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__12____x40_Init_System_IO___hyg_2781_); +l_IO_FS_reprDirEntry___redArg___closed__13____x40_Init_System_IO___hyg_2781_ = _init_l_IO_FS_reprDirEntry___redArg___closed__13____x40_Init_System_IO___hyg_2781_(); +lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__13____x40_Init_System_IO___hyg_2781_); +l_IO_FS_reprDirEntry___redArg___closed__14____x40_Init_System_IO___hyg_2781_ = _init_l_IO_FS_reprDirEntry___redArg___closed__14____x40_Init_System_IO___hyg_2781_(); +lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__14____x40_Init_System_IO___hyg_2781_); +l_IO_FS_reprDirEntry___redArg___closed__15____x40_Init_System_IO___hyg_2781_ = _init_l_IO_FS_reprDirEntry___redArg___closed__15____x40_Init_System_IO___hyg_2781_(); +lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__15____x40_Init_System_IO___hyg_2781_); +l_IO_FS_reprDirEntry___redArg___closed__16____x40_Init_System_IO___hyg_2781_ = _init_l_IO_FS_reprDirEntry___redArg___closed__16____x40_Init_System_IO___hyg_2781_(); +lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__16____x40_Init_System_IO___hyg_2781_); +l_IO_FS_reprDirEntry___redArg___closed__17____x40_Init_System_IO___hyg_2781_ = _init_l_IO_FS_reprDirEntry___redArg___closed__17____x40_Init_System_IO___hyg_2781_(); +lean_mark_persistent(l_IO_FS_reprDirEntry___redArg___closed__17____x40_Init_System_IO___hyg_2781_); l_IO_FS_instReprDirEntry___closed__0 = _init_l_IO_FS_instReprDirEntry___closed__0(); lean_mark_persistent(l_IO_FS_instReprDirEntry___closed__0); l_IO_FS_instReprDirEntry = _init_l_IO_FS_instReprDirEntry(); lean_mark_persistent(l_IO_FS_instReprDirEntry); -l_IO_FS_reprFileType___closed__0____x40_Init_System_IO___hyg_2913_ = _init_l_IO_FS_reprFileType___closed__0____x40_Init_System_IO___hyg_2913_(); -lean_mark_persistent(l_IO_FS_reprFileType___closed__0____x40_Init_System_IO___hyg_2913_); -l_IO_FS_reprFileType___closed__1____x40_Init_System_IO___hyg_2913_ = _init_l_IO_FS_reprFileType___closed__1____x40_Init_System_IO___hyg_2913_(); -lean_mark_persistent(l_IO_FS_reprFileType___closed__1____x40_Init_System_IO___hyg_2913_); -l_IO_FS_reprFileType___closed__2____x40_Init_System_IO___hyg_2913_ = _init_l_IO_FS_reprFileType___closed__2____x40_Init_System_IO___hyg_2913_(); -lean_mark_persistent(l_IO_FS_reprFileType___closed__2____x40_Init_System_IO___hyg_2913_); -l_IO_FS_reprFileType___closed__3____x40_Init_System_IO___hyg_2913_ = _init_l_IO_FS_reprFileType___closed__3____x40_Init_System_IO___hyg_2913_(); -lean_mark_persistent(l_IO_FS_reprFileType___closed__3____x40_Init_System_IO___hyg_2913_); -l_IO_FS_reprFileType___closed__4____x40_Init_System_IO___hyg_2913_ = _init_l_IO_FS_reprFileType___closed__4____x40_Init_System_IO___hyg_2913_(); -lean_mark_persistent(l_IO_FS_reprFileType___closed__4____x40_Init_System_IO___hyg_2913_); -l_IO_FS_reprFileType___closed__5____x40_Init_System_IO___hyg_2913_ = _init_l_IO_FS_reprFileType___closed__5____x40_Init_System_IO___hyg_2913_(); -lean_mark_persistent(l_IO_FS_reprFileType___closed__5____x40_Init_System_IO___hyg_2913_); -l_IO_FS_reprFileType___closed__6____x40_Init_System_IO___hyg_2913_ = _init_l_IO_FS_reprFileType___closed__6____x40_Init_System_IO___hyg_2913_(); -lean_mark_persistent(l_IO_FS_reprFileType___closed__6____x40_Init_System_IO___hyg_2913_); -l_IO_FS_reprFileType___closed__7____x40_Init_System_IO___hyg_2913_ = _init_l_IO_FS_reprFileType___closed__7____x40_Init_System_IO___hyg_2913_(); -lean_mark_persistent(l_IO_FS_reprFileType___closed__7____x40_Init_System_IO___hyg_2913_); +l_IO_FS_reprFileType___closed__0____x40_Init_System_IO___hyg_2859_ = _init_l_IO_FS_reprFileType___closed__0____x40_Init_System_IO___hyg_2859_(); +lean_mark_persistent(l_IO_FS_reprFileType___closed__0____x40_Init_System_IO___hyg_2859_); +l_IO_FS_reprFileType___closed__1____x40_Init_System_IO___hyg_2859_ = _init_l_IO_FS_reprFileType___closed__1____x40_Init_System_IO___hyg_2859_(); +lean_mark_persistent(l_IO_FS_reprFileType___closed__1____x40_Init_System_IO___hyg_2859_); +l_IO_FS_reprFileType___closed__2____x40_Init_System_IO___hyg_2859_ = _init_l_IO_FS_reprFileType___closed__2____x40_Init_System_IO___hyg_2859_(); +lean_mark_persistent(l_IO_FS_reprFileType___closed__2____x40_Init_System_IO___hyg_2859_); +l_IO_FS_reprFileType___closed__3____x40_Init_System_IO___hyg_2859_ = _init_l_IO_FS_reprFileType___closed__3____x40_Init_System_IO___hyg_2859_(); +lean_mark_persistent(l_IO_FS_reprFileType___closed__3____x40_Init_System_IO___hyg_2859_); +l_IO_FS_reprFileType___closed__4____x40_Init_System_IO___hyg_2859_ = _init_l_IO_FS_reprFileType___closed__4____x40_Init_System_IO___hyg_2859_(); +lean_mark_persistent(l_IO_FS_reprFileType___closed__4____x40_Init_System_IO___hyg_2859_); +l_IO_FS_reprFileType___closed__5____x40_Init_System_IO___hyg_2859_ = _init_l_IO_FS_reprFileType___closed__5____x40_Init_System_IO___hyg_2859_(); +lean_mark_persistent(l_IO_FS_reprFileType___closed__5____x40_Init_System_IO___hyg_2859_); +l_IO_FS_reprFileType___closed__6____x40_Init_System_IO___hyg_2859_ = _init_l_IO_FS_reprFileType___closed__6____x40_Init_System_IO___hyg_2859_(); +lean_mark_persistent(l_IO_FS_reprFileType___closed__6____x40_Init_System_IO___hyg_2859_); +l_IO_FS_reprFileType___closed__7____x40_Init_System_IO___hyg_2859_ = _init_l_IO_FS_reprFileType___closed__7____x40_Init_System_IO___hyg_2859_(); +lean_mark_persistent(l_IO_FS_reprFileType___closed__7____x40_Init_System_IO___hyg_2859_); l_IO_FS_instReprFileType___closed__0 = _init_l_IO_FS_instReprFileType___closed__0(); lean_mark_persistent(l_IO_FS_instReprFileType___closed__0); l_IO_FS_instReprFileType = _init_l_IO_FS_instReprFileType(); @@ -12791,22 +12262,22 @@ l_IO_FS_instBEqFileType___closed__0 = _init_l_IO_FS_instBEqFileType___closed__0( lean_mark_persistent(l_IO_FS_instBEqFileType___closed__0); l_IO_FS_instBEqFileType = _init_l_IO_FS_instBEqFileType(); lean_mark_persistent(l_IO_FS_instBEqFileType); -l_IO_FS_reprSystemTime___redArg___closed__0____x40_Init_System_IO___hyg_3102_ = _init_l_IO_FS_reprSystemTime___redArg___closed__0____x40_Init_System_IO___hyg_3102_(); -lean_mark_persistent(l_IO_FS_reprSystemTime___redArg___closed__0____x40_Init_System_IO___hyg_3102_); -l_IO_FS_reprSystemTime___redArg___closed__1____x40_Init_System_IO___hyg_3102_ = _init_l_IO_FS_reprSystemTime___redArg___closed__1____x40_Init_System_IO___hyg_3102_(); -lean_mark_persistent(l_IO_FS_reprSystemTime___redArg___closed__1____x40_Init_System_IO___hyg_3102_); -l_IO_FS_reprSystemTime___redArg___closed__2____x40_Init_System_IO___hyg_3102_ = _init_l_IO_FS_reprSystemTime___redArg___closed__2____x40_Init_System_IO___hyg_3102_(); -lean_mark_persistent(l_IO_FS_reprSystemTime___redArg___closed__2____x40_Init_System_IO___hyg_3102_); -l_IO_FS_reprSystemTime___redArg___closed__3____x40_Init_System_IO___hyg_3102_ = _init_l_IO_FS_reprSystemTime___redArg___closed__3____x40_Init_System_IO___hyg_3102_(); -lean_mark_persistent(l_IO_FS_reprSystemTime___redArg___closed__3____x40_Init_System_IO___hyg_3102_); -l_IO_FS_reprSystemTime___redArg___closed__4____x40_Init_System_IO___hyg_3102_ = _init_l_IO_FS_reprSystemTime___redArg___closed__4____x40_Init_System_IO___hyg_3102_(); -lean_mark_persistent(l_IO_FS_reprSystemTime___redArg___closed__4____x40_Init_System_IO___hyg_3102_); -l_IO_FS_reprSystemTime___redArg___closed__5____x40_Init_System_IO___hyg_3102_ = _init_l_IO_FS_reprSystemTime___redArg___closed__5____x40_Init_System_IO___hyg_3102_(); -lean_mark_persistent(l_IO_FS_reprSystemTime___redArg___closed__5____x40_Init_System_IO___hyg_3102_); -l_IO_FS_reprSystemTime___redArg___closed__6____x40_Init_System_IO___hyg_3102_ = _init_l_IO_FS_reprSystemTime___redArg___closed__6____x40_Init_System_IO___hyg_3102_(); -lean_mark_persistent(l_IO_FS_reprSystemTime___redArg___closed__6____x40_Init_System_IO___hyg_3102_); -l_IO_FS_reprSystemTime___redArg___closed__7____x40_Init_System_IO___hyg_3102_ = _init_l_IO_FS_reprSystemTime___redArg___closed__7____x40_Init_System_IO___hyg_3102_(); -lean_mark_persistent(l_IO_FS_reprSystemTime___redArg___closed__7____x40_Init_System_IO___hyg_3102_); +l_IO_FS_reprSystemTime___redArg___closed__0____x40_Init_System_IO___hyg_3048_ = _init_l_IO_FS_reprSystemTime___redArg___closed__0____x40_Init_System_IO___hyg_3048_(); +lean_mark_persistent(l_IO_FS_reprSystemTime___redArg___closed__0____x40_Init_System_IO___hyg_3048_); +l_IO_FS_reprSystemTime___redArg___closed__1____x40_Init_System_IO___hyg_3048_ = _init_l_IO_FS_reprSystemTime___redArg___closed__1____x40_Init_System_IO___hyg_3048_(); +lean_mark_persistent(l_IO_FS_reprSystemTime___redArg___closed__1____x40_Init_System_IO___hyg_3048_); +l_IO_FS_reprSystemTime___redArg___closed__2____x40_Init_System_IO___hyg_3048_ = _init_l_IO_FS_reprSystemTime___redArg___closed__2____x40_Init_System_IO___hyg_3048_(); +lean_mark_persistent(l_IO_FS_reprSystemTime___redArg___closed__2____x40_Init_System_IO___hyg_3048_); +l_IO_FS_reprSystemTime___redArg___closed__3____x40_Init_System_IO___hyg_3048_ = _init_l_IO_FS_reprSystemTime___redArg___closed__3____x40_Init_System_IO___hyg_3048_(); +lean_mark_persistent(l_IO_FS_reprSystemTime___redArg___closed__3____x40_Init_System_IO___hyg_3048_); +l_IO_FS_reprSystemTime___redArg___closed__4____x40_Init_System_IO___hyg_3048_ = _init_l_IO_FS_reprSystemTime___redArg___closed__4____x40_Init_System_IO___hyg_3048_(); +lean_mark_persistent(l_IO_FS_reprSystemTime___redArg___closed__4____x40_Init_System_IO___hyg_3048_); +l_IO_FS_reprSystemTime___redArg___closed__5____x40_Init_System_IO___hyg_3048_ = _init_l_IO_FS_reprSystemTime___redArg___closed__5____x40_Init_System_IO___hyg_3048_(); +lean_mark_persistent(l_IO_FS_reprSystemTime___redArg___closed__5____x40_Init_System_IO___hyg_3048_); +l_IO_FS_reprSystemTime___redArg___closed__6____x40_Init_System_IO___hyg_3048_ = _init_l_IO_FS_reprSystemTime___redArg___closed__6____x40_Init_System_IO___hyg_3048_(); +lean_mark_persistent(l_IO_FS_reprSystemTime___redArg___closed__6____x40_Init_System_IO___hyg_3048_); +l_IO_FS_reprSystemTime___redArg___closed__7____x40_Init_System_IO___hyg_3048_ = _init_l_IO_FS_reprSystemTime___redArg___closed__7____x40_Init_System_IO___hyg_3048_(); +lean_mark_persistent(l_IO_FS_reprSystemTime___redArg___closed__7____x40_Init_System_IO___hyg_3048_); l_IO_FS_instReprSystemTime___closed__0 = _init_l_IO_FS_instReprSystemTime___closed__0(); lean_mark_persistent(l_IO_FS_instReprSystemTime___closed__0); l_IO_FS_instReprSystemTime = _init_l_IO_FS_instReprSystemTime(); @@ -12828,26 +12299,26 @@ l_IO_FS_instLTSystemTime = _init_l_IO_FS_instLTSystemTime(); lean_mark_persistent(l_IO_FS_instLTSystemTime); l_IO_FS_instLESystemTime = _init_l_IO_FS_instLESystemTime(); lean_mark_persistent(l_IO_FS_instLESystemTime); -l_IO_FS_reprMetadata___redArg___closed__0____x40_Init_System_IO___hyg_3362_ = _init_l_IO_FS_reprMetadata___redArg___closed__0____x40_Init_System_IO___hyg_3362_(); -lean_mark_persistent(l_IO_FS_reprMetadata___redArg___closed__0____x40_Init_System_IO___hyg_3362_); -l_IO_FS_reprMetadata___redArg___closed__1____x40_Init_System_IO___hyg_3362_ = _init_l_IO_FS_reprMetadata___redArg___closed__1____x40_Init_System_IO___hyg_3362_(); -lean_mark_persistent(l_IO_FS_reprMetadata___redArg___closed__1____x40_Init_System_IO___hyg_3362_); -l_IO_FS_reprMetadata___redArg___closed__2____x40_Init_System_IO___hyg_3362_ = _init_l_IO_FS_reprMetadata___redArg___closed__2____x40_Init_System_IO___hyg_3362_(); -lean_mark_persistent(l_IO_FS_reprMetadata___redArg___closed__2____x40_Init_System_IO___hyg_3362_); -l_IO_FS_reprMetadata___redArg___closed__3____x40_Init_System_IO___hyg_3362_ = _init_l_IO_FS_reprMetadata___redArg___closed__3____x40_Init_System_IO___hyg_3362_(); -lean_mark_persistent(l_IO_FS_reprMetadata___redArg___closed__3____x40_Init_System_IO___hyg_3362_); -l_IO_FS_reprMetadata___redArg___closed__4____x40_Init_System_IO___hyg_3362_ = _init_l_IO_FS_reprMetadata___redArg___closed__4____x40_Init_System_IO___hyg_3362_(); -lean_mark_persistent(l_IO_FS_reprMetadata___redArg___closed__4____x40_Init_System_IO___hyg_3362_); -l_IO_FS_reprMetadata___redArg___closed__5____x40_Init_System_IO___hyg_3362_ = _init_l_IO_FS_reprMetadata___redArg___closed__5____x40_Init_System_IO___hyg_3362_(); -lean_mark_persistent(l_IO_FS_reprMetadata___redArg___closed__5____x40_Init_System_IO___hyg_3362_); -l_IO_FS_reprMetadata___redArg___closed__6____x40_Init_System_IO___hyg_3362_ = _init_l_IO_FS_reprMetadata___redArg___closed__6____x40_Init_System_IO___hyg_3362_(); -lean_mark_persistent(l_IO_FS_reprMetadata___redArg___closed__6____x40_Init_System_IO___hyg_3362_); -l_IO_FS_reprMetadata___redArg___closed__7____x40_Init_System_IO___hyg_3362_ = _init_l_IO_FS_reprMetadata___redArg___closed__7____x40_Init_System_IO___hyg_3362_(); -lean_mark_persistent(l_IO_FS_reprMetadata___redArg___closed__7____x40_Init_System_IO___hyg_3362_); -l_IO_FS_reprMetadata___redArg___closed__8____x40_Init_System_IO___hyg_3362_ = _init_l_IO_FS_reprMetadata___redArg___closed__8____x40_Init_System_IO___hyg_3362_(); -lean_mark_persistent(l_IO_FS_reprMetadata___redArg___closed__8____x40_Init_System_IO___hyg_3362_); -l_IO_FS_reprMetadata___redArg___closed__9____x40_Init_System_IO___hyg_3362_ = _init_l_IO_FS_reprMetadata___redArg___closed__9____x40_Init_System_IO___hyg_3362_(); -lean_mark_persistent(l_IO_FS_reprMetadata___redArg___closed__9____x40_Init_System_IO___hyg_3362_); +l_IO_FS_reprMetadata___redArg___closed__0____x40_Init_System_IO___hyg_3308_ = _init_l_IO_FS_reprMetadata___redArg___closed__0____x40_Init_System_IO___hyg_3308_(); +lean_mark_persistent(l_IO_FS_reprMetadata___redArg___closed__0____x40_Init_System_IO___hyg_3308_); +l_IO_FS_reprMetadata___redArg___closed__1____x40_Init_System_IO___hyg_3308_ = _init_l_IO_FS_reprMetadata___redArg___closed__1____x40_Init_System_IO___hyg_3308_(); +lean_mark_persistent(l_IO_FS_reprMetadata___redArg___closed__1____x40_Init_System_IO___hyg_3308_); +l_IO_FS_reprMetadata___redArg___closed__2____x40_Init_System_IO___hyg_3308_ = _init_l_IO_FS_reprMetadata___redArg___closed__2____x40_Init_System_IO___hyg_3308_(); +lean_mark_persistent(l_IO_FS_reprMetadata___redArg___closed__2____x40_Init_System_IO___hyg_3308_); +l_IO_FS_reprMetadata___redArg___closed__3____x40_Init_System_IO___hyg_3308_ = _init_l_IO_FS_reprMetadata___redArg___closed__3____x40_Init_System_IO___hyg_3308_(); +lean_mark_persistent(l_IO_FS_reprMetadata___redArg___closed__3____x40_Init_System_IO___hyg_3308_); +l_IO_FS_reprMetadata___redArg___closed__4____x40_Init_System_IO___hyg_3308_ = _init_l_IO_FS_reprMetadata___redArg___closed__4____x40_Init_System_IO___hyg_3308_(); +lean_mark_persistent(l_IO_FS_reprMetadata___redArg___closed__4____x40_Init_System_IO___hyg_3308_); +l_IO_FS_reprMetadata___redArg___closed__5____x40_Init_System_IO___hyg_3308_ = _init_l_IO_FS_reprMetadata___redArg___closed__5____x40_Init_System_IO___hyg_3308_(); +lean_mark_persistent(l_IO_FS_reprMetadata___redArg___closed__5____x40_Init_System_IO___hyg_3308_); +l_IO_FS_reprMetadata___redArg___closed__6____x40_Init_System_IO___hyg_3308_ = _init_l_IO_FS_reprMetadata___redArg___closed__6____x40_Init_System_IO___hyg_3308_(); +lean_mark_persistent(l_IO_FS_reprMetadata___redArg___closed__6____x40_Init_System_IO___hyg_3308_); +l_IO_FS_reprMetadata___redArg___closed__7____x40_Init_System_IO___hyg_3308_ = _init_l_IO_FS_reprMetadata___redArg___closed__7____x40_Init_System_IO___hyg_3308_(); +lean_mark_persistent(l_IO_FS_reprMetadata___redArg___closed__7____x40_Init_System_IO___hyg_3308_); +l_IO_FS_reprMetadata___redArg___closed__8____x40_Init_System_IO___hyg_3308_ = _init_l_IO_FS_reprMetadata___redArg___closed__8____x40_Init_System_IO___hyg_3308_(); +lean_mark_persistent(l_IO_FS_reprMetadata___redArg___closed__8____x40_Init_System_IO___hyg_3308_); +l_IO_FS_reprMetadata___redArg___closed__9____x40_Init_System_IO___hyg_3308_ = _init_l_IO_FS_reprMetadata___redArg___closed__9____x40_Init_System_IO___hyg_3308_(); +lean_mark_persistent(l_IO_FS_reprMetadata___redArg___closed__9____x40_Init_System_IO___hyg_3308_); l_IO_FS_instReprMetadata___closed__0 = _init_l_IO_FS_instReprMetadata___closed__0(); lean_mark_persistent(l_IO_FS_instReprMetadata___closed__0); l_IO_FS_instReprMetadata = _init_l_IO_FS_instReprMetadata(); @@ -13028,6 +12499,20 @@ l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__41 = lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__41); l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__42 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__42(); lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__42); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__43 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__43(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__43); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__44 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__44(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__44); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__45 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__45(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__45); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__46 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__46(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__46); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__47 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__47(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__47); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__48 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__48(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__48); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__49 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__49(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__49); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Task.c b/stage0/stdlib/Init/Task.c index d2bdba565a..2f289b64aa 100644 --- a/stage0/stdlib/Init/Task.c +++ b/stage0/stdlib/Init/Task.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Init.Task -// Imports: Init.Core Init.Data.List.Basic +// Imports: Init.Core Init.Data.List.Basic Init.System.Promise #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,24 +13,647 @@ #ifdef __cplusplus extern "C" { #endif +static lean_object* l___auto___closed__7____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__12____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__27____x40_Init_Task___hyg_21_; +lean_object* lean_io_promise_new(lean_object*); LEAN_EXPORT lean_object* l_Task_mapList___redArg(lean_object*, lean_object*, lean_object*, uint8_t); +static lean_object* l___auto___closed__34____x40_Init_Task___hyg_21_; +lean_object* lean_array_push(lean_object*, lean_object*); +static lean_object* l___auto___closed__25____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__4____x40_Init_Task___hyg_21_; lean_object* lean_task_spawn(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forM___at___IO_waitAny_spec__0___redArg___lam__0(lean_object*, lean_object*, lean_object*); +static lean_object* l___auto___closed__0____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__26____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__8____x40_Init_Task___hyg_21_; +lean_object* l_IO_Promise_result_x21___redArg(lean_object*); lean_object* lean_task_bind(lean_object*, lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Task_mapList___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___auto___closed__21____x40_Init_Task___hyg_21_; LEAN_EXPORT lean_object* l_Task_mapList___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_string_utf8_byte_size(lean_object*); +static lean_object* l___auto___closed__35____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__36____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__20____x40_Init_Task___hyg_21_; +lean_object* lean_io_promise_resolve(lean_object*, lean_object*, lean_object*); lean_object* lean_task_pure(lean_object*); +LEAN_EXPORT lean_object* l_List_forM___at___IO_waitAny_spec__0(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___auto___closed__28____x40_Init_Task___hyg_21_; +lean_object* l_Array_empty(lean_object*); +static lean_object* l___auto___closed__10____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__14____x40_Init_Task___hyg_21_; LEAN_EXPORT lean_object* l_Task_mapList_go___redArg___lam__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_IO_waitAny(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___auto___closed__31____x40_Init_Task___hyg_21_; +LEAN_EXPORT lean_object* l_IO_waitAny___redArg(lean_object*, lean_object*); +static lean_object* l___auto___closed__23____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__6____x40_Init_Task___hyg_21_; +LEAN_EXPORT lean_object* l___auto____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__11____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__24____x40_Init_Task___hyg_21_; LEAN_EXPORT lean_object* l_Task_mapList_go___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +static lean_object* l___auto___closed__32____x40_Init_Task___hyg_21_; +lean_object* lean_task_get_own(lean_object*); LEAN_EXPORT lean_object* l_Task_mapList_go___redArg___lam__0(lean_object*, lean_object*, lean_object*); +static lean_object* l___auto___closed__42____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__2____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__40____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__33____x40_Init_Task___hyg_21_; LEAN_EXPORT lean_object* l_Task_mapList_go___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___auto___closed__13____x40_Init_Task___hyg_21_; +LEAN_EXPORT lean_object* l_List_forM___at___IO_waitAny_spec__0___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___auto___closed__38____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__19____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__41____x40_Init_Task___hyg_21_; +lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); lean_object* l_List_reverse___redArg(lean_object*); LEAN_EXPORT lean_object* l_Task_mapList_go___redArg___lam__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* lean_task_map(lean_object*, lean_object*, lean_object*, uint8_t); +LEAN_EXPORT lean_object* l_List_forM___at___IO_waitAny_spec__0___redArg(lean_object*, lean_object*, lean_object*); +static lean_object* l___auto___closed__18____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__37____x40_Init_Task___hyg_21_; LEAN_EXPORT lean_object* l_Task_mapList_go(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +static lean_object* l___auto___closed__16____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__1____x40_Init_Task___hyg_21_; +lean_object* l_BaseIO_chainTask___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +static lean_object* l___auto___closed__39____x40_Init_Task___hyg_21_; LEAN_EXPORT lean_object* l_Task_mapList_go___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Task_mapList_go___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___auto___closed__5____x40_Init_Task___hyg_21_; LEAN_EXPORT lean_object* l_Task_mapList_go___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___auto___closed__3____x40_Init_Task___hyg_21_; +lean_object* l_Lean_Name_mkStr1(lean_object*); +lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___auto___closed__29____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__9____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__15____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__17____x40_Init_Task___hyg_21_; +lean_object* l_Lean_mkAtom(lean_object*); LEAN_EXPORT lean_object* l_Task_mapList(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); +static lean_object* l___auto___closed__22____x40_Init_Task___hyg_21_; +static lean_object* l___auto___closed__30____x40_Init_Task___hyg_21_; +static lean_object* _init_l___auto___closed__0____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Lean", 4, 4); +return x_1; +} +} +static lean_object* _init_l___auto___closed__1____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Parser", 6, 6); +return x_1; +} +} +static lean_object* _init_l___auto___closed__2____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Tactic", 6, 6); +return x_1; +} +} +static lean_object* _init_l___auto___closed__3____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("tacticSeq", 9, 9); +return x_1; +} +} +static lean_object* _init_l___auto___closed__4____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto___closed__3____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__2____x40_Init_Task___hyg_21_; +x_3 = l___auto___closed__1____x40_Init_Task___hyg_21_; +x_4 = l___auto___closed__0____x40_Init_Task___hyg_21_; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l___auto___closed__5____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; +x_1 = l_Array_empty(lean_box(0)); +return x_1; +} +} +static lean_object* _init_l___auto___closed__6____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("tacticSeq1Indented", 18, 18); +return x_1; +} +} +static lean_object* _init_l___auto___closed__7____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto___closed__6____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__2____x40_Init_Task___hyg_21_; +x_3 = l___auto___closed__1____x40_Init_Task___hyg_21_; +x_4 = l___auto___closed__0____x40_Init_Task___hyg_21_; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l___auto___closed__8____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("null", 4, 4); +return x_1; +} +} +static lean_object* _init_l___auto___closed__9____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___auto___closed__8____x40_Init_Task___hyg_21_; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +static lean_object* _init_l___auto___closed__10____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("exact", 5, 5); +return x_1; +} +} +static lean_object* _init_l___auto___closed__11____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto___closed__10____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__2____x40_Init_Task___hyg_21_; +x_3 = l___auto___closed__1____x40_Init_Task___hyg_21_; +x_4 = l___auto___closed__0____x40_Init_Task___hyg_21_; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l___auto___closed__12____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___auto___closed__10____x40_Init_Task___hyg_21_; +x_2 = l_Lean_mkAtom(x_1); +return x_2; +} +} +static lean_object* _init_l___auto___closed__13____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___auto___closed__12____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__5____x40_Init_Task___hyg_21_; +x_3 = lean_array_push(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___auto___closed__14____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Term", 4, 4); +return x_1; +} +} +static lean_object* _init_l___auto___closed__15____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("app", 3, 3); +return x_1; +} +} +static lean_object* _init_l___auto___closed__16____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto___closed__15____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__14____x40_Init_Task___hyg_21_; +x_3 = l___auto___closed__1____x40_Init_Task___hyg_21_; +x_4 = l___auto___closed__0____x40_Init_Task___hyg_21_; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l___auto___closed__17____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Nat.zero_lt_succ", 16, 16); +return x_1; +} +} +static lean_object* _init_l___auto___closed__18____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___auto___closed__17____x40_Init_Task___hyg_21_; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___auto___closed__19____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___auto___closed__18____x40_Init_Task___hyg_21_; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___auto___closed__17____x40_Init_Task___hyg_21_; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_1); +return x_4; +} +} +static lean_object* _init_l___auto___closed__20____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Nat", 3, 3); +return x_1; +} +} +static lean_object* _init_l___auto___closed__21____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("zero_lt_succ", 12, 12); +return x_1; +} +} +static lean_object* _init_l___auto___closed__22____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___auto___closed__21____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__20____x40_Init_Task___hyg_21_; +x_3 = l_Lean_Name_mkStr2(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___auto___closed__23____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = lean_box(0); +x_2 = l___auto___closed__22____x40_Init_Task___hyg_21_; +x_3 = l___auto___closed__19____x40_Init_Task___hyg_21_; +x_4 = lean_box(2); +x_5 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +lean_ctor_set(x_5, 2, x_2); +lean_ctor_set(x_5, 3, x_1); +return x_5; +} +} +static lean_object* _init_l___auto___closed__24____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___auto___closed__23____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__5____x40_Init_Task___hyg_21_; +x_3 = lean_array_push(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___auto___closed__25____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("hole", 4, 4); +return x_1; +} +} +static lean_object* _init_l___auto___closed__26____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___auto___closed__25____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__14____x40_Init_Task___hyg_21_; +x_3 = l___auto___closed__1____x40_Init_Task___hyg_21_; +x_4 = l___auto___closed__0____x40_Init_Task___hyg_21_; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l___auto___closed__27____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("_", 1, 1); +return x_1; +} +} +static lean_object* _init_l___auto___closed__28____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___auto___closed__27____x40_Init_Task___hyg_21_; +x_2 = l_Lean_mkAtom(x_1); +return x_2; +} +} +static lean_object* _init_l___auto___closed__29____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___auto___closed__28____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__5____x40_Init_Task___hyg_21_; +x_3 = lean_array_push(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___auto___closed__30____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___auto___closed__29____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__26____x40_Init_Task___hyg_21_; +x_3 = lean_box(2); +x_4 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_1); +return x_4; +} +} +static lean_object* _init_l___auto___closed__31____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___auto___closed__30____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__5____x40_Init_Task___hyg_21_; +x_3 = lean_array_push(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___auto___closed__32____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___auto___closed__31____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__9____x40_Init_Task___hyg_21_; +x_3 = lean_box(2); +x_4 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_1); +return x_4; +} +} +static lean_object* _init_l___auto___closed__33____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___auto___closed__32____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__24____x40_Init_Task___hyg_21_; +x_3 = lean_array_push(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___auto___closed__34____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___auto___closed__33____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__16____x40_Init_Task___hyg_21_; +x_3 = lean_box(2); +x_4 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_1); +return x_4; +} +} +static lean_object* _init_l___auto___closed__35____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___auto___closed__34____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__13____x40_Init_Task___hyg_21_; +x_3 = lean_array_push(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___auto___closed__36____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___auto___closed__35____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__11____x40_Init_Task___hyg_21_; +x_3 = lean_box(2); +x_4 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_1); +return x_4; +} +} +static lean_object* _init_l___auto___closed__37____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___auto___closed__36____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__5____x40_Init_Task___hyg_21_; +x_3 = lean_array_push(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___auto___closed__38____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___auto___closed__37____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__9____x40_Init_Task___hyg_21_; +x_3 = lean_box(2); +x_4 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_1); +return x_4; +} +} +static lean_object* _init_l___auto___closed__39____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___auto___closed__38____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__5____x40_Init_Task___hyg_21_; +x_3 = lean_array_push(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___auto___closed__40____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___auto___closed__39____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__7____x40_Init_Task___hyg_21_; +x_3 = lean_box(2); +x_4 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_1); +return x_4; +} +} +static lean_object* _init_l___auto___closed__41____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___auto___closed__40____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__5____x40_Init_Task___hyg_21_; +x_3 = lean_array_push(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___auto___closed__42____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___auto___closed__41____x40_Init_Task___hyg_21_; +x_2 = l___auto___closed__4____x40_Init_Task___hyg_21_; +x_3 = lean_box(2); +x_4 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_1); +return x_4; +} +} +static lean_object* _init_l___auto____x40_Init_Task___hyg_21_() { +_start: +{ +lean_object* x_1; +x_1 = l___auto___closed__42____x40_Init_Task___hyg_21_; +return x_1; +} +} +LEAN_EXPORT lean_object* l_List_forM___at___IO_waitAny_spec__0___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = lean_io_promise_resolve(x_2, x_1, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_List_forM___at___IO_waitAny_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_4; lean_object* x_5; +lean_dec(x_1); +x_4 = lean_box(0); +x_5 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +return x_5; +} +else +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; lean_object* x_12; +x_6 = lean_ctor_get(x_2, 0); +lean_inc(x_6); +x_7 = lean_ctor_get(x_2, 1); +lean_inc(x_7); +lean_dec_ref(x_2); +lean_inc(x_1); +x_8 = lean_alloc_closure((void*)(l_List_forM___at___IO_waitAny_spec__0___redArg___lam__0___boxed), 3, 1); +lean_closure_set(x_8, 0, x_1); +x_9 = lean_unsigned_to_nat(0u); +x_10 = 1; +x_11 = l_BaseIO_chainTask___redArg(x_6, x_8, x_9, x_10, x_3); +x_12 = lean_ctor_get(x_11, 1); +lean_inc(x_12); +lean_dec_ref(x_11); +x_2 = x_7; +x_3 = x_12; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_List_forM___at___IO_waitAny_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_List_forM___at___IO_waitAny_spec__0___redArg(x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_IO_waitAny___redArg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_3 = lean_io_promise_new(x_2); +x_4 = lean_ctor_get(x_3, 0); +lean_inc(x_4); +x_5 = lean_ctor_get(x_3, 1); +lean_inc(x_5); +lean_dec_ref(x_3); +lean_inc(x_4); +x_6 = l_List_forM___at___IO_waitAny_spec__0___redArg(x_4, x_1, x_5); +x_7 = !lean_is_exclusive(x_6); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_8 = lean_ctor_get(x_6, 0); +lean_dec(x_8); +x_9 = l_IO_Promise_result_x21___redArg(x_4); +lean_dec(x_4); +x_10 = lean_task_get_own(x_9); +lean_ctor_set(x_6, 0, x_10); +return x_6; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_ctor_get(x_6, 1); +lean_inc(x_11); +lean_dec(x_6); +x_12 = l_IO_Promise_result_x21___redArg(x_4); +lean_dec(x_4); +x_13 = lean_task_get_own(x_12); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_11); +return x_14; +} +} +} +LEAN_EXPORT lean_object* l_IO_waitAny(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_IO_waitAny___redArg(x_2, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_List_forM___at___IO_waitAny_spec__0___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_List_forM___at___IO_waitAny_spec__0___redArg___lam__0(x_1, x_2, x_3); +lean_dec(x_1); +return x_4; +} +} LEAN_EXPORT lean_object* l_Task_mapList_go___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -204,6 +827,7 @@ return x_8; } lean_object* initialize_Init_Core(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_List_Basic(uint8_t builtin, lean_object*); +lean_object* initialize_Init_System_Promise(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Init_Task(uint8_t builtin, lean_object* w) { lean_object * res; @@ -215,6 +839,97 @@ lean_dec_ref(res); res = initialize_Init_Data_List_Basic(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_System_Promise(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l___auto___closed__0____x40_Init_Task___hyg_21_ = _init_l___auto___closed__0____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__0____x40_Init_Task___hyg_21_); +l___auto___closed__1____x40_Init_Task___hyg_21_ = _init_l___auto___closed__1____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__1____x40_Init_Task___hyg_21_); +l___auto___closed__2____x40_Init_Task___hyg_21_ = _init_l___auto___closed__2____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__2____x40_Init_Task___hyg_21_); +l___auto___closed__3____x40_Init_Task___hyg_21_ = _init_l___auto___closed__3____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__3____x40_Init_Task___hyg_21_); +l___auto___closed__4____x40_Init_Task___hyg_21_ = _init_l___auto___closed__4____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__4____x40_Init_Task___hyg_21_); +l___auto___closed__5____x40_Init_Task___hyg_21_ = _init_l___auto___closed__5____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__5____x40_Init_Task___hyg_21_); +l___auto___closed__6____x40_Init_Task___hyg_21_ = _init_l___auto___closed__6____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__6____x40_Init_Task___hyg_21_); +l___auto___closed__7____x40_Init_Task___hyg_21_ = _init_l___auto___closed__7____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__7____x40_Init_Task___hyg_21_); +l___auto___closed__8____x40_Init_Task___hyg_21_ = _init_l___auto___closed__8____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__8____x40_Init_Task___hyg_21_); +l___auto___closed__9____x40_Init_Task___hyg_21_ = _init_l___auto___closed__9____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__9____x40_Init_Task___hyg_21_); +l___auto___closed__10____x40_Init_Task___hyg_21_ = _init_l___auto___closed__10____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__10____x40_Init_Task___hyg_21_); +l___auto___closed__11____x40_Init_Task___hyg_21_ = _init_l___auto___closed__11____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__11____x40_Init_Task___hyg_21_); +l___auto___closed__12____x40_Init_Task___hyg_21_ = _init_l___auto___closed__12____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__12____x40_Init_Task___hyg_21_); +l___auto___closed__13____x40_Init_Task___hyg_21_ = _init_l___auto___closed__13____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__13____x40_Init_Task___hyg_21_); +l___auto___closed__14____x40_Init_Task___hyg_21_ = _init_l___auto___closed__14____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__14____x40_Init_Task___hyg_21_); +l___auto___closed__15____x40_Init_Task___hyg_21_ = _init_l___auto___closed__15____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__15____x40_Init_Task___hyg_21_); +l___auto___closed__16____x40_Init_Task___hyg_21_ = _init_l___auto___closed__16____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__16____x40_Init_Task___hyg_21_); +l___auto___closed__17____x40_Init_Task___hyg_21_ = _init_l___auto___closed__17____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__17____x40_Init_Task___hyg_21_); +l___auto___closed__18____x40_Init_Task___hyg_21_ = _init_l___auto___closed__18____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__18____x40_Init_Task___hyg_21_); +l___auto___closed__19____x40_Init_Task___hyg_21_ = _init_l___auto___closed__19____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__19____x40_Init_Task___hyg_21_); +l___auto___closed__20____x40_Init_Task___hyg_21_ = _init_l___auto___closed__20____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__20____x40_Init_Task___hyg_21_); +l___auto___closed__21____x40_Init_Task___hyg_21_ = _init_l___auto___closed__21____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__21____x40_Init_Task___hyg_21_); +l___auto___closed__22____x40_Init_Task___hyg_21_ = _init_l___auto___closed__22____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__22____x40_Init_Task___hyg_21_); +l___auto___closed__23____x40_Init_Task___hyg_21_ = _init_l___auto___closed__23____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__23____x40_Init_Task___hyg_21_); +l___auto___closed__24____x40_Init_Task___hyg_21_ = _init_l___auto___closed__24____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__24____x40_Init_Task___hyg_21_); +l___auto___closed__25____x40_Init_Task___hyg_21_ = _init_l___auto___closed__25____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__25____x40_Init_Task___hyg_21_); +l___auto___closed__26____x40_Init_Task___hyg_21_ = _init_l___auto___closed__26____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__26____x40_Init_Task___hyg_21_); +l___auto___closed__27____x40_Init_Task___hyg_21_ = _init_l___auto___closed__27____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__27____x40_Init_Task___hyg_21_); +l___auto___closed__28____x40_Init_Task___hyg_21_ = _init_l___auto___closed__28____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__28____x40_Init_Task___hyg_21_); +l___auto___closed__29____x40_Init_Task___hyg_21_ = _init_l___auto___closed__29____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__29____x40_Init_Task___hyg_21_); +l___auto___closed__30____x40_Init_Task___hyg_21_ = _init_l___auto___closed__30____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__30____x40_Init_Task___hyg_21_); +l___auto___closed__31____x40_Init_Task___hyg_21_ = _init_l___auto___closed__31____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__31____x40_Init_Task___hyg_21_); +l___auto___closed__32____x40_Init_Task___hyg_21_ = _init_l___auto___closed__32____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__32____x40_Init_Task___hyg_21_); +l___auto___closed__33____x40_Init_Task___hyg_21_ = _init_l___auto___closed__33____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__33____x40_Init_Task___hyg_21_); +l___auto___closed__34____x40_Init_Task___hyg_21_ = _init_l___auto___closed__34____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__34____x40_Init_Task___hyg_21_); +l___auto___closed__35____x40_Init_Task___hyg_21_ = _init_l___auto___closed__35____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__35____x40_Init_Task___hyg_21_); +l___auto___closed__36____x40_Init_Task___hyg_21_ = _init_l___auto___closed__36____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__36____x40_Init_Task___hyg_21_); +l___auto___closed__37____x40_Init_Task___hyg_21_ = _init_l___auto___closed__37____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__37____x40_Init_Task___hyg_21_); +l___auto___closed__38____x40_Init_Task___hyg_21_ = _init_l___auto___closed__38____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__38____x40_Init_Task___hyg_21_); +l___auto___closed__39____x40_Init_Task___hyg_21_ = _init_l___auto___closed__39____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__39____x40_Init_Task___hyg_21_); +l___auto___closed__40____x40_Init_Task___hyg_21_ = _init_l___auto___closed__40____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__40____x40_Init_Task___hyg_21_); +l___auto___closed__41____x40_Init_Task___hyg_21_ = _init_l___auto___closed__41____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__41____x40_Init_Task___hyg_21_); +l___auto___closed__42____x40_Init_Task___hyg_21_ = _init_l___auto___closed__42____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto___closed__42____x40_Init_Task___hyg_21_); +l___auto____x40_Init_Task___hyg_21_ = _init_l___auto____x40_Init_Task___hyg_21_(); +lean_mark_persistent(l___auto____x40_Init_Task___hyg_21_); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lake/Build/Common.c b/stage0/stdlib/Lake/Build/Common.c index cb1ea9abf8..1850299226 100644 --- a/stage0/stdlib/Lake/Build/Common.c +++ b/stage0/stdlib/Lake/Build/Common.c @@ -278,7 +278,6 @@ LEAN_EXPORT lean_object* l_Lake_Job_bindM___at___Lake_buildLeanExe_spec__0___red LEAN_EXPORT lean_object* l_IO_withStderr___at___IO_FS_withIsolatedStreams___at___Lake_inputBinFile_spec__1_spec__3___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lake_buildO___lam__2___closed__2; LEAN_EXPORT lean_object* l_Lake_buildLeanSharedLib___lam__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_Job_bindM___at___Lake_buildLeanExe_spec__0___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lake_instAlternativeELogTOfMonad___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lake_Job_bindM___at___Lake_buildLeanExe_spec__0___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -354,6 +353,7 @@ lean_object* lean_string_from_utf8_unchecked(lean_object*); static lean_object* l_Lake_checkHashUpToDate___redArg___closed__0; LEAN_EXPORT lean_object* l_Lake_buildStaticLib___lam__0(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_writeBuildTrace___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_buildLeanExe___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_Lake_buildArtifactUnlessUpToDate___closed__9; LEAN_EXPORT lean_object* l_Lake_buildAction___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*); @@ -10019,7 +10019,7 @@ x_6 = lean_ctor_get(x_4, 0); x_7 = lean_ctor_get(x_6, 1); lean_inc_ref(x_7); lean_dec(x_6); -x_8 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234_(x_2, x_7); +x_8 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180_(x_2, x_7); lean_dec_ref(x_7); if (x_8 == 0) { @@ -10049,7 +10049,7 @@ lean_dec(x_4); x_15 = lean_ctor_get(x_13, 1); lean_inc_ref(x_15); lean_dec(x_13); -x_16 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234_(x_2, x_15); +x_16 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180_(x_2, x_15); lean_dec_ref(x_15); if (x_16 == 0) { diff --git a/stage0/stdlib/Lake/Build/Module.c b/stage0/stdlib/Lake/Build/Module.c index 9425eba9ed..2f792865cf 100644 --- a/stage0/stdlib/Lake/Build/Module.c +++ b/stage0/stdlib/Lake/Build/Module.c @@ -244,7 +244,6 @@ lean_object* l_System_FilePath_pathExists(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_Module_recFetchSetup___lam__5(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_formatQuery___at___Lake_Module_exportInfoFacetConfig_spec__0___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lake_Build_Module_0__Lake_computeTransImportsAux_spec__2___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_Lake_Module_recFetchSetup___lam__0___closed__4; lean_object* l_Id_instMonad___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lake_ModuleFacet_fetch___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_Module_recFetchSetup___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, 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*, lean_object*, lean_object*); @@ -369,7 +368,6 @@ static lean_object* l_Lake_Module_initFacetConfigs___closed__19; static lean_object* l_Lake_Module_oNoExportFacetConfig___lam__0___closed__0; LEAN_EXPORT lean_object* l_Lake_ensureJob___at___Lake_prepareLeanCommand_spec__1___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_setupExternalModule___lam__2(lean_object*, lean_object*, lean_object*, size_t, uint8_t, lean_object*, uint8_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_Lake_Module_recFetchSetup___lam__0___closed__5; LEAN_EXPORT lean_object* l_Lake_Module_recFetchSetup___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_Module_headerFacetConfig___lam__0___boxed(lean_object*, lean_object*); uint64_t lean_uint64_shift_right(uint64_t, uint64_t); @@ -465,7 +463,6 @@ static lean_object* l_Lake_Module_initFacetConfigs___closed__18; LEAN_EXPORT lean_object* l_Lake_Module_recFetchInput___lam__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lake_Build_Module_0__Lake_setupExternalModule___closed__1; static lean_object* l_Lake_Module_initFacetConfigs___closed__17; -uint8_t l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234_(lean_object*, lean_object*); static lean_object* l_Lake_Module_recBuildLean___lam__0___closed__0; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lake_Build_Module_0__Lake_computeModuleDeps_spec__0___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_Lake_JobState_merge(lean_object*, lean_object*); @@ -559,6 +556,7 @@ static lean_object* l_Lake_Module_initFacetConfigs___closed__16; LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_mkLoadOrder_go(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lake_Build_Module_0__Lake_Module_fetchImportLibs_spec__0___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_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lake_Build_Module_0__Lake_mkLoadOrder_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180_(lean_object*, lean_object*); static lean_object* l_Lake_Module_transImportsFacetConfig___closed__0; static lean_object* l_Lake_Module_recBuildDynlib___closed__0; LEAN_EXPORT lean_object* l_Lake_OrdHashSet_insert___at___Lake_Module_recParseImports_spec__0(lean_object*, lean_object*); @@ -814,6 +812,7 @@ static lean_object* l_Std_DTreeMap_Internal_Impl_foldlM___at___Std_DTreeMap_Inte LEAN_EXPORT lean_object* l_Lake_ensureJob___at___Lake_prepareLeanCommand_spec__1___lam__0(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_fetchTransImportArts_enqueue(uint8_t, uint8_t, lean_object*, lean_object*); lean_object* lean_io_error_to_string(lean_object*); +static lean_object* l_Std_DTreeMap_Internal_Impl_foldlM___at___Std_DTreeMap_Internal_Impl_foldl___at_____private_Lake_Build_Module_0__Lake_traceOptions_spec__0_spec__0___closed__3; extern lean_object* l_Lake_Module_keyword; lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_formatQuery___at___Lake_Module_inputFacetConfig_spec__0___redArg___boxed(lean_object*); @@ -21434,34 +21433,12 @@ return x_2; static lean_object* _init_l_Lake_Module_recFetchSetup___lam__0___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(0u); -x_2 = lean_nat_to_int(x_1); -return x_2; -} -} -static lean_object* _init_l_Lake_Module_recFetchSetup___lam__0___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; uint32_t x_4; -x_1 = lean_unsigned_to_nat(0u); -x_2 = l_Lake_Module_recFetchSetup___lam__0___closed__2; -x_3 = lean_alloc_ctor(0, 1, 4); -lean_ctor_set(x_3, 0, x_2); -x_4 = lean_unbox_uint32(x_1); -lean_ctor_set_uint32(x_3, sizeof(void*)*1, x_4); -return x_3; -} -} -static lean_object* _init_l_Lake_Module_recFetchSetup___lam__0___closed__4() { -_start: -{ lean_object* x_1; x_1 = lean_mk_string_unchecked(":deps", 5, 5); return x_1; } } -static lean_object* _init_l_Lake_Module_recFetchSetup___lam__0___closed__5() { +static lean_object* _init_l_Lake_Module_recFetchSetup___lam__0___closed__3() { _start: { lean_object* x_1; @@ -21472,7 +21449,7 @@ return x_1; LEAN_EXPORT lean_object* l_Lake_Module_recFetchSetup___lam__0(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, uint8_t x_9, uint8_t x_10, lean_object* x_11, uint8_t x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22) { _start: { -uint8_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; 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; uint8_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_83; uint8_t x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; uint8_t x_91; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_165; lean_object* x_166; lean_object* x_167; +uint8_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; 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; uint8_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_83; uint8_t x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; uint8_t x_91; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_164; lean_object* x_165; lean_object* x_166; x_83 = lean_ctor_get(x_21, 0); lean_inc_ref(x_83); x_84 = lean_ctor_get_uint8(x_21, sizeof(void*)*3); @@ -21486,15 +21463,15 @@ lean_inc_ref(x_98); lean_dec_ref(x_1); x_99 = l_Lake_Module_recFetchInput___closed__3; x_100 = l_Lake_Module_recFetchSetup___lam__0___closed__1; -x_165 = lean_task_get_own(x_98); +x_164 = lean_task_get_own(x_98); +x_165 = lean_ctor_get(x_164, 1); +lean_inc(x_165); +lean_dec_ref(x_164); x_166 = lean_ctor_get(x_165, 1); -lean_inc(x_166); -lean_dec_ref(x_165); -x_167 = lean_ctor_get(x_166, 1); -lean_inc_ref(x_167); -lean_dec(x_166); -x_101 = x_167; -goto block_164; +lean_inc_ref(x_166); +lean_dec(x_165); +x_101 = x_166; +goto block_163; block_38: { 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; @@ -21700,7 +21677,7 @@ x_49 = x_22; goto block_82; } } -block_164: +block_163: { lean_object* x_102; lean_object* x_103; uint8_t x_104; x_102 = lean_ctor_get(x_11, 0); @@ -21711,45 +21688,43 @@ lean_dec_ref(x_11); x_104 = !lean_is_exclusive(x_99); if (x_104 == 0) { -lean_object* x_105; uint64_t x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; uint8_t x_110; +lean_object* x_105; uint64_t x_106; lean_object* x_107; lean_object* x_108; uint8_t x_109; x_105 = lean_ctor_get(x_99, 1); x_106 = lean_ctor_get_uint64(x_99, sizeof(void*)*3); x_107 = lean_ctor_get(x_99, 2); -lean_dec(x_107); x_108 = lean_ctor_get(x_99, 0); lean_dec(x_108); -x_109 = l_Lake_Module_recFetchSetup___lam__0___closed__3; -x_110 = !lean_is_exclusive(x_85); -if (x_110 == 0) +x_109 = !lean_is_exclusive(x_85); +if (x_109 == 0) { -lean_object* x_111; uint64_t x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; -x_111 = lean_ctor_get(x_85, 1); -x_112 = lean_ctor_get_uint64(x_85, sizeof(void*)*3); -x_113 = lean_ctor_get(x_85, 2); -x_114 = lean_ctor_get(x_85, 0); -lean_dec(x_114); -x_115 = l_Lake_BuildTrace_mix(x_100, x_101); -x_116 = l_Lake_BuildTrace_mix(x_115, x_103); +lean_object* x_110; uint64_t x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; +x_110 = lean_ctor_get(x_85, 1); +x_111 = lean_ctor_get_uint64(x_85, sizeof(void*)*3); +x_112 = lean_ctor_get(x_85, 2); +x_113 = lean_ctor_get(x_85, 0); +lean_dec(x_113); +x_114 = l_Lake_BuildTrace_mix(x_100, x_101); +x_115 = l_Lake_BuildTrace_mix(x_114, x_103); lean_inc(x_4); -x_117 = l_Lean_Name_toStringWithToken___at___Lean_Name_toString_spec__0(x_4, x_12); -x_118 = l_Lake_Module_recFetchSetup___lam__0___closed__4; -x_119 = lean_string_append(x_117, x_118); -lean_ctor_set(x_85, 2, x_109); +x_116 = l_Lean_Name_toStringWithToken___at___Lean_Name_toString_spec__0(x_4, x_12); +x_117 = l_Lake_Module_recFetchSetup___lam__0___closed__2; +x_118 = lean_string_append(x_116, x_117); +lean_ctor_set(x_85, 2, x_107); lean_ctor_set(x_85, 1, x_105); -lean_ctor_set(x_85, 0, x_119); +lean_ctor_set(x_85, 0, x_118); lean_ctor_set_uint64(x_85, sizeof(void*)*3, x_106); -x_120 = l_Lake_Module_recFetchSetup___lam__0___closed__5; -lean_ctor_set(x_99, 2, x_113); -lean_ctor_set(x_99, 1, x_111); -lean_ctor_set(x_99, 0, x_120); -lean_ctor_set_uint64(x_99, sizeof(void*)*3, x_112); +x_119 = l_Lake_Module_recFetchSetup___lam__0___closed__3; +lean_ctor_set(x_99, 2, x_112); +lean_ctor_set(x_99, 1, x_110); +lean_ctor_set(x_99, 0, x_119); +lean_ctor_set_uint64(x_99, sizeof(void*)*3, x_111); if (lean_obj_tag(x_13) == 0) { if (lean_obj_tag(x_14) == 0) { -lean_object* x_121; lean_object* x_122; -x_121 = l_Lake_BuildTrace_mix(x_85, x_116); -x_122 = l_Lake_BuildTrace_mix(x_121, x_99); +lean_object* x_120; lean_object* x_121; +x_120 = l_Lake_BuildTrace_mix(x_85, x_115); +x_121 = l_Lake_BuildTrace_mix(x_120, x_99); x_39 = x_102; x_40 = x_16; x_41 = x_17; @@ -21758,69 +21733,69 @@ x_43 = x_19; x_44 = x_20; x_45 = x_83; x_46 = x_84; -x_47 = x_122; +x_47 = x_121; x_48 = x_86; x_49 = x_22; goto block_82; } else { -lean_object* x_123; uint8_t x_124; -x_123 = lean_ctor_get(x_14, 0); -x_124 = lean_unbox(x_123); +lean_object* x_122; uint8_t x_123; +x_122 = lean_ctor_get(x_14, 0); +x_123 = lean_unbox(x_122); x_87 = x_99; x_88 = x_102; -x_89 = x_116; +x_89 = x_115; x_90 = x_85; -x_91 = x_124; +x_91 = x_123; goto block_97; } } else { -lean_object* x_125; uint8_t x_126; -x_125 = lean_ctor_get(x_13, 0); -x_126 = lean_unbox(x_125); +lean_object* x_124; uint8_t x_125; +x_124 = lean_ctor_get(x_13, 0); +x_125 = lean_unbox(x_124); x_87 = x_99; x_88 = x_102; -x_89 = x_116; +x_89 = x_115; x_90 = x_85; -x_91 = x_126; +x_91 = x_125; goto block_97; } } else { -lean_object* x_127; uint64_t 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; -x_127 = lean_ctor_get(x_85, 1); -x_128 = lean_ctor_get_uint64(x_85, sizeof(void*)*3); -x_129 = lean_ctor_get(x_85, 2); -lean_inc(x_129); -lean_inc(x_127); +lean_object* x_126; uint64_t 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; +x_126 = lean_ctor_get(x_85, 1); +x_127 = lean_ctor_get_uint64(x_85, sizeof(void*)*3); +x_128 = lean_ctor_get(x_85, 2); +lean_inc(x_128); +lean_inc(x_126); lean_dec(x_85); -x_130 = l_Lake_BuildTrace_mix(x_100, x_101); -x_131 = l_Lake_BuildTrace_mix(x_130, x_103); +x_129 = l_Lake_BuildTrace_mix(x_100, x_101); +x_130 = l_Lake_BuildTrace_mix(x_129, x_103); lean_inc(x_4); -x_132 = l_Lean_Name_toStringWithToken___at___Lean_Name_toString_spec__0(x_4, x_12); -x_133 = l_Lake_Module_recFetchSetup___lam__0___closed__4; -x_134 = lean_string_append(x_132, x_133); -x_135 = lean_alloc_ctor(0, 3, 8); -lean_ctor_set(x_135, 0, x_134); -lean_ctor_set(x_135, 1, x_105); -lean_ctor_set(x_135, 2, x_109); -lean_ctor_set_uint64(x_135, sizeof(void*)*3, x_106); -x_136 = l_Lake_Module_recFetchSetup___lam__0___closed__5; -lean_ctor_set(x_99, 2, x_129); -lean_ctor_set(x_99, 1, x_127); -lean_ctor_set(x_99, 0, x_136); -lean_ctor_set_uint64(x_99, sizeof(void*)*3, x_128); +x_131 = l_Lean_Name_toStringWithToken___at___Lean_Name_toString_spec__0(x_4, x_12); +x_132 = l_Lake_Module_recFetchSetup___lam__0___closed__2; +x_133 = lean_string_append(x_131, x_132); +x_134 = lean_alloc_ctor(0, 3, 8); +lean_ctor_set(x_134, 0, x_133); +lean_ctor_set(x_134, 1, x_105); +lean_ctor_set(x_134, 2, x_107); +lean_ctor_set_uint64(x_134, sizeof(void*)*3, x_106); +x_135 = l_Lake_Module_recFetchSetup___lam__0___closed__3; +lean_ctor_set(x_99, 2, x_128); +lean_ctor_set(x_99, 1, x_126); +lean_ctor_set(x_99, 0, x_135); +lean_ctor_set_uint64(x_99, sizeof(void*)*3, x_127); if (lean_obj_tag(x_13) == 0) { if (lean_obj_tag(x_14) == 0) { -lean_object* x_137; lean_object* x_138; -x_137 = l_Lake_BuildTrace_mix(x_135, x_131); -x_138 = l_Lake_BuildTrace_mix(x_137, x_99); +lean_object* x_136; lean_object* x_137; +x_136 = l_Lake_BuildTrace_mix(x_134, x_130); +x_137 = l_Lake_BuildTrace_mix(x_136, x_99); x_39 = x_102; x_40 = x_16; x_41 = x_17; @@ -21829,88 +21804,89 @@ x_43 = x_19; x_44 = x_20; x_45 = x_83; x_46 = x_84; -x_47 = x_138; +x_47 = x_137; x_48 = x_86; x_49 = x_22; goto block_82; } else { -lean_object* x_139; uint8_t x_140; -x_139 = lean_ctor_get(x_14, 0); -x_140 = lean_unbox(x_139); +lean_object* x_138; uint8_t x_139; +x_138 = lean_ctor_get(x_14, 0); +x_139 = lean_unbox(x_138); x_87 = x_99; x_88 = x_102; -x_89 = x_131; -x_90 = x_135; -x_91 = x_140; +x_89 = x_130; +x_90 = x_134; +x_91 = x_139; goto block_97; } } else { -lean_object* x_141; uint8_t x_142; -x_141 = lean_ctor_get(x_13, 0); -x_142 = lean_unbox(x_141); +lean_object* x_140; uint8_t x_141; +x_140 = lean_ctor_get(x_13, 0); +x_141 = lean_unbox(x_140); x_87 = x_99; x_88 = x_102; -x_89 = x_131; -x_90 = x_135; -x_91 = x_142; +x_89 = x_130; +x_90 = x_134; +x_91 = x_141; goto block_97; } } } else { -lean_object* x_143; uint64_t x_144; lean_object* x_145; lean_object* x_146; uint64_t x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; -x_143 = lean_ctor_get(x_99, 1); -x_144 = lean_ctor_get_uint64(x_99, sizeof(void*)*3); -lean_inc(x_143); +lean_object* x_142; uint64_t x_143; lean_object* x_144; lean_object* x_145; uint64_t 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; +x_142 = lean_ctor_get(x_99, 1); +x_143 = lean_ctor_get_uint64(x_99, sizeof(void*)*3); +x_144 = lean_ctor_get(x_99, 2); +lean_inc(x_144); +lean_inc(x_142); lean_dec(x_99); -x_145 = l_Lake_Module_recFetchSetup___lam__0___closed__3; -x_146 = lean_ctor_get(x_85, 1); -lean_inc_ref(x_146); -x_147 = lean_ctor_get_uint64(x_85, sizeof(void*)*3); -x_148 = lean_ctor_get(x_85, 2); -lean_inc_ref(x_148); +x_145 = lean_ctor_get(x_85, 1); +lean_inc_ref(x_145); +x_146 = lean_ctor_get_uint64(x_85, sizeof(void*)*3); +x_147 = lean_ctor_get(x_85, 2); +lean_inc_ref(x_147); if (lean_is_exclusive(x_85)) { lean_ctor_release(x_85, 0); lean_ctor_release(x_85, 1); lean_ctor_release(x_85, 2); - x_149 = x_85; + x_148 = x_85; } else { lean_dec_ref(x_85); - x_149 = lean_box(0); + x_148 = lean_box(0); } -x_150 = l_Lake_BuildTrace_mix(x_100, x_101); -x_151 = l_Lake_BuildTrace_mix(x_150, x_103); +x_149 = l_Lake_BuildTrace_mix(x_100, x_101); +x_150 = l_Lake_BuildTrace_mix(x_149, x_103); lean_inc(x_4); -x_152 = l_Lean_Name_toStringWithToken___at___Lean_Name_toString_spec__0(x_4, x_12); -x_153 = l_Lake_Module_recFetchSetup___lam__0___closed__4; -x_154 = lean_string_append(x_152, x_153); -if (lean_is_scalar(x_149)) { - x_155 = lean_alloc_ctor(0, 3, 8); +x_151 = l_Lean_Name_toStringWithToken___at___Lean_Name_toString_spec__0(x_4, x_12); +x_152 = l_Lake_Module_recFetchSetup___lam__0___closed__2; +x_153 = lean_string_append(x_151, x_152); +if (lean_is_scalar(x_148)) { + x_154 = lean_alloc_ctor(0, 3, 8); } else { - x_155 = x_149; + x_154 = x_148; } -lean_ctor_set(x_155, 0, x_154); -lean_ctor_set(x_155, 1, x_143); -lean_ctor_set(x_155, 2, x_145); -lean_ctor_set_uint64(x_155, sizeof(void*)*3, x_144); -x_156 = l_Lake_Module_recFetchSetup___lam__0___closed__5; -x_157 = lean_alloc_ctor(0, 3, 8); -lean_ctor_set(x_157, 0, x_156); -lean_ctor_set(x_157, 1, x_146); -lean_ctor_set(x_157, 2, x_148); -lean_ctor_set_uint64(x_157, sizeof(void*)*3, x_147); +lean_ctor_set(x_154, 0, x_153); +lean_ctor_set(x_154, 1, x_142); +lean_ctor_set(x_154, 2, x_144); +lean_ctor_set_uint64(x_154, sizeof(void*)*3, x_143); +x_155 = l_Lake_Module_recFetchSetup___lam__0___closed__3; +x_156 = lean_alloc_ctor(0, 3, 8); +lean_ctor_set(x_156, 0, x_155); +lean_ctor_set(x_156, 1, x_145); +lean_ctor_set(x_156, 2, x_147); +lean_ctor_set_uint64(x_156, sizeof(void*)*3, x_146); if (lean_obj_tag(x_13) == 0) { if (lean_obj_tag(x_14) == 0) { -lean_object* x_158; lean_object* x_159; -x_158 = l_Lake_BuildTrace_mix(x_155, x_151); -x_159 = l_Lake_BuildTrace_mix(x_158, x_157); +lean_object* x_157; lean_object* x_158; +x_157 = l_Lake_BuildTrace_mix(x_154, x_150); +x_158 = l_Lake_BuildTrace_mix(x_157, x_156); x_39 = x_102; x_40 = x_16; x_41 = x_17; @@ -21919,34 +21895,34 @@ x_43 = x_19; x_44 = x_20; x_45 = x_83; x_46 = x_84; -x_47 = x_159; +x_47 = x_158; x_48 = x_86; x_49 = x_22; goto block_82; } else { -lean_object* x_160; uint8_t x_161; -x_160 = lean_ctor_get(x_14, 0); -x_161 = lean_unbox(x_160); -x_87 = x_157; +lean_object* x_159; uint8_t x_160; +x_159 = lean_ctor_get(x_14, 0); +x_160 = lean_unbox(x_159); +x_87 = x_156; x_88 = x_102; -x_89 = x_151; -x_90 = x_155; -x_91 = x_161; +x_89 = x_150; +x_90 = x_154; +x_91 = x_160; goto block_97; } } else { -lean_object* x_162; uint8_t x_163; -x_162 = lean_ctor_get(x_13, 0); -x_163 = lean_unbox(x_162); -x_87 = x_157; +lean_object* x_161; uint8_t x_162; +x_161 = lean_ctor_get(x_13, 0); +x_162 = lean_unbox(x_161); +x_87 = x_156; x_88 = x_102; -x_89 = x_151; -x_90 = x_155; -x_91 = x_163; +x_89 = x_150; +x_90 = x_154; +x_91 = x_162; goto block_97; } } @@ -31770,9 +31746,18 @@ return x_1; static lean_object* _init_l_Std_DTreeMap_Internal_Impl_foldlM___at___Std_DTreeMap_Internal_Impl_foldl___at_____private_Lake_Build_Module_0__Lake_traceOptions_spec__0_spec__0___closed__2() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_nat_to_int(x_1); +return x_2; +} +} +static lean_object* _init_l_Std_DTreeMap_Internal_Impl_foldlM___at___Std_DTreeMap_Internal_Impl_foldl___at_____private_Lake_Build_Module_0__Lake_traceOptions_spec__0_spec__0___closed__3() { +_start: +{ uint32_t x_1; lean_object* x_2; lean_object* x_3; x_1 = 0; -x_2 = l_Lake_Module_recFetchSetup___lam__0___closed__2; +x_2 = l_Std_DTreeMap_Internal_Impl_foldlM___at___Std_DTreeMap_Internal_Impl_foldl___at_____private_Lake_Build_Module_0__Lake_traceOptions_spec__0_spec__0___closed__2; x_3 = lean_alloc_ctor(0, 1, 4); lean_ctor_set(x_3, 0, x_2); lean_ctor_set_uint32(x_3, sizeof(void*)*1, x_1); @@ -31809,7 +31794,7 @@ x_16 = 1723; x_17 = lean_string_hash(x_15); x_18 = lean_uint64_mix_hash(x_16, x_17); x_19 = l_Lake_Module_recFetchInput___lam__0___closed__0; -x_20 = l_Std_DTreeMap_Internal_Impl_foldlM___at___Std_DTreeMap_Internal_Impl_foldl___at_____private_Lake_Build_Module_0__Lake_traceOptions_spec__0_spec__0___closed__2; +x_20 = l_Std_DTreeMap_Internal_Impl_foldlM___at___Std_DTreeMap_Internal_Impl_foldl___at_____private_Lake_Build_Module_0__Lake_traceOptions_spec__0_spec__0___closed__3; x_21 = lean_alloc_ctor(0, 3, 8); lean_ctor_set(x_21, 0, x_15); lean_ctor_set(x_21, 1, x_19); @@ -31856,7 +31841,7 @@ if (x_5 == 0) { lean_object* x_6; uint8_t x_7; x_6 = lean_ctor_get(x_4, 0); -x_7 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234_(x_2, x_6); +x_7 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180_(x_2, x_6); lean_dec(x_6); if (x_7 == 0) { @@ -31883,7 +31868,7 @@ x_13 = lean_ctor_get(x_4, 1); lean_inc(x_13); lean_inc(x_12); lean_dec(x_4); -x_14 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234_(x_2, x_12); +x_14 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180_(x_2, x_12); lean_dec(x_12); if (x_14 == 0) { @@ -35063,7 +35048,7 @@ lean_dec_ref(x_178); x_180 = lean_string_append(x_175, x_179); lean_dec_ref(x_179); x_181 = l_Lake_Module_recFetchInput___lam__0___closed__0; -x_182 = l_Std_DTreeMap_Internal_Impl_foldlM___at___Std_DTreeMap_Internal_Impl_foldl___at_____private_Lake_Build_Module_0__Lake_traceOptions_spec__0_spec__0___closed__2; +x_182 = l_Std_DTreeMap_Internal_Impl_foldlM___at___Std_DTreeMap_Internal_Impl_foldl___at_____private_Lake_Build_Module_0__Lake_traceOptions_spec__0_spec__0___closed__3; x_183 = lean_alloc_ctor(0, 3, 8); lean_ctor_set(x_183, 0, x_180); lean_ctor_set(x_183, 1, x_181); @@ -51378,10 +51363,6 @@ l_Lake_Module_recFetchSetup___lam__0___closed__2 = _init_l_Lake_Module_recFetchS lean_mark_persistent(l_Lake_Module_recFetchSetup___lam__0___closed__2); l_Lake_Module_recFetchSetup___lam__0___closed__3 = _init_l_Lake_Module_recFetchSetup___lam__0___closed__3(); lean_mark_persistent(l_Lake_Module_recFetchSetup___lam__0___closed__3); -l_Lake_Module_recFetchSetup___lam__0___closed__4 = _init_l_Lake_Module_recFetchSetup___lam__0___closed__4(); -lean_mark_persistent(l_Lake_Module_recFetchSetup___lam__0___closed__4); -l_Lake_Module_recFetchSetup___lam__0___closed__5 = _init_l_Lake_Module_recFetchSetup___lam__0___closed__5(); -lean_mark_persistent(l_Lake_Module_recFetchSetup___lam__0___closed__5); l_Lake_Module_recFetchSetup___lam__7___closed__0 = _init_l_Lake_Module_recFetchSetup___lam__7___closed__0(); lean_mark_persistent(l_Lake_Module_recFetchSetup___lam__7___closed__0); l_Lake_Module_recFetchSetup___lam__7___closed__1 = _init_l_Lake_Module_recFetchSetup___lam__7___closed__1(); @@ -51426,6 +51407,8 @@ l_Std_DTreeMap_Internal_Impl_foldlM___at___Std_DTreeMap_Internal_Impl_foldl___at lean_mark_persistent(l_Std_DTreeMap_Internal_Impl_foldlM___at___Std_DTreeMap_Internal_Impl_foldl___at_____private_Lake_Build_Module_0__Lake_traceOptions_spec__0_spec__0___closed__1); l_Std_DTreeMap_Internal_Impl_foldlM___at___Std_DTreeMap_Internal_Impl_foldl___at_____private_Lake_Build_Module_0__Lake_traceOptions_spec__0_spec__0___closed__2 = _init_l_Std_DTreeMap_Internal_Impl_foldlM___at___Std_DTreeMap_Internal_Impl_foldl___at_____private_Lake_Build_Module_0__Lake_traceOptions_spec__0_spec__0___closed__2(); lean_mark_persistent(l_Std_DTreeMap_Internal_Impl_foldlM___at___Std_DTreeMap_Internal_Impl_foldl___at_____private_Lake_Build_Module_0__Lake_traceOptions_spec__0_spec__0___closed__2); +l_Std_DTreeMap_Internal_Impl_foldlM___at___Std_DTreeMap_Internal_Impl_foldl___at_____private_Lake_Build_Module_0__Lake_traceOptions_spec__0_spec__0___closed__3 = _init_l_Std_DTreeMap_Internal_Impl_foldlM___at___Std_DTreeMap_Internal_Impl_foldl___at_____private_Lake_Build_Module_0__Lake_traceOptions_spec__0_spec__0___closed__3(); +lean_mark_persistent(l_Std_DTreeMap_Internal_Impl_foldlM___at___Std_DTreeMap_Internal_Impl_foldl___at_____private_Lake_Build_Module_0__Lake_traceOptions_spec__0_spec__0___closed__3); l_Lake_resolveArtifactsUsing_x3f___at___Lake_Module_recBuildLean_spec__2___closed__0 = _init_l_Lake_resolveArtifactsUsing_x3f___at___Lake_Module_recBuildLean_spec__2___closed__0(); lean_mark_persistent(l_Lake_resolveArtifactsUsing_x3f___at___Lake_Module_recBuildLean_spec__2___closed__0); l_Lake_resolveArtifactsUsing_x3f___at___Lake_Module_recBuildLean_spec__2___closed__1 = _init_l_Lake_resolveArtifactsUsing_x3f___at___Lake_Module_recBuildLean_spec__2___closed__1(); diff --git a/stage0/stdlib/Lake/Build/Trace.c b/stage0/stdlib/Lake/Build/Trace.c index ddcb023cca..91c4b6a23c 100644 --- a/stage0/stdlib/Lake/Build/Trace.c +++ b/stage0/stdlib/Lake/Build/Trace.c @@ -70,7 +70,6 @@ LEAN_EXPORT lean_object* l_Lake_instComputeTraceArrayOfMonad(lean_object*, lean_ LEAN_EXPORT lean_object* l_Lake_Hash_toJson___boxed(lean_object*); LEAN_EXPORT lean_object* l_List_foldl___at___Std_Format_joinSep___at___Array_Array_repr___at___Lake_reprBuildTrace____x40_Lake_Build_Trace___hyg_1370__spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_instComputeHashTextFilePathIO___lam__0___boxed(lean_object*, lean_object*); -lean_object* l_IO_FS_reprSystemTime____x40_Init_System_IO___hyg_3102____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_Hash_ofNat___boxed(lean_object*); static lean_object* l_Lake_BuildTrace_withoutInputs___closed__0; uint64_t lean_string_hash(lean_object*); @@ -79,6 +78,7 @@ static lean_object* l_Lake_reprHash___redArg___closed__2____x40_Lake_Build_Trace LEAN_EXPORT lean_object* l_Lake_computeHash___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_Hash_toJson(uint64_t); LEAN_EXPORT lean_object* l_Lake_computeFileHash(lean_object*, uint8_t, lean_object*); +lean_object* l_IO_FS_beqSystemTime____x40_Init_System_IO___hyg_3106____boxed(lean_object*, lean_object*); static lean_object* l_Lake_reprBuildTrace___redArg___closed__0____x40_Lake_Build_Trace___hyg_1370_; LEAN_EXPORT lean_object* l_Lake_instComputeHashArrayOfMonad___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_Hash_ofString_x3f(lean_object*); @@ -92,7 +92,6 @@ LEAN_EXPORT lean_object* l_Lake_computeListTrace___redArg___lam__1(lean_object*, LEAN_EXPORT lean_object* l_Lake_mixTraceList___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_MTime_instMin; lean_object* l_Id_instMonad___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_IO_FS_beqSystemTime____x40_Init_System_IO___hyg_3160____boxed(lean_object*, lean_object*); lean_object* lean_string_utf8_byte_size(lean_object*); LEAN_EXPORT lean_object* l_Lake_BuildTrace_mix(lean_object*, lean_object*); static lean_object* l_Lake_mixTraceArray___redArg___closed__6; @@ -144,7 +143,6 @@ LEAN_EXPORT lean_object* l_Lake_BuildTrace_checkAgainstTime___boxed(lean_object* lean_object* lean_array_to_list(lean_object*); LEAN_EXPORT lean_object* l_Lake_reprHash___redArg____x40_Lake_Build_Trace___hyg_624_(uint64_t); LEAN_EXPORT lean_object* l_Lake_BuildTrace_ofMTime(lean_object*, lean_object*); -uint8_t l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234_(lean_object*, lean_object*); static lean_object* l_Lake_reprHash___redArg___closed__7____x40_Lake_Build_Trace___hyg_624_; LEAN_EXPORT lean_object* l_Lake_instComputeTraceIOMTimeOfGetMTime___boxed(lean_object*, lean_object*); static lean_object* l_Lake_reprHash___redArg___closed__0____x40_Lake_Build_Trace___hyg_624_; @@ -167,6 +165,7 @@ LEAN_EXPORT lean_object* l_Lake_BuildTrace_nil(lean_object*); LEAN_EXPORT lean_object* l_Lake_computeFileHash___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_MTime_instMin___lam__0___boxed(lean_object*, lean_object*); static lean_object* l_Lake_mixTraceArray___redArg___closed__7; +uint8_t l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180_(lean_object*, lean_object*); static lean_object* l_Lake_Hash_instToString___closed__0; LEAN_EXPORT lean_object* l_Lake_BuildTrace_instComputeTraceIOOfToStringOfComputeHashOfMonadLiftTOfGetMTime(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_String_anyAux___at___String_toNat_x3f_spec__1(uint8_t, lean_object*, lean_object*, lean_object*); @@ -185,9 +184,7 @@ LEAN_EXPORT lean_object* l_Lake_BuildTrace_instCoeHash___lam__0(uint64_t); lean_object* l_IO_FS_readFile(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_instGetMTimeFilePath; static lean_object* l_Lake_instReprBuildTrace___closed__0; -lean_object* l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234____boxed(lean_object*, lean_object*); static lean_object* l_Lake_instBEqHash___closed__0; -lean_object* l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3102_(lean_object*); LEAN_EXPORT lean_object* l_Lake_mixTraceArray___redArg___lam__0(lean_object*, lean_object*, lean_object*); static lean_object* l_Lake_Hash_instMixTrace___closed__0; static lean_object* l_Lake_MTime_instOfNat___closed__1; @@ -203,6 +200,7 @@ LEAN_EXPORT lean_object* l_Lake_MTime_instRepr; LEAN_EXPORT uint8_t l_Lake_decEqHash____x40_Lake_Build_Trace___hyg_534_(uint64_t, uint64_t); LEAN_EXPORT lean_object* l_Lake_Hash_load_x3f___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_instGetMTimeTextFilePath___lam__0(lean_object*, lean_object*); +lean_object* l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3048_(lean_object*); LEAN_EXPORT lean_object* l_Lake_getFileMTime(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_BuildTrace_compute(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); @@ -211,6 +209,7 @@ uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT uint64_t l_Lake_Hash_nil; LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___Array_Array_repr___at___Lake_reprBuildTrace____x40_Lake_Build_Trace___hyg_1370__spec__0_spec__0(lean_object*, lean_object*); static lean_object* l_Array_Array_repr___at___Lake_reprBuildTrace____x40_Lake_Build_Trace___hyg_1370__spec__0___closed__6; +lean_object* l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_instComputeTraceListOfMonad___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_instComputeHashArrayOfMonad(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_instReprBuildTrace; @@ -240,6 +239,7 @@ static lean_object* l_Lake_reprBuildTrace___redArg___closed__3____x40_Lake_Build lean_object* l_instMonadLiftT___lam__0___boxed(lean_object*, lean_object*); uint8_t lean_uint64_dec_eq(uint64_t, uint64_t); LEAN_EXPORT lean_object* l_Lake_reprBuildTrace___redArg____x40_Lake_Build_Trace___hyg_1370_(lean_object*); +lean_object* l_IO_FS_reprSystemTime____x40_Init_System_IO___hyg_3048____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_MTime_checkUpToDate___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lake_reprHash___redArg___closed__6____x40_Lake_Build_Trace___hyg_624_; LEAN_EXPORT lean_object* l_Lake_MTime_checkUpToDate___redArg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -2111,7 +2111,7 @@ static lean_object* _init_l_Lake_MTime_instBEq___closed__0() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_IO_FS_beqSystemTime____x40_Init_System_IO___hyg_3160____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l_IO_FS_beqSystemTime____x40_Init_System_IO___hyg_3106____boxed), 2, 0); return x_1; } } @@ -2127,7 +2127,7 @@ static lean_object* _init_l_Lake_MTime_instRepr___closed__0() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_IO_FS_reprSystemTime____x40_Init_System_IO___hyg_3102____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l_IO_FS_reprSystemTime____x40_Init_System_IO___hyg_3048____boxed), 2, 0); return x_1; } } @@ -2143,7 +2143,7 @@ static lean_object* _init_l_Lake_MTime_instOrd___closed__0() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180____boxed), 2, 0); return x_1; } } @@ -2175,7 +2175,7 @@ LEAN_EXPORT lean_object* l_Lake_MTime_instMin___lam__0(lean_object* x_1, lean_ob _start: { uint8_t x_3; -x_3 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234_(x_1, x_2); +x_3 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180_(x_1, x_2); if (x_3 == 2) { lean_inc_ref(x_2); @@ -2210,7 +2210,7 @@ LEAN_EXPORT lean_object* l_Lake_MTime_instMax___lam__0(lean_object* x_1, lean_ob _start: { uint8_t x_3; -x_3 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234_(x_1, x_2); +x_3 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180_(x_1, x_2); if (x_3 == 2) { lean_inc_ref(x_1); @@ -2472,7 +2472,7 @@ if (x_6 == 0) { lean_object* x_7; uint8_t x_8; x_7 = lean_ctor_get(x_5, 0); -x_8 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234_(x_3, x_7); +x_8 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180_(x_3, x_7); lean_dec(x_7); if (x_8 == 0) { @@ -2499,7 +2499,7 @@ x_14 = lean_ctor_get(x_5, 1); lean_inc(x_14); lean_inc(x_13); lean_dec(x_5); -x_15 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234_(x_3, x_13); +x_15 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180_(x_3, x_13); lean_dec(x_13); if (x_15 == 0) { @@ -3067,7 +3067,7 @@ x_41 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_6); x_42 = l_Lake_reprBuildTrace___redArg___closed__13____x40_Lake_Build_Trace___hyg_1370_; -x_43 = l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3102_(x_5); +x_43 = l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3048_(x_5); lean_dec_ref(x_5); x_44 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_44, 0, x_42); @@ -3529,7 +3529,7 @@ lean_dec(x_12); x_13 = lean_ctor_get(x_2, 0); lean_dec(x_13); x_14 = lean_uint64_mix_hash(x_5, x_7); -x_15 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234_(x_6, x_8); +x_15 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180_(x_6, x_8); if (x_15 == 2) { lean_dec_ref(x_8); @@ -3553,7 +3553,7 @@ else uint64_t x_16; uint8_t x_17; lean_dec(x_2); x_16 = lean_uint64_mix_hash(x_5, x_7); -x_17 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234_(x_6, x_8); +x_17 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180_(x_6, x_8); if (x_17 == 2) { lean_object* x_18; diff --git a/stage0/stdlib/Lake/Config/Artifact.c b/stage0/stdlib/Lake/Config/Artifact.c index bc4729cf25..671ed3cc99 100644 --- a/stage0/stdlib/Lake/Config/Artifact.c +++ b/stage0/stdlib/Lake/Config/Artifact.c @@ -43,7 +43,7 @@ static lean_object* l_Lake_reprArtifact___redArg___closed__13____x40_Lake_Config static lean_object* l_Lake_reprArtifact___redArg___closed__7____x40_Lake_Config_Artifact___hyg_59_; static lean_object* l_Lake_reprArtifact___redArg___closed__15____x40_Lake_Config_Artifact___hyg_59_; static lean_object* l_Lake_reprArtifact___redArg___closed__9____x40_Lake_Config_Artifact___hyg_59_; -lean_object* l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3102_(lean_object*); +lean_object* l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3048_(lean_object*); static lean_object* l_Lake_instInhabitedArtifact___closed__0; LEAN_EXPORT lean_object* l_Lake_Artifact_trace(lean_object*); lean_object* l_Repr_addAppParen(lean_object*, lean_object*); @@ -393,7 +393,7 @@ x_35 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_6); x_36 = l_Lake_reprArtifact___redArg___closed__16____x40_Lake_Config_Artifact___hyg_59_; -x_37 = l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3102_(x_4); +x_37 = l_IO_FS_reprSystemTime___redArg____x40_Init_System_IO___hyg_3048_(x_4); x_38 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_38, 0, x_36); lean_ctor_set(x_38, 1, x_37); diff --git a/stage0/stdlib/Lake/Config/ConfigDecl.c b/stage0/stdlib/Lake/Config/ConfigDecl.c index ea43b5ad98..2eb7d74690 100644 --- a/stage0/stdlib/Lake/Config/ConfigDecl.c +++ b/stage0/stdlib/Lake/Config/ConfigDecl.c @@ -1134,6 +1134,10 @@ switch (lean_obj_tag(x_1)) { case 0: { lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec_ref(x_3); lean_inc(x_5); return x_5; } @@ -1157,64 +1161,82 @@ x_14 = lean_string_dec_eq(x_10, x_13); if (x_14 == 0) { lean_object* x_15; uint8_t x_16; +lean_dec_ref(x_3); x_15 = l___private_Lake_Config_ConfigDecl_0__Lake_ConfigType_match__1_splitter___redArg___closed__2; x_16 = lean_string_dec_eq(x_10, x_15); if (x_16 == 0) { lean_object* x_17; uint8_t x_18; +lean_dec_ref(x_4); x_17 = l___private_Lake_Config_ConfigDecl_0__Lake_ConfigType_match__1_splitter___redArg___closed__3; x_18 = lean_string_dec_eq(x_10, x_17); if (x_18 == 0) { lean_object* x_19; uint8_t x_20; +lean_dec_ref(x_6); x_19 = l___private_Lake_Config_ConfigDecl_0__Lake_ConfigType_match__1_splitter___redArg___closed__4; x_20 = lean_string_dec_eq(x_10, x_19); lean_dec_ref(x_10); if (x_20 == 0) { lean_object* x_21; +lean_dec_ref(x_7); x_21 = lean_apply_7(x_8, x_1, lean_box(0), lean_box(0), lean_box(0), lean_box(0), lean_box(0), lean_box(0)); return x_21; } else { +lean_object* x_22; lean_dec_ref(x_8); lean_dec_ref(x_1); -lean_inc(x_7); -return x_7; -} -} -else -{ -lean_dec_ref(x_10); -lean_dec_ref(x_8); -lean_dec_ref(x_1); -lean_inc(x_6); -return x_6; -} -} -else -{ -lean_dec_ref(x_10); -lean_dec_ref(x_8); -lean_dec_ref(x_1); -lean_inc(x_4); -return x_4; -} -} -else -{ -lean_dec_ref(x_10); -lean_dec_ref(x_8); -lean_dec_ref(x_1); -lean_inc(x_3); -return x_3; +x_22 = lean_apply_4(x_7, lean_box(0), lean_box(0), lean_box(0), lean_box(0)); +return x_22; +} +} +else +{ +lean_object* x_23; +lean_dec_ref(x_10); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_1); +x_23 = lean_apply_3(x_6, lean_box(0), lean_box(0), lean_box(0)); +return x_23; +} +} +else +{ +lean_object* x_24; +lean_dec_ref(x_10); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_1); +x_24 = lean_apply_2(x_4, lean_box(0), lean_box(0)); +return x_24; +} +} +else +{ +lean_object* x_25; +lean_dec_ref(x_10); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec_ref(x_1); +x_25 = lean_apply_1(x_3, lean_box(0)); +return x_25; } } else { lean_dec_ref(x_10); lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec_ref(x_3); lean_dec_ref(x_1); lean_inc(x_2); return x_2; @@ -1222,17 +1244,25 @@ return x_2; } else { -lean_object* x_22; +lean_object* x_26; lean_dec(x_9); -x_22 = lean_apply_7(x_8, x_1, lean_box(0), lean_box(0), lean_box(0), lean_box(0), lean_box(0), lean_box(0)); -return x_22; +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_26 = lean_apply_7(x_8, x_1, lean_box(0), lean_box(0), lean_box(0), lean_box(0), lean_box(0), lean_box(0)); +return x_26; } } default: { -lean_object* x_23; -x_23 = lean_apply_7(x_8, x_1, lean_box(0), lean_box(0), lean_box(0), lean_box(0), lean_box(0), lean_box(0)); -return x_23; +lean_object* x_27; +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_27 = lean_apply_7(x_8, x_1, lean_box(0), lean_box(0), lean_box(0), lean_box(0), lean_box(0), lean_box(0)); +return x_27; } } } @@ -1250,11 +1280,7 @@ _start: { lean_object* x_9; x_9 = l___private_Lake_Config_ConfigDecl_0__Lake_ConfigType_match__1_splitter___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_7); -lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); lean_dec(x_2); return x_9; } @@ -1264,11 +1290,7 @@ _start: { lean_object* x_10; x_10 = l___private_Lake_Config_ConfigDecl_0__Lake_ConfigType_match__1_splitter(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); -lean_dec(x_4); lean_dec(x_3); return x_10; } diff --git a/stage0/stdlib/Lake/Config/Module.c b/stage0/stdlib/Lake/Config/Module.c index d5c5e83841..49f994de69 100644 --- a/stage0/stdlib/Lake/Config/Module.c +++ b/stage0/stdlib/Lake/Config/Module.c @@ -101,7 +101,6 @@ static uint8_t l_Lake_Module_bcFile_x3f___closed__0; static lean_object* l_Lake_LeanLib_findModuleBySrc_x3f___closed__0; LEAN_EXPORT lean_object* l_Lake_Package_findModule_x3f(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_Module_nativeFacets___boxed(lean_object*, lean_object*); -uint8_t l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234_(lean_object*, lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); lean_object* l_System_FilePath_components(lean_object*); static lean_object* l_Lake_LeanLib_findModuleBySrc_x3f___closed__2; @@ -116,6 +115,7 @@ LEAN_EXPORT lean_object* l_Array_filterMapM___at___Lake_LeanLib_rootModules_spec LEAN_EXPORT lean_object* l_Lake_instBEqModule___lam__0___boxed(lean_object*, lean_object*); static lean_object* l_Lake_ModuleSet_empty___closed__2; LEAN_EXPORT lean_object* l_Lake_Module_srcPath___boxed(lean_object*, lean_object*); +uint8_t l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_Module_platformIndependent___boxed(lean_object*); lean_object* l_List_foldl___at___Lake_modOfFilePath_spec__0(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at___Lake_Package_findModule_x3f_spec__0___redArg(lean_object*, lean_object*, lean_object*); @@ -3236,7 +3236,7 @@ lean_dec(x_32); lean_inc(x_33); lean_inc_ref(x_36); lean_ctor_set(x_30, 0, x_36); -x_41 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234_(x_34, x_35); +x_41 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180_(x_34, x_35); if (x_41 == 2) { lean_dec_ref(x_35); @@ -3252,7 +3252,7 @@ goto block_40; block_40: { uint8_t x_38; -x_38 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234_(x_37, x_36); +x_38 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180_(x_37, x_36); lean_dec_ref(x_36); if (x_38 == 2) { @@ -3298,7 +3298,7 @@ lean_inc_ref(x_46); x_47 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_47, 0, x_46); lean_ctor_set(x_47, 1, x_43); -x_52 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234_(x_44, x_45); +x_52 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180_(x_44, x_45); if (x_52 == 2) { lean_dec_ref(x_45); @@ -3314,7 +3314,7 @@ goto block_51; block_51: { uint8_t x_49; -x_49 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3234_(x_48, x_46); +x_49 = l_IO_FS_ordSystemTime____x40_Init_System_IO___hyg_3180_(x_48, x_46); lean_dec_ref(x_46); if (x_49 == 2) { diff --git a/stage0/stdlib/Lean/BuiltinDocAttr.c b/stage0/stdlib/Lean/BuiltinDocAttr.c index 47d0308310..e8b27366c5 100644 --- a/stage0/stdlib/Lean/BuiltinDocAttr.c +++ b/stage0/stdlib/Lean/BuiltinDocAttr.c @@ -190,54 +190,96 @@ return x_1; LEAN_EXPORT lean_object* l_Lean_findDeclarationRangesCore_x3f___at___Lean_findDeclarationRanges_x3f___at___Lean_declareBuiltinDocStringAndRanges_spec__0_spec__1___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_4; uint8_t x_5; +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; x_4 = lean_st_ref_get(x_2, x_3); -x_5 = !lean_is_exclusive(x_4); -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; -x_6 = lean_ctor_get(x_4, 0); -x_7 = lean_ctor_get(x_6, 0); +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_4, 1); +lean_inc(x_6); +lean_dec_ref(x_4); +x_7 = lean_ctor_get(x_5, 0); lean_inc_ref(x_7); -lean_dec(x_6); -x_8 = l_Lean_findDeclarationRangesCore_x3f___at___Lean_findDeclarationRanges_x3f___at___Lean_declareBuiltinDocStringAndRanges_spec__0_spec__1___redArg___closed__0; -x_9 = lean_ctor_get(x_8, 0); -lean_inc_ref(x_9); -x_10 = lean_ctor_get(x_9, 2); -lean_inc(x_10); -lean_dec_ref(x_9); -x_11 = l_Lean_instInhabitedDeclarationRanges; -x_12 = 1; -x_13 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_11, x_8, x_7, x_1, x_10, x_12); +lean_dec(x_5); +x_8 = lean_st_ref_get(x_2, x_6); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_10, 0); +lean_inc_ref(x_11); lean_dec(x_10); -lean_ctor_set(x_4, 0, x_13); -return x_4; +x_12 = l_Lean_findDeclarationRangesCore_x3f___at___Lean_findDeclarationRanges_x3f___at___Lean_declareBuiltinDocStringAndRanges_spec__0_spec__1___redArg___closed__0; +x_13 = lean_ctor_get(x_12, 0); +lean_inc_ref(x_13); +x_14 = lean_ctor_get(x_13, 2); +lean_inc(x_14); +lean_dec_ref(x_13); +x_15 = l_Lean_instInhabitedDeclarationRanges; +x_16 = 0; +lean_inc(x_1); +x_17 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_15, x_12, x_7, x_1, x_14, x_16); +if (lean_obj_tag(x_17) == 0) +{ +uint8_t x_18; lean_object* x_19; +x_18 = 1; +x_19 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_15, x_12, x_11, x_1, x_14, x_18); +lean_dec(x_14); +lean_ctor_set(x_8, 0, x_19); +return x_8; } else { -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; -x_14 = lean_ctor_get(x_4, 0); -x_15 = lean_ctor_get(x_4, 1); -lean_inc(x_15); -lean_inc(x_14); -lean_dec(x_4); -x_16 = lean_ctor_get(x_14, 0); -lean_inc_ref(x_16); lean_dec(x_14); -x_17 = l_Lean_findDeclarationRangesCore_x3f___at___Lean_findDeclarationRanges_x3f___at___Lean_declareBuiltinDocStringAndRanges_spec__0_spec__1___redArg___closed__0; -x_18 = lean_ctor_get(x_17, 0); -lean_inc_ref(x_18); -x_19 = lean_ctor_get(x_18, 2); -lean_inc(x_19); -lean_dec_ref(x_18); -x_20 = l_Lean_instInhabitedDeclarationRanges; -x_21 = 1; -x_22 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_20, x_17, x_16, x_1, x_19, x_21); -lean_dec(x_19); -x_23 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_23, 0, x_22); -lean_ctor_set(x_23, 1, x_15); -return x_23; +lean_dec_ref(x_11); +lean_dec(x_1); +lean_ctor_set(x_8, 0, x_17); +return x_8; +} +} +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; uint8_t x_27; lean_object* x_28; +x_20 = lean_ctor_get(x_8, 0); +x_21 = lean_ctor_get(x_8, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_8); +x_22 = lean_ctor_get(x_20, 0); +lean_inc_ref(x_22); +lean_dec(x_20); +x_23 = l_Lean_findDeclarationRangesCore_x3f___at___Lean_findDeclarationRanges_x3f___at___Lean_declareBuiltinDocStringAndRanges_spec__0_spec__1___redArg___closed__0; +x_24 = lean_ctor_get(x_23, 0); +lean_inc_ref(x_24); +x_25 = lean_ctor_get(x_24, 2); +lean_inc(x_25); +lean_dec_ref(x_24); +x_26 = l_Lean_instInhabitedDeclarationRanges; +x_27 = 0; +lean_inc(x_1); +x_28 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_26, x_23, x_7, x_1, x_25, x_27); +if (lean_obj_tag(x_28) == 0) +{ +uint8_t x_29; lean_object* x_30; lean_object* x_31; +x_29 = 1; +x_30 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_26, x_23, x_22, x_1, x_25, x_29); +lean_dec(x_25); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_21); +return x_31; +} +else +{ +lean_object* x_32; +lean_dec(x_25); +lean_dec_ref(x_22); +lean_dec(x_1); +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_28); +lean_ctor_set(x_32, 1, x_21); +return x_32; +} } } } diff --git a/stage0/stdlib/Lean/Compiler/LCNF/ToMono.c b/stage0/stdlib/Lean/Compiler/LCNF/ToMono.c index 54b4d070bc..cb65a2cedf 100644 --- a/stage0/stdlib/Lean/Compiler/LCNF/ToMono.c +++ b/stage0/stdlib/Lean/Compiler/LCNF/ToMono.c @@ -13,12 +13,10 @@ #ifdef __cplusplus extern "C" { #endif -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__1____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; static lean_object* l_Lean_Compiler_LCNF_trivialStructToMono___closed__1; lean_object* l_Lean_Compiler_LCNF_mkAuxLetDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_argsToMonoWithFnType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Param_toMono___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_panic___at___Lean_Compiler_LCNF_LetValue_toMono_spec__0___closed__0; static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__28; @@ -26,7 +24,6 @@ static lean_object* l_Lean_Compiler_LCNF_casesThunkToMono___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_argToMonoDeferredCheck(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_trivialStructToMono___closed__2; static lean_object* l_Lean_Compiler_LCNF_casesTaskToMono___redArg___closed__1; -LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(lean_object*); static lean_object* l_Lean_Compiler_LCNF_throwNoncomputableError___redArg___closed__2; static lean_object* l_Lean_throwNamedError___at___Lean_Compiler_LCNF_throwNoncomputableError_spec__0___redArg___closed__2; lean_object* l_Lean_Core_instMonadCoreM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -39,10 +36,8 @@ static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__8; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand_go___at___Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Compiler_LCNF_Param_toMono_spec__1_spec__1___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_casesThunkToMono(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__5; -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__20____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; static lean_object* l_Lean_Compiler_LCNF_casesThunkToMono___redArg___closed__5; static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__7; -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__15____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__15; static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__10; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_argToMono___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -50,13 +45,9 @@ extern lean_object* l_Lean_Compiler_LCNF_instInhabitedLetValue; static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__16; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_LetValue_toMono(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_casesNatToMono___redArg___closed__1; -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__24____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__17; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_uint64_to_usize(uint64_t); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_casesThunkToMono___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__3____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__19____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__20; static lean_object* l_Lean_Compiler_LCNF_casesTaskToMono___redArg___closed__0; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___Lean_Compiler_LCNF_checkFVarUse_spec__0___redArg___boxed(lean_object*, lean_object*); @@ -66,6 +57,7 @@ static lean_object* l_Lean_Compiler_LCNF_casesNatToMono___redArg___closed__4; static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__21; extern lean_object* l_Lean_Compiler_LCNF_instInhabitedCode; static lean_object* l_Lean_Compiler_LCNF_casesArrayToMono___redArg___closed__2; +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__8____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__30; uint8_t lean_usize_dec_eq(size_t, size_t); static lean_object* l_Lean_Compiler_LCNF_casesByteArrayToMono___redArg___closed__3; @@ -80,7 +72,6 @@ LEAN_EXPORT lean_object* l_Lean_throwNamedError___at___Lean_Compiler_LCNF_throwN LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_casesTaskToMono___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___Std_DHashMap_Internal_Raw_u2080_expand_go___at___Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Compiler_LCNF_Param_toMono_spec__1_spec__1_spec__1___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_throwNamedError___at___Lean_Compiler_LCNF_throwNoncomputableError_spec__0___redArg___closed__4; static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__20; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); @@ -102,7 +93,6 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_Code_t LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_casesUIntToMono___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__19; extern lean_object* l_Lean_Compiler_LCNF_instInhabitedAlt; -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__4____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__6; lean_object* l_Lean_stringToMessageData(lean_object*); static lean_object* l_Lean_Compiler_LCNF_casesStringToMono___redArg___closed__5; @@ -110,6 +100,7 @@ static lean_object* l_Lean_Compiler_LCNF_toMono___closed__0; static lean_object* l_Lean_Compiler_LCNF_casesIntToMono___redArg___closed__7; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_casesNatToMono(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_getImplementedBy_x3f(lean_object*, lean_object*); +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__13____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Compiler_LCNF_mkFieldParamsForComputedFields_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__9; LEAN_EXPORT lean_object* l_panic___at___Lean_Compiler_LCNF_Code_toMono_spec__0(lean_object*); @@ -117,11 +108,9 @@ static lean_object* l_Lean_Compiler_LCNF_casesIntToMono___redArg___closed__4; static lean_object* l_Lean_Compiler_LCNF_throwNoncomputableError___redArg___closed__6; uint8_t lean_string_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_DeclValue_mapCodeM___at___Lean_Compiler_LCNF_Decl_toMono_go_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__0____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Compiler_LCNF_argsToMonoWithFnType_spec__0___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_LCNF_LCtx_toLocalContext(lean_object*); lean_object* l_ReaderT_instMonad___redArg(lean_object*); -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__12____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___Lean_Compiler_LCNF_checkFVarUse_spec__0(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__21; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_checkFVarUseDeferred___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -135,12 +124,15 @@ static lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_casesIntToM static lean_object* l_Lean_Compiler_LCNF_casesNatToMono___redArg___closed__3; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_argToMono(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_ptr_addr(lean_object*); +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__14____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; static lean_object* l_Lean_Compiler_LCNF_casesIntToMono___redArg___closed__0; static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__18; +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__15____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; size_t lean_usize_of_nat(lean_object*); +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__4____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; lean_object* l_Lean_Compiler_LCNF_Decl_saveMono___redArg(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__6____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__1; +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__0____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; static lean_object* l_Lean_Compiler_LCNF_casesByteArrayToMono___redArg___closed__2; static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__11; static lean_object* l_Lean_throwNamedError___at___Lean_Compiler_LCNF_throwNoncomputableError_spec__0___redArg___closed__7; @@ -153,6 +145,7 @@ static lean_object* l_Lean_Compiler_LCNF_casesFloatArrayToMono___redArg___closed lean_object* l_Lean_Compiler_LCNF_eraseParams___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Param_toMono___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Compiler_LCNF_mkFieldParamsForComputedFields_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__19____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; static lean_object* l_Lean_throwNamedError___at___Lean_Compiler_LCNF_throwNoncomputableError_spec__0___redArg___closed__5; uint64_t lean_uint64_shift_right(uint64_t, uint64_t); static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__9; @@ -165,7 +158,6 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_toMono lean_object* lean_nat_div(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_toMono___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_casesIntToMono_spec__0___closed__3; -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__2____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_casesTaskToMono___redArg___closed__4; static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__14; @@ -176,13 +168,11 @@ lean_object* l_instMonadEIO(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_FunDecl_toMono_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_casesIntToMono_spec__0___boxed(lean_object**); LEAN_EXPORT lean_object* l_panic___at___Lean_Compiler_LCNF_mkFieldParamsForComputedFields_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__21____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; static lean_object* l_Lean_Compiler_LCNF_trivialStructToMono___closed__7; static lean_object* l_panic___at___Lean_Compiler_LCNF_LetValue_toMono_spec__0___closed__2; static lean_object* l_Lean_Compiler_LCNF_throwNoncomputableError___redArg___closed__1; static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__16; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_casesStringToMono(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__5____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Decl_toMono(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_FunDecl_toMono_spec__0___redArg(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -212,22 +202,25 @@ lean_object* l_Array_ofSubarray___redArg(lean_object*); uint8_t l_Lean_isNoncomputable(lean_object*, lean_object*); uint8_t l_Lean_Compiler_LCNF_isTypeFormerType(lean_object*); static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__3; -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__8____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__20____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_casesArrayToMono___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__3____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; lean_object* l_Lean_Compiler_LCNF_LCtx_addLetDecl(lean_object*, lean_object*); +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__7____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__4; static lean_object* l_Lean_Compiler_LCNF_casesUIntToMono___redArg___closed__1; +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__22____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; static lean_object* l_panic___at___Lean_Compiler_LCNF_LetValue_toMono_spec__0___closed__1; +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__21____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___Lean_Compiler_LCNF_checkFVarUse_spec__0___redArg(lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__13; +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(lean_object*); lean_object* l___private_Lean_Compiler_LCNF_CompilerM_0__Lean_Compiler_LCNF_updateFunDeclImp___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__12; static lean_object* l_Lean_Compiler_LCNF_argToMonoBase___closed__0; -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__14____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Compiler_LCNF_Param_toMono_spec__0___redArg___boxed(lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__25____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__28; static lean_object* l_Lean_Compiler_LCNF_Decl_toMono___closed__5; uint8_t l_Lean_isExtern(lean_object*, lean_object*); @@ -236,7 +229,6 @@ lean_object* l_Lean_beqFVarId____x40_Lean_Expr___hyg_1502____boxed(lean_object*, LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Compiler_LCNF_argsToMonoWithFnType_spec__0(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_Code_toMono_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__35; -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__7____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ctorAppToMono___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_trivialStructToMono___closed__3; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_Code_toMono_spec__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*); @@ -280,22 +272,20 @@ static lean_object* l_Lean_Compiler_LCNF_casesThunkToMono___redArg___closed__6; static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__36; lean_object* l_Lean_Compiler_LCNF_instMonadCompilerM___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__1____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; extern lean_object* l_Lean_instFVarIdHashSetEmptyCollection; -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__13____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; static lean_object* l_Lean_Compiler_LCNF_Decl_toMono___closed__4; -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__11____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__32; LEAN_EXPORT lean_object* l_Lean_throwNamedError___at___Lean_Compiler_LCNF_throwNoncomputableError_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkArrow___redArg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_casesIntToMono___redArg___closed__9; lean_object* l_Lean_Compiler_LCNF_instMonadCompilerM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_FunDecl_toMono_spec__0(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__1___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at___Lean_Compiler_LCNF_Code_toMono_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_casesFloatArrayToMono___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_Code_toMono_spec__4_spec__4___closed__1; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__7; static lean_object* l_Lean_Compiler_LCNF_casesFloatArrayToMono___redArg___closed__0; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Compiler_LCNF_Param_toMono_spec__1___redArg(lean_object*); @@ -303,12 +293,14 @@ LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_mkFieldParamsForComputedFields___b lean_object* l_Lean_Compiler_LCNF_toMonoType(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_casesUIntToMono___redArg___closed__2; static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__23; +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__17____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; static lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Compiler_LCNF_mkFieldParamsForComputedFields_spec__2___redArg___closed__0; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l_Lean_throwNamedError___at___Lean_Compiler_LCNF_throwNoncomputableError_spec__0___redArg___closed__6; static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__10; static lean_object* l_Lean_Compiler_LCNF_casesArrayToMono___redArg___closed__1; static lean_object* l_Lean_Compiler_LCNF_Decl_toMono___closed__3; +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__25____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; lean_object* l_Lean_Compiler_LCNF_mkParam(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_Code_toMono_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); @@ -319,6 +311,7 @@ LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Decl_toMono_go(lean_object*, lean_ static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__27; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_checkFVarUseDeferred___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwNamedError___at___Lean_Compiler_LCNF_throwNoncomputableError_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__5____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___Lean_Compiler_LCNF_checkFVarUse_spec__0___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_instFunctorOfMonad___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_casesArrayToMono___redArg___closed__3; @@ -333,9 +326,10 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_toMono lean_object* l_Array_toSubarray___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand_go___at___Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Compiler_LCNF_Param_toMono_spec__1_spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__10____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__12____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_argToMonoDeferredCheck___redArg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__10____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; extern lean_object* l_Lean_Compiler_LCNF_instInhabitedParam; lean_object* l_Array_append___redArg(lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_casesIntToMono___redArg___closed__11; @@ -357,16 +351,17 @@ static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__15; static lean_object* l_Lean_Compiler_LCNF_casesIntToMono___redArg___closed__13; static lean_object* l_Lean_throwNamedError___at___Lean_Compiler_LCNF_throwNoncomputableError_spec__0___redArg___closed__1; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___Std_DHashMap_Internal_Raw_u2080_expand_go___at___Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Compiler_LCNF_Param_toMono_spec__1_spec__1_spec__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__6____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; static lean_object* l_Lean_Compiler_LCNF_casesNatToMono___redArg___closed__2; size_t lean_usize_sub(size_t, size_t); static lean_object* l_Lean_Compiler_LCNF_casesArrayToMono___redArg___closed__0; static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__12; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_casesIntToMono(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__5; static lean_object* l_Lean_Compiler_LCNF_casesUIntToMono___redArg___closed__0; -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__9____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; static lean_object* l_Lean_Compiler_LCNF_casesStringToMono___redArg___closed__4; +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__16____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; lean_object* l___private_Lean_Compiler_LCNF_Basic_0__Lean_Compiler_LCNF_updateAltCodeImp(lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); static lean_object* l_Lean_Compiler_LCNF_casesIntToMono___redArg___closed__5; @@ -376,20 +371,22 @@ lean_object* l___private_Lean_Compiler_LCNF_Basic_0__Lean_Compiler_LCNF_updateAl static lean_object* l_Lean_Compiler_LCNF_casesIntToMono___redArg___closed__12; static lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_casesIntToMono_spec__0___closed__6; static lean_object* l_Lean_Compiler_LCNF_casesIntToMono___redArg___closed__10; +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__23____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; static lean_object* l_Lean_Compiler_LCNF_Decl_toMono___closed__1; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Compiler_LCNF_mkFieldParamsForComputedFields_spec__2(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Compiler_LCNF_Param_toMono_spec__0___redArg(lean_object*, lean_object*); lean_object* lean_array_uget(lean_object*, size_t); size_t lean_array_size(lean_object*); +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__9____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_checkFVarUseDeferred___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__30; lean_object* l_Lean_Name_mkStr1(lean_object*); +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__24____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_casesByteArrayToMono___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Core_instMonadCoreM___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_Code_toMono_spec__4_spec__4___closed__2; static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__26; -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__18____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__22; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_casesNatToMono___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__11; @@ -399,6 +396,7 @@ LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_casesThunkToMono___redArg___boxed( static lean_object* l_Lean_Compiler_LCNF_casesTaskToMono___redArg___closed__6; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__18____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; uint8_t lean_usize_dec_lt(size_t, size_t); static lean_object* l_Lean_Compiler_LCNF_casesTaskToMono___redArg___closed__3; static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__24; @@ -415,9 +413,9 @@ static lean_object* l_Lean_Compiler_LCNF_casesThunkToMono___redArg___closed__2; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_checkFVarUseDeferred(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_casesIntToMono_spec__0___closed__4; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Param_toMono___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__11____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; static lean_object* l_Lean_Compiler_LCNF_casesTaskToMono___redArg___closed__5; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_Code_toMono_spec__4_spec__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*); -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__23____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__29; static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__4; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___Lean_Compiler_LCNF_checkFVarUseDeferred_spec__0___redArg(lean_object*, lean_object*, lean_object*); @@ -425,20 +423,18 @@ lean_object* lean_array_uset(lean_object*, size_t, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__38; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_casesArrayToMono(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__31; +static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__2____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; static lean_object* l_Lean_Compiler_LCNF_throwNoncomputableError___redArg___closed__5; static lean_object* l_Lean_Compiler_LCNF_LetValue_toMono___closed__3; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_mkFieldParamsForComputedFields(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__16____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_decToMono_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Decl_toMono_go___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0___redArg(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ctorAppToMono(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_FunDecl_toMono(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_trivialStructToMono___closed__6; -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__22____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; size_t lean_usize_land(size_t, size_t); -static lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__17____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_Code_toMono_spec__6(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_casesIntToMono___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Code_toMono___closed__29; @@ -3048,170 +3044,7 @@ lean_dec_ref(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0___redArg(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { -_start: -{ -uint8_t x_7; -x_7 = lean_usize_dec_lt(x_2, x_1); -if (x_7 == 0) -{ -lean_object* x_8; -lean_dec(x_5); -lean_dec_ref(x_4); -x_8 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_8, 0, x_3); -lean_ctor_set(x_8, 1, x_6); -return x_8; -} -else -{ -lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_9 = lean_array_uget(x_3, x_2); -x_10 = lean_unsigned_to_nat(0u); -x_11 = lean_array_uset(x_3, x_2, x_10); -switch (lean_obj_tag(x_9)) { -case 0: -{ -x_12 = x_9; -x_13 = x_6; -goto block_18; -} -case 1: -{ -lean_object* x_19; -lean_dec_ref(x_9); -x_19 = lean_box(0); -x_12 = x_19; -x_13 = x_6; -goto block_18; -} -default: -{ -uint8_t x_20; -x_20 = !lean_is_exclusive(x_9); -if (x_20 == 0) -{ -lean_object* x_21; lean_object* x_22; -x_21 = lean_ctor_get(x_9, 0); -lean_inc(x_5); -lean_inc_ref(x_4); -x_22 = l_Lean_Compiler_LCNF_toMonoType(x_21, x_4, x_5, x_6); -if (lean_obj_tag(x_22) == 0) -{ -lean_object* x_23; lean_object* x_24; -x_23 = lean_ctor_get(x_22, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_22, 1); -lean_inc(x_24); -lean_dec_ref(x_22); -lean_ctor_set(x_9, 0, x_23); -x_12 = x_9; -x_13 = x_24; -goto block_18; -} -else -{ -uint8_t x_25; -lean_free_object(x_9); -lean_dec_ref(x_11); -lean_dec(x_5); -lean_dec_ref(x_4); -x_25 = !lean_is_exclusive(x_22); -if (x_25 == 0) -{ -return x_22; -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_26 = lean_ctor_get(x_22, 0); -x_27 = lean_ctor_get(x_22, 1); -lean_inc(x_27); -lean_inc(x_26); -lean_dec(x_22); -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; -} -} -} -else -{ -lean_object* x_29; lean_object* x_30; -x_29 = lean_ctor_get(x_9, 0); -lean_inc(x_29); -lean_dec(x_9); -lean_inc(x_5); -lean_inc_ref(x_4); -x_30 = l_Lean_Compiler_LCNF_toMonoType(x_29, x_4, x_5, x_6); -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_ref(x_30); -x_33 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_33, 0, x_31); -x_12 = x_33; -x_13 = x_32; -goto block_18; -} -else -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -lean_dec_ref(x_11); -lean_dec(x_5); -lean_dec_ref(x_4); -x_34 = lean_ctor_get(x_30, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_30, 1); -lean_inc(x_35); -if (lean_is_exclusive(x_30)) { - lean_ctor_release(x_30, 0); - lean_ctor_release(x_30, 1); - x_36 = x_30; -} else { - lean_dec_ref(x_30); - x_36 = lean_box(0); -} -if (lean_is_scalar(x_36)) { - x_37 = lean_alloc_ctor(1, 2, 0); -} else { - x_37 = x_36; -} -lean_ctor_set(x_37, 0, x_34); -lean_ctor_set(x_37, 1, x_35); -return x_37; -} -} -} -} -block_18: -{ -size_t x_14; size_t x_15; lean_object* x_16; -x_14 = 1; -x_15 = lean_usize_add(x_2, x_14); -x_16 = lean_array_uset(x_11, x_2, x_12); -x_2 = x_15; -x_3 = x_16; -x_6 = x_13; -goto _start; -} -} -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { -_start: -{ -lean_object* x_10; -x_10 = l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0___redArg(x_1, x_2, x_3, x_7, x_8, x_9); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__1___redArg(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0___redArg(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; @@ -3248,48 +3081,51 @@ goto _start; } } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__1(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0(lean_object* x_1, size_t x_2, size_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; -x_11 = l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__1___redArg(x_1, x_2, x_3, x_4, x_5, x_10); +x_11 = l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0___redArg(x_1, x_2, x_3, x_4, x_5, x_10); return x_11; } } LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ctorAppToMono(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_10; lean_object* x_11; size_t x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_42; lean_object* x_43; lean_object* x_59; lean_object* x_60; uint8_t x_61; +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_42; lean_object* x_43; uint8_t x_44; x_10 = lean_ctor_get(x_2, 0); lean_inc_ref(x_10); x_11 = lean_ctor_get(x_2, 3); lean_inc(x_11); lean_dec_ref(x_2); -x_59 = lean_unsigned_to_nat(0u); -x_60 = lean_array_get_size(x_3); -x_61 = lean_nat_dec_le(x_11, x_60); -if (x_61 == 0) +x_12 = lean_box(0); +lean_inc(x_11); +x_13 = lean_mk_array(x_11, x_12); +x_42 = lean_unsigned_to_nat(0u); +x_43 = lean_array_get_size(x_3); +x_44 = lean_nat_dec_le(x_11, x_42); +if (x_44 == 0) { -x_42 = x_59; -x_43 = x_60; -goto block_58; +x_14 = x_11; +x_15 = x_43; +goto block_41; } else { -lean_dec(x_60); -lean_inc(x_11); -x_42 = x_59; -x_43 = x_11; -goto block_58; +lean_dec(x_11); +x_14 = x_42; +x_15 = x_43; +goto block_41; } block_41: { -lean_object* x_17; lean_object* x_18; size_t x_19; lean_object* x_20; uint8_t x_21; -x_17 = l_Array_toSubarray___redArg(x_3, x_15, x_16); -x_18 = l_Array_ofSubarray___redArg(x_17); -lean_dec_ref(x_17); -x_19 = lean_array_size(x_18); -x_20 = l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__1___redArg(x_1, x_19, x_12, x_18, x_4, x_14); +lean_object* x_16; lean_object* x_17; size_t x_18; size_t x_19; lean_object* x_20; uint8_t x_21; +x_16 = l_Array_toSubarray___redArg(x_3, x_14, x_15); +x_17 = l_Array_ofSubarray___redArg(x_16); +lean_dec_ref(x_16); +x_18 = lean_array_size(x_17); +x_19 = 0; +x_20 = l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0___redArg(x_1, x_18, x_19, x_17, x_4, x_9); x_21 = !lean_is_exclusive(x_20); if (x_21 == 0) { @@ -3367,117 +3203,22 @@ lean_ctor_set(x_40, 1, x_34); return x_40; } } -block_58: -{ -lean_object* x_44; lean_object* x_45; size_t x_46; size_t x_47; lean_object* x_48; -lean_inc_ref(x_3); -x_44 = l_Array_toSubarray___redArg(x_3, x_42, x_43); -x_45 = l_Array_ofSubarray___redArg(x_44); -lean_dec_ref(x_44); -x_46 = lean_array_size(x_45); -x_47 = 0; -x_48 = l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0___redArg(x_46, x_47, x_45, x_7, x_8, x_9); -if (lean_obj_tag(x_48) == 0) -{ -lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; -x_49 = lean_ctor_get(x_48, 0); -lean_inc(x_49); -x_50 = lean_ctor_get(x_48, 1); -lean_inc(x_50); -lean_dec_ref(x_48); -x_51 = lean_unsigned_to_nat(0u); -x_52 = lean_array_get_size(x_3); -x_53 = lean_nat_dec_le(x_11, x_51); -if (x_53 == 0) -{ -x_12 = x_47; -x_13 = x_49; -x_14 = x_50; -x_15 = x_11; -x_16 = x_52; -goto block_41; -} -else -{ -lean_dec(x_11); -x_12 = x_47; -x_13 = x_49; -x_14 = x_50; -x_15 = x_51; -x_16 = x_52; -goto block_41; -} -} -else -{ -uint8_t x_54; -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_3); -lean_dec(x_1); -x_54 = !lean_is_exclusive(x_48); -if (x_54 == 0) -{ -return x_48; -} -else -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_55 = lean_ctor_get(x_48, 0); -x_56 = lean_ctor_get(x_48, 1); -lean_inc(x_56); -lean_inc(x_55); -lean_dec(x_48); -x_57 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_57, 0, x_55); -lean_ctor_set(x_57, 1, x_56); -return x_57; -} -} -} } } LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0___redArg___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) { _start: { size_t x_7; size_t x_8; lean_object* x_9; -x_7 = lean_unbox_usize(x_1); -lean_dec(x_1); -x_8 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_9 = l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0___redArg(x_7, x_8, x_3, x_4, x_5, x_6); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0___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: -{ -size_t x_10; size_t x_11; lean_object* x_12; -x_10 = lean_unbox_usize(x_1); -lean_dec(x_1); -x_11 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_12 = l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0(x_10, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__1___redArg___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) { -_start: -{ -size_t x_7; size_t x_8; lean_object* x_9; x_7 = lean_unbox_usize(x_2); lean_dec(x_2); x_8 = lean_unbox_usize(x_3); lean_dec(x_3); -x_9 = l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__1___redArg(x_1, x_7, x_8, x_4, x_5, x_6); +x_9 = l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0___redArg(x_1, x_7, x_8, x_4, x_5, x_6); lean_dec(x_5); return x_9; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { size_t x_11; size_t x_12; lean_object* x_13; @@ -3485,7 +3226,7 @@ x_11 = lean_unbox_usize(x_2); lean_dec(x_2); x_12 = lean_unbox_usize(x_3); lean_dec(x_3); -x_13 = l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__1(x_1, x_11, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0(x_1, x_11, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); @@ -3499,6 +3240,8 @@ _start: { lean_object* x_10; x_10 = l_Lean_Compiler_LCNF_ctorAppToMono(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec_ref(x_7); lean_dec(x_6); lean_dec_ref(x_5); lean_dec(x_4); @@ -4165,7 +3908,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_Compiler_LCNF_LetValue_toMono___closed__20; x_2 = lean_unsigned_to_nat(6u); -x_3 = lean_unsigned_to_nat(103u); +x_3 = lean_unsigned_to_nat(99u); x_4 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__19; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -4887,6 +4630,8 @@ x_295 = lean_ctor_get(x_293, 1); lean_inc(x_295); lean_dec_ref(x_293); x_296 = l_Lean_Compiler_LCNF_ctorAppToMono(x_2, x_290, x_125, x_3, x_4, x_5, x_6, x_7, x_295); +lean_dec(x_7); +lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); @@ -4993,12 +4738,12 @@ x_281 = l_Lean_isNoncomputable(x_280, x_124); if (x_281 == 0) { lean_dec_ref(x_280); -x_176 = x_272; -x_177 = x_271; -x_178 = x_279; -x_179 = x_274; -x_180 = x_275; -x_181 = x_273; +x_176 = x_271; +x_177 = x_274; +x_178 = x_273; +x_179 = x_272; +x_180 = x_279; +x_181 = x_275; x_182 = x_281; goto block_256; } @@ -5009,23 +4754,23 @@ lean_inc(x_124); x_282 = l_Lean_isExtern(x_280, x_124); if (x_282 == 0) { -x_176 = x_272; -x_177 = x_271; -x_178 = x_279; -x_179 = x_274; -x_180 = x_275; -x_181 = x_273; +x_176 = x_271; +x_177 = x_274; +x_178 = x_273; +x_179 = x_272; +x_180 = x_279; +x_181 = x_275; x_182 = x_281; goto block_256; } else { -x_176 = x_272; -x_177 = x_271; -x_178 = x_279; -x_179 = x_274; -x_180 = x_275; -x_181 = x_273; +x_176 = x_271; +x_177 = x_274; +x_178 = x_273; +x_179 = x_272; +x_180 = x_279; +x_181 = x_275; x_182 = x_270; goto block_256; } @@ -5190,7 +4935,7 @@ lean_inc(x_147); lean_dec_ref(x_145); x_148 = lean_array_size(x_125); x_149 = 0; -x_150 = l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__1___redArg(x_2, x_148, x_149, x_125, x_139, x_147); +x_150 = l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0___redArg(x_2, x_148, x_149, x_125, x_139, x_147); lean_dec(x_139); x_151 = lean_ctor_get(x_150, 0); lean_inc(x_151); @@ -5266,17 +5011,17 @@ block_175: { lean_object* x_172; lean_object* x_173; lean_object* x_174; x_172 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_172, 0, x_170); +lean_ctor_set(x_172, 0, x_165); lean_ctor_set(x_172, 1, x_171); -x_173 = lean_st_ref_set(x_165, x_172, x_167); +x_173 = lean_st_ref_set(x_164, x_172, x_169); x_174 = lean_ctor_get(x_173, 1); lean_inc(x_174); lean_dec_ref(x_173); -x_139 = x_165; -x_140 = x_164; -x_141 = x_169; +x_139 = x_164; +x_140 = x_168; +x_141 = x_167; x_142 = x_166; -x_143 = x_168; +x_143 = x_170; x_144 = x_174; goto block_163; } @@ -5284,18 +5029,18 @@ block_256: { if (x_182 == 0) { -x_139 = x_177; -x_140 = x_176; -x_141 = x_181; -x_142 = x_179; -x_143 = x_180; -x_144 = x_178; +x_139 = x_176; +x_140 = x_179; +x_141 = x_178; +x_142 = x_177; +x_143 = x_181; +x_144 = x_180; goto block_163; } else { lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; uint8_t x_188; -x_183 = lean_st_ref_take(x_177, x_178); +x_183 = lean_st_ref_take(x_176, x_180); x_184 = lean_ctor_get(x_183, 0); lean_inc(x_184); x_185 = lean_ctor_get(x_184, 1); @@ -5357,12 +5102,12 @@ x_216 = l_Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Compiler_LCNF_Param lean_ctor_set(x_185, 1, x_216); lean_ctor_set(x_185, 0, x_207); x_164 = x_176; -x_165 = x_177; -x_166 = x_179; -x_167 = x_186; -x_168 = x_180; -x_169 = x_181; -x_170 = x_187; +x_165 = x_187; +x_166 = x_177; +x_167 = x_178; +x_168 = x_179; +x_169 = x_186; +x_170 = x_181; x_171 = x_185; goto block_175; } @@ -5371,12 +5116,12 @@ else lean_ctor_set(x_185, 1, x_209); lean_ctor_set(x_185, 0, x_207); x_164 = x_176; -x_165 = x_177; -x_166 = x_179; -x_167 = x_186; -x_168 = x_180; -x_169 = x_181; -x_170 = x_187; +x_165 = x_187; +x_166 = x_177; +x_167 = x_178; +x_168 = x_179; +x_169 = x_186; +x_170 = x_181; x_171 = x_185; goto block_175; } @@ -5392,12 +5137,12 @@ x_219 = l_Std_DHashMap_Internal_AssocList_replace___at___Lean_Compiler_LCNF_chec x_220 = lean_array_uset(x_218, x_203, x_219); lean_ctor_set(x_185, 1, x_220); x_164 = x_176; -x_165 = x_177; -x_166 = x_179; -x_167 = x_186; -x_168 = x_180; -x_169 = x_181; -x_170 = x_187; +x_165 = x_187; +x_166 = x_177; +x_167 = x_178; +x_168 = x_179; +x_169 = x_186; +x_170 = x_181; x_171 = x_185; goto block_175; } @@ -5456,12 +5201,12 @@ x_249 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_249, 0, x_239); lean_ctor_set(x_249, 1, x_248); x_164 = x_176; -x_165 = x_177; -x_166 = x_179; -x_167 = x_186; -x_168 = x_180; -x_169 = x_181; -x_170 = x_187; +x_165 = x_187; +x_166 = x_177; +x_167 = x_178; +x_168 = x_179; +x_169 = x_186; +x_170 = x_181; x_171 = x_249; goto block_175; } @@ -5472,12 +5217,12 @@ x_250 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_250, 0, x_239); lean_ctor_set(x_250, 1, x_241); x_164 = x_176; -x_165 = x_177; -x_166 = x_179; -x_167 = x_186; -x_168 = x_180; -x_169 = x_181; -x_170 = x_187; +x_165 = x_187; +x_166 = x_177; +x_167 = x_178; +x_168 = x_179; +x_169 = x_186; +x_170 = x_181; x_171 = x_250; goto block_175; } @@ -5495,12 +5240,12 @@ x_255 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_255, 0, x_221); lean_ctor_set(x_255, 1, x_254); x_164 = x_176; -x_165 = x_177; -x_166 = x_179; -x_167 = x_186; -x_168 = x_180; -x_169 = x_181; -x_170 = x_187; +x_165 = x_187; +x_166 = x_177; +x_167 = x_178; +x_168 = x_179; +x_169 = x_186; +x_170 = x_181; x_171 = x_255; goto block_175; } @@ -5566,7 +5311,7 @@ lean_inc(x_348); lean_dec_ref(x_347); x_349 = lean_array_size(x_324); x_350 = 0; -x_351 = l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__1___redArg(x_2, x_349, x_350, x_324, x_3, x_348); +x_351 = l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0___redArg(x_2, x_349, x_350, x_324, x_3, x_348); lean_dec(x_3); x_352 = !lean_is_exclusive(x_351); if (x_352 == 0) @@ -5642,7 +5387,7 @@ lean_inc(x_376); lean_dec_ref(x_375); x_377 = lean_array_size(x_324); x_378 = 0; -x_379 = l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__1___redArg(x_2, x_377, x_378, x_324, x_3, x_376); +x_379 = l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0___redArg(x_2, x_377, x_378, x_324, x_3, x_376); lean_dec(x_3); x_380 = lean_ctor_get(x_379, 0); lean_inc(x_380); @@ -5738,7 +5483,7 @@ lean_inc(x_410); lean_dec_ref(x_409); x_411 = lean_array_size(x_387); x_412 = 0; -x_413 = l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__1___redArg(x_2, x_411, x_412, x_387, x_3, x_410); +x_413 = l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_ctorAppToMono_spec__0___redArg(x_2, x_411, x_412, x_387, x_3, x_410); lean_dec(x_3); x_414 = lean_ctor_get(x_413, 0); lean_inc(x_414); @@ -6338,7 +6083,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_Compiler_LCNF_LetValue_toMono___closed__20; x_2 = lean_unsigned_to_nat(11u); -x_3 = lean_unsigned_to_nat(157u); +x_3 = lean_unsigned_to_nat(153u); x_4 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Compiler_LCNF_mkFieldParamsForComputedFields_spec__1___redArg___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -6735,7 +6480,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_Compiler_LCNF_LetValue_toMono___closed__20; x_2 = lean_unsigned_to_nat(11u); -x_3 = lean_unsigned_to_nat(149u); +x_3 = lean_unsigned_to_nat(145u); x_4 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Compiler_LCNF_mkFieldParamsForComputedFields_spec__1___redArg___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -8205,7 +7950,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_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_Code_toMono_spec__4_spec__4___closed__1; x_2 = lean_unsigned_to_nat(70u); -x_3 = lean_unsigned_to_nat(386u); +x_3 = lean_unsigned_to_nat(382u); x_4 = l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_Code_toMono_spec__4_spec__4___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -9443,7 +9188,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_Compiler_LCNF_Code_toMono___closed__0; x_2 = lean_unsigned_to_nat(66u); -x_3 = lean_unsigned_to_nat(376u); +x_3 = lean_unsigned_to_nat(372u); x_4 = l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_Code_toMono_spec__4_spec__4___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -9485,7 +9230,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_Compiler_LCNF_LetValue_toMono___closed__20; x_2 = lean_unsigned_to_nat(27u); -x_3 = lean_unsigned_to_nat(331u); +x_3 = lean_unsigned_to_nat(327u); x_4 = l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_Code_toMono_spec__4_spec__4___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -10533,9 +10278,9 @@ x_102 = lean_usize_dec_eq(x_100, x_101); if (x_102 == 0) { lean_dec_ref(x_86); -x_17 = x_95; +x_17 = x_98; x_18 = x_99; -x_19 = x_98; +x_19 = x_95; x_20 = x_102; goto block_24; } @@ -10546,9 +10291,9 @@ x_103 = lean_ptr_addr(x_86); lean_dec_ref(x_86); x_104 = lean_ptr_addr(x_95); x_105 = lean_usize_dec_eq(x_103, x_104); -x_17 = x_95; +x_17 = x_98; x_18 = x_99; -x_19 = x_98; +x_19 = x_95; x_20 = x_105; goto block_24; } @@ -11667,8 +11412,8 @@ if (x_20 == 0) lean_object* x_21; lean_object* x_22; lean_dec_ref(x_1); x_21 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_21, 0, x_17); -lean_ctor_set(x_21, 1, x_19); +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_17); x_22 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_22, 1, x_18); @@ -11692,21 +11437,21 @@ if (x_28 == 0) lean_object* x_29; lean_object* x_30; lean_dec_ref(x_1); x_29 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_29, 0, x_27); -lean_ctor_set(x_29, 1, x_26); +lean_ctor_set(x_29, 0, x_26); +lean_ctor_set(x_29, 1, x_25); x_30 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_30, 0, x_29); -lean_ctor_set(x_30, 1, x_25); +lean_ctor_set(x_30, 1, x_27); return x_30; } else { lean_object* x_31; -lean_dec_ref(x_27); lean_dec_ref(x_26); +lean_dec_ref(x_25); x_31 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_31, 0, x_1); -lean_ctor_set(x_31, 1, x_25); +lean_ctor_set(x_31, 1, x_27); return x_31; } } @@ -11717,21 +11462,21 @@ if (x_36 == 0) lean_object* x_37; lean_object* x_38; lean_dec_ref(x_1); x_37 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_37, 0, x_35); -lean_ctor_set(x_37, 1, x_34); +lean_ctor_set(x_37, 0, x_34); +lean_ctor_set(x_37, 1, x_33); x_38 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_33); +lean_ctor_set(x_38, 1, x_35); return x_38; } else { lean_object* x_39; -lean_dec_ref(x_35); lean_dec_ref(x_34); +lean_dec_ref(x_33); x_39 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_39, 0, x_1); -lean_ctor_set(x_39, 1, x_33); +lean_ctor_set(x_39, 1, x_35); return x_39; } } @@ -11775,9 +11520,9 @@ x_59 = lean_usize_dec_eq(x_57, x_58); if (x_59 == 0) { lean_dec_ref(x_55); -x_25 = x_54; -x_26 = x_53; -x_27 = x_50; +x_25 = x_53; +x_26 = x_50; +x_27 = x_54; x_28 = x_59; goto block_32; } @@ -11788,9 +11533,9 @@ x_60 = lean_ptr_addr(x_55); lean_dec_ref(x_55); x_61 = lean_ptr_addr(x_50); x_62 = lean_usize_dec_eq(x_60, x_61); -x_25 = x_54; -x_26 = x_53; -x_27 = x_50; +x_25 = x_53; +x_26 = x_50; +x_27 = x_54; x_28 = x_62; goto block_32; } @@ -11814,9 +11559,9 @@ x_69 = lean_usize_dec_eq(x_67, x_68); if (x_69 == 0) { lean_dec_ref(x_65); -x_33 = x_64; -x_34 = x_63; -x_35 = x_50; +x_33 = x_63; +x_34 = x_50; +x_35 = x_64; x_36 = x_69; goto block_40; } @@ -11827,9 +11572,9 @@ x_70 = lean_ptr_addr(x_65); lean_dec_ref(x_65); x_71 = lean_ptr_addr(x_50); x_72 = lean_usize_dec_eq(x_70, x_71); -x_33 = x_64; -x_34 = x_63; -x_35 = x_50; +x_33 = x_63; +x_34 = x_50; +x_35 = x_64; x_36 = x_72; goto block_40; } @@ -11927,7 +11672,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_Compiler_LCNF_trivialStructToMono___closed__1; x_2 = lean_unsigned_to_nat(2u); -x_3 = lean_unsigned_to_nat(314u); +x_3 = lean_unsigned_to_nat(310u); x_4 = l_Lean_Compiler_LCNF_trivialStructToMono___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -11948,7 +11693,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_Compiler_LCNF_trivialStructToMono___closed__3; x_2 = lean_unsigned_to_nat(2u); -x_3 = lean_unsigned_to_nat(316u); +x_3 = lean_unsigned_to_nat(312u); x_4 = l_Lean_Compiler_LCNF_trivialStructToMono___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -11969,7 +11714,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_Compiler_LCNF_trivialStructToMono___closed__5; x_2 = lean_unsigned_to_nat(2u); -x_3 = lean_unsigned_to_nat(317u); +x_3 = lean_unsigned_to_nat(313u); x_4 = l_Lean_Compiler_LCNF_trivialStructToMono___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -11982,7 +11727,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_Compiler_LCNF_LetValue_toMono___closed__20; x_2 = lean_unsigned_to_nat(41u); -x_3 = lean_unsigned_to_nat(315u); +x_3 = lean_unsigned_to_nat(311u); x_4 = l_Lean_Compiler_LCNF_trivialStructToMono___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -12739,7 +12484,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_Compiler_LCNF_trivialStructToMono___closed__1; x_2 = lean_unsigned_to_nat(2u); -x_3 = lean_unsigned_to_nat(303u); +x_3 = lean_unsigned_to_nat(299u); x_4 = l_Lean_Compiler_LCNF_casesTaskToMono___redArg___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -12788,7 +12533,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_Compiler_LCNF_LetValue_toMono___closed__20; x_2 = lean_unsigned_to_nat(34u); -x_3 = lean_unsigned_to_nat(304u); +x_3 = lean_unsigned_to_nat(300u); x_4 = l_Lean_Compiler_LCNF_casesTaskToMono___redArg___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -13471,7 +13216,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_Compiler_LCNF_trivialStructToMono___closed__1; x_2 = lean_unsigned_to_nat(2u); -x_3 = lean_unsigned_to_nat(283u); +x_3 = lean_unsigned_to_nat(279u); x_4 = l_Lean_Compiler_LCNF_casesThunkToMono___redArg___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -13530,7 +13275,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_Compiler_LCNF_LetValue_toMono___closed__20; x_2 = lean_unsigned_to_nat(34u); -x_3 = lean_unsigned_to_nat(284u); +x_3 = lean_unsigned_to_nat(280u); x_4 = l_Lean_Compiler_LCNF_casesThunkToMono___redArg___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -14465,7 +14210,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_Compiler_LCNF_trivialStructToMono___closed__1; x_2 = lean_unsigned_to_nat(2u); -x_3 = lean_unsigned_to_nat(272u); +x_3 = lean_unsigned_to_nat(268u); x_4 = l_Lean_Compiler_LCNF_casesStringToMono___redArg___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -14505,7 +14250,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_Compiler_LCNF_LetValue_toMono___closed__20; x_2 = lean_unsigned_to_nat(34u); -x_3 = lean_unsigned_to_nat(273u); +x_3 = lean_unsigned_to_nat(269u); x_4 = l_Lean_Compiler_LCNF_casesStringToMono___redArg___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -15188,7 +14933,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_Compiler_LCNF_trivialStructToMono___closed__1; x_2 = lean_unsigned_to_nat(2u); -x_3 = lean_unsigned_to_nat(261u); +x_3 = lean_unsigned_to_nat(257u); x_4 = l_Lean_Compiler_LCNF_casesFloatArrayToMono___redArg___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -15219,7 +14964,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_Compiler_LCNF_LetValue_toMono___closed__20; x_2 = lean_unsigned_to_nat(34u); -x_3 = lean_unsigned_to_nat(262u); +x_3 = lean_unsigned_to_nat(258u); x_4 = l_Lean_Compiler_LCNF_casesFloatArrayToMono___redArg___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -15902,7 +15647,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_Compiler_LCNF_trivialStructToMono___closed__1; x_2 = lean_unsigned_to_nat(2u); -x_3 = lean_unsigned_to_nat(250u); +x_3 = lean_unsigned_to_nat(246u); x_4 = l_Lean_Compiler_LCNF_casesByteArrayToMono___redArg___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -15925,7 +15670,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_Compiler_LCNF_LetValue_toMono___closed__20; x_2 = lean_unsigned_to_nat(34u); -x_3 = lean_unsigned_to_nat(251u); +x_3 = lean_unsigned_to_nat(247u); x_4 = l_Lean_Compiler_LCNF_casesByteArrayToMono___redArg___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -16608,7 +16353,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_Compiler_LCNF_trivialStructToMono___closed__1; x_2 = lean_unsigned_to_nat(2u); -x_3 = lean_unsigned_to_nat(239u); +x_3 = lean_unsigned_to_nat(235u); x_4 = l_Lean_Compiler_LCNF_casesArrayToMono___redArg___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -16631,7 +16376,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_Compiler_LCNF_LetValue_toMono___closed__20; x_2 = lean_unsigned_to_nat(34u); -x_3 = lean_unsigned_to_nat(240u); +x_3 = lean_unsigned_to_nat(236u); x_4 = l_Lean_Compiler_LCNF_casesArrayToMono___redArg___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -17314,7 +17059,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_Compiler_LCNF_trivialStructToMono___closed__1; x_2 = lean_unsigned_to_nat(2u); -x_3 = lean_unsigned_to_nat(228u); +x_3 = lean_unsigned_to_nat(224u); x_4 = l_Lean_Compiler_LCNF_casesUIntToMono___redArg___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -17335,7 +17080,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_Compiler_LCNF_LetValue_toMono___closed__20; x_2 = lean_unsigned_to_nat(34u); -x_3 = lean_unsigned_to_nat(229u); +x_3 = lean_unsigned_to_nat(225u); x_4 = l_Lean_Compiler_LCNF_casesUIntToMono___redArg___closed__0; x_5 = l_Lean_Compiler_LCNF_LetValue_toMono___closed__18; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -23452,7 +23197,7 @@ x_11 = l_Array_mapMUnsafe_map___at___Lean_Compiler_LCNF_toMono_spec__0(x_9, x_10 return x_11; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__0____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__0____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; @@ -23460,17 +23205,17 @@ x_1 = lean_mk_string_unchecked("Compiler", 8, 8); return x_1; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__1____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__1____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Compiler_LCNF_toMono___closed__0; -x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__0____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__0____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; x_3 = l_Lean_Name_mkStr2(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__2____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__2____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; @@ -23478,17 +23223,17 @@ x_1 = lean_mk_string_unchecked("_private", 8, 8); return x_1; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__3____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__3____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__2____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__2____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; x_2 = lean_box(0); x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__4____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__4____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; @@ -23496,27 +23241,27 @@ x_1 = lean_mk_string_unchecked("Lean", 4, 4); return x_1; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__5____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__5____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__4____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; -x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__3____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__4____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; +x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__3____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__6____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__6____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__0____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; -x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__5____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__0____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; +x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__5____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__7____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__7____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; @@ -23524,17 +23269,17 @@ x_1 = lean_mk_string_unchecked("LCNF", 4, 4); return x_1; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__8____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__8____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__7____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; -x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__6____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__7____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; +x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__6____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__9____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__9____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; @@ -23542,57 +23287,57 @@ x_1 = lean_mk_string_unchecked("ToMono", 6, 6); return x_1; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__10____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__10____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__9____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; -x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__8____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__9____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; +x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__8____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__11____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__11____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_unsigned_to_nat(0u); -x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__10____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__10____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; x_3 = l_Lean_Name_num___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__12____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__12____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__4____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; -x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__11____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__4____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; +x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__11____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__13____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__13____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__0____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; -x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__12____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__0____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; +x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__12____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__14____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__14____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__7____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; -x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__13____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__7____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; +x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__13____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__15____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__15____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; @@ -23600,17 +23345,17 @@ x_1 = lean_mk_string_unchecked("initFn", 6, 6); return x_1; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__16____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__16____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__15____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; -x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__14____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__15____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; +x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__14____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__17____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__17____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; @@ -23618,57 +23363,57 @@ x_1 = lean_mk_string_unchecked("_@", 2, 2); return x_1; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__18____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__18____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__17____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; -x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__16____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__17____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; +x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__16____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__19____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__19____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__4____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; -x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__18____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__4____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; +x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__18____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__20____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__20____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__0____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; -x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__19____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__0____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; +x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__19____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__21____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__21____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__7____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; -x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__20____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__7____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; +x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__20____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__22____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__22____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__9____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; -x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__21____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__9____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; +x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__21____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__23____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__23____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; @@ -23676,33 +23421,33 @@ x_1 = lean_mk_string_unchecked("_hyg", 4, 4); return x_1; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__24____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__24____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__23____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; -x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__22____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +x_1 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__23____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; +x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__22____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__25____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_() { +static lean_object* _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__25____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(6151u); -x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__24____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +x_1 = lean_unsigned_to_nat(6072u); +x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__24____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; x_3 = l_Lean_Name_num___override(x_2, x_1); return x_3; } } -LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__1____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +x_2 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__1____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; x_3 = 1; -x_4 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__25____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_; +x_4 = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__25____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_; x_5 = l_Lean_registerTraceClass(x_2, x_3, x_4, x_1); return x_5; } @@ -24090,59 +23835,59 @@ l_Lean_Compiler_LCNF_toMono___closed__1 = _init_l_Lean_Compiler_LCNF_toMono___cl lean_mark_persistent(l_Lean_Compiler_LCNF_toMono___closed__1); l_Lean_Compiler_LCNF_toMono = _init_l_Lean_Compiler_LCNF_toMono(); lean_mark_persistent(l_Lean_Compiler_LCNF_toMono); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__0____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__0____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__0____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__1____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__1____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__1____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__2____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__2____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__2____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__3____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__3____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__3____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__4____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__4____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__4____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__5____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__5____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__5____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__6____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__6____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__6____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__7____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__7____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__7____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__8____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__8____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__8____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__9____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__9____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__9____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__10____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__10____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__10____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__11____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__11____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__11____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__12____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__12____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__12____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__13____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__13____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__13____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__14____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__14____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__14____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__15____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__15____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__15____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__16____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__16____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__16____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__17____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__17____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__17____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__18____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__18____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__18____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__19____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__19____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__19____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__20____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__20____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__20____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__21____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__21____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__21____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__22____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__22____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__22____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__23____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__23____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__23____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__24____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__24____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__24____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__25____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__25____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(); -lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__25____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_); -if (builtin) {res = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_ToMono___hyg_6151_(lean_io_mk_world()); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__0____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__0____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__0____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__1____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__1____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__1____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__2____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__2____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__2____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__3____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__3____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__3____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__4____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__4____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__4____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__5____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__5____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__5____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__6____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__6____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__6____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__7____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__7____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__7____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__8____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__8____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__8____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__9____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__9____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__9____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__10____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__10____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__10____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__11____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__11____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__11____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__12____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__12____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__12____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__13____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__13____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__13____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__14____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__14____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__14____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__15____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__15____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__15____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__16____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__16____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__16____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__17____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__17____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__17____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__18____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__18____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__18____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__19____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__19____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__19____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__20____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__20____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__20____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__21____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__21____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__21____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__22____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__22____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__22____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__23____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__23____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__23____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__24____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__24____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__24____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__25____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_ = _init_l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__25____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn___closed__25____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_); +if (builtin) {res = l___private_Lean_Compiler_LCNF_ToMono_0__Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_ToMono___hyg_6072_(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/DeclarationRange.c b/stage0/stdlib/Lean/DeclarationRange.c index 7b4013d8ea..39abdb5cd2 100644 --- a/stage0/stdlib/Lean/DeclarationRange.c +++ b/stage0/stdlib/Lean/DeclarationRange.c @@ -20,7 +20,7 @@ static lean_object* l_Lean_addBuiltinDeclarationRanges___closed__0; LEAN_EXPORT lean_object* l_Lean_declRangeExt; LEAN_EXPORT lean_object* l_Lean_findDeclarationRanges_x3f___redArg___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_initFn___closed__2____x40_Lean_DeclarationRange___hyg_46_; -LEAN_EXPORT lean_object* l_Lean_findDeclarationRangesCore_x3f___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_findDeclarationRangesCore_x3f___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_findDeclarationRanges_x3f___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_initFn___closed__0____x40_Lean_DeclarationRange___hyg_46_; lean_object* lean_array_push(lean_object*, lean_object*); @@ -38,6 +38,7 @@ LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_DeclarationRange___hyg_5_(lea lean_object* l_Array_empty(lean_object*); LEAN_EXPORT lean_object* l_Lean_builtinDeclRanges; LEAN_EXPORT lean_object* l_Lean_initFn___lam__0____x40_Lean_DeclarationRange___hyg_46_(lean_object*, lean_object*, uint8_t); +LEAN_EXPORT lean_object* l_Lean_findDeclarationRangesCore_x3f___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); lean_object* lean_st_mk_ref(lean_object*, lean_object*); uint8_t lean_is_no_confusion(lean_object*, lean_object*); @@ -375,21 +376,52 @@ x_4 = l_Lean_addDeclarationRanges___redArg___lam__1(x_1, x_2, x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_findDeclarationRangesCore_x3f___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_findDeclarationRangesCore_x3f___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { -lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; lean_object* x_9; lean_object* x_10; -x_5 = l_Lean_addDeclarationRanges___redArg___lam__0___closed__0; -x_6 = lean_ctor_get(x_5, 0); -lean_inc_ref(x_6); -x_7 = lean_ctor_get(x_6, 2); -lean_inc(x_7); -lean_dec_ref(x_6); -x_8 = 1; -x_9 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_1, x_5, x_4, x_2, x_7, x_8); -lean_dec(x_7); -x_10 = lean_apply_2(x_3, lean_box(0), x_9); -return x_10; +lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; +x_6 = l_Lean_addDeclarationRanges___redArg___lam__0___closed__0; +x_7 = lean_ctor_get(x_6, 0); +lean_inc_ref(x_7); +x_8 = lean_ctor_get(x_7, 2); +lean_inc(x_8); +lean_dec_ref(x_7); +x_9 = 0; +lean_inc(x_3); +lean_inc_ref(x_1); +x_10 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_1, x_6, x_2, x_3, x_8, x_9); +if (lean_obj_tag(x_10) == 0) +{ +uint8_t x_11; lean_object* x_12; lean_object* x_13; +x_11 = 1; +x_12 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_1, x_6, x_5, x_3, x_8, x_11); +lean_dec(x_8); +x_13 = lean_apply_2(x_4, lean_box(0), x_12); +return x_13; +} +else +{ +lean_object* x_14; +lean_dec(x_8); +lean_dec_ref(x_5); +lean_dec(x_3); +lean_dec_ref(x_1); +x_14 = lean_apply_2(x_4, lean_box(0), x_10); +return x_14; +} +} +} +LEAN_EXPORT lean_object* l_Lean_findDeclarationRangesCore_x3f___redArg___lam__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) { +_start: +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_alloc_closure((void*)(l_Lean_findDeclarationRangesCore_x3f___redArg___lam__0), 5, 4); +lean_closure_set(x_7, 0, x_1); +lean_closure_set(x_7, 1, x_6); +lean_closure_set(x_7, 2, x_2); +lean_closure_set(x_7, 3, x_3); +x_8 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_5, x_7); +return x_8; } } LEAN_EXPORT lean_object* l_Lean_findDeclarationRangesCore_x3f___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -408,10 +440,14 @@ x_7 = lean_ctor_get(x_4, 1); lean_inc_ref(x_7); lean_dec_ref(x_4); x_8 = l_Lean_instInhabitedDeclarationRanges; -x_9 = lean_alloc_closure((void*)(l_Lean_findDeclarationRangesCore_x3f___redArg___lam__0), 4, 3); +lean_inc(x_6); +lean_inc_ref(x_5); +x_9 = lean_alloc_closure((void*)(l_Lean_findDeclarationRangesCore_x3f___redArg___lam__1), 6, 5); lean_closure_set(x_9, 0, x_8); lean_closure_set(x_9, 1, x_3); lean_closure_set(x_9, 2, x_7); +lean_closure_set(x_9, 3, x_5); +lean_closure_set(x_9, 4, x_6); x_10 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_6, x_9); return x_10; } diff --git a/stage0/stdlib/Lean/Elab/BuiltinCommand.c b/stage0/stdlib/Lean/Elab/BuiltinCommand.c index 38f3fb55ac..c4b8fd9d22 100644 --- a/stage0/stdlib/Lean/Elab/BuiltinCommand.c +++ b/stage0/stdlib/Lean/Elab/BuiltinCommand.c @@ -38434,54 +38434,96 @@ return x_1; LEAN_EXPORT lean_object* l_Lean_findDeclarationRangesCore_x3f___at___Lean_Elab_Command_elabAddDeclDoc_spec__4___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_4; uint8_t x_5; +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; x_4 = lean_st_ref_get(x_2, x_3); -x_5 = !lean_is_exclusive(x_4); -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; -x_6 = lean_ctor_get(x_4, 0); -x_7 = lean_ctor_get(x_6, 0); +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_4, 1); +lean_inc(x_6); +lean_dec_ref(x_4); +x_7 = lean_ctor_get(x_5, 0); lean_inc_ref(x_7); -lean_dec(x_6); -x_8 = l_Lean_findDeclarationRangesCore_x3f___at___Lean_Elab_Command_elabAddDeclDoc_spec__4___redArg___closed__0; -x_9 = lean_ctor_get(x_8, 0); -lean_inc_ref(x_9); -x_10 = lean_ctor_get(x_9, 2); -lean_inc(x_10); -lean_dec_ref(x_9); -x_11 = l_Lean_instInhabitedDeclarationRanges; -x_12 = 1; -x_13 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_11, x_8, x_7, x_1, x_10, x_12); +lean_dec(x_5); +x_8 = lean_st_ref_get(x_2, x_6); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_10, 0); +lean_inc_ref(x_11); lean_dec(x_10); -lean_ctor_set(x_4, 0, x_13); -return x_4; +x_12 = l_Lean_findDeclarationRangesCore_x3f___at___Lean_Elab_Command_elabAddDeclDoc_spec__4___redArg___closed__0; +x_13 = lean_ctor_get(x_12, 0); +lean_inc_ref(x_13); +x_14 = lean_ctor_get(x_13, 2); +lean_inc(x_14); +lean_dec_ref(x_13); +x_15 = l_Lean_instInhabitedDeclarationRanges; +x_16 = 0; +lean_inc(x_1); +x_17 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_15, x_12, x_7, x_1, x_14, x_16); +if (lean_obj_tag(x_17) == 0) +{ +uint8_t x_18; lean_object* x_19; +x_18 = 1; +x_19 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_15, x_12, x_11, x_1, x_14, x_18); +lean_dec(x_14); +lean_ctor_set(x_8, 0, x_19); +return x_8; } else { -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; -x_14 = lean_ctor_get(x_4, 0); -x_15 = lean_ctor_get(x_4, 1); -lean_inc(x_15); -lean_inc(x_14); -lean_dec(x_4); -x_16 = lean_ctor_get(x_14, 0); -lean_inc_ref(x_16); lean_dec(x_14); -x_17 = l_Lean_findDeclarationRangesCore_x3f___at___Lean_Elab_Command_elabAddDeclDoc_spec__4___redArg___closed__0; -x_18 = lean_ctor_get(x_17, 0); -lean_inc_ref(x_18); -x_19 = lean_ctor_get(x_18, 2); -lean_inc(x_19); -lean_dec_ref(x_18); -x_20 = l_Lean_instInhabitedDeclarationRanges; -x_21 = 1; -x_22 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_20, x_17, x_16, x_1, x_19, x_21); -lean_dec(x_19); -x_23 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_23, 0, x_22); -lean_ctor_set(x_23, 1, x_15); -return x_23; +lean_dec_ref(x_11); +lean_dec(x_1); +lean_ctor_set(x_8, 0, x_17); +return x_8; +} +} +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; uint8_t x_27; lean_object* x_28; +x_20 = lean_ctor_get(x_8, 0); +x_21 = lean_ctor_get(x_8, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_8); +x_22 = lean_ctor_get(x_20, 0); +lean_inc_ref(x_22); +lean_dec(x_20); +x_23 = l_Lean_findDeclarationRangesCore_x3f___at___Lean_Elab_Command_elabAddDeclDoc_spec__4___redArg___closed__0; +x_24 = lean_ctor_get(x_23, 0); +lean_inc_ref(x_24); +x_25 = lean_ctor_get(x_24, 2); +lean_inc(x_25); +lean_dec_ref(x_24); +x_26 = l_Lean_instInhabitedDeclarationRanges; +x_27 = 0; +lean_inc(x_1); +x_28 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_26, x_23, x_7, x_1, x_25, x_27); +if (lean_obj_tag(x_28) == 0) +{ +uint8_t x_29; lean_object* x_30; lean_object* x_31; +x_29 = 1; +x_30 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_26, x_23, x_22, x_1, x_25, x_29); +lean_dec(x_25); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_21); +return x_31; +} +else +{ +lean_object* x_32; +lean_dec(x_25); +lean_dec_ref(x_22); +lean_dec(x_1); +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_28); +lean_ctor_set(x_32, 1, x_21); +return x_32; +} } } } diff --git a/stage0/stdlib/Lean/Elab/DeclModifiers.c b/stage0/stdlib/Lean/Elab/DeclModifiers.c index 674bc91567..f5758a03f2 100644 --- a/stage0/stdlib/Lean/Elab/DeclModifiers.c +++ b/stage0/stdlib/Lean/Elab/DeclModifiers.c @@ -19,6 +19,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Modifiers_isPrivate___boxed(lean_object*); lean_object* lean_format_pretty(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__12___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__7(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_withEnv___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__0___closed__4; lean_object* l_Lean_Syntax_formatStx(lean_object*, lean_object*, uint8_t); lean_object* lean_mk_empty_array_with_capacity(lean_object*); @@ -71,10 +72,11 @@ static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__10___clo LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclId___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclId___redArg___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_RecKind_noConfusion___redArg(uint8_t, uint8_t); -LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__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_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Modifiers_filterAttrs(lean_object*, lean_object*); static lean_object* l_Lean_Elab_instToFormatModifiers___lam__1___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg___lam__2(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_instInhabitedModifiers___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Visibility_noConfusion___redArg___lam__0___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*); @@ -100,8 +102,8 @@ static lean_object* l_Lean_Elab_elabModifiers___redArg___closed__7; static lean_object* l_Lean_Elab_instToStringVisibility___lam__0___closed__3; static lean_object* l_Lean_Elab_instToFormatModifiers___lam__0___closed__2; static lean_object* l_Lean_Elab_instToFormatModifiers___lam__1___closed__30; -LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__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_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__7___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__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*); static lean_object* l_Lean_Elab_elabModifiers___redArg___closed__2; lean_object* l_Function_comp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_instToFormatModifiers___lam__1___closed__0; @@ -118,7 +120,7 @@ static lean_object* l_Lean_Elab_instToFormatModifiers___lam__0___closed__8; LEAN_EXPORT lean_object* l_Lean_Elab_RecKind_toCtorIdx___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Modifiers_addAttr(lean_object*, lean_object*); static lean_object* l_Lean_Elab_checkIfShadowingStructureField___redArg___lam__2___closed__4; -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_RecKind_noConfusion___boxed(lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); static lean_object* l_Lean_Elab_instToFormatModifiers___lam__1___closed__25; @@ -126,7 +128,7 @@ lean_object* l_Lean_mkConstWithLevelParams___redArg(lean_object*, lean_object*, LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclId___redArg___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Elab_instInhabitedRecKind; lean_object* l_Std_Format_joinSep___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); static lean_object* l_Lean_Elab_elabModifiers___redArg___closed__9; lean_object* l_Lean_mkPrivateName(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Elab_Modifiers_isProtected(lean_object*); @@ -136,7 +138,7 @@ static lean_object* l_Lean_Elab_expandDeclId___redArg___closed__5; lean_object* l_Lean_Elab_elabDeclAttrs___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_empty(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclIdCore___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclId(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_EXPORT lean_object* l_Lean_Elab_expandDeclId(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*); static lean_object* l_Lean_Elab_checkIfShadowingStructureField___redArg___lam__2___closed__0; static lean_object* l_Lean_Elab_instToFormatModifiers___lam__1___closed__28; lean_object* l_Lean_throwError___redArg(lean_object*, lean_object*, lean_object*); @@ -147,13 +149,14 @@ LEAN_EXPORT lean_object* l_Lean_Elab_RecKind_toCtorIdx(uint8_t); lean_object* l_Id_instMonad___lam__2___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___redArg___lam__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Modifiers_isInferredPartial___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___redArg___lam__3___boxed(lean_object**); static lean_object* l_Lean_Elab_instToFormatModifiers___lam__1___closed__9; LEAN_EXPORT lean_object* l_Lean_Elab_Visibility_toCtorIdx(uint8_t); lean_object* l_Lean_Name_replacePrefix(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Modifiers_filterAttrs_spec__0(lean_object*, lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclId___redArg___lam__3___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Modifiers_filterAttrs___closed__0; static lean_object* l_Lean_Elab_elabModifiers___redArg___closed__8; @@ -167,14 +170,14 @@ LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg___lam__4(lean_obje lean_object* l_Lean_Name_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg___lam__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Elab_Modifiers_isPublic(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); static lean_object* l_Lean_Elab_instToStringModifiers___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Modifiers_isMeta___boxed(lean_object*); lean_object* l_Lean_privateToUserName(lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__7___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg___lam__3___boxed(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_Elab_instToStringVisibility___lam__0___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclIdCore(lean_object*); static lean_object* l_Lean_Elab_mkDeclName___redArg___lam__3___closed__0; @@ -186,8 +189,8 @@ lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); lean_object* l_Id_instMonad___lam__3(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_instToFormatModifiers___lam__0(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkIfShadowingStructureField___redArg___lam__1(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclId___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclId___redArg(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_EXPORT lean_object* l_Lean_Elab_expandDeclId___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclId___redArg(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_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_instToStringVisibility___lam__0___boxed(lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); @@ -199,12 +202,13 @@ static lean_object* l_Lean_Elab_expandDeclId___redArg___closed__6; LEAN_EXPORT uint8_t l_Lean_Elab_Visibility_isProtected(uint8_t); LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isIdent(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Modifiers_isNonrec___boxed(lean_object*); lean_object* l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___redArg___lam__2___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_appendTR___redArg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_elabModifiers___redArg___closed__6; lean_object* l_Lean_MacroScopesView_review(lean_object*); @@ -215,9 +219,9 @@ lean_object* l_Lean_MessageData_ofConstName(lean_object*, uint8_t); uint8_t l_Lean_Environment_contains(lean_object*, lean_object*, uint8_t); static lean_object* l_Lean_Elab_expandDeclId___redArg___closed__7; static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__0___closed__5; -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__0(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_toStringWithToken___at___Lean_Name_toString_spec__0(lean_object*, uint8_t); -LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Visibility_noConfusion(lean_object*, uint8_t, uint8_t, lean_object*); LEAN_EXPORT uint8_t l_Lean_Elab_Modifiers_isPrivate(lean_object*); static lean_object* l_Lean_Elab_instToFormatModifiers___lam__1___closed__6; @@ -239,6 +243,7 @@ lean_object* l_Lean_Elab_pushInfoLeaf___redArg(lean_object*, lean_object*, lean_ uint8_t l_Lean_Name_isAtomic(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_instToFormatModifiers___lam__1___closed__7; +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkIfShadowingStructureField___redArg___lam__0(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_expandDeclId___redArg___lam__5___closed__0; LEAN_EXPORT uint8_t l_Lean_Elab_Modifiers_isMeta(lean_object*); @@ -246,7 +251,7 @@ static lean_object* l_Lean_Elab_elabModifiers___redArg___closed__5; lean_object* l_Lean_Name_beq___boxed(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkIfShadowingStructureField___redArg___lam__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg___lam__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg___lam__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_instToFormatModifiers___lam__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___redArg___lam__3(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_Array_forIn_x27Unsafe_loop___redArg(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); @@ -271,7 +276,7 @@ static lean_object* l_Lean_Elab_instToFormatModifiers___closed__0; uint8_t l_Lean_isStructure(lean_object*, lean_object*); lean_object* l_Array_append___redArg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_instToFormatModifiers___lam__1___closed__12; -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_List_elem___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkIfShadowingStructureField___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Modifiers_isInferredPublic___boxed(lean_object*, lean_object*); @@ -293,7 +298,7 @@ size_t lean_usize_add(size_t, size_t); static lean_object* l_Lean_Elab_checkIfShadowingStructureField___redArg___lam__2___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_instToStringVisibility___lam__0(uint8_t); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__10___closed__2; -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_instToFormatModifiers___lam__1___closed__10; LEAN_EXPORT uint8_t l_Lean_Elab_Modifiers_isNoncomputable(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclId___redArg___lam__6(lean_object*, lean_object*); @@ -306,7 +311,7 @@ LEAN_EXPORT uint8_t l_Lean_Elab_Modifiers_isNonrec(lean_object*); static lean_object* l_Lean_Elab_expandDeclId___redArg___closed__9; lean_object* l_Lean_Name_mkStr1(lean_object*); lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_expandOptDocComment_x3f___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_instToFormatModifiers___lam__1___closed__18; LEAN_EXPORT uint8_t l_Lean_Elab_Modifiers_isInferredPublic(lean_object*, lean_object*); @@ -328,9 +333,10 @@ LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg___lam__0(lean_obje static lean_object* l_Lean_Elab_Modifiers_addFirstAttr___closed__0; static lean_object* l_Lean_Elab_instToFormatModifiers___lam__1___closed__20; LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___redArg___lam__2(lean_object*, uint8_t); +lean_object* l_Lean_Environment_setExporting(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_Elab_instToStringVisibility; LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getStructureFieldsFlattened(lean_object*, lean_object*, uint8_t); static lean_object* l_Lean_Elab_instToFormatModifiers___lam__0___closed__5; static lean_object* l_Lean_Elab_expandDeclId___redArg___closed__2; @@ -342,8 +348,8 @@ lean_object* l_Lean_MessageData_ofName(lean_object*); LEAN_EXPORT uint8_t l_Lean_Elab_Modifiers_isPartial(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___redArg(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* l_Id_instMonad___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_checkIfShadowingStructureField___redArg___lam__2___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_expandOptDocComment_x3f(lean_object*, lean_object*, lean_object*, lean_object*); @@ -423,60 +429,63 @@ lean_ctor_set(x_4, 2, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__0(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; -x_5 = lean_box(0); -x_6 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_6, 0, x_5); -lean_ctor_set(x_6, 1, x_1); -x_7 = l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__0___closed__5; -x_8 = lean_box(0); -x_9 = 0; +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_6 = lean_box(0); +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_1); +x_8 = l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__0___closed__5; +x_9 = lean_box(0); x_10 = lean_alloc_ctor(0, 4, 1); -lean_ctor_set(x_10, 0, x_6); -lean_ctor_set(x_10, 1, x_7); -lean_ctor_set(x_10, 2, x_8); -lean_ctor_set(x_10, 3, x_4); -lean_ctor_set_uint8(x_10, sizeof(void*)*4, x_9); +lean_ctor_set(x_10, 0, x_7); +lean_ctor_set(x_10, 1, x_8); +lean_ctor_set(x_10, 2, x_9); +lean_ctor_set(x_10, 3, x_5); +lean_ctor_set_uint8(x_10, sizeof(void*)*4, x_2); x_11 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_11, 0, x_10); -x_12 = l_Lean_Elab_pushInfoLeaf___redArg(x_2, x_3, x_11); +x_12 = l_Lean_Elab_pushInfoLeaf___redArg(x_3, x_4, x_11); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__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_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__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, lean_object* x_8) { _start: { -lean_object* x_8; lean_object* x_9; lean_object* x_10; -lean_inc_ref(x_1); -x_8 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__0), 4, 3); -lean_closure_set(x_8, 0, x_7); -lean_closure_set(x_8, 1, x_1); -lean_closure_set(x_8, 2, x_2); -x_9 = l_Lean_mkConstWithLevelParams___redArg(x_1, x_3, x_4, x_5); -x_10 = lean_apply_4(x_6, lean_box(0), lean_box(0), x_9, x_8); -return x_10; +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_9 = lean_box(x_1); +lean_inc_ref(x_2); +x_10 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__0___boxed), 5, 4); +lean_closure_set(x_10, 0, x_8); +lean_closure_set(x_10, 1, x_9); +lean_closure_set(x_10, 2, x_2); +lean_closure_set(x_10, 3, x_3); +x_11 = l_Lean_mkConstWithLevelParams___redArg(x_2, x_4, x_5, x_6); +x_12 = lean_apply_4(x_7, lean_box(0), lean_box(0), x_11, x_10); +return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__2(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_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__2(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, lean_object* x_8) { _start: { -lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_8 = lean_ctor_get(x_1, 0); -lean_inc(x_8); +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_9 = lean_ctor_get(x_1, 0); +lean_inc(x_9); lean_dec_ref(x_1); -lean_inc_ref(x_6); -x_9 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__1), 7, 6); -lean_closure_set(x_9, 0, x_2); -lean_closure_set(x_9, 1, x_3); -lean_closure_set(x_9, 2, x_4); -lean_closure_set(x_9, 3, x_5); -lean_closure_set(x_9, 4, x_7); -lean_closure_set(x_9, 5, x_6); -x_10 = lean_apply_4(x_6, lean_box(0), lean_box(0), x_8, x_9); -return x_10; +x_10 = lean_box(x_2); +lean_inc_ref(x_7); +x_11 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__1___boxed), 8, 7); +lean_closure_set(x_11, 0, x_10); +lean_closure_set(x_11, 1, x_3); +lean_closure_set(x_11, 2, x_4); +lean_closure_set(x_11, 3, x_5); +lean_closure_set(x_11, 4, x_6); +lean_closure_set(x_11, 5, x_8); +lean_closure_set(x_11, 6, x_7); +x_12 = lean_apply_4(x_7, lean_box(0), lean_box(0), x_9, x_11); +return x_12; } } static lean_object* _init_l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__3___closed__0() { @@ -835,157 +844,201 @@ return x_24; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__9(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_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; uint8_t x_15; +uint8_t x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; uint8_t x_22; +x_12 = 0; +x_13 = lean_box(x_12); lean_inc_ref(x_6); lean_inc_ref(x_5); lean_inc_ref(x_4); lean_inc_ref(x_3); -lean_inc_ref(x_8); lean_inc_ref(x_2); -lean_inc(x_1); -x_9 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__4___boxed), 8, 7); -lean_closure_set(x_9, 0, x_1); -lean_closure_set(x_9, 1, x_2); -lean_closure_set(x_9, 2, x_8); -lean_closure_set(x_9, 3, x_3); -lean_closure_set(x_9, 4, x_4); -lean_closure_set(x_9, 5, x_5); -lean_closure_set(x_9, 6, x_6); -x_10 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__5), 2, 1); -lean_closure_set(x_10, 0, x_9); +lean_inc_ref(x_1); +x_14 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__2___boxed), 8, 7); +lean_closure_set(x_14, 0, x_1); +lean_closure_set(x_14, 1, x_13); +lean_closure_set(x_14, 2, x_2); +lean_closure_set(x_14, 3, x_3); +lean_closure_set(x_14, 4, x_4); +lean_closure_set(x_14, 5, x_5); +lean_closure_set(x_14, 6, x_6); +x_15 = l_Lean_Environment_setExporting(x_11, x_12); +lean_inc_ref(x_6); +lean_inc_ref(x_14); lean_inc_ref(x_5); -lean_inc_ref(x_4); -lean_inc_ref(x_3); -lean_inc_ref(x_10); -lean_inc_ref(x_6); lean_inc_ref(x_2); -lean_inc(x_1); +lean_inc_ref(x_15); lean_inc_ref(x_8); -x_11 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__6___boxed), 10, 9); -lean_closure_set(x_11, 0, x_8); -lean_closure_set(x_11, 1, x_1); -lean_closure_set(x_11, 2, x_2); -lean_closure_set(x_11, 3, x_6); -lean_closure_set(x_11, 4, x_10); -lean_closure_set(x_11, 5, x_3); -lean_closure_set(x_11, 6, x_4); -lean_closure_set(x_11, 7, x_10); -lean_closure_set(x_11, 8, x_5); -x_12 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__5), 2, 1); -lean_closure_set(x_12, 0, x_11); -lean_inc_ref(x_8); -lean_inc_ref(x_4); -lean_inc_ref(x_3); -lean_inc(x_1); -lean_inc_ref(x_12); -lean_inc_ref(x_6); +lean_inc(x_7); +x_16 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__4___boxed), 8, 7); +lean_closure_set(x_16, 0, x_7); +lean_closure_set(x_16, 1, x_8); +lean_closure_set(x_16, 2, x_15); +lean_closure_set(x_16, 3, x_2); +lean_closure_set(x_16, 4, x_5); +lean_closure_set(x_16, 5, x_14); +lean_closure_set(x_16, 6, x_6); +x_17 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__5), 2, 1); +lean_closure_set(x_17, 0, x_16); +lean_inc_ref(x_5); lean_inc_ref(x_2); -x_13 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__10___boxed), 9, 8); -lean_closure_set(x_13, 0, x_2); -lean_closure_set(x_13, 1, x_6); -lean_closure_set(x_13, 2, x_12); -lean_closure_set(x_13, 3, x_1); -lean_closure_set(x_13, 4, x_3); -lean_closure_set(x_13, 5, x_4); -lean_closure_set(x_13, 6, x_12); -lean_closure_set(x_13, 7, x_8); -x_14 = 1; -lean_inc(x_1); -x_15 = l_Lean_Environment_contains(x_8, x_1, x_14); -if (x_15 == 0) +lean_inc_ref(x_17); +lean_inc_ref(x_6); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_15); +x_18 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__6___boxed), 10, 9); +lean_closure_set(x_18, 0, x_15); +lean_closure_set(x_18, 1, x_7); +lean_closure_set(x_18, 2, x_8); +lean_closure_set(x_18, 3, x_6); +lean_closure_set(x_18, 4, x_17); +lean_closure_set(x_18, 5, x_2); +lean_closure_set(x_18, 6, x_5); +lean_closure_set(x_18, 7, x_17); +lean_closure_set(x_18, 8, x_14); +x_19 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__5), 2, 1); +lean_closure_set(x_19, 0, x_18); +lean_inc_ref(x_15); +lean_inc_ref(x_5); +lean_inc_ref(x_2); +lean_inc(x_7); +lean_inc_ref(x_19); +lean_inc_ref(x_6); +lean_inc_ref(x_8); +x_20 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__10___boxed), 9, 8); +lean_closure_set(x_20, 0, x_8); +lean_closure_set(x_20, 1, x_6); +lean_closure_set(x_20, 2, x_19); +lean_closure_set(x_20, 3, x_7); +lean_closure_set(x_20, 4, x_2); +lean_closure_set(x_20, 5, x_5); +lean_closure_set(x_20, 6, x_19); +lean_closure_set(x_20, 7, x_15); +x_21 = 1; +lean_inc(x_7); +lean_inc_ref(x_15); +x_22 = l_Lean_Environment_contains(x_15, x_7, x_21); +if (x_22 == 0) { -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +lean_dec(x_7); lean_dec_ref(x_5); -lean_dec_ref(x_4); lean_dec_ref(x_3); -lean_dec(x_1); +lean_dec_ref(x_1); lean_inc_ref(x_6); -x_16 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__8___boxed), 4, 3); -lean_closure_set(x_16, 0, x_6); -lean_closure_set(x_16, 1, x_7); -lean_closure_set(x_16, 2, x_13); -x_17 = lean_box(0); -x_18 = lean_apply_2(x_2, lean_box(0), x_17); -x_19 = lean_apply_4(x_6, lean_box(0), lean_box(0), x_18, x_16); -return x_19; +x_23 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__8___boxed), 4, 3); +lean_closure_set(x_23, 0, x_6); +lean_closure_set(x_23, 1, x_9); +lean_closure_set(x_23, 2, x_20); +x_24 = lean_box(0); +x_25 = lean_apply_2(x_8, lean_box(0), x_24); +x_26 = lean_apply_4(x_6, lean_box(0), lean_box(0), x_25, x_23); +x_27 = l_Lean_withEnv___redArg(x_2, x_10, x_4, x_15, x_26); +return x_27; } else { -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -lean_dec_ref(x_2); +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_dec_ref(x_8); lean_inc_ref(x_6); -x_20 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__8___boxed), 4, 3); -lean_closure_set(x_20, 0, x_6); -lean_closure_set(x_20, 1, x_7); -lean_closure_set(x_20, 2, x_13); -x_21 = lean_box(x_14); -lean_inc_ref(x_20); +x_28 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__8___boxed), 4, 3); +lean_closure_set(x_28, 0, x_6); +lean_closure_set(x_28, 1, x_9); +lean_closure_set(x_28, 2, x_20); +x_29 = lean_box(x_21); +lean_inc_ref(x_28); lean_inc_ref(x_6); -lean_inc(x_1); -x_22 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__12___boxed), 8, 7); -lean_closure_set(x_22, 0, x_1); -lean_closure_set(x_22, 1, x_21); -lean_closure_set(x_22, 2, x_3); -lean_closure_set(x_22, 3, x_4); -lean_closure_set(x_22, 4, x_6); -lean_closure_set(x_22, 5, x_20); -lean_closure_set(x_22, 6, x_20); -x_23 = lean_apply_1(x_5, x_1); -x_24 = lean_apply_4(x_6, lean_box(0), lean_box(0), x_23, x_22); -return x_24; +lean_inc_ref(x_5); +lean_inc_ref(x_2); +lean_inc(x_7); +x_30 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__12___boxed), 8, 7); +lean_closure_set(x_30, 0, x_7); +lean_closure_set(x_30, 1, x_29); +lean_closure_set(x_30, 2, x_2); +lean_closure_set(x_30, 3, x_5); +lean_closure_set(x_30, 4, x_6); +lean_closure_set(x_30, 5, x_28); +lean_closure_set(x_30, 6, x_28); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +lean_inc_ref(x_2); +x_31 = l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__2(x_1, x_12, x_2, x_3, x_4, x_5, x_6, x_7); +x_32 = lean_apply_4(x_6, lean_box(0), lean_box(0), x_31, x_30); +x_33 = l_Lean_withEnv___redArg(x_2, x_10, x_4, x_15, x_32); +return x_33; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg(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_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; -x_6 = lean_ctor_get(x_1, 0); -lean_inc_ref(x_6); -x_7 = lean_ctor_get(x_1, 1); +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; +x_7 = lean_ctor_get(x_1, 0); lean_inc_ref(x_7); -x_8 = lean_ctor_get(x_2, 0); -lean_inc(x_8); -x_9 = lean_ctor_get(x_3, 1); -lean_inc_ref(x_9); -x_10 = lean_ctor_get(x_6, 1); +x_8 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_8); +x_9 = lean_ctor_get(x_2, 0); +lean_inc(x_9); +x_10 = lean_ctor_get(x_3, 1); lean_inc_ref(x_10); -lean_dec_ref(x_6); -lean_inc_ref(x_7); -lean_inc_ref(x_3); -lean_inc_ref(x_1); -x_11 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__2), 7, 6); -lean_closure_set(x_11, 0, x_9); -lean_closure_set(x_11, 1, x_1); -lean_closure_set(x_11, 2, x_4); -lean_closure_set(x_11, 3, x_2); -lean_closure_set(x_11, 4, x_3); -lean_closure_set(x_11, 5, x_7); -lean_inc(x_8); -lean_inc_ref(x_7); -x_12 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__9), 8, 7); -lean_closure_set(x_12, 0, x_5); -lean_closure_set(x_12, 1, x_10); -lean_closure_set(x_12, 2, x_1); -lean_closure_set(x_12, 3, x_3); -lean_closure_set(x_12, 4, x_11); -lean_closure_set(x_12, 5, x_7); -lean_closure_set(x_12, 6, x_8); -x_13 = lean_apply_4(x_7, lean_box(0), lean_box(0), x_8, x_12); +x_11 = lean_ctor_get(x_7, 1); +lean_inc_ref(x_11); +lean_dec_ref(x_7); +lean_inc(x_9); +lean_inc_ref(x_8); +x_12 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__9), 11, 10); +lean_closure_set(x_12, 0, x_10); +lean_closure_set(x_12, 1, x_1); +lean_closure_set(x_12, 2, x_5); +lean_closure_set(x_12, 3, x_2); +lean_closure_set(x_12, 4, x_3); +lean_closure_set(x_12, 5, x_8); +lean_closure_set(x_12, 6, x_6); +lean_closure_set(x_12, 7, x_11); +lean_closure_set(x_12, 8, x_9); +lean_closure_set(x_12, 9, x_4); +x_13 = lean_apply_4(x_8, lean_box(0), lean_box(0), x_9, x_12); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared(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_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared(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_7; -x_7 = l_Lean_Elab_checkNotAlreadyDeclared___redArg(x_2, x_3, x_4, x_5, x_6); +lean_object* x_8; +x_8 = l_Lean_Elab_checkNotAlreadyDeclared___redArg(x_2, x_3, x_4, x_5, x_6, x_7); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +uint8_t x_6; lean_object* x_7; +x_6 = lean_unbox(x_2); +x_7 = l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__0(x_1, x_6, x_3, x_4, x_5); return x_7; } } +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_1); +x_10 = l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__1(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__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) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_2); +x_10 = l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__2(x_1, x_9, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { @@ -3597,32 +3650,32 @@ return x_13; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg___lam__3(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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg___lam__3(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, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -lean_inc(x_9); +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_inc(x_10); lean_inc_ref(x_1); -x_11 = lean_alloc_closure((void*)(l_Lean_Elab_applyVisibility___redArg___lam__0___boxed), 3, 2); -lean_closure_set(x_11, 0, x_1); -lean_closure_set(x_11, 1, x_9); -lean_inc(x_9); -x_12 = lean_alloc_closure((void*)(l_Lean_Elab_applyVisibility___redArg___lam__2), 2, 1); -lean_closure_set(x_12, 0, x_9); -x_13 = lean_box(x_2); -lean_inc_ref(x_11); +x_12 = lean_alloc_closure((void*)(l_Lean_Elab_applyVisibility___redArg___lam__0___boxed), 3, 2); +lean_closure_set(x_12, 0, x_1); +lean_closure_set(x_12, 1, x_10); +lean_inc(x_10); +x_13 = lean_alloc_closure((void*)(l_Lean_Elab_applyVisibility___redArg___lam__2), 2, 1); +lean_closure_set(x_13, 0, x_10); +x_14 = lean_box(x_2); +lean_inc_ref(x_12); lean_inc_ref(x_4); -x_14 = lean_alloc_closure((void*)(l_Lean_Elab_applyVisibility___redArg___lam__1___boxed), 8, 7); -lean_closure_set(x_14, 0, x_13); -lean_closure_set(x_14, 1, x_3); -lean_closure_set(x_14, 2, x_12); -lean_closure_set(x_14, 3, x_4); -lean_closure_set(x_14, 4, x_11); -lean_closure_set(x_14, 5, x_1); -lean_closure_set(x_14, 6, x_11); -x_15 = l_Lean_Elab_checkNotAlreadyDeclared___redArg(x_5, x_6, x_7, x_8, x_9); -x_16 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_15, x_14); -return x_16; +x_15 = lean_alloc_closure((void*)(l_Lean_Elab_applyVisibility___redArg___lam__1___boxed), 8, 7); +lean_closure_set(x_15, 0, x_14); +lean_closure_set(x_15, 1, x_3); +lean_closure_set(x_15, 2, x_13); +lean_closure_set(x_15, 3, x_4); +lean_closure_set(x_15, 4, x_12); +lean_closure_set(x_15, 5, x_1); +lean_closure_set(x_15, 6, x_12); +x_16 = l_Lean_Elab_checkNotAlreadyDeclared___redArg(x_5, x_6, x_7, x_8, x_9, x_10); +x_17 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_16, x_15); +return x_17; } } LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -3672,65 +3725,66 @@ return x_12; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7) { _start: { -lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_7 = lean_ctor_get(x_1, 0); -lean_inc_ref(x_7); -x_8 = lean_ctor_get(x_1, 1); +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_8 = lean_ctor_get(x_1, 0); lean_inc_ref(x_8); -x_9 = lean_ctor_get(x_2, 0); -lean_inc(x_9); -x_10 = lean_ctor_get(x_2, 1); -lean_inc_ref(x_10); -x_11 = lean_ctor_get(x_7, 1); +x_9 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_9); +x_10 = lean_ctor_get(x_2, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_2, 1); lean_inc_ref(x_11); -lean_dec_ref(x_7); -x_12 = lean_box(x_5); -lean_inc_ref(x_8); -lean_inc_ref(x_11); -x_13 = lean_alloc_closure((void*)(l_Lean_Elab_applyVisibility___redArg___lam__3___boxed), 10, 8); -lean_closure_set(x_13, 0, x_11); -lean_closure_set(x_13, 1, x_12); -lean_closure_set(x_13, 2, x_10); -lean_closure_set(x_13, 3, x_8); -lean_closure_set(x_13, 4, x_1); -lean_closure_set(x_13, 5, x_2); -lean_closure_set(x_13, 6, x_3); -lean_closure_set(x_13, 7, x_4); -lean_inc_ref(x_8); -lean_inc_ref(x_11); -lean_inc_ref(x_13); -lean_inc(x_6); -x_14 = lean_alloc_closure((void*)(l_Lean_Elab_applyVisibility___redArg___lam__5___boxed), 5, 4); -lean_closure_set(x_14, 0, x_6); +x_12 = lean_ctor_get(x_8, 1); +lean_inc_ref(x_12); +lean_dec_ref(x_8); +x_13 = lean_box(x_6); +lean_inc_ref(x_9); +lean_inc_ref(x_12); +x_14 = lean_alloc_closure((void*)(l_Lean_Elab_applyVisibility___redArg___lam__3___boxed), 11, 9); +lean_closure_set(x_14, 0, x_12); lean_closure_set(x_14, 1, x_13); lean_closure_set(x_14, 2, x_11); -lean_closure_set(x_14, 3, x_8); -x_15 = lean_alloc_closure((void*)(l_Lean_Elab_applyVisibility___redArg___lam__4), 3, 2); -lean_closure_set(x_15, 0, x_13); -lean_closure_set(x_15, 1, x_6); -x_16 = lean_box(x_5); -lean_inc(x_9); -lean_inc_ref(x_8); -x_17 = lean_alloc_closure((void*)(l_Lean_Elab_applyVisibility___redArg___lam__7___boxed), 7, 6); -lean_closure_set(x_17, 0, x_16); -lean_closure_set(x_17, 1, x_8); -lean_closure_set(x_17, 2, x_9); -lean_closure_set(x_17, 3, x_14); -lean_closure_set(x_17, 4, x_11); -lean_closure_set(x_17, 5, x_15); -x_18 = lean_apply_4(x_8, lean_box(0), lean_box(0), x_9, x_17); -return x_18; +lean_closure_set(x_14, 3, x_9); +lean_closure_set(x_14, 4, x_1); +lean_closure_set(x_14, 5, x_2); +lean_closure_set(x_14, 6, x_3); +lean_closure_set(x_14, 7, x_4); +lean_closure_set(x_14, 8, x_5); +lean_inc_ref(x_9); +lean_inc_ref(x_12); +lean_inc_ref(x_14); +lean_inc(x_7); +x_15 = lean_alloc_closure((void*)(l_Lean_Elab_applyVisibility___redArg___lam__5___boxed), 5, 4); +lean_closure_set(x_15, 0, x_7); +lean_closure_set(x_15, 1, x_14); +lean_closure_set(x_15, 2, x_12); +lean_closure_set(x_15, 3, x_9); +x_16 = lean_alloc_closure((void*)(l_Lean_Elab_applyVisibility___redArg___lam__4), 3, 2); +lean_closure_set(x_16, 0, x_14); +lean_closure_set(x_16, 1, x_7); +x_17 = lean_box(x_6); +lean_inc(x_10); +lean_inc_ref(x_9); +x_18 = lean_alloc_closure((void*)(l_Lean_Elab_applyVisibility___redArg___lam__7___boxed), 7, 6); +lean_closure_set(x_18, 0, x_17); +lean_closure_set(x_18, 1, x_9); +lean_closure_set(x_18, 2, x_10); +lean_closure_set(x_18, 3, x_15); +lean_closure_set(x_18, 4, x_12); +lean_closure_set(x_18, 5, x_16); +x_19 = lean_apply_4(x_9, lean_box(0), lean_box(0), x_10, x_18); +return x_19; } } -LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7) { +LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, lean_object* x_8) { _start: { -lean_object* x_8; -x_8 = l_Lean_Elab_applyVisibility___redArg(x_2, x_3, x_4, x_5, x_6, x_7); -return x_8; +lean_object* x_9; +x_9 = l_Lean_Elab_applyVisibility___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_9; } } LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -3750,13 +3804,13 @@ x_10 = l_Lean_Elab_applyVisibility___redArg___lam__1(x_9, x_2, x_3, x_4, x_5, x_ return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -uint8_t x_11; lean_object* x_12; -x_11 = lean_unbox(x_2); -x_12 = l_Lean_Elab_applyVisibility___redArg___lam__3(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_12; +uint8_t x_12; lean_object* x_13; +x_12 = lean_unbox(x_2); +x_13 = l_Lean_Elab_applyVisibility___redArg___lam__3(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_13; } } LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg___lam__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { @@ -3778,24 +3832,24 @@ lean_dec_ref(x_7); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg___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) { -_start: -{ -uint8_t x_7; lean_object* x_8; -x_7 = lean_unbox(x_5); -x_8 = l_Lean_Elab_applyVisibility___redArg(x_1, x_2, x_3, x_4, x_7, x_6); -return x_8; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___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_EXPORT lean_object* l_Lean_Elab_applyVisibility___redArg___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_6); -x_9 = l_Lean_Elab_applyVisibility(x_1, x_2, x_3, x_4, x_5, x_8, x_7); +x_9 = l_Lean_Elab_applyVisibility___redArg(x_1, x_2, x_3, x_4, x_5, x_8, x_7); return x_9; } } +LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_7); +x_10 = l_Lean_Elab_applyVisibility(x_1, x_2, x_3, x_4, x_5, x_6, x_9, x_8); +return x_10; +} +} LEAN_EXPORT lean_object* l_Lean_Elab_checkIfShadowingStructureField___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -4187,51 +4241,52 @@ return x_26; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -uint8_t x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_12 = lean_ctor_get_uint8(x_1, sizeof(void*)*3); -x_13 = lean_box(x_12); +uint8_t x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_13 = lean_ctor_get_uint8(x_1, sizeof(void*)*3); +x_14 = lean_box(x_13); lean_inc_ref(x_7); lean_inc_ref(x_6); lean_inc_ref(x_5); -x_14 = lean_alloc_closure((void*)(l_Lean_Elab_mkDeclName___redArg___lam__3___boxed), 8, 7); -lean_closure_set(x_14, 0, x_13); -lean_closure_set(x_14, 1, x_2); -lean_closure_set(x_14, 2, x_3); -lean_closure_set(x_14, 3, x_4); -lean_closure_set(x_14, 4, x_5); -lean_closure_set(x_14, 5, x_6); -lean_closure_set(x_14, 6, x_7); -x_15 = l_Lean_Elab_applyVisibility___redArg(x_6, x_8, x_7, x_9, x_12, x_10); -x_16 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_15, x_14); -return x_16; +x_15 = lean_alloc_closure((void*)(l_Lean_Elab_mkDeclName___redArg___lam__3___boxed), 8, 7); +lean_closure_set(x_15, 0, x_14); +lean_closure_set(x_15, 1, x_2); +lean_closure_set(x_15, 2, x_3); +lean_closure_set(x_15, 3, x_4); +lean_closure_set(x_15, 4, x_5); +lean_closure_set(x_15, 5, x_6); +lean_closure_set(x_15, 6, x_7); +x_16 = l_Lean_Elab_applyVisibility___redArg(x_6, x_8, x_7, x_9, x_10, x_13, x_11); +x_17 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_16, x_15); +return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; -lean_inc(x_8); +lean_object* x_13; lean_object* x_14; lean_object* x_15; +lean_inc(x_9); lean_inc_ref(x_6); lean_inc_ref(x_5); lean_inc_ref(x_4); lean_inc_ref(x_3); -x_12 = lean_alloc_closure((void*)(l_Lean_Elab_mkDeclName___redArg___lam__1___boxed), 11, 10); -lean_closure_set(x_12, 0, x_1); -lean_closure_set(x_12, 1, x_9); -lean_closure_set(x_12, 2, x_10); -lean_closure_set(x_12, 3, x_2); -lean_closure_set(x_12, 4, x_3); -lean_closure_set(x_12, 5, x_4); -lean_closure_set(x_12, 6, x_5); -lean_closure_set(x_12, 7, x_6); -lean_closure_set(x_12, 8, x_7); -lean_closure_set(x_12, 9, x_8); -x_13 = l_Lean_Elab_checkIfShadowingStructureField___redArg(x_4, x_6, x_5, x_8); -x_14 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_13, x_12); -return x_14; +x_13 = lean_alloc_closure((void*)(l_Lean_Elab_mkDeclName___redArg___lam__1___boxed), 12, 11); +lean_closure_set(x_13, 0, x_1); +lean_closure_set(x_13, 1, x_10); +lean_closure_set(x_13, 2, x_11); +lean_closure_set(x_13, 3, x_2); +lean_closure_set(x_13, 4, x_3); +lean_closure_set(x_13, 5, x_4); +lean_closure_set(x_13, 6, x_5); +lean_closure_set(x_13, 7, x_6); +lean_closure_set(x_13, 8, x_7); +lean_closure_set(x_13, 9, x_8); +lean_closure_set(x_13, 10, x_9); +x_14 = l_Lean_Elab_checkIfShadowingStructureField___redArg(x_4, x_6, x_5, x_9); +x_15 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_14, x_13); +return x_15; } } LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { @@ -4242,114 +4297,115 @@ x_5 = lean_apply_3(x_1, x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__7(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, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__7(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, uint8_t x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_17; -if (x_8 == 0) +lean_object* x_18; +if (x_9 == 0) { -lean_object* x_41; +lean_object* x_42; +lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); -lean_dec(x_11); +lean_inc(x_16); lean_inc(x_15); -lean_inc(x_14); -x_41 = l_Lean_Name_append(x_14, x_15); -x_17 = x_41; -goto block_40; +x_42 = l_Lean_Name_append(x_15, x_16); +x_18 = x_42; +goto block_41; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_42 = lean_box(0); -lean_inc(x_9); -x_43 = l_Lean_Name_replacePrefix(x_9, x_10, x_42); -x_44 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_44, 1, x_11); -lean_ctor_set(x_44, 2, x_12); -lean_ctor_set(x_44, 3, x_13); -x_45 = l_Lean_MacroScopesView_review(x_44); -x_17 = x_45; -goto block_40; +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_43 = lean_box(0); +lean_inc(x_10); +x_44 = l_Lean_Name_replacePrefix(x_10, x_11, x_43); +x_45 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_45, 0, x_44); +lean_ctor_set(x_45, 1, x_12); +lean_ctor_set(x_45, 2, x_13); +lean_ctor_set(x_45, 3, x_14); +x_46 = l_Lean_MacroScopesView_review(x_45); +x_18 = x_46; +goto block_41; } -block_40: +block_41: { -lean_object* x_18; +lean_object* x_19; lean_inc_ref(x_5); lean_inc_ref(x_4); lean_inc_ref(x_3); lean_inc_ref(x_2); -x_18 = lean_alloc_closure((void*)(l_Lean_Elab_mkDeclName___redArg___lam__2___boxed), 11, 8); -lean_closure_set(x_18, 0, x_1); -lean_closure_set(x_18, 1, x_2); -lean_closure_set(x_18, 2, x_3); -lean_closure_set(x_18, 3, x_4); -lean_closure_set(x_18, 4, x_5); -lean_closure_set(x_18, 5, x_6); -lean_closure_set(x_18, 6, x_7); -lean_closure_set(x_18, 7, x_17); -if (x_8 == 0) +x_19 = lean_alloc_closure((void*)(l_Lean_Elab_mkDeclName___redArg___lam__2___boxed), 12, 9); +lean_closure_set(x_19, 0, x_1); +lean_closure_set(x_19, 1, x_2); +lean_closure_set(x_19, 2, x_3); +lean_closure_set(x_19, 3, x_4); +lean_closure_set(x_19, 4, x_5); +lean_closure_set(x_19, 5, x_6); +lean_closure_set(x_19, 6, x_7); +lean_closure_set(x_19, 7, x_8); +lean_closure_set(x_19, 8, x_18); +if (x_9 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -lean_dec(x_9); +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +lean_dec(x_10); lean_dec_ref(x_5); lean_dec_ref(x_4); -x_19 = lean_alloc_closure((void*)(l_Lean_Elab_mkDeclName___redArg___lam__4), 4, 3); -lean_closure_set(x_19, 0, x_18); -lean_closure_set(x_19, 1, x_14); -lean_closure_set(x_19, 2, x_15); -x_20 = lean_box(0); -x_21 = lean_apply_2(x_2, lean_box(0), x_20); -x_22 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_21, x_19); -return x_22; +x_20 = lean_alloc_closure((void*)(l_Lean_Elab_mkDeclName___redArg___lam__4), 4, 3); +lean_closure_set(x_20, 0, x_19); +lean_closure_set(x_20, 1, x_15); +lean_closure_set(x_20, 2, x_16); +x_21 = lean_box(0); +x_22 = lean_apply_2(x_2, lean_box(0), x_21); +x_23 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_22, x_20); +return x_23; } else { -if (lean_obj_tag(x_9) == 1) +if (lean_obj_tag(x_10) == 1) { -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_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_dec(x_16); lean_dec(x_15); -lean_dec(x_14); lean_dec_ref(x_5); lean_dec_ref(x_4); -x_23 = lean_ctor_get(x_9, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_9, 1); -lean_inc_ref(x_24); -lean_dec_ref(x_9); -x_25 = lean_box(0); -x_26 = l_Lean_Name_str___override(x_25, x_24); -x_27 = l_Lean_Name_replacePrefix(x_23, x_10, x_25); -x_28 = lean_alloc_closure((void*)(l_Lean_Elab_mkDeclName___redArg___lam__4), 4, 3); -lean_closure_set(x_28, 0, x_18); -lean_closure_set(x_28, 1, x_27); -lean_closure_set(x_28, 2, x_26); -x_29 = lean_box(0); -x_30 = lean_apply_2(x_2, lean_box(0), x_29); -x_31 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_30, x_28); -return x_31; +x_24 = lean_ctor_get(x_10, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_10, 1); +lean_inc_ref(x_25); +lean_dec_ref(x_10); +x_26 = lean_box(0); +x_27 = l_Lean_Name_str___override(x_26, x_25); +x_28 = l_Lean_Name_replacePrefix(x_24, x_11, x_26); +x_29 = lean_alloc_closure((void*)(l_Lean_Elab_mkDeclName___redArg___lam__4), 4, 3); +lean_closure_set(x_29, 0, x_19); +lean_closure_set(x_29, 1, x_28); +lean_closure_set(x_29, 2, x_27); +x_30 = lean_box(0); +x_31 = lean_apply_2(x_2, lean_box(0), x_30); +x_32 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_31, x_29); +return x_32; } else { -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_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_dec_ref(x_2); -x_32 = lean_alloc_closure((void*)(l_Lean_Elab_mkDeclName___redArg___lam__4), 4, 3); -lean_closure_set(x_32, 0, x_18); -lean_closure_set(x_32, 1, x_14); -lean_closure_set(x_32, 2, x_15); -x_33 = l_Lean_Elab_checkIfShadowingStructureField___redArg___lam__2___closed__1; -x_34 = l_Lean_MessageData_ofName(x_9); -x_35 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_35, 0, x_33); -lean_ctor_set(x_35, 1, x_34); -x_36 = l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__10___closed__1; -x_37 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_37, 0, x_35); -lean_ctor_set(x_37, 1, x_36); -x_38 = l_Lean_throwError___redArg(x_4, x_5, x_37); -x_39 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_38, x_32); -return x_39; +x_33 = lean_alloc_closure((void*)(l_Lean_Elab_mkDeclName___redArg___lam__4), 4, 3); +lean_closure_set(x_33, 0, x_19); +lean_closure_set(x_33, 1, x_15); +lean_closure_set(x_33, 2, x_16); +x_34 = l_Lean_Elab_checkIfShadowingStructureField___redArg___lam__2___closed__1; +x_35 = l_Lean_MessageData_ofName(x_10); +x_36 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +x_37 = l_Lean_Elab_checkNotAlreadyDeclared___redArg___lam__10___closed__1; +x_38 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_37); +x_39 = l_Lean_throwError___redArg(x_4, x_5, x_38); +x_40 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_39, x_33); +return x_40; } } } @@ -4389,87 +4445,88 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg(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_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg(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_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -lean_inc(x_7); -x_8 = l_Lean_extractMacroScopes(x_7); -x_9 = lean_ctor_get(x_1, 0); -lean_inc_ref(x_9); -x_10 = lean_ctor_get(x_8, 0); -lean_inc(x_10); -x_11 = lean_ctor_get(x_8, 1); +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; +lean_inc(x_8); +x_9 = l_Lean_extractMacroScopes(x_8); +x_10 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_10); +x_11 = lean_ctor_get(x_9, 0); lean_inc(x_11); -x_12 = lean_ctor_get(x_8, 2); +x_12 = lean_ctor_get(x_9, 1); lean_inc(x_12); -x_13 = lean_ctor_get(x_8, 3); +x_13 = lean_ctor_get(x_9, 2); lean_inc(x_13); -lean_dec_ref(x_8); -x_14 = lean_ctor_get(x_1, 1); -lean_inc_ref(x_14); -x_15 = lean_ctor_get(x_9, 1); -lean_inc_ref(x_15); +x_14 = lean_ctor_get(x_9, 3); +lean_inc(x_14); lean_dec_ref(x_9); -x_16 = l_Lean_Elab_mkDeclName___redArg___closed__1; -x_17 = l_Lean_Name_isPrefixOf(x_16, x_10); -x_18 = lean_box(x_17); -lean_inc(x_10); +x_15 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_15); +x_16 = lean_ctor_get(x_10, 1); +lean_inc_ref(x_16); +lean_dec_ref(x_10); +x_17 = l_Lean_Elab_mkDeclName___redArg___closed__1; +x_18 = l_Lean_Name_isPrefixOf(x_17, x_11); +x_19 = lean_box(x_18); +lean_inc(x_11); lean_inc_ref(x_3); lean_inc_ref(x_1); -lean_inc_ref(x_14); lean_inc_ref(x_15); -x_19 = lean_alloc_closure((void*)(l_Lean_Elab_mkDeclName___redArg___lam__7___boxed), 16, 13); -lean_closure_set(x_19, 0, x_6); -lean_closure_set(x_19, 1, x_15); -lean_closure_set(x_19, 2, x_14); -lean_closure_set(x_19, 3, x_1); -lean_closure_set(x_19, 4, x_3); -lean_closure_set(x_19, 5, x_2); -lean_closure_set(x_19, 6, x_4); -lean_closure_set(x_19, 7, x_18); -lean_closure_set(x_19, 8, x_10); -lean_closure_set(x_19, 9, x_16); -lean_closure_set(x_19, 10, x_11); -lean_closure_set(x_19, 11, x_12); -lean_closure_set(x_19, 12, x_13); -x_20 = lean_name_eq(x_10, x_16); -lean_dec(x_10); -if (x_20 == 0) +lean_inc_ref(x_16); +x_20 = lean_alloc_closure((void*)(l_Lean_Elab_mkDeclName___redArg___lam__7___boxed), 17, 14); +lean_closure_set(x_20, 0, x_7); +lean_closure_set(x_20, 1, x_16); +lean_closure_set(x_20, 2, x_15); +lean_closure_set(x_20, 3, x_1); +lean_closure_set(x_20, 4, x_3); +lean_closure_set(x_20, 5, x_2); +lean_closure_set(x_20, 6, x_4); +lean_closure_set(x_20, 7, x_5); +lean_closure_set(x_20, 8, x_19); +lean_closure_set(x_20, 9, x_11); +lean_closure_set(x_20, 10, x_17); +lean_closure_set(x_20, 11, x_12); +lean_closure_set(x_20, 12, x_13); +lean_closure_set(x_20, 13, x_14); +x_21 = lean_name_eq(x_11, x_17); +lean_dec(x_11); +if (x_21 == 0) { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_dec_ref(x_3); lean_dec_ref(x_1); -x_21 = lean_alloc_closure((void*)(l_Lean_Elab_mkDeclName___redArg___lam__4), 4, 3); -lean_closure_set(x_21, 0, x_19); -lean_closure_set(x_21, 1, x_5); -lean_closure_set(x_21, 2, x_7); -x_22 = lean_box(0); -x_23 = lean_apply_2(x_15, lean_box(0), x_22); -x_24 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_23, x_21); -return x_24; +x_22 = lean_alloc_closure((void*)(l_Lean_Elab_mkDeclName___redArg___lam__4), 4, 3); +lean_closure_set(x_22, 0, x_20); +lean_closure_set(x_22, 1, x_6); +lean_closure_set(x_22, 2, x_8); +x_23 = lean_box(0); +x_24 = lean_apply_2(x_16, lean_box(0), x_23); +x_25 = lean_apply_4(x_15, lean_box(0), lean_box(0), x_24, x_22); +return x_25; } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec_ref(x_15); -x_25 = lean_alloc_closure((void*)(l_Lean_Elab_mkDeclName___redArg___lam__4), 4, 3); -lean_closure_set(x_25, 0, x_19); -lean_closure_set(x_25, 1, x_5); -lean_closure_set(x_25, 2, x_7); -x_26 = l_Lean_Elab_mkDeclName___redArg___closed__3; -x_27 = l_Lean_throwError___redArg(x_1, x_3, x_26); -x_28 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_27, x_25); -return x_28; +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +lean_dec_ref(x_16); +x_26 = lean_alloc_closure((void*)(l_Lean_Elab_mkDeclName___redArg___lam__4), 4, 3); +lean_closure_set(x_26, 0, x_20); +lean_closure_set(x_26, 1, x_6); +lean_closure_set(x_26, 2, x_8); +x_27 = l_Lean_Elab_mkDeclName___redArg___closed__3; +x_28 = l_Lean_throwError___redArg(x_1, x_3, x_27); +x_29 = lean_apply_4(x_15, lean_box(0), lean_box(0), x_28, x_26); +return x_29; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName(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_EXPORT lean_object* l_Lean_Elab_mkDeclName(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_9; -x_9 = l_Lean_Elab_mkDeclName___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_9; +lean_object* x_10; +x_10 = l_Lean_Elab_mkDeclName___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_10; } } LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { @@ -4489,31 +4546,48 @@ x_10 = l_Lean_Elab_mkDeclName___redArg___lam__3(x_9, x_2, x_3, x_4, x_5, x_6, x_ return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_12; -x_12 = l_Lean_Elab_mkDeclName___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_object* x_13; +x_13 = l_Lean_Elab_mkDeclName___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec_ref(x_1); -return x_12; +return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__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) { +LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__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, lean_object* x_12) { _start: { -lean_object* x_12; -x_12 = l_Lean_Elab_mkDeclName___redArg___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_12; +lean_object* x_13; +x_13 = l_Lean_Elab_mkDeclName___redArg___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___redArg___lam__7___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; _start: { -uint8_t x_17; lean_object* x_18; -x_17 = lean_unbox(x_8); -x_18 = l_Lean_Elab_mkDeclName___redArg___lam__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_17, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_10); -return x_18; +uint8_t x_18; lean_object* x_19; +x_18 = lean_unbox(x_9); +x_19 = l_Lean_Elab_mkDeclName___redArg___lam__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_18, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec(x_11); +return x_19; } } static lean_object* _init_l_Lean_Elab_expandDeclIdCore___closed__0() { @@ -4639,41 +4713,41 @@ x_6 = lean_apply_3(x_2, lean_box(0), x_5, x_3); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclId___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclId___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_17 = lean_ctor_get(x_1, 0); -lean_inc(x_17); -x_18 = lean_ctor_get(x_1, 1); -lean_inc_ref(x_18); +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; +x_18 = lean_ctor_get(x_1, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_19); lean_dec_ref(x_1); lean_inc_ref(x_11); lean_inc_ref(x_6); lean_inc_ref(x_5); lean_inc_ref(x_4); lean_inc_ref(x_2); -x_19 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__1), 12, 11); -lean_closure_set(x_19, 0, x_2); -lean_closure_set(x_19, 1, x_16); -lean_closure_set(x_19, 2, x_3); -lean_closure_set(x_19, 3, x_4); -lean_closure_set(x_19, 4, x_5); -lean_closure_set(x_19, 5, x_6); -lean_closure_set(x_19, 6, x_7); -lean_closure_set(x_19, 7, x_8); -lean_closure_set(x_19, 8, x_9); -lean_closure_set(x_19, 9, x_10); -lean_closure_set(x_19, 10, x_11); -x_20 = l_Lean_Elab_mkDeclName___redArg(x_4, x_6, x_5, x_12, x_13, x_2, x_14); -x_21 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__2___boxed), 4, 3); -lean_closure_set(x_21, 0, x_15); -lean_closure_set(x_21, 1, x_18); -lean_closure_set(x_21, 2, x_20); +x_20 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__1), 12, 11); +lean_closure_set(x_20, 0, x_2); +lean_closure_set(x_20, 1, x_17); +lean_closure_set(x_20, 2, x_3); +lean_closure_set(x_20, 3, x_4); +lean_closure_set(x_20, 4, x_5); +lean_closure_set(x_20, 5, x_6); +lean_closure_set(x_20, 6, x_7); +lean_closure_set(x_20, 7, x_8); +lean_closure_set(x_20, 8, x_9); +lean_closure_set(x_20, 9, x_10); +lean_closure_set(x_20, 10, x_11); +x_21 = l_Lean_Elab_mkDeclName___redArg(x_4, x_6, x_5, x_12, x_13, x_14, x_2, x_15); +x_22 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__2___boxed), 4, 3); +lean_closure_set(x_22, 0, x_16); +lean_closure_set(x_22, 1, x_19); +lean_closure_set(x_22, 2, x_21); lean_inc_ref(x_11); -x_22 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_17, x_21); -x_23 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_22, x_19); -return x_23; +x_23 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_18, x_22); +x_24 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_23, x_20); +return x_24; } } LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclId___redArg___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { @@ -4909,338 +4983,340 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclId___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclId___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_13 = lean_ctor_get(x_1, 0); -lean_inc_ref(x_13); -x_14 = lean_ctor_get(x_1, 1); +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_14 = lean_ctor_get(x_1, 0); lean_inc_ref(x_14); -x_15 = lean_ctor_get(x_3, 1); +x_15 = lean_ctor_get(x_1, 1); lean_inc_ref(x_15); -x_16 = lean_ctor_get(x_13, 1); +x_16 = lean_ctor_get(x_3, 1); lean_inc_ref(x_16); -lean_dec_ref(x_13); -x_17 = l_Lean_Elab_expandDeclIdCore(x_11); -x_18 = !lean_is_exclusive(x_17); -if (x_18 == 0) +x_17 = lean_ctor_get(x_14, 1); +lean_inc_ref(x_17); +lean_dec_ref(x_14); +x_18 = l_Lean_Elab_expandDeclIdCore(x_12); +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; -x_19 = lean_ctor_get(x_17, 0); -x_20 = lean_ctor_get(x_17, 1); -lean_inc_ref(x_14); +lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); +lean_inc_ref(x_15); lean_inc_ref(x_3); lean_inc_ref(x_1); +lean_inc_ref(x_17); lean_inc_ref(x_16); +x_22 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__3___boxed), 17, 16); +lean_closure_set(x_22, 0, x_16); +lean_closure_set(x_22, 1, x_13); +lean_closure_set(x_22, 2, x_17); +lean_closure_set(x_22, 3, x_1); +lean_closure_set(x_22, 4, x_3); +lean_closure_set(x_22, 5, x_2); +lean_closure_set(x_22, 6, x_7); +lean_closure_set(x_22, 7, x_6); +lean_closure_set(x_22, 8, x_5); +lean_closure_set(x_22, 9, x_9); +lean_closure_set(x_22, 10, x_15); +lean_closure_set(x_22, 11, x_4); +lean_closure_set(x_22, 12, x_8); +lean_closure_set(x_22, 13, x_10); +lean_closure_set(x_22, 14, x_20); +lean_closure_set(x_22, 15, x_12); +x_23 = l_Lean_Syntax_isNone(x_21); +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47; lean_inc_ref(x_15); -x_21 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__3), 16, 15); -lean_closure_set(x_21, 0, x_15); -lean_closure_set(x_21, 1, x_12); -lean_closure_set(x_21, 2, x_16); -lean_closure_set(x_21, 3, x_1); -lean_closure_set(x_21, 4, x_3); -lean_closure_set(x_21, 5, x_2); -lean_closure_set(x_21, 6, x_6); -lean_closure_set(x_21, 7, x_5); -lean_closure_set(x_21, 8, x_4); -lean_closure_set(x_21, 9, x_8); -lean_closure_set(x_21, 10, x_14); -lean_closure_set(x_21, 11, x_7); -lean_closure_set(x_21, 12, x_9); -lean_closure_set(x_21, 13, x_19); -lean_closure_set(x_21, 14, x_11); -x_22 = l_Lean_Syntax_isNone(x_20); -if (x_22 == 0) -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; 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; uint8_t x_46; -lean_inc_ref(x_14); lean_inc_ref(x_1); -lean_inc_ref(x_16); -x_23 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__5), 7, 5); -lean_closure_set(x_23, 0, x_16); -lean_closure_set(x_23, 1, x_15); -lean_closure_set(x_23, 2, x_1); -lean_closure_set(x_23, 3, x_3); -lean_closure_set(x_23, 4, x_14); -x_24 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__6), 2, 1); -lean_closure_set(x_24, 0, x_21); -x_39 = lean_unsigned_to_nat(1u); -x_40 = l_Lean_Syntax_getArg(x_20, x_39); -lean_dec(x_20); -x_41 = l_Lean_Syntax_getArgs(x_40); -lean_dec(x_40); -x_42 = l_Lean_Elab_expandDeclIdCore___closed__0; -x_43 = lean_unsigned_to_nat(0u); -x_44 = lean_array_get_size(x_41); -x_45 = l_Lean_Elab_expandDeclId___redArg___closed__9; -x_46 = lean_nat_dec_lt(x_43, x_44); -if (x_46 == 0) -{ -lean_dec(x_44); -lean_dec_ref(x_41); -lean_free_object(x_17); -x_25 = x_42; -goto block_38; -} -else -{ -uint8_t x_47; -x_47 = lean_nat_dec_le(x_44, x_44); +lean_inc_ref(x_17); +x_24 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__5), 7, 5); +lean_closure_set(x_24, 0, x_17); +lean_closure_set(x_24, 1, x_16); +lean_closure_set(x_24, 2, x_1); +lean_closure_set(x_24, 3, x_3); +lean_closure_set(x_24, 4, x_15); +x_25 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__6), 2, 1); +lean_closure_set(x_25, 0, x_22); +x_40 = lean_unsigned_to_nat(1u); +x_41 = l_Lean_Syntax_getArg(x_21, x_40); +lean_dec(x_21); +x_42 = l_Lean_Syntax_getArgs(x_41); +lean_dec(x_41); +x_43 = l_Lean_Elab_expandDeclIdCore___closed__0; +x_44 = lean_unsigned_to_nat(0u); +x_45 = lean_array_get_size(x_42); +x_46 = l_Lean_Elab_expandDeclId___redArg___closed__9; +x_47 = lean_nat_dec_lt(x_44, x_45); if (x_47 == 0) { -lean_dec(x_44); -lean_dec_ref(x_41); -lean_free_object(x_17); -x_25 = x_42; -goto block_38; +lean_dec(x_45); +lean_dec_ref(x_42); +lean_free_object(x_18); +x_26 = x_43; +goto block_39; } else { -lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; size_t x_52; size_t x_53; lean_object* x_54; lean_object* x_55; -x_48 = lean_box(x_47); -x_49 = lean_box(x_22); -x_50 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__7___boxed), 4, 2); -lean_closure_set(x_50, 0, x_48); -lean_closure_set(x_50, 1, x_49); -x_51 = lean_box(x_47); -lean_ctor_set(x_17, 1, x_42); -lean_ctor_set(x_17, 0, x_51); -x_52 = 0; -x_53 = lean_usize_of_nat(x_44); -lean_dec(x_44); -x_54 = l_Array_foldlMUnsafe_fold___redArg(x_45, x_50, x_41, x_52, x_53, x_17); -x_55 = lean_ctor_get(x_54, 1); -lean_inc(x_55); -lean_dec(x_54); -x_25 = x_55; -goto block_38; +uint8_t x_48; +x_48 = lean_nat_dec_le(x_45, x_45); +if (x_48 == 0) +{ +lean_dec(x_45); +lean_dec_ref(x_42); +lean_free_object(x_18); +x_26 = x_43; +goto block_39; +} +else +{ +lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; size_t x_53; size_t x_54; lean_object* x_55; lean_object* x_56; +x_49 = lean_box(x_48); +x_50 = lean_box(x_23); +x_51 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__7___boxed), 4, 2); +lean_closure_set(x_51, 0, x_49); +lean_closure_set(x_51, 1, x_50); +x_52 = lean_box(x_48); +lean_ctor_set(x_18, 1, x_43); +lean_ctor_set(x_18, 0, x_52); +x_53 = 0; +x_54 = lean_usize_of_nat(x_45); +lean_dec(x_45); +x_55 = l_Array_foldlMUnsafe_fold___redArg(x_46, x_51, x_42, x_53, x_54, x_18); +x_56 = lean_ctor_get(x_55, 1); +lean_inc(x_56); +lean_dec(x_55); +x_26 = x_56; +goto block_39; } } -block_38: +block_39: { -lean_object* x_26; lean_object* x_27; uint8_t x_28; -x_26 = lean_unsigned_to_nat(0u); -x_27 = lean_array_get_size(x_25); -x_28 = lean_nat_dec_lt(x_26, x_27); -if (x_28 == 0) +lean_object* x_27; lean_object* x_28; uint8_t x_29; +x_27 = lean_unsigned_to_nat(0u); +x_28 = lean_array_get_size(x_26); +x_29 = lean_nat_dec_lt(x_27, x_28); +if (x_29 == 0) { -lean_object* x_29; lean_object* x_30; -lean_dec(x_27); -lean_dec_ref(x_25); -lean_dec_ref(x_23); +lean_object* x_30; lean_object* x_31; +lean_dec(x_28); +lean_dec_ref(x_26); +lean_dec_ref(x_24); lean_dec_ref(x_1); -x_29 = lean_apply_2(x_16, lean_box(0), x_10); -x_30 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_29, x_24); -return x_30; +x_30 = lean_apply_2(x_17, lean_box(0), x_11); +x_31 = lean_apply_4(x_15, lean_box(0), lean_box(0), x_30, x_25); +return x_31; } else { -uint8_t x_31; -x_31 = lean_nat_dec_le(x_27, x_27); -if (x_31 == 0) +uint8_t x_32; +x_32 = lean_nat_dec_le(x_28, x_28); +if (x_32 == 0) { -lean_object* x_32; lean_object* x_33; -lean_dec(x_27); -lean_dec_ref(x_25); -lean_dec_ref(x_23); +lean_object* x_33; lean_object* x_34; +lean_dec(x_28); +lean_dec_ref(x_26); +lean_dec_ref(x_24); lean_dec_ref(x_1); -x_32 = lean_apply_2(x_16, lean_box(0), x_10); -x_33 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_32, x_24); -return x_33; +x_33 = lean_apply_2(x_17, lean_box(0), x_11); +x_34 = lean_apply_4(x_15, lean_box(0), lean_box(0), x_33, x_25); +return x_34; } else { -size_t x_34; size_t x_35; lean_object* x_36; lean_object* x_37; +size_t x_35; size_t x_36; lean_object* x_37; lean_object* x_38; +lean_dec_ref(x_17); +x_35 = 0; +x_36 = lean_usize_of_nat(x_28); +lean_dec(x_28); +x_37 = l_Array_foldlMUnsafe_fold___redArg(x_1, x_24, x_26, x_35, x_36, x_11); +x_38 = lean_apply_4(x_15, lean_box(0), lean_box(0), x_37, x_25); +return x_38; +} +} +} +} +else +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; +lean_free_object(x_18); +lean_dec(x_21); lean_dec_ref(x_16); -x_34 = 0; -x_35 = lean_usize_of_nat(x_27); -lean_dec(x_27); -x_36 = l_Array_foldlMUnsafe_fold___redArg(x_1, x_23, x_25, x_34, x_35, x_10); -x_37 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_36, x_24); -return x_37; -} -} -} -} -else -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; -lean_free_object(x_17); -lean_dec(x_20); -lean_dec_ref(x_15); lean_dec_ref(x_3); lean_dec_ref(x_1); -x_56 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__6), 2, 1); -lean_closure_set(x_56, 0, x_21); -x_57 = lean_apply_2(x_16, lean_box(0), x_10); -x_58 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_57, x_56); -return x_58; +x_57 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__6), 2, 1); +lean_closure_set(x_57, 0, x_22); +x_58 = lean_apply_2(x_17, lean_box(0), x_11); +x_59 = lean_apply_4(x_15, lean_box(0), lean_box(0), x_58, x_57); +return x_59; } } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; -x_59 = lean_ctor_get(x_17, 0); -x_60 = lean_ctor_get(x_17, 1); +lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; +x_60 = lean_ctor_get(x_18, 0); +x_61 = lean_ctor_get(x_18, 1); +lean_inc(x_61); lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_17); -lean_inc_ref(x_14); +lean_dec(x_18); +lean_inc_ref(x_15); lean_inc_ref(x_3); lean_inc_ref(x_1); +lean_inc_ref(x_17); lean_inc_ref(x_16); +x_62 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__3___boxed), 17, 16); +lean_closure_set(x_62, 0, x_16); +lean_closure_set(x_62, 1, x_13); +lean_closure_set(x_62, 2, x_17); +lean_closure_set(x_62, 3, x_1); +lean_closure_set(x_62, 4, x_3); +lean_closure_set(x_62, 5, x_2); +lean_closure_set(x_62, 6, x_7); +lean_closure_set(x_62, 7, x_6); +lean_closure_set(x_62, 8, x_5); +lean_closure_set(x_62, 9, x_9); +lean_closure_set(x_62, 10, x_15); +lean_closure_set(x_62, 11, x_4); +lean_closure_set(x_62, 12, x_8); +lean_closure_set(x_62, 13, x_10); +lean_closure_set(x_62, 14, x_60); +lean_closure_set(x_62, 15, x_12); +x_63 = l_Lean_Syntax_isNone(x_61); +if (x_63 == 0) +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; uint8_t x_87; lean_inc_ref(x_15); -x_61 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__3), 16, 15); -lean_closure_set(x_61, 0, x_15); -lean_closure_set(x_61, 1, x_12); -lean_closure_set(x_61, 2, x_16); -lean_closure_set(x_61, 3, x_1); -lean_closure_set(x_61, 4, x_3); -lean_closure_set(x_61, 5, x_2); -lean_closure_set(x_61, 6, x_6); -lean_closure_set(x_61, 7, x_5); -lean_closure_set(x_61, 8, x_4); -lean_closure_set(x_61, 9, x_8); -lean_closure_set(x_61, 10, x_14); -lean_closure_set(x_61, 11, x_7); -lean_closure_set(x_61, 12, x_9); -lean_closure_set(x_61, 13, x_59); -lean_closure_set(x_61, 14, x_11); -x_62 = l_Lean_Syntax_isNone(x_60); -if (x_62 == 0) -{ -lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; uint8_t x_86; -lean_inc_ref(x_14); lean_inc_ref(x_1); -lean_inc_ref(x_16); -x_63 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__5), 7, 5); -lean_closure_set(x_63, 0, x_16); -lean_closure_set(x_63, 1, x_15); -lean_closure_set(x_63, 2, x_1); -lean_closure_set(x_63, 3, x_3); -lean_closure_set(x_63, 4, x_14); -x_64 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__6), 2, 1); -lean_closure_set(x_64, 0, x_61); -x_79 = lean_unsigned_to_nat(1u); -x_80 = l_Lean_Syntax_getArg(x_60, x_79); -lean_dec(x_60); -x_81 = l_Lean_Syntax_getArgs(x_80); -lean_dec(x_80); -x_82 = l_Lean_Elab_expandDeclIdCore___closed__0; -x_83 = lean_unsigned_to_nat(0u); -x_84 = lean_array_get_size(x_81); -x_85 = l_Lean_Elab_expandDeclId___redArg___closed__9; -x_86 = lean_nat_dec_lt(x_83, x_84); -if (x_86 == 0) -{ -lean_dec(x_84); -lean_dec_ref(x_81); -x_65 = x_82; -goto block_78; -} -else -{ -uint8_t x_87; -x_87 = lean_nat_dec_le(x_84, x_84); +lean_inc_ref(x_17); +x_64 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__5), 7, 5); +lean_closure_set(x_64, 0, x_17); +lean_closure_set(x_64, 1, x_16); +lean_closure_set(x_64, 2, x_1); +lean_closure_set(x_64, 3, x_3); +lean_closure_set(x_64, 4, x_15); +x_65 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__6), 2, 1); +lean_closure_set(x_65, 0, x_62); +x_80 = lean_unsigned_to_nat(1u); +x_81 = l_Lean_Syntax_getArg(x_61, x_80); +lean_dec(x_61); +x_82 = l_Lean_Syntax_getArgs(x_81); +lean_dec(x_81); +x_83 = l_Lean_Elab_expandDeclIdCore___closed__0; +x_84 = lean_unsigned_to_nat(0u); +x_85 = lean_array_get_size(x_82); +x_86 = l_Lean_Elab_expandDeclId___redArg___closed__9; +x_87 = lean_nat_dec_lt(x_84, x_85); if (x_87 == 0) { -lean_dec(x_84); -lean_dec_ref(x_81); -x_65 = x_82; -goto block_78; +lean_dec(x_85); +lean_dec_ref(x_82); +x_66 = x_83; +goto block_79; } else { -lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; size_t x_93; size_t x_94; lean_object* x_95; lean_object* x_96; -x_88 = lean_box(x_87); -x_89 = lean_box(x_62); -x_90 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__7___boxed), 4, 2); -lean_closure_set(x_90, 0, x_88); -lean_closure_set(x_90, 1, x_89); -x_91 = lean_box(x_87); -x_92 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_92, 0, x_91); -lean_ctor_set(x_92, 1, x_82); -x_93 = 0; -x_94 = lean_usize_of_nat(x_84); -lean_dec(x_84); -x_95 = l_Array_foldlMUnsafe_fold___redArg(x_85, x_90, x_81, x_93, x_94, x_92); -x_96 = lean_ctor_get(x_95, 1); -lean_inc(x_96); -lean_dec(x_95); -x_65 = x_96; -goto block_78; +uint8_t x_88; +x_88 = lean_nat_dec_le(x_85, x_85); +if (x_88 == 0) +{ +lean_dec(x_85); +lean_dec_ref(x_82); +x_66 = x_83; +goto block_79; +} +else +{ +lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; size_t x_94; size_t x_95; lean_object* x_96; lean_object* x_97; +x_89 = lean_box(x_88); +x_90 = lean_box(x_63); +x_91 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__7___boxed), 4, 2); +lean_closure_set(x_91, 0, x_89); +lean_closure_set(x_91, 1, x_90); +x_92 = lean_box(x_88); +x_93 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_93, 0, x_92); +lean_ctor_set(x_93, 1, x_83); +x_94 = 0; +x_95 = lean_usize_of_nat(x_85); +lean_dec(x_85); +x_96 = l_Array_foldlMUnsafe_fold___redArg(x_86, x_91, x_82, x_94, x_95, x_93); +x_97 = lean_ctor_get(x_96, 1); +lean_inc(x_97); +lean_dec(x_96); +x_66 = x_97; +goto block_79; } } -block_78: +block_79: { -lean_object* x_66; lean_object* x_67; uint8_t x_68; -x_66 = lean_unsigned_to_nat(0u); -x_67 = lean_array_get_size(x_65); -x_68 = lean_nat_dec_lt(x_66, x_67); -if (x_68 == 0) +lean_object* x_67; lean_object* x_68; uint8_t x_69; +x_67 = lean_unsigned_to_nat(0u); +x_68 = lean_array_get_size(x_66); +x_69 = lean_nat_dec_lt(x_67, x_68); +if (x_69 == 0) { -lean_object* x_69; lean_object* x_70; -lean_dec(x_67); -lean_dec_ref(x_65); -lean_dec_ref(x_63); +lean_object* x_70; lean_object* x_71; +lean_dec(x_68); +lean_dec_ref(x_66); +lean_dec_ref(x_64); lean_dec_ref(x_1); -x_69 = lean_apply_2(x_16, lean_box(0), x_10); -x_70 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_69, x_64); -return x_70; +x_70 = lean_apply_2(x_17, lean_box(0), x_11); +x_71 = lean_apply_4(x_15, lean_box(0), lean_box(0), x_70, x_65); +return x_71; } else { -uint8_t x_71; -x_71 = lean_nat_dec_le(x_67, x_67); -if (x_71 == 0) +uint8_t x_72; +x_72 = lean_nat_dec_le(x_68, x_68); +if (x_72 == 0) { -lean_object* x_72; lean_object* x_73; -lean_dec(x_67); -lean_dec_ref(x_65); -lean_dec_ref(x_63); +lean_object* x_73; lean_object* x_74; +lean_dec(x_68); +lean_dec_ref(x_66); +lean_dec_ref(x_64); lean_dec_ref(x_1); -x_72 = lean_apply_2(x_16, lean_box(0), x_10); -x_73 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_72, x_64); -return x_73; +x_73 = lean_apply_2(x_17, lean_box(0), x_11); +x_74 = lean_apply_4(x_15, lean_box(0), lean_box(0), x_73, x_65); +return x_74; } else { -size_t x_74; size_t x_75; lean_object* x_76; lean_object* x_77; +size_t x_75; size_t x_76; lean_object* x_77; lean_object* x_78; +lean_dec_ref(x_17); +x_75 = 0; +x_76 = lean_usize_of_nat(x_68); +lean_dec(x_68); +x_77 = l_Array_foldlMUnsafe_fold___redArg(x_1, x_64, x_66, x_75, x_76, x_11); +x_78 = lean_apply_4(x_15, lean_box(0), lean_box(0), x_77, x_65); +return x_78; +} +} +} +} +else +{ +lean_object* x_98; lean_object* x_99; lean_object* x_100; +lean_dec(x_61); lean_dec_ref(x_16); -x_74 = 0; -x_75 = lean_usize_of_nat(x_67); -lean_dec(x_67); -x_76 = l_Array_foldlMUnsafe_fold___redArg(x_1, x_63, x_65, x_74, x_75, x_10); -x_77 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_76, x_64); -return x_77; -} -} -} -} -else -{ -lean_object* x_97; lean_object* x_98; lean_object* x_99; -lean_dec(x_60); -lean_dec_ref(x_15); lean_dec_ref(x_3); lean_dec_ref(x_1); -x_97 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__6), 2, 1); -lean_closure_set(x_97, 0, x_61); -x_98 = lean_apply_2(x_16, lean_box(0), x_10); -x_99 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_98, x_97); -return x_99; +x_98 = lean_alloc_closure((void*)(l_Lean_Elab_expandDeclId___redArg___lam__6), 2, 1); +lean_closure_set(x_98, 0, x_62); +x_99 = lean_apply_2(x_17, lean_box(0), x_11); +x_100 = lean_apply_4(x_15, lean_box(0), lean_box(0), x_99, x_98); +return x_100; } } } } -LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclId(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclId(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { -lean_object* x_14; -x_14 = l_Lean_Elab_expandDeclId___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_14; +lean_object* x_15; +x_15 = l_Lean_Elab_expandDeclId___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +return x_15; } } LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclId___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { @@ -5261,6 +5337,31 @@ lean_dec(x_1); return x_5; } } +LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclId___redArg___lam__3___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +_start: +{ +lean_object* x_18; +x_18 = l_Lean_Elab_expandDeclId___redArg___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +return x_18; +} +} LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclId___redArg___lam__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { diff --git a/stage0/stdlib/Lean/Elab/Inductive.c b/stage0/stdlib/Lean/Elab/Inductive.c index 5550c815ca..b3c1908753 100644 --- a/stage0/stdlib/Lean/Elab/Inductive.c +++ b/stage0/stdlib/Lean/Elab/Inductive.c @@ -13,125 +13,129 @@ #ifdef __cplusplus extern "C" { #endif -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_fvarId_x3f(lean_object*); static lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1_spec__1___redArg___closed__7; +LEAN_EXPORT lean_object* l_Lean_logWarningAt___at___Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50_spec__50(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__9___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__19___redArg(lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__1; +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__1; static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__35___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__10___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27(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_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_withIncRecDepth___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withAutoBoundImplicit___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__38___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0___lam__2___closed__0; static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___closed__8; LEAN_EXPORT lean_object* l_Lean_throwNamedError___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__27___redArg___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__5; +static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__3; uint8_t l_Lean_Elab_isAbortExceptionId(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitForall___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__10(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visit(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37___redArg(lean_object*); static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___redArg___closed__3; +LEAN_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__35(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_Lean_mkAppN(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwNamedError___at___Lean_throwNamedErrorAt___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__7; LEAN_EXPORT lean_object* l_Lean_throwNamedError___at___Lean_throwNamedErrorAt___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwNamedError___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__4; -LEAN_EXPORT uint8_t l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0(uint8_t, uint8_t, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___closed__0; +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__11; static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__7(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__3; +LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabInductiveCommand___regBuiltin_Lean_Elab_Command_elabInductiveCommand__1___closed__0; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_private_to_user_name(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitForall___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__10___lam__0(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_declRangeExt; +LEAN_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__23___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_finIdxOf_x3f___at___Array_erase___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__2_spec__2___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__1; LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__1___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__27___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getHeadInfo(lean_object*); lean_object* l_Lean_indentD(lean_object*); static lean_object* l_Lean_localDeclDependsOnPred___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__1___redArg___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_isEmpty___redArg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_replaceArrowBinderNames___boxed(lean_object*, lean_object*); uint8_t l_Lean_Exception_isInterrupt(lean_object*); lean_object* l_Lean_Elab_Term_synthesizeSyntheticMVars(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitLambda___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_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*); -static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__5; lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___closed__0; +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__2; LEAN_EXPORT uint8_t l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__1(lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Command_elabInductiveCommand_spec__0(size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__33___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__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*); size_t lean_uint64_to_usize(uint64_t); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabInductiveCommand___lam__3___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_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___closed__1; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__22(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__12; +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__34___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_idxOfAux___at___Array_finIdxOf_x3f___at___Array_erase___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__2_spec__2_spec__2(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__7(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_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__2; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg(lean_object*, lean_object*, uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___closed__2; LEAN_EXPORT lean_object* l_Lean_localDeclDependsOnPred___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); -static lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__0; lean_object* l_Lean_Environment_findConstVal_x3f(lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Command_elabInductiveCommand_spec__0___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_sort___override(lean_object*); LEAN_EXPORT lean_object* l_Array_erase___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__2___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withIncRecDepth___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__13___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__0; lean_object* l_Lean_MessageData_ofList(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3___redArg(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*); static lean_object* l_Lean_localDeclDependsOnPred___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__1___redArg___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__5(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__0(lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___closed__12; lean_object* l_String_removeLeadingSpaces(lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__0; extern lean_object* l_Lean_Elab_Command_inductiveElabAttr; LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_isInductiveFamily___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3___redArg___lam__4___boxed(lean_object**); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand_go___at___Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__16_spec__16(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_unknownIdentifierMessageTag; uint8_t lean_usize_dec_eq(size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabInductiveCommand___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Name_isAnonymous(lean_object*); lean_object* l_Lean_rewriteManualLinksCore(lean_object*, lean_object*); @@ -141,112 +145,106 @@ lean_object* l_ST_Prim_Ref_get___boxed(lean_object*, lean_object*, lean_object*, LEAN_EXPORT uint8_t l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__7_spec__7___lam__1(uint8_t, lean_object*); lean_object* l_Lean_Expr_mdata___override(lean_object*, lean_object*); lean_object* l___private_Lean_Log_0__Lean_MessageData_appendDescriptionWidgetIfNamed(lean_object*); +static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__9___redArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_replaceRef(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__1; lean_object* lean_mk_array(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__3; static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch___lam__1___closed__0; static lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1_spec__1___redArg___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_proj___override(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getPos_x3f(lean_object*, uint8_t); -static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35___redArg___closed__0; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getTailPos_x3f(lean_object*, uint8_t); -LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__1___closed__1; -LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__10; +LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37___redArg___closed__1; lean_object* l_Lean_Expr_fvarId_x21(lean_object*); -static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___lam__0___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_transformWithCache_visit_visitLambda___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__8_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_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___Std_DHashMap_Internal_Raw_u2080_expand_go___at___Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__16_spec__16_spec__16___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__4; static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___closed__4; static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getRangeWithTrailing_x3f(lean_object*, uint8_t); lean_object* l_Lean_Syntax_getIdAt(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___closed__1; uint8_t l_Lean_MessageData_hasSyntheticSorry(lean_object*); lean_object* l_Lean_DeclarationRange_ofStringPositions(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwNamedError___at___Lean_throwNamedErrorAt___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch_spec__0_spec__0___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_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__1; static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0___lam__1___closed__1; static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_getArrowBinderNames___closed__0; -static lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__38___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___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_Linter_getLinterValue(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__5___closed__0; LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__2; +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__4; +LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Meta_withIncRecDepth___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__13_spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30___closed__0; +static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__6; static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__2___closed__1; lean_object* l_Lean_Syntax_ofRange(lean_object*, uint8_t); -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__2; LEAN_EXPORT lean_object* l_Lean_throwNamedErrorAt___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); -static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__1___closed__0; static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__1___closed__2; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__0; static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0___closed__1; lean_object* l_Lean_MessageData_note(lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs___lam__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__0___closed__0; +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__40___closed__1; LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_MessageData_hint(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Meta_transformWithCache_visit_visitLet___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__11_spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___closed__7; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__3(lean_object*, lean_object*, uint8_t, uint8_t, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__5; LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__29___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__24(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___closed__1; +LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__30___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__2; -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__1; static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs___lam__1___closed__10; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__19(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_byte_size(lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__1; -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__4; +LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch___lam__1___closed__1; -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__6; LEAN_EXPORT lean_object* l_Lean_localDeclDependsOnPred___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__1___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__28___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addProtected(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_isInductiveFamily_spec__0(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch___closed__3; +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__9; +LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___closed__9; static lean_object* l_Lean_localDeclDependsOnPred___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__1___redArg___closed__3; -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35___redArg(lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__5___redArg(lean_object*, lean_object*); -static lean_object* l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__2; uint8_t l_Lean_Expr_hasMVar(lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__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*); uint8_t lean_is_reserved_name(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__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_EXPORT lean_object* l_Lean_throwNamedError___at___Lean_throwNamedErrorAt___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46_spec__46___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__0(uint8_t, lean_object*, lean_object*, size_t, size_t); -static lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_isInductiveFamily_spec__0___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_InternalExceptionId_getName(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1_spec__1___redArg___lam__0(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_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0___closed__2; static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___closed__16; -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__11; size_t lean_ptr_addr(lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__6_spec__6(lean_object*, lean_object*, uint8_t, uint8_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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___closed__15; @@ -254,48 +252,50 @@ LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at__ lean_object* l_Lean_Elab_Modifiers_addAttr(lean_object*, lean_object*); extern lean_object* l_Lean_Linter_linterSetsExt; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingImp(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__0; static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___closed__5; size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__10___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitLambda___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__8(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__12; LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Meta_withIncRecDepth___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__13_spec__13___redArg(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0(lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__7_spec__7___lam__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__4; static lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__11; LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoTree___at___Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__14_spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__5(lean_object*, lean_object*, lean_object*); lean_object* lean_local_ctx_find(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(lean_object*, lean_object*, lean_object*); lean_object* l_List_head_x3f___redArg(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_getArrowBinderNames_go(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch___closed__7; lean_object* lean_st_ref_take(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__4; -LEAN_EXPORT lean_object* l_Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logWarningAt___at___Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50_spec__50___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1_spec__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__1___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; lean_object* l_Lean_Elab_expandMacroImpl_x3f(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__5___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0_spec__1_spec__1(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__5___closed__1; lean_object* l_Lean_Elab_getDeclarationSelectionRef(lean_object*); uint8_t lean_expr_eqv(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ResolveName_resolveNamespace(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkPrivateName(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0(lean_object*); +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__6; static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0_spec__1___redArg___closed__2; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___Std_DHashMap_Internal_Raw_u2080_expand_go___at___Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__16_spec__16_spec__16(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__12(lean_object*, lean_object*); uint64_t lean_uint64_shift_right(uint64_t, uint64_t); +static lean_object* l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__2; LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__29(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_Modifiers_isProtected(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_isInductiveFamily(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabInductiveCommand___regBuiltin_Lean_Elab_Command_elabInductiveCommand__1___closed__1; @@ -303,57 +303,60 @@ lean_object* l_Lean_Meta_isType(lean_object*, lean_object*, lean_object*, lean_o lean_object* l_Lean_MessageData_ofSyntax(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_transformWithCache_visit_visitLambda___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__8_spec__8___redArg___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*); -static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__10(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1_spec__1___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabInductiveCommand___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs___lam__1___closed__11; -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__7; +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs___lam__1___closed__7; LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___closed__6; -static lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46_spec__46___redArg___closed__0; +static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__4; LEAN_EXPORT lean_object* l_List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3___redArg___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_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__0; -static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__3; -static lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__6; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__47___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*); +static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__5; LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Meta_transformWithCache_visit_visitLet___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__11_spec__11___redArg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1_spec__1___redArg(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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__4; +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoTree___at___Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__14_spec__14___redArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_toAttributeKind___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_isInductiveFamily_spec__0___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*); -static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___closed__1; static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__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_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__47___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabInductiveCommand___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofFormat(lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); uint8_t l_Lean_Expr_isMVar(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__6_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__15(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs___lam__0___closed__0; +static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__3; static lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitLet___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__11___lam__0(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_forallE___override(lean_object*, lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0___lam__1___closed__0; +static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__4; +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__0; LEAN_EXPORT uint8_t l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__7_spec__7___lam__0(lean_object*, uint8_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__23(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs___lam__1___closed__0; static lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__4; double lean_float_of_nat(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitLet___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__11___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*); @@ -363,103 +366,100 @@ static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownId uint8_t l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(uint8_t, uint8_t); static lean_object* l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0_spec__1_spec__2___closed__2; LEAN_EXPORT lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getOptional_x3f(lean_object*); -static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__3; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___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*); +static lean_object* l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__1; lean_object* lean_array_to_list(lean_object*); static lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1_spec__1___redArg___closed__12; +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_synthesizeSyntheticMVarsNoPostponing(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__6; uint8_t l_Lean_MessageData_hasTag(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs___lam__1___closed__6; -LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__5; -LEAN_EXPORT lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46_spec__46___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__0; lean_object* l_ST_Prim_mkRef___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__1; lean_object* l_Array_ofSubarray___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwNamedError___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__5___redArg___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_MessageData_nil; -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__32(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeNotType___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___closed__1; +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_privateToUserName(lean_object*); extern lean_object* l_Lean_instInhabitedExpr; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__33(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__28___redArg___closed__0; +static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__8; LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeNotType___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___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_whnfD(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__47(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_withExplicitToImplicit___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabInductiveCommand___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__2(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Meta_transformWithCache_visit_visitLet___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__11_spec__11___redArg___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_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__4; +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__1; uint64_t l_Lean_Expr_hash(lean_object*); static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0_spec__1___redArg___closed__4; LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentArray_push___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch___closed__6; static lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1_spec__1___redArg___closed__11; lean_object* l_Lean_Syntax_getSepArgs(lean_object*); -static lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_transformWithCache_visit_visitLambda___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__8_spec__8___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLetFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___closed__9; +LEAN_EXPORT uint8_t l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0(uint8_t, uint8_t, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); static lean_object* l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__14___closed__1; -static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0; static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0_spec__1___redArg___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_transformWithCache_visit_visitLambda___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__8_spec__8(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors(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_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___redArg___closed__0; extern lean_object* l_Lean_warningAsError; extern lean_object* l_Lean_Elab_pp_macroStack; +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_expr_equal(lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___closed__8; +LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_docStringExt; -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_replaceArrowBinderNames_go(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__2; static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___closed__2; static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___closed__11; LEAN_EXPORT lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___boxed(lean_object**); -static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitPost___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__4(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32___closed__0; static lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1_spec__1___redArg___closed__4; LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48_spec__48(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1_spec__1___redArg___closed__5; +LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_finIdxOf_x3f___at___Array_erase___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__2_spec__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___closed__2; static lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1_spec__1___redArg___closed__6; -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__3; -static lean_object* l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__1; static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch___closed__1; -static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__6; -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___redArg___closed__2; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18___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_TSyntax_getDocString(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabInductiveCommand___regBuiltin_Lean_Elab_Command_elabInductiveCommand__3(lean_object*); -static lean_object* l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__3; -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__7_spec__7(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___boxed(lean_object*); static lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__6; static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__2___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabInductiveCommand___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -467,42 +467,42 @@ lean_object* l_Lean_MessageData_tagWithErrorName(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0_spec__1_spec__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_getArrowBinderNames(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitForall___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__10___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___lam__0___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_SimplePersistentEnvExtension_getState___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabInductiveCommand___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofConstName(lean_object*, uint8_t); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs___lam__1___closed__4; static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___closed__5; -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwNamedErrorAt___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Environment_contains(lean_object*, lean_object*, uint8_t); -static lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__38___closed__0; lean_object* l_Lean_MessageData_ofExpr(lean_object*); -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__32___redArg___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3___boxed__const__1; LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__38(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___lam__0___closed__0; +LEAN_EXPORT lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48_spec__48___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoTree___at___Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__14_spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__1; +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_localDeclDependsOnPred___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__6; lean_object* l_Lean_Name_toStringWithToken___at___Lean_Name_toString_spec__0(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0___lam__0___closed__0; -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__0; +static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__1; +static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__0; static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch___closed__4; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppNumArgs(lean_object*); static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0___lam__2___closed__1; static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___closed__2; lean_object* l_Lean_SourceInfo_getPos_x3f(lean_object*, uint8_t); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___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*); +static lean_object* l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__0; LEAN_EXPORT lean_object* l_Lean_throwNamedErrorAt___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch_spec__0___redArg___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_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__6; lean_object* l_Array_eraseIdx___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___closed__1; static lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1_spec__1___redArg___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -510,32 +510,30 @@ uint8_t l_Lean_Elab_Modifiers_isPrivate(lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_addPPExplicitToExposeDiff(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1_spec__1___redArg___closed__10; -static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__7; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__47___redArg(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isToken(lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___closed__3; -LEAN_EXPORT lean_object* l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__7___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__3; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__39___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabInductiveCommand___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Name_hasMacroScopes(lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); +static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_addAutoBoundImplicits(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__0___boxed(lean_object*); lean_object* l_Lean_Elab_Term_collectUnassignedMVars___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__39(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___boxed(lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1_spec__1___redArg___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_EXPORT lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46_spec__46(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__28___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__13; lean_object* l_Lean_Elab_getOptDerivingClasses(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__5; static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0___closed__0; +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__10; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__16(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeNotType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0_spec__1_spec__2(lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__0___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabInductiveCommand___lam__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_EXPORT uint8_t l_Array_anyMUnsafe_any___at___Array_contains___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__5_spec__5(lean_object*, lean_object*, size_t, size_t); static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___redArg___closed__1; @@ -543,48 +541,50 @@ uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_contains___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__5___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Meta_withIncRecDepth___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__13_spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___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_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__2; -LEAN_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__1___closed__0; -static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__2; +LEAN_EXPORT lean_object* l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_replaceArrowBinderNames(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__29___redArg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3___closed__3; lean_object* l_Lean_Environment_mainModule(lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__2; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__41(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__0___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_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__2; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__15___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3___lam__2(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__9; +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__34(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_localDeclDependsOnPred___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static double l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg___closed__0; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___Array_contains___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__5_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__30___redArg___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__29___redArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentExpr(lean_object*); uint8_t l_Lean_BinderInfo_isExplicit(uint8_t); +LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeNotType___closed__1; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand_go___at___Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__16_spec__16___redArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MapDeclarationExtension_insert___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getFVarLocalDecl___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__9; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__16___redArg(lean_object*); -LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__2; +static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___closed__0; lean_object* l_Lean_Meta_mkForallFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandDeclId(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_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__14___closed__0; lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__1___closed__0; static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___closed__3; uint64_t lean_uint64_xor(uint64_t, uint64_t); -LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_transformWithCache_visit_visitLambda___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__8_spec__8___redArg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_toSubarray___redArg(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); @@ -592,128 +592,133 @@ static lean_object* l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDec LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabInductiveCommand; LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___closed__0; LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_reverse___redArg(lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___closed__6; -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0_spec__1___redArg___closed__1; lean_object* l_Lean_Syntax_getHeadInfo_x3f(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__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_ResolveName_resolveGlobalName(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__1___closed__1; lean_object* l_Lean_Expr_getAppFn(lean_object*); lean_object* l_Array_append___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_mul(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg___closed__1; lean_object* l_Lean_Syntax_getRange_x3f(lean_object*, uint8_t); -LEAN_EXPORT lean_object* l_Lean_logWarningAt___at___Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48_spec__48___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__2; LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_erase___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__0; +LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20___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_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1_spec__1___redArg___closed__9; +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs___lam__1___closed__5; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__3; static lean_object* l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0_spec__1_spec__2___closed__1; lean_object* l_Nat_nextPowerOfTwo(lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48_spec__48___redArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_expandOptDeclSig(lean_object*); -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Linter_linter_deprecated; lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__0(lean_object*, lean_object*, size_t, size_t); uint8_t l_Lean_LocalDecl_binderInfo(lean_object*); -LEAN_EXPORT lean_object* l_Lean_logWarningAt___at___Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48_spec__48(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitLambda___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__8___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_contains___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__5(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_getModuleIdxFor_x3f(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__10___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_erase_macro_scopes(lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___closed__14; static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch___closed__2; -static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__0; +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__8; lean_object* lean_expr_instantiate_rev(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors___lam__0(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_EXPORT lean_object* l_Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwNamedErrorAt___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch_spec__0___boxed(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_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__5; uint8_t l_Lean_Elab_Visibility_isInferredPublic(lean_object*, uint8_t); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___lam__0___closed__0; +LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_sub(size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__30___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoTree___at___Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__14_spec__14___redArg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3___closed__2; static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___closed__7; lean_object* l_Lean_instantiateMVarsCore(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_isInductiveFamily___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs___lam__1___closed__2; -LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___closed__10; static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0___lam__0___closed__1; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Level_param___override(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___lam__1(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___boxed(lean_object**); -LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__6(lean_object*, lean_object*, uint8_t, uint8_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_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3___lam__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*); uint8_t l_Lean_Expr_hasFVar(lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___redArg(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__3; +LEAN_EXPORT lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48_spec__48___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg(lean_object*, lean_object*, uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_Modifiers_isNoncomputable(lean_object*); +static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___lam__1(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KVMap_findCore(lean_object*, lean_object*); lean_object* lean_array_uget(lean_object*, size_t); size_t lean_array_size(lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeNotType___closed__3; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__1; +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__7; static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabInductiveCommand___regBuiltin_Lean_Elab_Command_elabInductiveCommand__1___closed__2; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1_spec__1___boxed(lean_object**); lean_object* lean_io_error_to_string(lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__1___closed__3; lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__34___redArg(lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr1(lean_object*); lean_object* l_Lean_Elab_Term_getLevelNames___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitForall___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_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*); -static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__40___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg(lean_object*, lean_object*); +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__7; LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35___redArg___closed__1; static lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1_spec__1___redArg___closed__8; static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabInductiveCommand___regBuiltin_Lean_Elab_Command_elabInductiveCommand__1___closed__3; -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__8; -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__40___closed__0; static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0___closed__0; +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__34___redArg___boxed(lean_object*, lean_object*); static lean_object* l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0_spec__1_spec__2___closed__0; LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__1; -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofLazyM(lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); static lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1_spec__1___redArg___closed__3; static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs___lam__1___closed__13; static lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__5; LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__15___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getAttributeImpl(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__3; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__41___boxed(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_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -static lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__7; LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__28(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs___lam__1___closed__8; -LEAN_EXPORT lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46_spec__46___redArg(lean_object*, lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___closed__10; lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -721,16 +726,23 @@ static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownId LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch___closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___lam__0___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*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs___lam__0___closed__1; extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; uint8_t lean_usize_dec_lt(size_t, size_t); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__32___redArg(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__3; +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__3; +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__2; lean_object* l_Lean_Meta_mkLambdaFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3___lam__1(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__3; +static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__2; lean_object* lean_nat_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitLet___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__11___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__15___redArg___boxed(lean_object*, lean_object*); static lean_object* l_Lean_localDeclDependsOnPred___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__1___redArg___closed__2; @@ -738,72 +750,69 @@ static lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean uint8_t l_Lean_Expr_isConst(lean_object*); uint8_t l_Lean_Exception_isRuntime(lean_object*); static lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__12; +static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_replaceArrowBinderNames_go___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__1; static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs___lam__1___closed__3; +static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__7; LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeMismatch___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_throwUnexpectedResultingTypeNotType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_setExporting(lean_object*, uint8_t); -static double l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg___closed__0; +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__0; +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__0; +static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__4; uint8_t l_Lean_Expr_isFVar(lean_object*); uint8_t l_Lean_Expr_isForall(lean_object*); -static lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__1; lean_object* l_Lean_Elab_Term_elabBinders(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__0___boxed(lean_object*); lean_object* l_Lean_expandMacros(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_mvarId_x21(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_localDeclDependsOnPred___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__1___redArg___closed__4; -static lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg___closed__1; -static lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__1; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__7_spec__7___lam__0___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0_spec__1___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_throwNamedError___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3___closed__0; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___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_MessageData_ofName(lean_object*); -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabInductiveCommand___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_isInductiveFamily_spec__0___redArg___lam__0(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_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__4; static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs___lam__1___closed__9; uint8_t l_Lean_Elab_Modifiers_isPartial(lean_object*); lean_object* l_List_drop___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__40(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__10; LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Meta_transformWithCache_visit_visitLet___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__11_spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__27___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_isInductiveFamily_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__0(lean_object*); -static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__4; +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabInductiveCommand___regBuiltin_Lean_Elab_Command_elabInductiveCommand__1(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__10___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_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___closed__0; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__7_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_idxOfAux___at___Array_finIdxOf_x3f___at___Array_erase___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__2_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitPost___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__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_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitLet___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__11(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__4; lean_object* l_Lean_MessageLog_add(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs___lam__1___closed__12; size_t lean_usize_land(size_t, size_t); -static lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__0; static lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__1_spec__1___redArg___closed__2; lean_object* l_Lean_Elab_Term_elabType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__0; -static lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__0; -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48_spec__48___redArg___closed__0; LEAN_EXPORT lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitLambda___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__3_spec__3_spec__8___lam__0(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___closed__0; +LEAN_EXPORT lean_object* l_Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0_spec__0(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: @@ -2605,6 +2614,392 @@ return x_22; } } } +static lean_object* _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__0; +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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__1; +x_2 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2, 0, x_1); +lean_ctor_set(x_2, 1, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__0; +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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__0; +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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__0; +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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__0; +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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__6; +x_2 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__5; +x_3 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__4; +x_4 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__3; +x_5 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +lean_ctor_set(x_5, 2, x_2); +lean_ctor_set(x_5, 3, x_4); +lean_ctor_set(x_5, 4, x_1); +lean_ctor_set(x_5, 5, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_5 = lean_st_ref_take(x_3, x_4); +x_6 = lean_ctor_get(x_5, 0); +lean_inc(x_6); +x_7 = lean_ctor_get(x_5, 1); +lean_inc(x_7); +lean_dec_ref(x_5); +x_8 = !lean_is_exclusive(x_6); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_9 = lean_ctor_get(x_6, 5); +lean_dec(x_9); +x_10 = lean_ctor_get(x_6, 0); +lean_dec(x_10); +x_11 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__2; +lean_ctor_set(x_6, 5, x_11); +lean_ctor_set(x_6, 0, x_1); +x_12 = lean_st_ref_set(x_3, x_6, x_7); +x_13 = lean_ctor_get(x_12, 1); +lean_inc(x_13); +lean_dec_ref(x_12); +x_14 = lean_st_ref_take(x_2, x_13); +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec_ref(x_14); +x_17 = !lean_is_exclusive(x_15); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_18 = lean_ctor_get(x_15, 1); +lean_dec(x_18); +x_19 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__7; +lean_ctor_set(x_15, 1, x_19); +x_20 = lean_st_ref_set(x_2, x_15, x_16); +x_21 = !lean_is_exclusive(x_20); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_20, 0); +lean_dec(x_22); +x_23 = lean_box(0); +lean_ctor_set(x_20, 0, x_23); +return x_20; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_20, 1); +lean_inc(x_24); +lean_dec(x_20); +x_25 = lean_box(0); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_24); +return x_26; +} +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_27 = lean_ctor_get(x_15, 0); +x_28 = lean_ctor_get(x_15, 2); +x_29 = lean_ctor_get(x_15, 3); +x_30 = lean_ctor_get(x_15, 4); +lean_inc(x_30); +lean_inc(x_29); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_15); +x_31 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__7; +x_32 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_32, 0, x_27); +lean_ctor_set(x_32, 1, x_31); +lean_ctor_set(x_32, 2, x_28); +lean_ctor_set(x_32, 3, x_29); +lean_ctor_set(x_32, 4, x_30); +x_33 = lean_st_ref_set(x_2, x_32, x_16); +x_34 = lean_ctor_get(x_33, 1); +lean_inc(x_34); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + x_35 = x_33; +} else { + lean_dec_ref(x_33); + x_35 = lean_box(0); +} +x_36 = lean_box(0); +if (lean_is_scalar(x_35)) { + x_37 = lean_alloc_ctor(0, 2, 0); +} else { + x_37 = x_35; +} +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set(x_37, 1, x_34); +return x_37; +} +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_38 = lean_ctor_get(x_6, 1); +x_39 = lean_ctor_get(x_6, 2); +x_40 = lean_ctor_get(x_6, 3); +x_41 = lean_ctor_get(x_6, 4); +x_42 = lean_ctor_get(x_6, 6); +x_43 = lean_ctor_get(x_6, 7); +x_44 = lean_ctor_get(x_6, 8); +lean_inc(x_44); +lean_inc(x_43); +lean_inc(x_42); +lean_inc(x_41); +lean_inc(x_40); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_6); +x_45 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__2; +x_46 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_46, 0, x_1); +lean_ctor_set(x_46, 1, x_38); +lean_ctor_set(x_46, 2, x_39); +lean_ctor_set(x_46, 3, x_40); +lean_ctor_set(x_46, 4, x_41); +lean_ctor_set(x_46, 5, x_45); +lean_ctor_set(x_46, 6, x_42); +lean_ctor_set(x_46, 7, x_43); +lean_ctor_set(x_46, 8, x_44); +x_47 = lean_st_ref_set(x_3, x_46, x_7); +x_48 = lean_ctor_get(x_47, 1); +lean_inc(x_48); +lean_dec_ref(x_47); +x_49 = lean_st_ref_take(x_2, x_48); +x_50 = lean_ctor_get(x_49, 0); +lean_inc(x_50); +x_51 = lean_ctor_get(x_49, 1); +lean_inc(x_51); +lean_dec_ref(x_49); +x_52 = lean_ctor_get(x_50, 0); +lean_inc_ref(x_52); +x_53 = lean_ctor_get(x_50, 2); +lean_inc(x_53); +x_54 = lean_ctor_get(x_50, 3); +lean_inc_ref(x_54); +x_55 = lean_ctor_get(x_50, 4); +lean_inc_ref(x_55); +if (lean_is_exclusive(x_50)) { + lean_ctor_release(x_50, 0); + lean_ctor_release(x_50, 1); + lean_ctor_release(x_50, 2); + lean_ctor_release(x_50, 3); + lean_ctor_release(x_50, 4); + x_56 = x_50; +} else { + lean_dec_ref(x_50); + x_56 = lean_box(0); +} +x_57 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__7; +if (lean_is_scalar(x_56)) { + x_58 = lean_alloc_ctor(0, 5, 0); +} else { + x_58 = x_56; +} +lean_ctor_set(x_58, 0, x_52); +lean_ctor_set(x_58, 1, x_57); +lean_ctor_set(x_58, 2, x_53); +lean_ctor_set(x_58, 3, x_54); +lean_ctor_set(x_58, 4, x_55); +x_59 = lean_st_ref_set(x_2, x_58, x_51); +x_60 = lean_ctor_get(x_59, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_59)) { + lean_ctor_release(x_59, 0); + lean_ctor_release(x_59, 1); + x_61 = x_59; +} else { + lean_dec_ref(x_59); + x_61 = lean_box(0); +} +x_62 = lean_box(0); +if (lean_is_scalar(x_61)) { + x_63 = lean_alloc_ctor(0, 2, 0); +} else { + x_63 = x_61; +} +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_60); +return x_63; +} +} +} +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16(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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg(x_1, x_5, x_7, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16___redArg(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_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_10 = lean_st_ref_get(x_8, x_9); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec_ref(x_10); +x_13 = lean_ctor_get(x_11, 0); +lean_inc_ref(x_13); +lean_dec(x_11); +x_14 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg(x_1, x_6, x_8, x_12); +x_15 = lean_ctor_get(x_14, 1); +lean_inc(x_15); +lean_dec_ref(x_14); +lean_inc(x_8); +lean_inc(x_6); +x_16 = lean_apply_7(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_15); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec_ref(x_16); +x_19 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg(x_13, x_6, x_8, x_18); +lean_dec(x_8); +lean_dec(x_6); +x_20 = !lean_is_exclusive(x_19); +if (x_20 == 0) +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_19, 0); +lean_dec(x_21); +lean_ctor_set(x_19, 0, x_17); +return x_19; +} +else +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_19, 1); +lean_inc(x_22); +lean_dec(x_19); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_17); +lean_ctor_set(x_23, 1, x_22); +return x_23; +} +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_24 = lean_ctor_get(x_16, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_16, 1); +lean_inc(x_25); +lean_dec_ref(x_16); +x_26 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg(x_13, x_6, x_8, x_25); +lean_dec(x_8); +lean_dec(x_6); +x_27 = !lean_is_exclusive(x_26); +if (x_27 == 0) +{ +lean_object* x_28; +x_28 = lean_ctor_get(x_26, 0); +lean_dec(x_28); +lean_ctor_set_tag(x_26, 1); +lean_ctor_set(x_26, 0, x_24); +return x_26; +} +else +{ +lean_object* x_29; lean_object* x_30; +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_dec(x_26); +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_24); +lean_ctor_set(x_30, 1, x_29); +return x_30; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} static lean_object* _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0___closed__0() { _start: { @@ -2637,62 +3032,61 @@ lean_ctor_set(x_4, 2, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0(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_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0(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, lean_object* x_8, lean_object* x_9) { _start: { -lean_object* x_9; lean_object* x_10; -x_9 = lean_ctor_get(x_6, 5); -lean_inc(x_9); -lean_inc_ref(x_6); -lean_inc_ref(x_2); -x_10 = l_Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_10) == 0) +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_7, 5); +lean_inc(x_10); +lean_inc_ref(x_7); +lean_inc_ref(x_3); +x_11 = l_Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_11) == 0) { -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_19; lean_object* x_20; -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -x_12 = lean_ctor_get(x_10, 1); +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); -lean_dec_ref(x_10); -x_13 = lean_box(0); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -x_15 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0___closed__2; -x_16 = lean_box(0); -x_17 = 0; +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +lean_dec_ref(x_11); +x_14 = lean_box(0); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_10); +x_16 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0___closed__2; +x_17 = lean_box(0); x_18 = lean_alloc_ctor(0, 4, 1); -lean_ctor_set(x_18, 0, x_14); -lean_ctor_set(x_18, 1, x_15); -lean_ctor_set(x_18, 2, x_16); -lean_ctor_set(x_18, 3, x_11); -lean_ctor_set_uint8(x_18, sizeof(void*)*4, x_17); +lean_ctor_set(x_18, 0, x_15); +lean_ctor_set(x_18, 1, x_16); +lean_ctor_set(x_18, 2, x_17); +lean_ctor_set(x_18, 3, x_12); +lean_ctor_set_uint8(x_18, sizeof(void*)*4, x_1); x_19 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_19, 0, x_18); -x_20 = l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__14(x_19, x_2, x_3, x_4, x_5, x_6, x_7, x_12); -lean_dec_ref(x_6); -lean_dec_ref(x_2); +x_20 = l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__14(x_19, x_3, x_4, x_5, x_6, x_7, x_8, x_13); +lean_dec_ref(x_7); +lean_dec_ref(x_3); return x_20; } else { uint8_t x_21; -lean_dec(x_9); -lean_dec_ref(x_6); -lean_dec_ref(x_2); -x_21 = !lean_is_exclusive(x_10); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec_ref(x_3); +x_21 = !lean_is_exclusive(x_11); if (x_21 == 0) { -return x_10; +return x_11; } else { lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_10, 0); -x_23 = lean_ctor_get(x_10, 1); +x_22 = lean_ctor_get(x_11, 0); +x_23 = lean_ctor_get(x_11, 1); lean_inc(x_23); lean_inc(x_22); -lean_dec(x_10); +lean_dec(x_11); x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_22); lean_ctor_set(x_24, 1, x_23); @@ -3006,7 +3400,88 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_11 = lean_st_ref_get(x_9, x_10); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +if (lean_is_exclusive(x_11)) { + lean_ctor_release(x_11, 0); + lean_ctor_release(x_11, 1); + x_14 = x_11; +} else { + lean_dec_ref(x_11); + x_14 = lean_box(0); +} +x_25 = lean_ctor_get(x_12, 0); +lean_inc_ref(x_25); +lean_dec(x_12); +lean_inc(x_2); +x_26 = l_Lean_privateToUserName(x_2); +lean_inc_ref(x_3); +x_27 = lean_is_reserved_name(x_3, x_26); +if (x_27 == 0) +{ +lean_object* x_28; uint8_t x_29; +lean_inc(x_2); +x_28 = l_Lean_mkPrivateName(x_25, x_2); +lean_dec_ref(x_25); +x_29 = lean_is_reserved_name(x_3, x_28); +x_15 = x_29; +goto block_24; +} +else +{ +lean_dec_ref(x_25); +lean_dec_ref(x_3); +x_15 = x_27; +goto block_24; +} +block_24: +{ +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +lean_dec(x_14); +lean_dec(x_2); +x_16 = lean_box(0); +x_17 = lean_apply_8(x_1, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +return x_17; +} +else +{ +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_dec_ref(x_1); +x_18 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3___closed__1; +x_19 = l_Lean_MessageData_ofName(x_2); +if (lean_is_scalar(x_14)) { + x_20 = lean_alloc_ctor(7, 2, 0); +} else { + x_20 = x_14; + lean_ctor_set_tag(x_20, 7); +} +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +x_21 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3___closed__3; +x_22 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +x_23 = l_Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0___redArg(x_22, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_23; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__4(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; lean_object* x_22; uint8_t x_23; @@ -3063,7 +3538,7 @@ return x_20; } } } -static lean_object* _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___closed__0() { +static lean_object* _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__5___closed__0() { _start: { lean_object* x_1; @@ -3071,374 +3546,212 @@ x_1 = lean_mk_string_unchecked("private declaration '", 21, 21); return x_1; } } -static lean_object* _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___closed__1() { +static lean_object* _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__5___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___closed__0; +x_1 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__5___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__5(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc(x_2); +x_11 = lean_apply_8(x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_11) == 0) +{ +uint8_t x_12; +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_11, 1); +x_14 = lean_ctor_get(x_11, 0); +lean_dec(x_14); +lean_inc(x_2); +x_15 = lean_private_to_user_name(x_2); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_16 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3___closed__1; +x_17 = l_Lean_MessageData_ofConstName(x_2, x_3); +lean_ctor_set_tag(x_11, 7); +lean_ctor_set(x_11, 1, x_17); +lean_ctor_set(x_11, 0, x_16); +x_18 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__1___closed__3; +x_19 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_19, 0, x_11); +lean_ctor_set(x_19, 1, x_18); +x_20 = l_Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0___redArg(x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_20; +} +else +{ +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_dec(x_2); +x_21 = lean_ctor_get(x_15, 0); +lean_inc(x_21); +lean_dec_ref(x_15); +x_22 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__5___closed__1; +x_23 = l_Lean_MessageData_ofConstName(x_21, x_3); +lean_ctor_set_tag(x_11, 7); +lean_ctor_set(x_11, 1, x_23); +lean_ctor_set(x_11, 0, x_22); +x_24 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__1___closed__3; +x_25 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_25, 0, x_11); +lean_ctor_set(x_25, 1, x_24); +x_26 = l_Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0___redArg(x_25, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_26; +} +} +else +{ +lean_object* x_27; lean_object* x_28; +x_27 = lean_ctor_get(x_11, 1); +lean_inc(x_27); +lean_dec(x_11); +lean_inc(x_2); +x_28 = lean_private_to_user_name(x_2); +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; +x_29 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3___closed__1; +x_30 = l_Lean_MessageData_ofConstName(x_2, x_3); +x_31 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_31, 0, x_29); +lean_ctor_set(x_31, 1, x_30); +x_32 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__1___closed__3; +x_33 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +x_34 = l_Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0___redArg(x_33, x_4, x_5, x_6, x_7, x_8, x_9, x_27); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_34; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +lean_dec(x_2); +x_35 = lean_ctor_get(x_28, 0); +lean_inc(x_35); +lean_dec_ref(x_28); +x_36 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__5___closed__1; +x_37 = l_Lean_MessageData_ofConstName(x_35, x_3); +x_38 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_37); +x_39 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__1___closed__3; +x_40 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +x_41 = l_Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0___redArg(x_40, x_4, x_5, x_6, x_7, x_8, x_9, x_27); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_41; +} +} +} +else +{ +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_2); +return x_11; +} +} +} LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6(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; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; uint8_t x_17; +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; uint8_t x_20; x_9 = lean_st_ref_get(x_7, x_8); x_10 = lean_ctor_get(x_9, 0); lean_inc(x_10); x_11 = lean_ctor_get(x_9, 1); lean_inc(x_11); -if (lean_is_exclusive(x_9)) { - lean_ctor_release(x_9, 0); - lean_ctor_release(x_9, 1); - x_12 = x_9; -} else { - lean_dec_ref(x_9); - x_12 = lean_box(0); -} -x_13 = lean_ctor_get(x_10, 0); -lean_inc_ref(x_13); +lean_dec_ref(x_9); +x_12 = lean_ctor_get(x_10, 0); +lean_inc_ref(x_12); lean_dec(x_10); -x_14 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0___boxed), 8, 0); -lean_inc_ref(x_14); -lean_inc_ref(x_13); +x_13 = 0; +x_14 = lean_box(x_13); +x_15 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0___boxed), 9, 1); +lean_closure_set(x_15, 0, x_14); +x_16 = l_Lean_Environment_setExporting(x_12, x_13); +lean_inc_ref(x_15); +lean_inc_ref(x_16); lean_inc(x_1); -x_15 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__1___boxed), 11, 3); -lean_closure_set(x_15, 0, x_1); -lean_closure_set(x_15, 1, x_13); -lean_closure_set(x_15, 2, x_14); -x_16 = 1; +x_17 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__1___boxed), 11, 3); +lean_closure_set(x_17, 0, x_1); +lean_closure_set(x_17, 1, x_16); +lean_closure_set(x_17, 2, x_15); +lean_inc_ref(x_15); lean_inc(x_1); -lean_inc_ref(x_13); -x_17 = l_Lean_Environment_contains(x_13, x_1, x_16); -if (x_17 == 0) -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_32; lean_object* x_33; uint8_t x_34; -x_18 = lean_st_ref_get(x_7, x_11); -x_19 = lean_ctor_get(x_18, 0); -lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -if (lean_is_exclusive(x_18)) { - lean_ctor_release(x_18, 0); - lean_ctor_release(x_18, 1); - x_21 = x_18; -} else { - lean_dec_ref(x_18); - x_21 = lean_box(0); -} -x_32 = lean_ctor_get(x_19, 0); -lean_inc_ref(x_32); -lean_dec(x_19); +lean_inc_ref(x_16); +x_18 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__2___boxed), 12, 4); +lean_closure_set(x_18, 0, x_16); +lean_closure_set(x_18, 1, x_1); +lean_closure_set(x_18, 2, x_17); +lean_closure_set(x_18, 3, x_15); +x_19 = 1; lean_inc(x_1); -x_33 = l_Lean_privateToUserName(x_1); -lean_inc_ref(x_13); -x_34 = lean_is_reserved_name(x_13, x_33); -if (x_34 == 0) +lean_inc_ref(x_16); +x_20 = l_Lean_Environment_contains(x_16, x_1, x_19); +if (x_20 == 0) { -lean_object* x_35; uint8_t x_36; -lean_inc(x_1); -x_35 = l_Lean_mkPrivateName(x_32, x_1); -lean_dec_ref(x_32); -lean_inc_ref(x_13); -x_36 = lean_is_reserved_name(x_13, x_35); -x_22 = x_36; -goto block_31; -} -else -{ -lean_dec_ref(x_32); -x_22 = x_34; -goto block_31; -} -block_31: -{ -if (x_22 == 0) -{ -lean_object* x_23; lean_object* x_24; -lean_dec(x_21); -lean_dec(x_12); -x_23 = lean_box(0); -x_24 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__2(x_13, x_1, x_15, x_14, x_23, x_2, x_3, x_4, x_5, x_6, x_7, x_20); -return x_24; -} -else -{ -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_21; lean_object* x_22; lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -x_25 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3___closed__1; -x_26 = l_Lean_MessageData_ofName(x_1); -if (lean_is_scalar(x_21)) { - x_27 = lean_alloc_ctor(7, 2, 0); -} else { - x_27 = x_21; - lean_ctor_set_tag(x_27, 7); -} -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -x_28 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3___closed__3; -if (lean_is_scalar(x_12)) { - x_29 = lean_alloc_ctor(7, 2, 0); -} else { - x_29 = x_12; - lean_ctor_set_tag(x_29, 7); -} -lean_ctor_set(x_29, 0, x_27); -lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0___redArg(x_29, x_2, x_3, x_4, x_5, x_6, x_7, x_20); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_30; -} -} +lean_inc_ref(x_16); +x_21 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3), 10, 3); +lean_closure_set(x_21, 0, x_18); +lean_closure_set(x_21, 1, x_1); +lean_closure_set(x_21, 2, x_16); +x_22 = l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16___redArg(x_16, x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_11); +return x_22; } else { -lean_object* x_37; -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_inc_ref(x_6); -lean_inc_ref(x_2); -lean_inc(x_1); -x_37 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_11); -if (lean_obj_tag(x_37) == 0) -{ -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 1); -x_40 = lean_ctor_get(x_37, 0); -lean_dec(x_40); -lean_inc(x_1); -x_41 = lean_private_to_user_name(x_1); -if (lean_obj_tag(x_41) == 0) -{ -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_42 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3___closed__1; -x_43 = l_Lean_MessageData_ofConstName(x_1, x_16); -lean_ctor_set_tag(x_37, 7); -lean_ctor_set(x_37, 1, x_43); -lean_ctor_set(x_37, 0, x_42); -x_44 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__1___closed__3; -if (lean_is_scalar(x_12)) { - x_45 = lean_alloc_ctor(7, 2, 0); -} else { - x_45 = x_12; - lean_ctor_set_tag(x_45, 7); +lean_object* x_23; lean_object* x_24; lean_object* x_25; +lean_dec_ref(x_18); +x_23 = lean_box(x_19); +x_24 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__5___boxed), 10, 3); +lean_closure_set(x_24, 0, x_15); +lean_closure_set(x_24, 1, x_1); +lean_closure_set(x_24, 2, x_23); +x_25 = l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16___redArg(x_16, x_24, x_2, x_3, x_4, x_5, x_6, x_7, x_11); +return x_25; } -lean_ctor_set(x_45, 0, x_37); -lean_ctor_set(x_45, 1, x_44); -x_46 = l_Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0___redArg(x_45, x_2, x_3, x_4, x_5, x_6, x_7, x_39); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_46; -} -else -{ -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_dec(x_1); -x_47 = lean_ctor_get(x_41, 0); -lean_inc(x_47); -lean_dec_ref(x_41); -x_48 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___closed__1; -x_49 = l_Lean_MessageData_ofConstName(x_47, x_16); -lean_ctor_set_tag(x_37, 7); -lean_ctor_set(x_37, 1, x_49); -lean_ctor_set(x_37, 0, x_48); -x_50 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__1___closed__3; -if (lean_is_scalar(x_12)) { - x_51 = lean_alloc_ctor(7, 2, 0); -} else { - x_51 = x_12; - lean_ctor_set_tag(x_51, 7); -} -lean_ctor_set(x_51, 0, x_37); -lean_ctor_set(x_51, 1, x_50); -x_52 = l_Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0___redArg(x_51, x_2, x_3, x_4, x_5, x_6, x_7, x_39); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_52; -} -} -else -{ -lean_object* x_53; lean_object* x_54; -x_53 = lean_ctor_get(x_37, 1); -lean_inc(x_53); -lean_dec(x_37); -lean_inc(x_1); -x_54 = lean_private_to_user_name(x_1); -if (lean_obj_tag(x_54) == 0) -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_55 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3___closed__1; -x_56 = l_Lean_MessageData_ofConstName(x_1, x_16); -x_57 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_57, 0, x_55); -lean_ctor_set(x_57, 1, x_56); -x_58 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__1___closed__3; -if (lean_is_scalar(x_12)) { - x_59 = lean_alloc_ctor(7, 2, 0); -} else { - x_59 = x_12; - lean_ctor_set_tag(x_59, 7); -} -lean_ctor_set(x_59, 0, x_57); -lean_ctor_set(x_59, 1, x_58); -x_60 = l_Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0___redArg(x_59, x_2, x_3, x_4, x_5, x_6, x_7, x_53); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_60; -} -else -{ -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_dec(x_1); -x_61 = lean_ctor_get(x_54, 0); -lean_inc(x_61); -lean_dec_ref(x_54); -x_62 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___closed__1; -x_63 = l_Lean_MessageData_ofConstName(x_61, x_16); -x_64 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_64, 0, x_62); -lean_ctor_set(x_64, 1, x_63); -x_65 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__1___closed__3; -if (lean_is_scalar(x_12)) { - x_66 = lean_alloc_ctor(7, 2, 0); -} else { - x_66 = x_12; - lean_ctor_set_tag(x_66, 7); -} -lean_ctor_set(x_66, 0, x_64); -lean_ctor_set(x_66, 1, x_65); -x_67 = l_Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0___redArg(x_66, x_2, x_3, x_4, x_5, x_6, x_7, x_53); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_67; -} -} -} -else -{ -lean_dec(x_12); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_37; -} -} -} -} -static lean_object* _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__0; -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_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__1; -x_2 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2, 0, x_1); -lean_ctor_set(x_2, 1, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__0; -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_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__0; -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_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__0; -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_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__0; -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_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__6; -x_2 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__5; -x_3 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__4; -x_4 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__3; -x_5 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_5, 0, x_4); -lean_ctor_set(x_5, 1, x_3); -lean_ctor_set(x_5, 2, x_2); -lean_ctor_set(x_5, 3, x_4); -lean_ctor_set(x_5, 4, x_1); -lean_ctor_set(x_5, 5, x_1); -return x_5; } } LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0(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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { @@ -3472,7 +3785,7 @@ x_18 = lean_ctor_get(x_14, 5); lean_dec(x_18); lean_inc(x_2); x_19 = l_Lean_addProtected(x_17, x_2); -x_20 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__2; +x_20 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__2; lean_ctor_set(x_14, 5, x_20); lean_ctor_set(x_14, 0, x_19); x_21 = lean_st_ref_set(x_9, x_14, x_15); @@ -3492,7 +3805,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; x_27 = lean_ctor_get(x_24, 1); lean_dec(x_27); -x_28 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__7; +x_28 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__7; lean_ctor_set(x_24, 1, x_28); x_29 = lean_st_ref_set(x_7, x_24, x_25); lean_dec(x_7); @@ -3529,7 +3842,7 @@ lean_inc(x_36); lean_inc(x_35); lean_inc(x_34); lean_dec(x_24); -x_38 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__7; +x_38 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__7; x_39 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_39, 0, x_34); lean_ctor_set(x_39, 1, x_38); @@ -3580,7 +3893,7 @@ lean_inc(x_44); lean_dec(x_14); lean_inc(x_2); x_52 = l_Lean_addProtected(x_44, x_2); -x_53 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__2; +x_53 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__2; x_54 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_54, 0, x_52); lean_ctor_set(x_54, 1, x_45); @@ -3621,7 +3934,7 @@ if (lean_is_exclusive(x_58)) { lean_dec_ref(x_58); x_64 = lean_box(0); } -x_65 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__7; +x_65 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__7; if (lean_is_scalar(x_64)) { x_66 = lean_alloc_ctor(0, 5, 0); } else { @@ -3750,7 +4063,7 @@ return x_23; } } } -static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__0() { +static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__0() { _start: { lean_object* x_1; @@ -3758,7 +4071,7 @@ x_1 = lean_mk_string_unchecked("trace", 5, 5); return x_1; } } -static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__1() { +static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__1() { _start: { lean_object* x_1; @@ -3766,7 +4079,7 @@ x_1 = lean_mk_string_unchecked("Elab", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__2() { +static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__2() { _start: { lean_object* x_1; @@ -3774,7 +4087,7 @@ x_1 = lean_mk_string_unchecked("Tactic", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__3() { +static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__3() { _start: { lean_object* x_1; @@ -3782,7 +4095,7 @@ x_1 = lean_mk_string_unchecked("unsolvedGoals", 13, 13); return x_1; } } -static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__4() { +static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__4() { _start: { lean_object* x_1; @@ -3790,7 +4103,7 @@ x_1 = lean_mk_string_unchecked("synthPlaceholder", 16, 16); return x_1; } } -LEAN_EXPORT uint8_t l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0(uint8_t x_1, uint8_t x_2, lean_object* x_3) { +LEAN_EXPORT uint8_t l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0(uint8_t x_1, uint8_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 1) @@ -3802,7 +4115,7 @@ case 0: { lean_object* x_5; lean_object* x_6; uint8_t x_7; x_5 = lean_ctor_get(x_3, 1); -x_6 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__0; +x_6 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__0; x_7 = lean_string_dec_eq(x_5, x_6); if (x_7 == 0) { @@ -3822,12 +4135,12 @@ if (lean_obj_tag(x_8) == 0) lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; x_9 = lean_ctor_get(x_3, 1); x_10 = lean_ctor_get(x_4, 1); -x_11 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__1; +x_11 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__1; x_12 = lean_string_dec_eq(x_10, x_11); if (x_12 == 0) { lean_object* x_13; uint8_t x_14; -x_13 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__2; +x_13 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__2; x_14 = lean_string_dec_eq(x_10, x_13); if (x_14 == 0) { @@ -3836,7 +4149,7 @@ return x_1; else { lean_object* x_15; uint8_t x_16; -x_15 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__3; +x_15 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__3; x_16 = lean_string_dec_eq(x_9, x_15); if (x_16 == 0) { @@ -3851,7 +4164,7 @@ return x_2; else { lean_object* x_17; uint8_t x_18; -x_17 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__4; +x_17 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__4; x_18 = lean_string_dec_eq(x_9, x_17); if (x_18 == 0) { @@ -3880,7 +4193,7 @@ return x_1; } } } -static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0() { +static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___closed__0() { _start: { lean_object* x_1; @@ -3888,7 +4201,7 @@ x_1 = lean_mk_string_unchecked("", 0, 0); return x_1; } } -static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__1() { +static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___closed__1() { _start: { lean_object* x_1; @@ -3896,10 +4209,10 @@ x_1 = l_Lean_warningAsError; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t 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_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_81; uint8_t x_82; lean_object* x_83; uint8_t x_84; uint8_t x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_110; lean_object* x_111; uint8_t x_112; uint8_t x_113; lean_object* x_114; uint8_t x_115; lean_object* x_116; lean_object* x_117; lean_object* x_121; lean_object* x_122; uint8_t x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; uint8_t x_127; uint8_t x_133; lean_object* x_134; uint8_t x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; uint8_t x_139; uint8_t x_140; uint8_t x_142; uint8_t x_158; +uint8_t x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_81; lean_object* x_82; uint8_t x_83; lean_object* x_84; lean_object* x_85; uint8_t x_86; uint8_t x_87; lean_object* x_88; lean_object* x_110; lean_object* x_111; uint8_t x_112; lean_object* x_113; uint8_t x_114; uint8_t x_115; lean_object* x_116; lean_object* x_117; lean_object* x_121; uint8_t x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; uint8_t x_126; uint8_t x_127; uint8_t x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; uint8_t x_138; uint8_t x_139; uint8_t x_140; uint8_t x_142; uint8_t x_158; x_133 = 2; x_158 = l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(x_3, x_133); if (x_158 == 0) @@ -3939,15 +4252,15 @@ lean_ctor_set(x_20, 1, x_25); lean_ctor_set(x_20, 0, x_24); x_28 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_28, 0, x_20); -lean_ctor_set(x_28, 1, x_12); +lean_ctor_set(x_28, 1, x_15); x_29 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_29, 0, x_16); -lean_ctor_set(x_29, 1, x_11); -lean_ctor_set(x_29, 2, x_13); -lean_ctor_set(x_29, 3, x_14); +lean_ctor_set(x_29, 0, x_11); +lean_ctor_set(x_29, 1, x_16); +lean_ctor_set(x_29, 2, x_14); +lean_ctor_set(x_29, 3, x_13); lean_ctor_set(x_29, 4, x_28); -lean_ctor_set_uint8(x_29, sizeof(void*)*5, x_15); -lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 1, x_10); +lean_ctor_set_uint8(x_29, sizeof(void*)*5, x_10); +lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 1, x_12); lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 2, x_4); x_30 = l_Lean_MessageLog_add(x_29, x_27); lean_ctor_set(x_22, 6, x_30); @@ -4001,15 +4314,15 @@ lean_ctor_set(x_20, 1, x_25); lean_ctor_set(x_20, 0, x_24); x_47 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_47, 0, x_20); -lean_ctor_set(x_47, 1, x_12); +lean_ctor_set(x_47, 1, x_15); x_48 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_48, 0, x_16); -lean_ctor_set(x_48, 1, x_11); -lean_ctor_set(x_48, 2, x_13); -lean_ctor_set(x_48, 3, x_14); +lean_ctor_set(x_48, 0, x_11); +lean_ctor_set(x_48, 1, x_16); +lean_ctor_set(x_48, 2, x_14); +lean_ctor_set(x_48, 3, x_13); lean_ctor_set(x_48, 4, x_47); -lean_ctor_set_uint8(x_48, sizeof(void*)*5, x_15); -lean_ctor_set_uint8(x_48, sizeof(void*)*5 + 1, x_10); +lean_ctor_set_uint8(x_48, sizeof(void*)*5, x_10); +lean_ctor_set_uint8(x_48, sizeof(void*)*5 + 1, x_12); lean_ctor_set_uint8(x_48, sizeof(void*)*5 + 2, x_4); x_49 = l_Lean_MessageLog_add(x_48, x_44); x_50 = lean_alloc_ctor(0, 9, 0); @@ -4095,15 +4408,15 @@ lean_ctor_set(x_70, 0, x_58); lean_ctor_set(x_70, 1, x_59); x_71 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_71, 0, x_70); -lean_ctor_set(x_71, 1, x_12); +lean_ctor_set(x_71, 1, x_15); x_72 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_72, 0, x_16); -lean_ctor_set(x_72, 1, x_11); -lean_ctor_set(x_72, 2, x_13); -lean_ctor_set(x_72, 3, x_14); +lean_ctor_set(x_72, 0, x_11); +lean_ctor_set(x_72, 1, x_16); +lean_ctor_set(x_72, 2, x_14); +lean_ctor_set(x_72, 3, x_13); lean_ctor_set(x_72, 4, x_71); -lean_ctor_set_uint8(x_72, sizeof(void*)*5, x_15); -lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 1, x_10); +lean_ctor_set_uint8(x_72, sizeof(void*)*5, x_10); +lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 1, x_12); lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 2, x_4); x_73 = l_Lean_MessageLog_add(x_72, x_66); if (lean_is_scalar(x_69)) { @@ -4153,25 +4466,25 @@ if (x_91 == 0) lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; x_92 = lean_ctor_get(x_90, 0); x_93 = lean_ctor_get(x_90, 1); -lean_inc_ref(x_83); -x_94 = l_Lean_FileMap_toPosition(x_83, x_87); -lean_dec(x_87); -x_95 = l_Lean_FileMap_toPosition(x_83, x_88); +lean_inc_ref(x_84); +x_94 = l_Lean_FileMap_toPosition(x_84, x_82); +lean_dec(x_82); +x_95 = l_Lean_FileMap_toPosition(x_84, x_88); lean_dec(x_88); x_96 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_96, 0, x_95); -x_97 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0; -if (x_84 == 0) +x_97 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___closed__0; +if (x_87 == 0) { lean_free_object(x_90); lean_dec_ref(x_81); -x_10 = x_82; -x_11 = x_94; -x_12 = x_92; -x_13 = x_96; -x_14 = x_97; -x_15 = x_85; -x_16 = x_86; +x_10 = x_83; +x_11 = x_85; +x_12 = x_86; +x_13 = x_97; +x_14 = x_96; +x_15 = x_92; +x_16 = x_94; x_17 = x_7; x_18 = x_8; x_19 = x_93; @@ -4188,7 +4501,7 @@ lean_object* x_99; lean_dec_ref(x_96); lean_dec_ref(x_94); lean_dec(x_92); -lean_dec_ref(x_86); +lean_dec_ref(x_85); lean_dec_ref(x_7); x_99 = lean_box(0); lean_ctor_set(x_90, 0, x_99); @@ -4197,13 +4510,13 @@ return x_90; else { lean_free_object(x_90); -x_10 = x_82; -x_11 = x_94; -x_12 = x_92; -x_13 = x_96; -x_14 = x_97; -x_15 = x_85; -x_16 = x_86; +x_10 = x_83; +x_11 = x_85; +x_12 = x_86; +x_13 = x_97; +x_14 = x_96; +x_15 = x_92; +x_16 = x_94; x_17 = x_7; x_18 = x_8; x_19 = x_93; @@ -4219,24 +4532,24 @@ x_101 = lean_ctor_get(x_90, 1); lean_inc(x_101); lean_inc(x_100); lean_dec(x_90); -lean_inc_ref(x_83); -x_102 = l_Lean_FileMap_toPosition(x_83, x_87); -lean_dec(x_87); -x_103 = l_Lean_FileMap_toPosition(x_83, x_88); +lean_inc_ref(x_84); +x_102 = l_Lean_FileMap_toPosition(x_84, x_82); +lean_dec(x_82); +x_103 = l_Lean_FileMap_toPosition(x_84, x_88); lean_dec(x_88); x_104 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_104, 0, x_103); -x_105 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0; -if (x_84 == 0) +x_105 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___closed__0; +if (x_87 == 0) { lean_dec_ref(x_81); -x_10 = x_82; -x_11 = x_102; -x_12 = x_100; -x_13 = x_104; -x_14 = x_105; -x_15 = x_85; -x_16 = x_86; +x_10 = x_83; +x_11 = x_85; +x_12 = x_86; +x_13 = x_105; +x_14 = x_104; +x_15 = x_100; +x_16 = x_102; x_17 = x_7; x_18 = x_8; x_19 = x_101; @@ -4253,7 +4566,7 @@ lean_object* x_107; lean_object* x_108; lean_dec_ref(x_104); lean_dec_ref(x_102); lean_dec(x_100); -lean_dec_ref(x_86); +lean_dec_ref(x_85); lean_dec_ref(x_7); x_107 = lean_box(0); x_108 = lean_alloc_ctor(0, 2, 0); @@ -4263,13 +4576,13 @@ return x_108; } else { -x_10 = x_82; -x_11 = x_102; -x_12 = x_100; -x_13 = x_104; -x_14 = x_105; -x_15 = x_85; -x_16 = x_86; +x_10 = x_83; +x_11 = x_85; +x_12 = x_86; +x_13 = x_105; +x_14 = x_104; +x_15 = x_100; +x_16 = x_102; x_17 = x_7; x_18 = x_8; x_19 = x_101; @@ -4281,18 +4594,18 @@ goto block_80; block_120: { lean_object* x_118; -x_118 = l_Lean_Syntax_getTailPos_x3f(x_114, x_115); -lean_dec(x_114); +x_118 = l_Lean_Syntax_getTailPos_x3f(x_116, x_112); +lean_dec(x_116); if (lean_obj_tag(x_118) == 0) { lean_inc(x_117); x_81 = x_110; -x_82 = x_112; -x_83 = x_111; -x_84 = x_113; -x_85 = x_115; -x_86 = x_116; -x_87 = x_117; +x_82 = x_117; +x_83 = x_112; +x_84 = x_111; +x_85 = x_113; +x_86 = x_114; +x_87 = x_115; x_88 = x_117; goto block_109; } @@ -4303,12 +4616,12 @@ x_119 = lean_ctor_get(x_118, 0); lean_inc(x_119); lean_dec_ref(x_118); x_81 = x_110; -x_82 = x_112; -x_83 = x_111; -x_84 = x_113; -x_85 = x_115; -x_86 = x_116; -x_87 = x_117; +x_82 = x_117; +x_83 = x_112; +x_84 = x_111; +x_85 = x_113; +x_86 = x_114; +x_87 = x_115; x_88 = x_119; goto block_109; } @@ -4316,20 +4629,20 @@ goto block_109; block_132: { lean_object* x_128; lean_object* x_129; -x_128 = l_Lean_replaceRef(x_1, x_124); -lean_dec(x_124); -x_129 = l_Lean_Syntax_getPos_x3f(x_128, x_125); +x_128 = l_Lean_replaceRef(x_1, x_125); +lean_dec(x_125); +x_129 = l_Lean_Syntax_getPos_x3f(x_128, x_122); if (lean_obj_tag(x_129) == 0) { lean_object* x_130; x_130 = lean_unsigned_to_nat(0u); x_110 = x_121; -x_111 = x_122; -x_112 = x_127; -x_113 = x_123; -x_114 = x_128; -x_115 = x_125; -x_116 = x_126; +x_111 = x_123; +x_112 = x_122; +x_113 = x_124; +x_114 = x_127; +x_115 = x_126; +x_116 = x_128; x_117 = x_130; goto block_120; } @@ -4340,12 +4653,12 @@ x_131 = lean_ctor_get(x_129, 0); lean_inc(x_131); lean_dec_ref(x_129); x_110 = x_121; -x_111 = x_122; -x_112 = x_127; -x_113 = x_123; -x_114 = x_128; -x_115 = x_125; -x_116 = x_126; +x_111 = x_123; +x_112 = x_122; +x_113 = x_124; +x_114 = x_127; +x_115 = x_126; +x_116 = x_128; x_117 = x_131; goto block_120; } @@ -4355,10 +4668,10 @@ block_141: if (x_140 == 0) { x_121 = x_137; -x_122 = x_134; -x_123 = x_135; +x_122 = x_139; +x_123 = x_134; x_124 = x_136; -x_125 = x_139; +x_125 = x_135; x_126 = x_138; x_127 = x_3; goto block_132; @@ -4366,10 +4679,10 @@ goto block_132; else { x_121 = x_137; -x_122 = x_134; -x_123 = x_135; +x_122 = x_139; +x_123 = x_134; x_124 = x_136; -x_125 = x_139; +x_125 = x_135; x_126 = x_138; x_127 = x_133; goto block_132; @@ -4391,7 +4704,7 @@ lean_inc(x_146); x_147 = lean_ctor_get_uint8(x_7, sizeof(void*)*13 + 1); x_148 = lean_box(x_142); x_149 = lean_box(x_147); -x_150 = lean_alloc_closure((void*)(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___boxed), 3, 2); +x_150 = lean_alloc_closure((void*)(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___boxed), 3, 2); lean_closure_set(x_150, 0, x_148); lean_closure_set(x_150, 1, x_149); x_151 = 1; @@ -4400,10 +4713,10 @@ if (x_152 == 0) { lean_dec(x_145); x_134 = x_144; -x_135 = x_147; -x_136 = x_146; +x_135 = x_146; +x_136 = x_143; x_137 = x_150; -x_138 = x_143; +x_138 = x_147; x_139 = x_142; x_140 = x_152; goto block_141; @@ -4411,14 +4724,14 @@ goto block_141; else { lean_object* x_153; uint8_t x_154; -x_153 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__1; +x_153 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___closed__1; x_154 = l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0_spec__1_spec__1(x_145, x_153); lean_dec(x_145); x_134 = x_144; -x_135 = x_147; -x_136 = x_146; +x_135 = x_146; +x_136 = x_143; x_137 = x_150; -x_138 = x_143; +x_138 = x_147; x_139 = x_142; x_140 = x_154; goto block_141; @@ -4438,46 +4751,46 @@ return x_156; } } } -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t 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_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg(x_1, x_2, x_3, x_4, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg(x_1, x_2, x_3, x_4, x_7, x_8, x_9, x_10, x_11); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20(lean_object* x_1, uint8_t 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_object* x_12; x_11 = lean_ctor_get(x_8, 5); lean_inc(x_11); -x_12 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg(x_11, x_1, x_2, x_3, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg(x_11, x_1, x_2, x_3, x_6, x_7, x_8, x_9, x_10); lean_dec(x_11); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18(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_EXPORT lean_object* l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20(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: { uint8_t x_9; uint8_t x_10; lean_object* x_11; x_9 = 2; x_10 = 0; -x_11 = l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18(x_1, x_9, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_11 = l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20(x_1, x_9, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__21(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_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__23(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_10; uint8_t x_11; lean_object* x_12; x_10 = 2; x_11 = 0; -x_12 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg(x_1, x_2, x_10, x_11, x_5, x_6, x_7, x_8, x_9); +x_12 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg(x_1, x_2, x_10, x_11, x_5, x_6, x_7, x_8, x_9); return x_12; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__22(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t 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_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__24(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t 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) { _start: { lean_object* x_15; lean_object* x_16; uint8_t x_21; @@ -4508,7 +4821,7 @@ x_26 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_26, 0, x_25); x_27 = l_Lean_MessageData_ofFormat(x_26); lean_inc_ref(x_12); -x_28 = l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18(x_27, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_28 = l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20(x_27, x_8, x_9, x_10, x_11, x_12, x_13, x_14); x_29 = lean_ctor_get(x_28, 1); lean_inc(x_29); lean_dec_ref(x_28); @@ -4546,7 +4859,7 @@ x_40 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_40, 0, x_30); x_41 = l_Lean_MessageData_ofFormat(x_40); lean_inc_ref(x_12); -x_42 = l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__21(x_24, x_41, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_42 = l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__23(x_24, x_41, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec_ref(x_24); x_43 = lean_ctor_get(x_42, 1); lean_inc(x_43); @@ -4581,7 +4894,7 @@ x_53 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_53, 0, x_30); x_54 = l_Lean_MessageData_ofFormat(x_53); lean_inc_ref(x_12); -x_55 = l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__21(x_52, x_54, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_55 = l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__23(x_52, x_54, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec_ref(x_52); x_56 = lean_ctor_get(x_55, 1); lean_inc(x_56); @@ -4604,7 +4917,7 @@ goto _start; } } } -LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18(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_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20(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; lean_object* x_10; lean_object* x_24; lean_object* x_25; lean_object* x_26; @@ -4648,7 +4961,7 @@ lean_dec(x_12); x_15 = lean_box(0); x_16 = lean_array_size(x_14); x_17 = 0; -x_18 = l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__22(x_10, x_15, x_9, x_14, x_16, x_17, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_13); +x_18 = l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__24(x_10, x_15, x_9, x_14, x_16, x_17, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_13); lean_dec(x_14); lean_dec_ref(x_9); lean_dec(x_10); @@ -4675,7 +4988,7 @@ return x_22; } } } -static lean_object* _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__0() { +static lean_object* _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__0() { _start: { lean_object* x_1; @@ -4683,25 +4996,25 @@ x_1 = lean_mk_string_unchecked("unexpected doc string", 21, 21); return x_1; } } -static lean_object* _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__1() { +static lean_object* _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__0; +x_1 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2() { +static lean_object* _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0; +x_1 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24(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_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26(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; lean_object* x_10; @@ -4755,13 +5068,13 @@ return x_25; 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 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__1; +x_26 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__1; x_27 = l_Lean_MessageData_ofSyntax(x_10); x_28 = l_Lean_indentD(x_27); x_29 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_29, 0, x_26); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_30 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; x_31 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_31, 0, x_29); lean_ctor_set(x_31, 1, x_30); @@ -4770,7 +5083,7 @@ return x_32; } } } -static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___lam__0___closed__0() { +static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___lam__0___closed__0() { _start: { lean_object* x_1; @@ -4778,16 +5091,16 @@ x_1 = l_Lean_docStringExt; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___lam__0(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_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_inc_ref(x_8); -x_11 = l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10); x_12 = lean_ctor_get(x_11, 1); lean_inc(x_12); lean_dec_ref(x_11); -x_13 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_12); +x_13 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; @@ -4809,10 +5122,10 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean x_20 = lean_ctor_get(x_17, 0); x_21 = lean_ctor_get(x_17, 5); lean_dec(x_21); -x_22 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___lam__0___closed__0; +x_22 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___lam__0___closed__0; x_23 = l_String_removeLeadingSpaces(x_14); x_24 = l_Lean_MapDeclarationExtension_insert___redArg(x_22, x_20, x_2, x_23); -x_25 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__2; +x_25 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__2; lean_ctor_set(x_17, 5, x_25); lean_ctor_set(x_17, 0, x_24); x_26 = lean_st_ref_set(x_9, x_17, x_18); @@ -4831,7 +5144,7 @@ if (x_31 == 0) lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; x_32 = lean_ctor_get(x_29, 1); lean_dec(x_32); -x_33 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__7; +x_33 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__7; lean_ctor_set(x_29, 1, x_33); x_34 = lean_st_ref_set(x_7, x_29, x_30); x_35 = !lean_is_exclusive(x_34); @@ -4869,7 +5182,7 @@ lean_inc(x_43); lean_inc(x_42); lean_inc(x_41); lean_dec(x_29); -x_45 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__7; +x_45 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__7; x_46 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_46, 0, x_41); lean_ctor_set(x_46, 1, x_45); @@ -4918,10 +5231,10 @@ lean_inc(x_54); lean_inc(x_53); lean_inc(x_52); lean_dec(x_17); -x_60 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___lam__0___closed__0; +x_60 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___lam__0___closed__0; x_61 = l_String_removeLeadingSpaces(x_14); x_62 = l_Lean_MapDeclarationExtension_insert___redArg(x_60, x_52, x_2, x_61); -x_63 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__2; +x_63 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__2; x_64 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_64, 0, x_62); lean_ctor_set(x_64, 1, x_53); @@ -4961,7 +5274,7 @@ if (lean_is_exclusive(x_68)) { lean_dec_ref(x_68); x_74 = lean_box(0); } -x_75 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__7; +x_75 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__7; if (lean_is_scalar(x_74)) { x_76 = lean_alloc_ctor(0, 5, 0); } else { @@ -5019,7 +5332,7 @@ return x_85; } } } -static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___closed__0() { +static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___closed__0() { _start: { lean_object* x_1; @@ -5027,7 +5340,7 @@ x_1 = lean_mk_string_unchecked("invalid doc string, declaration '", 33, 33); return x_1; } } -static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___closed__1() { +static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___closed__1() { _start: { lean_object* x_1; @@ -5035,7 +5348,7 @@ x_1 = lean_mk_string_unchecked("' is in an imported module", 26, 26); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18(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_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20(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_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -5054,7 +5367,7 @@ if (lean_obj_tag(x_14) == 0) { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___lam__0(x_2, x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_12); +x_16 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___lam__0(x_2, x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_12); return x_16; } else @@ -5066,12 +5379,12 @@ if (x_17 == 0) 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; x_18 = lean_ctor_get(x_14, 0); lean_dec(x_18); -x_19 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___closed__0; +x_19 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___closed__0; x_20 = 1; x_21 = l_Lean_Name_toStringWithToken___at___Lean_Name_toString_spec__0(x_1, x_20); x_22 = lean_string_append(x_19, x_21); lean_dec_ref(x_21); -x_23 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___closed__1; +x_23 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___closed__1; x_24 = lean_string_append(x_22, x_23); lean_ctor_set_tag(x_14, 3); lean_ctor_set(x_14, 0, x_24); @@ -5084,12 +5397,12 @@ else { 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; lean_dec(x_14); -x_27 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___closed__0; +x_27 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___closed__0; x_28 = 1; x_29 = l_Lean_Name_toStringWithToken___at___Lean_Name_toString_spec__0(x_1, x_28); x_30 = lean_string_append(x_27, x_29); lean_dec_ref(x_29); -x_31 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___closed__1; +x_31 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___closed__1; x_32 = lean_string_append(x_30, x_31); x_33 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_33, 0, x_32); @@ -5101,7 +5414,7 @@ return x_35; } } } -LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18(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_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20(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: { if (lean_obj_tag(x_2) == 0) @@ -5120,12 +5433,12 @@ else { lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_2, 0); -x_13 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_13 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_13; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__27___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__29___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; @@ -5222,15 +5535,15 @@ return x_26; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__27(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_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__29(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__27___redArg(x_1, x_6, x_8); +x_9 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__29___redArg(x_1, x_6, x_8); return x_9; } } -static lean_object* _init_l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__28___redArg___closed__0() { +static lean_object* _init_l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__30___redArg___closed__0() { _start: { lean_object* x_1; @@ -5238,7 +5551,7 @@ x_1 = l_Lean_declRangeExt; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__28___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__30___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; @@ -5259,9 +5572,9 @@ lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean x_11 = lean_ctor_get(x_8, 0); x_12 = lean_ctor_get(x_8, 5); lean_dec(x_12); -x_13 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__28___redArg___closed__0; +x_13 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__30___redArg___closed__0; x_14 = l_Lean_MapDeclarationExtension_insert___redArg(x_13, x_11, x_1, x_2); -x_15 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__2; +x_15 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__2; lean_ctor_set(x_8, 5, x_15); lean_ctor_set(x_8, 0, x_14); x_16 = lean_st_ref_set(x_4, x_8, x_9); @@ -5280,7 +5593,7 @@ if (x_21 == 0) lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; x_22 = lean_ctor_get(x_19, 1); lean_dec(x_22); -x_23 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__7; +x_23 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__7; lean_ctor_set(x_19, 1, x_23); x_24 = lean_st_ref_set(x_3, x_19, x_20); x_25 = !lean_is_exclusive(x_24); @@ -5318,7 +5631,7 @@ lean_inc(x_33); lean_inc(x_32); lean_inc(x_31); lean_dec(x_19); -x_35 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__7; +x_35 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__7; x_36 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); @@ -5367,9 +5680,9 @@ lean_inc(x_44); lean_inc(x_43); lean_inc(x_42); lean_dec(x_8); -x_50 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__28___redArg___closed__0; +x_50 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__30___redArg___closed__0; x_51 = l_Lean_MapDeclarationExtension_insert___redArg(x_50, x_42, x_1, x_2); -x_52 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__2; +x_52 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__2; x_53 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_53, 0, x_51); lean_ctor_set(x_53, 1, x_43); @@ -5409,7 +5722,7 @@ if (lean_is_exclusive(x_57)) { lean_dec_ref(x_57); x_63 = lean_box(0); } -x_64 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__7; +x_64 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__7; if (lean_is_scalar(x_63)) { x_65 = lean_alloc_ctor(0, 5, 0); } else { @@ -5455,20 +5768,20 @@ return x_72; } } } -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__28(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_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__30(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_10; -x_10 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__28___redArg(x_1, x_2, x_6, x_8, x_9); +x_10 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__30___redArg(x_1, x_2, x_6, x_8, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27(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_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; lean_object* x_12; lean_inc_ref(x_8); -x_11 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__27___redArg(x_2, x_8, x_10); +x_11 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__29___redArg(x_2, x_8, x_10); x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); if (lean_obj_tag(x_12) == 0) @@ -5508,7 +5821,7 @@ lean_dec_ref(x_11); x_20 = lean_ctor_get(x_12, 0); lean_inc(x_20); lean_dec_ref(x_12); -x_21 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__27___redArg(x_3, x_8, x_19); +x_21 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__29___redArg(x_3, x_8, x_19); x_22 = lean_ctor_get(x_21, 0); lean_inc(x_22); x_23 = lean_ctor_get(x_21, 1); @@ -5546,13 +5859,13 @@ if (lean_is_scalar(x_24)) { } lean_ctor_set(x_26, 0, x_20); lean_ctor_set(x_26, 1, x_25); -x_27 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__28___redArg(x_1, x_26, x_7, x_9, x_23); +x_27 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__30___redArg(x_1, x_26, x_7, x_9, x_23); return x_27; } } } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; lean_object* x_8; @@ -5566,15 +5879,15 @@ lean_ctor_set(x_8, 1, x_3); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30(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_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32(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_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(x_1, x_6, x_8); +x_9 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(x_1, x_6, x_8); return x_9; } } -static double _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg___closed__0() { +static double _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg___closed__0() { _start: { lean_object* x_1; double x_2; @@ -5583,7 +5896,7 @@ x_2 = lean_float_of_nat(x_1); return x_2; } } -static lean_object* _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg___closed__1() { +static lean_object* _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -5592,7 +5905,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(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_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; @@ -5626,16 +5939,16 @@ if (x_20 == 0) { lean_object* x_21; double x_22; uint8_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; x_21 = lean_ctor_get(x_14, 0); -x_22 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg___closed__0; +x_22 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg___closed__0; x_23 = 0; -x_24 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0; +x_24 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___closed__0; x_25 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_25, 0, x_1); lean_ctor_set(x_25, 1, x_24); lean_ctor_set_float(x_25, sizeof(void*)*2, x_22); lean_ctor_set_float(x_25, sizeof(void*)*2 + 8, x_22); lean_ctor_set_uint8(x_25, sizeof(void*)*2 + 16, x_23); -x_26 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg___closed__1; +x_26 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg___closed__1; x_27 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_10); @@ -5676,16 +5989,16 @@ x_36 = lean_ctor_get_uint64(x_14, sizeof(void*)*1); x_37 = lean_ctor_get(x_14, 0); lean_inc(x_37); lean_dec(x_14); -x_38 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg___closed__0; +x_38 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg___closed__0; x_39 = 0; -x_40 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0; +x_40 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___closed__0; x_41 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_41, 0, x_1); lean_ctor_set(x_41, 1, x_40); lean_ctor_set_float(x_41, sizeof(void*)*2, x_38); lean_ctor_set_float(x_41, sizeof(void*)*2 + 8, x_38); lean_ctor_set_uint8(x_41, sizeof(void*)*2 + 16, x_39); -x_42 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg___closed__1; +x_42 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg___closed__1; x_43 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_43, 0, x_41); lean_ctor_set(x_43, 1, x_10); @@ -5750,16 +6063,16 @@ if (lean_is_exclusive(x_14)) { lean_dec_ref(x_14); x_61 = lean_box(0); } -x_62 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg___closed__0; +x_62 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg___closed__0; x_63 = 0; -x_64 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0; +x_64 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___closed__0; x_65 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_65, 0, x_1); lean_ctor_set(x_65, 1, x_64); lean_ctor_set_float(x_65, sizeof(void*)*2, x_62); lean_ctor_set_float(x_65, sizeof(void*)*2 + 8, x_62); lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 16, x_63); -x_66 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg___closed__1; +x_66 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg___closed__1; x_67 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_67, 0, x_65); lean_ctor_set(x_67, 1, x_10); @@ -5854,16 +6167,16 @@ if (lean_is_exclusive(x_14)) { lean_dec_ref(x_14); x_88 = lean_box(0); } -x_89 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg___closed__0; +x_89 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg___closed__0; x_90 = 0; -x_91 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0; +x_91 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___closed__0; x_92 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_92, 0, x_1); lean_ctor_set(x_92, 1, x_91); lean_ctor_set_float(x_92, sizeof(void*)*2, x_89); lean_ctor_set_float(x_92, sizeof(void*)*2 + 8, x_89); lean_ctor_set_uint8(x_92, sizeof(void*)*2 + 16, x_90); -x_93 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg___closed__1; +x_93 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg___closed__1; x_94 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_94, 0, x_92); lean_ctor_set(x_94, 1, x_10); @@ -5917,15 +6230,15 @@ return x_103; } } } -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31(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_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33(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_10; -x_10 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_1, x_2, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_1, x_2, x_5, x_6, x_7, x_8, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__32___redArg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__34___redArg(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -5950,15 +6263,15 @@ return x_6; } } } -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__32(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__34(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__32___redArg(x_2, x_4); +x_5 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__34___redArg(x_2, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__33(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_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__35(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: { if (lean_obj_tag(x_1) == 0) @@ -5984,7 +6297,7 @@ x_14 = lean_ctor_get(x_11, 1); lean_inc(x_14); lean_dec(x_11); lean_inc(x_13); -x_15 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(x_13, x_6, x_8); +x_15 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(x_13, x_6, x_8); x_16 = lean_ctor_get(x_15, 0); lean_inc(x_16); x_17 = lean_unbox(x_16); @@ -6010,7 +6323,7 @@ lean_dec_ref(x_15); x_21 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_21, 0, x_14); x_22 = l_Lean_MessageData_ofFormat(x_21); -x_23 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_13, x_22, x_4, x_5, x_6, x_7, x_20); +x_23 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_13, x_22, x_4, x_5, x_6, x_7, x_20); x_24 = lean_ctor_get(x_23, 1); lean_inc(x_24); lean_dec_ref(x_23); @@ -6021,7 +6334,7 @@ goto _start; } } } -static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__0() { +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__0() { _start: { lean_object* x_1; @@ -6029,7 +6342,7 @@ x_1 = lean_mk_string_unchecked("runtime", 7, 7); return x_1; } } -static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__1() { +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__1() { _start: { lean_object* x_1; @@ -6037,17 +6350,17 @@ x_1 = lean_mk_string_unchecked("maxRecDepth", 11, 11); return x_1; } } -static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__2() { +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__1; -x_2 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__0; +x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__1; +x_2 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__0; x_3 = l_Lean_Name_mkStr2(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__3() { +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__3() { _start: { lean_object* x_1; @@ -6055,42 +6368,42 @@ x_1 = lean_mk_string_unchecked("maximum recursion depth has been reached\nuse `s return x_1; } } -static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__4() { +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__3; +x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__3; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__5() { +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__4; +x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__4; x_2 = l_Lean_MessageData_ofFormat(x_1); return x_2; } } -static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__6() { +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__5; -x_2 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__2; +x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__5; +x_2 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__2; x_3 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_3 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__6; +x_3 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__6; x_4 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_3); @@ -6100,15 +6413,15 @@ lean_ctor_set(x_5, 1, x_2); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34(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_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36(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_10; -x_10 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg(x_2, x_9); +x_10 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg(x_2, x_9); return x_10; } } -static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35___redArg___closed__0() { +static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37___redArg___closed__0() { _start: { lean_object* x_1; @@ -6116,38 +6429,38 @@ x_1 = l_Lean_Elab_unsupportedSyntaxExceptionId; return x_1; } } -static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35___redArg___closed__1() { +static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37___redArg___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35___redArg___closed__0; +x_2 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37___redArg___closed__0; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35___redArg(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37___redArg(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35___redArg___closed__1; +x_2 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37___redArg___closed__1; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35(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_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35___redArg(x_8); +x_9 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37___redArg(x_8); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -6205,7 +6518,7 @@ x_17 = !lean_is_exclusive(x_15); if (x_17 == 0) { lean_object* x_18; -x_18 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__32___redArg(x_15, x_16); +x_18 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__34___redArg(x_15, x_16); lean_dec_ref(x_15); return x_18; } @@ -6217,7 +6530,7 @@ lean_inc(x_19); lean_dec(x_15); x_20 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_20, 0, x_19); -x_21 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__32___redArg(x_20, x_16); +x_21 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__34___redArg(x_20, x_16); lean_dec_ref(x_20); return x_21; } @@ -6235,7 +6548,7 @@ lean_object* x_24; lean_object* x_25; x_24 = lean_ctor_get(x_15, 0); lean_ctor_set(x_6, 0, x_24); lean_ctor_set(x_15, 0, x_6); -x_25 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__32___redArg(x_15, x_22); +x_25 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__34___redArg(x_15, x_22); lean_dec_ref(x_15); return x_25; } @@ -6248,7 +6561,7 @@ lean_dec(x_15); lean_ctor_set(x_6, 0, x_26); x_27 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_27, 0, x_6); -x_28 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__32___redArg(x_27, x_22); +x_28 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__34___redArg(x_27, x_22); lean_dec_ref(x_27); return x_28; } @@ -6284,7 +6597,7 @@ if (lean_is_scalar(x_33)) { x_34 = x_33; } lean_ctor_set(x_34, 0, x_32); -x_35 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__32___redArg(x_34, x_31); +x_35 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__34___redArg(x_34, x_31); lean_dec_ref(x_34); return x_35; } @@ -6311,7 +6624,7 @@ if (lean_is_scalar(x_38)) { x_40 = x_38; } lean_ctor_set(x_40, 0, x_39); -x_41 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__32___redArg(x_40, x_36); +x_41 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__34___redArg(x_40, x_36); lean_dec_ref(x_40); return x_41; } @@ -6342,7 +6655,7 @@ return x_45; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; uint8_t x_6; lean_object* x_7; lean_object* x_8; @@ -6355,7 +6668,7 @@ lean_ctor_set(x_8, 1, x_4); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -6365,7 +6678,7 @@ lean_ctor_set(x_4, 1, x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; lean_object* x_8; @@ -6376,7 +6689,7 @@ lean_ctor_set(x_8, 1, x_6); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__4(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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__4(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; @@ -6387,7 +6700,7 @@ lean_ctor_set(x_8, 1, x_6); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(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; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; @@ -6423,23 +6736,23 @@ x_23 = lean_ctor_get(x_21, 1); lean_inc(x_23); lean_dec(x_21); lean_inc_ref(x_12); -x_24 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__0___boxed), 4, 1); +x_24 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__0___boxed), 4, 1); lean_closure_set(x_24, 0, x_12); lean_inc_ref(x_12); -x_25 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__1___boxed), 4, 1); +x_25 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__1___boxed), 4, 1); lean_closure_set(x_25, 0, x_12); lean_inc(x_16); -x_26 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__2___boxed), 3, 1); +x_26 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__2___boxed), 3, 1); lean_closure_set(x_26, 0, x_16); lean_inc(x_17); lean_inc(x_16); lean_inc_ref(x_12); -x_27 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__3___boxed), 6, 3); +x_27 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__3___boxed), 6, 3); lean_closure_set(x_27, 0, x_12); lean_closure_set(x_27, 1, x_16); lean_closure_set(x_27, 2, x_17); lean_inc_ref(x_12); -x_28 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__4___boxed), 6, 3); +x_28 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__4___boxed), 6, 3); lean_closure_set(x_28, 0, x_12); lean_closure_set(x_28, 1, x_16); lean_closure_set(x_28, 2, x_17); @@ -6493,7 +6806,7 @@ x_44 = lean_ctor_get(x_43, 1); lean_inc(x_44); lean_dec_ref(x_43); x_45 = l_List_reverse___redArg(x_37); -x_46 = l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__33(x_45, x_2, x_3, x_4, x_5, x_6, x_7, x_44); +x_46 = l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__35(x_45, x_2, x_3, x_4, x_5, x_6, x_7, x_44); lean_dec_ref(x_6); lean_dec_ref(x_2); x_47 = !lean_is_exclusive(x_46); @@ -6552,7 +6865,7 @@ x_61 = lean_ctor_get(x_60, 1); lean_inc(x_61); lean_dec_ref(x_60); x_62 = l_List_reverse___redArg(x_37); -x_63 = l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__33(x_62, x_2, x_3, x_4, x_5, x_6, x_7, x_61); +x_63 = l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__35(x_62, x_2, x_3, x_4, x_5, x_6, x_7, x_61); lean_dec_ref(x_6); lean_dec_ref(x_2); x_64 = lean_ctor_get(x_63, 1); @@ -6589,7 +6902,7 @@ lean_inc(x_68); x_69 = lean_ctor_get(x_67, 1); lean_inc_ref(x_69); lean_dec_ref(x_67); -x_70 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__3; +x_70 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__3; x_71 = lean_string_dec_eq(x_69, x_70); if (x_71 == 0) { @@ -6607,7 +6920,7 @@ lean_object* x_75; lean_dec_ref(x_69); lean_dec_ref(x_6); lean_dec_ref(x_2); -x_75 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg(x_68, x_22); +x_75 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg(x_68, x_22); return x_75; } } @@ -6616,7 +6929,7 @@ else lean_object* x_76; lean_dec_ref(x_6); lean_dec_ref(x_2); -x_76 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35___redArg(x_22); +x_76 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37___redArg(x_22); return x_76; } } @@ -6633,23 +6946,23 @@ x_79 = lean_ctor_get(x_77, 1); lean_inc(x_79); lean_dec(x_77); lean_inc_ref(x_12); -x_80 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__0___boxed), 4, 1); +x_80 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__0___boxed), 4, 1); lean_closure_set(x_80, 0, x_12); lean_inc_ref(x_12); -x_81 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__1___boxed), 4, 1); +x_81 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__1___boxed), 4, 1); lean_closure_set(x_81, 0, x_12); lean_inc(x_16); -x_82 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__2___boxed), 3, 1); +x_82 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__2___boxed), 3, 1); lean_closure_set(x_82, 0, x_16); lean_inc(x_17); lean_inc(x_16); lean_inc_ref(x_12); -x_83 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__3___boxed), 6, 3); +x_83 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__3___boxed), 6, 3); lean_closure_set(x_83, 0, x_12); lean_closure_set(x_83, 1, x_16); lean_closure_set(x_83, 2, x_17); lean_inc_ref(x_12); -x_84 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__4___boxed), 6, 3); +x_84 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__4___boxed), 6, 3); lean_closure_set(x_84, 0, x_12); lean_closure_set(x_84, 1, x_16); lean_closure_set(x_84, 2, x_17); @@ -6742,7 +7055,7 @@ x_109 = lean_ctor_get(x_108, 1); lean_inc(x_109); lean_dec_ref(x_108); x_110 = l_List_reverse___redArg(x_94); -x_111 = l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__33(x_110, x_2, x_3, x_4, x_5, x_6, x_7, x_109); +x_111 = l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__35(x_110, x_2, x_3, x_4, x_5, x_6, x_7, x_109); lean_dec_ref(x_6); lean_dec_ref(x_2); x_112 = lean_ctor_get(x_111, 1); @@ -6778,7 +7091,7 @@ lean_inc(x_116); x_117 = lean_ctor_get(x_115, 1); lean_inc_ref(x_117); lean_dec_ref(x_115); -x_118 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__3; +x_118 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__3; x_119 = lean_string_dec_eq(x_117, x_118); if (x_119 == 0) { @@ -6796,7 +7109,7 @@ lean_object* x_123; lean_dec_ref(x_117); lean_dec_ref(x_6); lean_dec_ref(x_2); -x_123 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg(x_116, x_78); +x_123 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg(x_116, x_78); return x_123; } } @@ -6805,22 +7118,22 @@ else lean_object* x_124; lean_dec_ref(x_6); lean_dec_ref(x_2); -x_124 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35___redArg(x_78); +x_124 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37___redArg(x_78); return x_124; } } } } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30(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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32(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_10; -x_10 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_10; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__0() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__0() { _start: { lean_object* x_1; @@ -6828,7 +7141,7 @@ x_1 = lean_mk_string_unchecked("Lean", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__1() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__1() { _start: { lean_object* x_1; @@ -6836,7 +7149,7 @@ x_1 = lean_mk_string_unchecked("Parser", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__2() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__2() { _start: { lean_object* x_1; @@ -6844,7 +7157,7 @@ x_1 = lean_mk_string_unchecked("Term", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__3() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__3() { _start: { lean_object* x_1; @@ -6852,23 +7165,23 @@ x_1 = lean_mk_string_unchecked("byTactic", 8, 8); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__4() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__3; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__2; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__1; -x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__0; +x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__3; +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__2; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__1; +x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__0; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -LEAN_EXPORT uint8_t l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0(lean_object* x_1) { +LEAN_EXPORT uint8_t l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__4; +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__4; x_3 = lean_name_eq(x_1, x_2); if (x_3 == 0) { @@ -6884,7 +7197,7 @@ return x_5; } } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__0() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__0() { _start: { lean_object* x_1; @@ -6892,16 +7205,16 @@ x_1 = lean_mk_string_unchecked("Unknown attribute `[", 20, 20); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__1() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__0; +x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__2() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__2() { _start: { lean_object* x_1; @@ -6909,16 +7222,16 @@ x_1 = lean_mk_string_unchecked("]`", 2, 2); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__3() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__2; +x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__2; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; uint8_t x_12; @@ -6940,12 +7253,12 @@ lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean lean_dec_ref(x_16); lean_free_object(x_11); lean_dec(x_2); -x_17 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__1; +x_17 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__1; x_18 = l_Lean_MessageData_ofName(x_3); x_19 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_19, 0, x_17); lean_ctor_set(x_19, 1, x_18); -x_20 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__3; +x_20 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__3; x_21 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_21, 0, x_19); lean_ctor_set(x_21, 1, x_20); @@ -6983,12 +7296,12 @@ if (lean_obj_tag(x_27) == 0) 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_dec_ref(x_27); lean_dec(x_2); -x_28 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__1; +x_28 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__1; x_29 = l_Lean_MessageData_ofName(x_3); x_30 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_30, 0, x_28); lean_ctor_set(x_30, 1, x_29); -x_31 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__3; +x_31 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__3; x_32 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_32, 0, x_30); lean_ctor_set(x_32, 1, x_31); @@ -7012,7 +7325,7 @@ return x_35; } } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__0() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__0() { _start: { lean_object* x_1; @@ -7020,7 +7333,7 @@ x_1 = lean_mk_string_unchecked("Attr", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__1() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__1() { _start: { lean_object* x_1; @@ -7028,19 +7341,19 @@ x_1 = lean_mk_string_unchecked("simple", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__2() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__1; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__0; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__1; -x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__0; +x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__1; +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__1; +x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__0; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__3() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__3() { _start: { lean_object* x_1; @@ -7048,16 +7361,16 @@ x_1 = lean_mk_string_unchecked("Unknown attribute", 17, 17); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__4() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__3; +x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__3; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30(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_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32(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; lean_object* x_10; lean_object* x_11; lean_object* x_12; @@ -7067,7 +7380,7 @@ x_11 = lean_alloc_closure((void*)(l_Lean_Elab_toAttributeKind___boxed), 3, 1); lean_closure_set(x_11, 0, x_10); lean_inc_ref(x_6); lean_inc_ref(x_2); -x_12 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_12 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8); if (lean_obj_tag(x_12) == 0) { 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; @@ -7076,7 +7389,7 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_12, 1); lean_inc(x_14); lean_dec_ref(x_12); -x_15 = lean_alloc_closure((void*)(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___boxed), 1, 0); +x_15 = lean_alloc_closure((void*)(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___boxed), 1, 0); x_16 = lean_unsigned_to_nat(1u); x_17 = l_Lean_Syntax_getArg(x_1, x_16); x_18 = lean_alloc_closure((void*)(l_Lean_expandMacros), 4, 2); @@ -7084,7 +7397,7 @@ lean_closure_set(x_18, 0, x_17); lean_closure_set(x_18, 1, x_15); lean_inc_ref(x_6); lean_inc_ref(x_2); -x_19 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(x_18, x_2, x_3, x_4, x_5, x_6, x_7, x_14); +x_19 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(x_18, x_2, x_3, x_4, x_5, x_6, x_7, x_14); if (lean_obj_tag(x_19) == 0) { lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; @@ -7095,7 +7408,7 @@ lean_inc(x_21); lean_dec_ref(x_19); lean_inc(x_20); x_22 = l_Lean_Syntax_getKind(x_20); -x_23 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__2; +x_23 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__2; x_24 = lean_name_eq(x_22, x_23); if (x_24 == 0) { @@ -7109,7 +7422,7 @@ x_26 = lean_box(0); x_27 = l_Lean_Name_str___override(x_26, x_25); x_28 = lean_unbox(x_13); lean_dec(x_13); -x_29 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1(x_28, x_20, x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_21); +x_29 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1(x_28, x_20, x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_21); lean_dec_ref(x_6); return x_29; } @@ -7118,7 +7431,7 @@ else lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_22); lean_dec(x_13); -x_30 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__4; +x_30 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__4; x_31 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__7___redArg(x_20, x_30, x_2, x_3, x_4, x_5, x_6, x_7, x_21); lean_dec(x_20); x_32 = !lean_is_exclusive(x_31); @@ -7151,7 +7464,7 @@ lean_dec(x_36); x_38 = lean_erase_macro_scopes(x_37); x_39 = lean_unbox(x_13); lean_dec(x_13); -x_40 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1(x_39, x_20, x_38, x_2, x_3, x_4, x_5, x_6, x_7, x_21); +x_40 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1(x_39, x_20, x_38, x_2, x_3, x_4, x_5, x_6, x_7, x_21); lean_dec_ref(x_6); return x_40; } @@ -7208,7 +7521,7 @@ return x_48; } } } -static lean_object* _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__38___closed__0() { +static lean_object* _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__40___closed__0() { _start: { lean_object* x_1; @@ -7216,16 +7529,16 @@ x_1 = lean_mk_string_unchecked("internal exception: ", 20, 20); return x_1; } } -static lean_object* _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__38___closed__1() { +static lean_object* _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__40___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__38___closed__0; +x_1 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__40___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__38(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_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__40(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: { if (lean_obj_tag(x_1) == 0) @@ -7236,7 +7549,7 @@ lean_inc(x_9); x_10 = lean_ctor_get(x_1, 1); lean_inc_ref(x_10); lean_dec_ref(x_1); -x_11 = l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__21(x_9, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_11 = l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__23(x_9, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_9); return x_11; } @@ -7275,16 +7588,16 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_14, 1); lean_inc(x_16); lean_dec_ref(x_14); -x_17 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__38___closed__1; +x_17 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__40___closed__1; x_18 = l_Lean_MessageData_ofName(x_15); x_19 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_19, 0, x_17); lean_ctor_set(x_19, 1, x_18); -x_20 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_20 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; x_21 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_21, 0, x_19); lean_ctor_set(x_21, 1, x_20); -x_22 = l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18(x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_16); +x_22 = l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20(x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_16); return x_22; } else @@ -7348,7 +7661,7 @@ return x_39; } } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__39(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__41(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; uint8_t x_18; @@ -7414,7 +7727,7 @@ lean_ctor_set(x_37, 12, x_34); lean_ctor_set_uint8(x_37, sizeof(void*)*13, x_31); lean_ctor_set_uint8(x_37, sizeof(void*)*13 + 1, x_33); lean_inc_ref(x_5); -x_38 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30(x_35, x_5, x_6, x_7, x_8, x_37, x_10, x_11); +x_38 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32(x_35, x_5, x_6, x_7, x_8, x_37, x_10, x_11); lean_dec(x_35); if (lean_obj_tag(x_38) == 0) { @@ -7464,7 +7777,7 @@ if (x_45 == 0) lean_object* x_46; lean_dec(x_44); lean_inc_ref(x_9); -x_46 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__38(x_42, x_5, x_6, x_7, x_8, x_9, x_10, x_43); +x_46 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__40(x_42, x_5, x_6, x_7, x_8, x_9, x_10, x_43); if (lean_obj_tag(x_46) == 0) { lean_object* x_47; @@ -7531,7 +7844,7 @@ goto _start; } } } -static lean_object* _init_l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30___closed__0() { +static lean_object* _init_l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32___closed__0() { _start: { lean_object* x_1; lean_object* x_2; @@ -7540,18 +7853,18 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30(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_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32(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; size_t x_10; size_t x_11; lean_object* x_12; -x_9 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30___closed__0; +x_9 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32___closed__0; x_10 = lean_array_size(x_1); x_11 = 0; -x_12 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__39(x_1, x_10, x_11, x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_12 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__41(x_1, x_10, x_11, x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30(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_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32(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; lean_object* x_10; lean_object* x_11; lean_object* x_12; @@ -7559,12 +7872,12 @@ x_9 = lean_unsigned_to_nat(1u); x_10 = l_Lean_Syntax_getArg(x_1, x_9); x_11 = l_Lean_Syntax_getSepArgs(x_10); lean_dec(x_10); -x_12 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_12 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec_ref(x_11); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { _start: { uint8_t x_15; uint8_t x_19; @@ -7601,7 +7914,7 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___lam__1(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___lam__1(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_16; @@ -7610,7 +7923,7 @@ if (lean_obj_tag(x_16) == 0) { lean_object* x_17; lean_object* x_18; x_17 = lean_mk_empty_array_with_capacity(x_7); -x_18 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___lam__0(x_1, x_2, x_8, x_3, x_4, x_5, x_17, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_18 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___lam__0(x_1, x_2, x_8, x_3, x_4, x_5, x_17, x_9, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec_ref(x_13); lean_dec_ref(x_9); return x_18; @@ -7623,7 +7936,7 @@ lean_inc(x_19); lean_dec_ref(x_16); lean_inc_ref(x_13); lean_inc_ref(x_9); -x_20 = l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30(x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_20 = l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32(x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec(x_19); if (lean_obj_tag(x_20) == 0) { @@ -7633,7 +7946,7 @@ lean_inc(x_21); x_22 = lean_ctor_get(x_20, 1); lean_inc(x_22); lean_dec_ref(x_20); -x_23 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___lam__0(x_1, x_2, x_8, x_3, x_4, x_5, x_21, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +x_23 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___lam__0(x_1, x_2, x_8, x_3, x_4, x_5, x_21, x_9, x_10, x_11, x_12, x_13, x_14, x_22); lean_dec_ref(x_13); lean_dec_ref(x_9); return x_23; @@ -7667,7 +7980,7 @@ return x_27; } } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__0() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__0() { _start: { lean_object* x_1; @@ -7675,7 +7988,7 @@ x_1 = lean_mk_string_unchecked("Command", 7, 7); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__1() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__1() { _start: { lean_object* x_1; @@ -7683,19 +7996,19 @@ x_1 = lean_mk_string_unchecked("private", 7, 7); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__2() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__1; -x_2 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__0; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__1; -x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__0; +x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__1; +x_2 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__1; +x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__0; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__3() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__3() { _start: { lean_object* x_1; @@ -7703,19 +8016,19 @@ x_1 = lean_mk_string_unchecked("protected", 9, 9); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__4() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__3; -x_2 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__0; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__1; -x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__0; +x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__3; +x_2 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__1; +x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__0; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__5() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__5() { _start: { lean_object* x_1; @@ -7723,19 +8036,19 @@ x_1 = lean_mk_string_unchecked("public", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__6() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__5; -x_2 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__0; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__1; -x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__0; +x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__5; +x_2 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__1; +x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__0; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__7() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__7() { _start: { lean_object* x_1; @@ -7743,16 +8056,16 @@ x_1 = lean_mk_string_unchecked("unexpected visibility modifier", 30, 30); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__8() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__7; +x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__7; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__9() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__9() { _start: { lean_object* x_1; @@ -7760,19 +8073,19 @@ x_1 = lean_mk_string_unchecked("partial", 7, 7); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__10() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__9; -x_2 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__0; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__1; -x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__0; +x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__9; +x_2 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__1; +x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__0; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__11() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__11() { _start: { lean_object* x_1; @@ -7780,22 +8093,22 @@ x_1 = lean_mk_string_unchecked("meta", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__12() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__11; -x_2 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__0; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__1; -x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__0; +x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__11; +x_2 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__1; +x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__0; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30(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_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32(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; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; uint8_t x_42; lean_object* x_43; uint8_t x_44; uint8_t x_51; lean_object* x_65; lean_object* x_66; uint8_t x_67; +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; uint8_t x_17; lean_object* x_18; lean_object* x_42; uint8_t x_43; uint8_t x_44; uint8_t x_51; lean_object* x_65; lean_object* x_66; uint8_t x_67; x_9 = lean_unsigned_to_nat(0u); x_10 = l_Lean_Syntax_getArg(x_1, x_9); x_11 = lean_unsigned_to_nat(1u); @@ -7811,7 +8124,7 @@ lean_object* x_68; lean_object* x_69; lean_object* x_70; uint8_t x_71; x_68 = l_Lean_Syntax_getArg(x_66, x_9); lean_dec(x_66); x_69 = l_Lean_Syntax_getKind(x_68); -x_70 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__12; +x_70 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__12; x_71 = lean_name_eq(x_69, x_70); lean_dec(x_69); if (x_71 == 0) @@ -7846,9 +8159,9 @@ if (lean_obj_tag(x_19) == 0) { uint8_t x_20; lean_object* x_21; x_20 = 0; -x_21 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___lam__1(x_1, x_18, x_15, x_16, x_17, x_12, x_9, x_20, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_21 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___lam__1(x_1, x_18, x_17, x_15, x_16, x_12, x_9, x_20, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_12); -lean_dec(x_17); +lean_dec(x_16); return x_21; } else @@ -7857,29 +8170,29 @@ lean_object* x_22; lean_object* x_23; uint8_t x_24; x_22 = lean_ctor_get(x_19, 0); lean_inc(x_22); lean_dec_ref(x_19); -x_23 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__2; +x_23 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__2; lean_inc(x_22); x_24 = l_Lean_Syntax_isOfKind(x_22, x_23); if (x_24 == 0) { lean_object* x_25; uint8_t x_26; -x_25 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__4; +x_25 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__4; lean_inc(x_22); x_26 = l_Lean_Syntax_isOfKind(x_22, x_25); if (x_26 == 0) { lean_object* x_27; uint8_t x_28; -x_27 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__6; +x_27 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__6; lean_inc(x_22); x_28 = l_Lean_Syntax_isOfKind(x_22, x_27); if (x_28 == 0) { lean_object* x_29; lean_object* x_30; uint8_t x_31; lean_dec(x_18); -lean_dec(x_17); +lean_dec(x_16); lean_dec(x_12); lean_dec(x_1); -x_29 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__8; +x_29 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__8; x_30 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__6_spec__7___redArg(x_22, x_29, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_22); x_31 = !lean_is_exclusive(x_30); @@ -7906,9 +8219,9 @@ else uint8_t x_35; lean_object* x_36; lean_dec(x_22); x_35 = 3; -x_36 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___lam__1(x_1, x_18, x_15, x_16, x_17, x_12, x_9, x_35, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_36 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___lam__1(x_1, x_18, x_17, x_15, x_16, x_12, x_9, x_35, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_12); -lean_dec(x_17); +lean_dec(x_16); return x_36; } } @@ -7917,9 +8230,9 @@ else uint8_t x_37; lean_object* x_38; lean_dec(x_22); x_37 = 1; -x_38 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___lam__1(x_1, x_18, x_15, x_16, x_17, x_12, x_9, x_37, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_38 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___lam__1(x_1, x_18, x_17, x_15, x_16, x_12, x_9, x_37, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_12); -lean_dec(x_17); +lean_dec(x_16); return x_38; } } @@ -7928,9 +8241,9 @@ else uint8_t x_39; lean_object* x_40; lean_dec(x_22); x_39 = 2; -x_40 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___lam__1(x_1, x_18, x_15, x_16, x_17, x_12, x_9, x_39, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_40 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___lam__1(x_1, x_18, x_17, x_15, x_16, x_12, x_9, x_39, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_12); -lean_dec(x_17); +lean_dec(x_16); return x_40; } } @@ -7944,8 +8257,8 @@ if (lean_obj_tag(x_45) == 0) { lean_object* x_46; x_46 = lean_box(0); -x_15 = x_42; -x_16 = x_44; +x_15 = x_44; +x_16 = x_42; x_17 = x_43; x_18 = x_46; goto block_41; @@ -7956,8 +8269,8 @@ uint8_t x_47; x_47 = !lean_is_exclusive(x_45); if (x_47 == 0) { -x_15 = x_42; -x_16 = x_44; +x_15 = x_44; +x_16 = x_42; x_17 = x_43; x_18 = x_45; goto block_41; @@ -7970,8 +8283,8 @@ lean_inc(x_48); lean_dec(x_45); x_49 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_49, 0, x_48); -x_15 = x_42; -x_16 = x_44; +x_15 = x_44; +x_16 = x_42; x_17 = x_43; x_18 = x_49; goto block_41; @@ -7992,15 +8305,15 @@ lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; x_57 = l_Lean_Syntax_getArg(x_55, x_9); lean_dec(x_55); x_58 = l_Lean_Syntax_getKind(x_57); -x_59 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__10; +x_59 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__10; x_60 = lean_name_eq(x_58, x_59); lean_dec(x_58); if (x_60 == 0) { uint8_t x_61; x_61 = 1; -x_42 = x_51; -x_43 = x_53; +x_42 = x_53; +x_43 = x_51; x_44 = x_61; goto block_50; } @@ -8008,8 +8321,8 @@ else { uint8_t x_62; x_62 = 0; -x_42 = x_51; -x_43 = x_53; +x_42 = x_53; +x_43 = x_51; x_44 = x_62; goto block_50; } @@ -8019,15 +8332,15 @@ else uint8_t x_63; lean_dec(x_55); x_63 = 2; -x_42 = x_51; -x_43 = x_53; +x_42 = x_53; +x_43 = x_51; x_44 = x_63; goto block_50; } } } } -static lean_object* _init_l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__0() { +static lean_object* _init_l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__0() { _start: { lean_object* x_1; @@ -8035,19 +8348,19 @@ x_1 = lean_mk_string_unchecked("example", 7, 7); return x_1; } } -static lean_object* _init_l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__1() { +static lean_object* _init_l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__0; -x_2 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__0; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__1; -x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__0; +x_1 = l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__0; +x_2 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__1; +x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__0; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__2() { +static lean_object* _init_l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__2() { _start: { lean_object* x_1; lean_object* x_2; @@ -8056,7 +8369,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__3() { +static lean_object* _init_l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__3() { _start: { lean_object* x_1; @@ -8064,39 +8377,39 @@ x_1 = lean_mk_string_unchecked("null", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__4() { +static lean_object* _init_l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__3; +x_1 = l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__3; x_2 = l_Lean_Name_mkStr1(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43(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_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_inc(x_3); x_11 = l_Lean_Syntax_getKind(x_3); -x_12 = l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__1; +x_12 = l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__1; x_13 = lean_name_eq(x_11, x_12); lean_dec(x_11); if (x_13 == 0) { lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_14 = l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__2; +x_14 = l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__2; x_15 = lean_array_push(x_14, x_2); lean_inc(x_3); x_16 = lean_array_push(x_15, x_3); -x_17 = l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__4; +x_17 = l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__4; x_18 = lean_box(2); x_19 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); lean_ctor_set(x_19, 2, x_16); x_20 = l_Lean_Elab_getDeclarationSelectionRef(x_3); -x_21 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27(x_1, x_19, x_20, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_21 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29(x_1, x_19, x_20, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_20); lean_dec_ref(x_19); return x_21; @@ -8116,7 +8429,7 @@ return x_23; } } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__0___closed__0() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__0___closed__0() { _start: { lean_object* x_1; @@ -8124,15 +8437,15 @@ x_1 = lean_mk_string_unchecked("Delete `private` modifier", 25, 25); return x_1; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__0(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__0(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__0___closed__0; +x_2 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__0___closed__0; return x_2; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__1___closed__0() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__1___closed__0() { _start: { lean_object* x_1; @@ -8140,16 +8453,16 @@ x_1 = lean_mk_string_unchecked("Constructor cannot be `protected` because it is return x_1; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__1___closed__1() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__1___closed__0; +x_1 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__1___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_69; uint8_t x_77; @@ -8262,7 +8575,7 @@ lean_dec_ref(x_44); lean_inc_ref(x_10); lean_inc_ref(x_6); lean_inc(x_40); -x_47 = l_Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18(x_40, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_41); +x_47 = l_Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20(x_40, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_41); lean_dec(x_16); if (lean_obj_tag(x_47) == 0) { @@ -8271,7 +8584,7 @@ x_48 = lean_ctor_get(x_47, 1); lean_inc(x_48); lean_dec_ref(x_47); lean_inc(x_40); -x_49 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27(x_40, x_2, x_36, x_6, x_7, x_8, x_9, x_10, x_11, x_48); +x_49 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29(x_40, x_2, x_36, x_6, x_7, x_8, x_9, x_10, x_11, x_48); lean_dec(x_11); lean_dec(x_9); lean_dec_ref(x_8); @@ -8425,7 +8738,7 @@ lean_object* x_70; lean_object* x_71; uint8_t x_72; lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_70 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__1___closed__1; +x_70 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__1___closed__1; x_71 = l_Lean_throwError___at___Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__0_spec__0___redArg(x_70, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_11); lean_dec_ref(x_10); @@ -8454,7 +8767,7 @@ return x_75; } } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__0() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__0() { _start: { lean_object* x_1; @@ -8462,16 +8775,16 @@ x_1 = lean_mk_string_unchecked("Constructor cannot be marked `private` because i return x_1; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__1() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__0; +x_1 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__2() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__2() { _start: { lean_object* x_1; @@ -8479,36 +8792,36 @@ x_1 = lean_mk_string_unchecked("Remove `private` modifier from constructor", 42, return x_1; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__3() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__2; +x_1 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__2; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__4() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__3; +x_1 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__3; x_2 = l_Lean_MessageData_ofFormat(x_1); return x_2; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__5() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0; +x_1 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___closed__0; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__6() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__6() { _start: { lean_object* x_1; lean_object* x_2; @@ -8517,7 +8830,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__7() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__7() { _start: { lean_object* x_1; @@ -8525,10 +8838,10 @@ x_1 = l_Lean_MessageData_nil; return x_1; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_18; lean_object* x_19; uint8_t x_28; lean_object* x_29; lean_object* x_30; uint8_t x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t 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; uint8_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; uint8_t x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; uint8_t x_106; uint8_t x_124; +lean_object* x_18; lean_object* x_19; uint8_t x_28; lean_object* x_29; lean_object* x_30; lean_object* x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t 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_70; uint8_t x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; uint8_t x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; uint8_t x_106; uint8_t x_124; x_124 = l_Lean_Elab_Modifiers_isPrivate(x_9); if (x_124 == 0) { @@ -8545,7 +8858,7 @@ goto block_123; block_27: { lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; -x_20 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__1; +x_20 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__1; x_21 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_18); @@ -8577,8 +8890,8 @@ return x_26; block_53: { 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; uint8_t x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_31 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__4; -x_32 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__5; +x_31 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__4; +x_32 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__5; x_33 = lean_box(0); x_34 = lean_box(0); x_35 = lean_box(0); @@ -8602,7 +8915,7 @@ lean_ctor_set(x_42, 0, x_37); lean_ctor_set(x_42, 1, x_39); lean_ctor_set(x_42, 2, x_40); lean_ctor_set_uint8(x_42, sizeof(void*)*3, x_41); -x_43 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__6; +x_43 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__6; x_44 = lean_array_push(x_43, x_42); x_45 = lean_box(0); lean_inc(x_16); @@ -8656,19 +8969,19 @@ x_59 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_59, 0, x_57); lean_ctor_set(x_59, 1, x_56); lean_ctor_set(x_59, 2, x_58); -x_28 = x_54; -x_29 = x_55; +x_28 = x_55; +x_29 = x_54; x_30 = x_59; goto block_53; } block_69: { lean_object* x_68; -x_68 = lean_array_fset(x_64, x_66, x_67); -lean_dec(x_66); -x_54 = x_61; -x_55 = x_63; -x_56 = x_62; +x_68 = lean_array_fset(x_66, x_64, x_67); +lean_dec(x_64); +x_54 = x_62; +x_55 = x_61; +x_56 = x_63; x_57 = x_65; x_58 = x_68; goto block_60; @@ -8680,14 +8993,14 @@ x_81 = l_Array_toSubarray___redArg(x_75, x_79, x_80); x_82 = l_Array_ofSubarray___redArg(x_81); lean_dec_ref(x_81); x_83 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_83, 0, x_77); -lean_ctor_set(x_83, 1, x_71); +lean_ctor_set(x_83, 0, x_74); +lean_ctor_set(x_83, 1, x_72); lean_ctor_set(x_83, 2, x_82); -x_61 = x_70; -x_62 = x_73; -x_63 = x_72; -x_64 = x_74; -x_65 = x_76; +x_61 = x_71; +x_62 = x_70; +x_63 = x_73; +x_64 = x_76; +x_65 = x_77; x_66 = x_78; x_67 = x_83; goto block_69; @@ -8695,7 +9008,7 @@ goto block_69; block_105: { lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; uint8_t x_96; -x_92 = l_Array_toSubarray___redArg(x_89, x_90, x_91); +x_92 = l_Array_toSubarray___redArg(x_88, x_90, x_91); x_93 = l_Array_ofSubarray___redArg(x_92); lean_dec_ref(x_92); x_94 = lean_unsigned_to_nat(0u); @@ -8705,10 +9018,10 @@ lean_dec(x_95); if (x_96 == 0) { lean_dec(x_6); -x_54 = x_85; -x_55 = x_87; -x_56 = x_86; -x_57 = x_88; +x_54 = x_86; +x_55 = x_85; +x_56 = x_87; +x_57 = x_89; x_58 = x_93; goto block_60; } @@ -8732,15 +9045,15 @@ x_103 = lean_array_get_size(x_102); x_104 = lean_nat_dec_le(x_6, x_94); if (x_104 == 0) { -x_70 = x_85; -x_71 = x_101; -x_72 = x_87; -x_73 = x_86; -x_74 = x_99; +x_70 = x_86; +x_71 = x_85; +x_72 = x_101; +x_73 = x_87; +x_74 = x_100; x_75 = x_102; -x_76 = x_88; -x_77 = x_100; -x_78 = x_94; +x_76 = x_94; +x_77 = x_89; +x_78 = x_99; x_79 = x_6; x_80 = x_103; goto block_84; @@ -8748,15 +9061,15 @@ goto block_84; else { lean_dec(x_6); -x_70 = x_85; -x_71 = x_101; -x_72 = x_87; -x_73 = x_86; -x_74 = x_99; +x_70 = x_86; +x_71 = x_85; +x_72 = x_101; +x_73 = x_87; +x_74 = x_100; x_75 = x_102; -x_76 = x_88; -x_77 = x_100; -x_78 = x_94; +x_76 = x_94; +x_77 = x_89; +x_78 = x_99; x_79 = x_94; x_80 = x_103; goto block_84; @@ -8768,9 +9081,9 @@ lean_dec(x_6); x_61 = x_85; x_62 = x_86; x_63 = x_87; -x_64 = x_99; -x_65 = x_88; -x_66 = x_94; +x_64 = x_94; +x_65 = x_89; +x_66 = x_99; x_67 = x_97; goto block_69; } @@ -8785,7 +9098,7 @@ lean_dec(x_8); lean_dec(x_6); lean_dec_ref(x_4); x_107 = lean_box(0); -x_108 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__1(x_9, x_1, x_2, x_3, x_107, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_108 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__1(x_9, x_1, x_2, x_3, x_107, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_108; } else @@ -8809,7 +9122,7 @@ lean_dec(x_8); lean_dec(x_6); lean_dec_ref(x_4); lean_dec(x_1); -x_113 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__7; +x_113 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__7; x_18 = x_113; x_19 = x_17; goto block_27; @@ -8835,10 +9148,10 @@ x_120 = lean_nat_dec_le(x_118, x_119); if (x_120 == 0) { x_85 = x_111; -x_86 = x_116; -x_87 = x_114; -x_88 = x_115; -x_89 = x_117; +x_86 = x_114; +x_87 = x_116; +x_88 = x_117; +x_89 = x_115; x_90 = x_8; x_91 = x_119; goto block_105; @@ -8847,10 +9160,10 @@ else { lean_dec(x_119); x_85 = x_111; -x_86 = x_116; -x_87 = x_114; -x_88 = x_115; -x_89 = x_117; +x_86 = x_114; +x_87 = x_116; +x_88 = x_117; +x_89 = x_115; x_90 = x_8; x_91 = x_118; goto block_105; @@ -8879,7 +9192,7 @@ lean_dec(x_8); lean_dec(x_6); lean_dec_ref(x_4); lean_dec(x_1); -x_122 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__7; +x_122 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__7; x_18 = x_122; x_19 = x_17; goto block_27; @@ -8888,7 +9201,7 @@ goto block_27; } } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___closed__0() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___closed__0() { _start: { lean_object* x_1; @@ -8896,26 +9209,26 @@ x_1 = lean_mk_string_unchecked("Duplicate doc string", 20, 20); return x_1; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___closed__1() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___closed__0; +x_1 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___closed__0; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___closed__2() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___closed__1; +x_1 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___closed__1; x_2 = l_Lean_MessageData_ofFormat(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, size_t x_5, size_t 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_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, size_t x_5, size_t 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) { _start: { uint8_t x_15; @@ -8988,7 +9301,7 @@ lean_ctor_set_uint8(x_36, sizeof(void*)*13 + 1, x_30); lean_inc_ref(x_36); lean_inc_ref(x_8); lean_inc(x_34); -x_37 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30(x_34, x_8, x_9, x_10, x_11, x_36, x_13, x_14); +x_37 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32(x_34, x_8, x_9, x_10, x_11, x_36, x_13, x_14); if (lean_obj_tag(x_37) == 0) { lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_55; lean_object* x_56; @@ -8997,7 +9310,7 @@ lean_inc(x_38); x_39 = lean_ctor_get(x_37, 1); lean_inc(x_39); lean_dec_ref(x_37); -x_40 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__0___boxed), 1, 0); +x_40 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__0___boxed), 1, 0); x_41 = lean_unsigned_to_nat(0u); x_42 = lean_array_uset(x_7, x_6, x_41); x_55 = l_Lean_Syntax_getArg(x_32, x_41); @@ -9014,7 +9327,7 @@ lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_4); lean_inc(x_1); -x_58 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2(x_32, x_1, x_2, x_40, x_3, x_4, x_34, x_33, x_38, x_57, x_8, x_9, x_10, x_11, x_36, x_13, x_39); +x_58 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2(x_32, x_1, x_2, x_40, x_3, x_4, x_34, x_33, x_38, x_57, x_8, x_9, x_10, x_11, x_36, x_13, x_39); lean_dec(x_34); x_43 = x_58; goto block_54; @@ -9078,9 +9391,9 @@ x_90 = lean_ctor_get_uint8(x_38, sizeof(void*)*3 + 3); x_91 = lean_ctor_get(x_38, 2); lean_inc_ref(x_91); lean_dec(x_38); -x_92 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___closed__2; +x_92 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___closed__2; lean_inc_ref(x_36); -x_93 = l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__21(x_59, x_92, x_8, x_9, x_10, x_11, x_36, x_13, x_39); +x_93 = l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__23(x_59, x_92, x_8, x_9, x_10, x_11, x_36, x_13, x_39); x_94 = lean_ctor_get(x_93, 1); lean_inc(x_94); lean_dec_ref(x_93); @@ -9124,7 +9437,7 @@ lean_ctor_set_uint8(x_75, sizeof(void*)*3 + 3, x_65); x_76 = lean_box(0); lean_inc(x_4); lean_inc(x_1); -x_77 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2(x_32, x_1, x_2, x_40, x_3, x_4, x_34, x_33, x_75, x_76, x_67, x_68, x_69, x_70, x_71, x_72, x_73); +x_77 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2(x_32, x_1, x_2, x_40, x_3, x_4, x_34, x_33, x_75, x_76, x_67, x_68, x_69, x_70, x_71, x_72, x_73); lean_dec(x_34); x_43 = x_77; goto block_54; @@ -9216,15 +9529,15 @@ return x_98; } } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44(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, size_t x_8, size_t x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, size_t x_8, size_t x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { lean_object* x_18; -x_18 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg(x_1, x_2, x_3, x_4, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_18 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg(x_1, x_2, x_3, x_4, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_18; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___redArg(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__47___redArg(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; @@ -9265,15 +9578,15 @@ goto _start; } } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t 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_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__47(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t 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) { _start: { lean_object* x_15; -x_15 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___redArg(x_1, x_4, x_5, x_6, x_7, x_14); +x_15 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__47___redArg(x_1, x_4, x_5, x_6, x_7, x_14); return x_15; } } -static lean_object* _init_l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46_spec__46___redArg___closed__0() { +static lean_object* _init_l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48_spec__48___redArg___closed__0() { _start: { lean_object* x_1; @@ -9281,7 +9594,7 @@ x_1 = l_Lean_Linter_linterSetsExt; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46_spec__46___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48_spec__48___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -9294,7 +9607,7 @@ x_6 = lean_ctor_get(x_4, 0); x_7 = lean_ctor_get(x_6, 0); lean_inc_ref(x_7); lean_dec(x_6); -x_8 = l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46_spec__46___redArg___closed__0; +x_8 = l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48_spec__48___redArg___closed__0; x_9 = lean_ctor_get(x_8, 0); lean_inc_ref(x_9); x_10 = lean_ctor_get(x_9, 2); @@ -9321,7 +9634,7 @@ lean_dec(x_4); x_17 = lean_ctor_get(x_15, 0); lean_inc_ref(x_17); lean_dec(x_15); -x_18 = l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46_spec__46___redArg___closed__0; +x_18 = l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48_spec__48___redArg___closed__0; x_19 = lean_ctor_get(x_18, 0); lean_inc_ref(x_19); x_20 = lean_ctor_get(x_19, 2); @@ -9341,36 +9654,36 @@ return x_25; } } } -LEAN_EXPORT lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46_spec__46(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_EXPORT lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48_spec__48(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_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46_spec__46___redArg(x_1, x_7, x_8); +x_9 = l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48_spec__48___redArg(x_1, x_7, x_8); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46(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_EXPORT lean_object* l_Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; lean_object* x_9; x_8 = lean_ctor_get(x_5, 2); lean_inc(x_8); lean_dec_ref(x_5); -x_9 = l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46_spec__46___redArg(x_8, x_6, x_7); +x_9 = l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48_spec__48___redArg(x_8, x_6, x_7); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_logWarningAt___at___Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48_spec__48(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_EXPORT lean_object* l_Lean_logWarningAt___at___Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50_spec__50(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_10; uint8_t x_11; lean_object* x_12; x_10 = 1; x_11 = 0; -x_12 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg(x_1, x_2, x_10, x_11, x_5, x_6, x_7, x_8, x_9); +x_12 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg(x_1, x_2, x_10, x_11, x_5, x_6, x_7, x_8, x_9); return x_12; } } -static lean_object* _init_l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__0() { +static lean_object* _init_l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__0() { _start: { lean_object* x_1; @@ -9378,16 +9691,16 @@ x_1 = lean_mk_string_unchecked("This linter can be disabled with `set_option ", return x_1; } } -static lean_object* _init_l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__1() { +static lean_object* _init_l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__0; +x_1 = l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__2() { +static lean_object* _init_l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__2() { _start: { lean_object* x_1; @@ -9395,16 +9708,16 @@ x_1 = lean_mk_string_unchecked(" false`", 7, 7); return x_1; } } -static lean_object* _init_l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__3() { +static lean_object* _init_l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__2; +x_1 = l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__2; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48(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_EXPORT lean_object* l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; @@ -9415,18 +9728,18 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean x_12 = lean_ctor_get(x_1, 0); x_13 = lean_ctor_get(x_1, 1); lean_dec(x_13); -x_14 = l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__1; +x_14 = l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__1; lean_inc(x_12); x_15 = l_Lean_MessageData_ofName(x_12); lean_ctor_set_tag(x_1, 7); lean_ctor_set(x_1, 1, x_15); lean_ctor_set(x_1, 0, x_14); -x_16 = l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__3; +x_16 = l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__3; x_17 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_17, 0, x_1); lean_ctor_set(x_17, 1, x_16); x_18 = l_Lean_MessageData_note(x_17); -x_19 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_19 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; x_20 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_3); @@ -9442,7 +9755,7 @@ lean_ctor_set(x_23, 1, x_19); x_24 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_24, 0, x_12); lean_ctor_set(x_24, 1, x_23); -x_25 = l_Lean_logWarningAt___at___Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48_spec__48(x_2, x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_25 = l_Lean_logWarningAt___at___Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50_spec__50(x_2, x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_25; } else @@ -9451,18 +9764,18 @@ lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean x_26 = lean_ctor_get(x_1, 0); lean_inc(x_26); lean_dec(x_1); -x_27 = l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__1; +x_27 = l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__1; lean_inc(x_26); x_28 = l_Lean_MessageData_ofName(x_26); x_29 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_29, 0, x_27); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__3; +x_30 = l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__3; x_31 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_31, 0, x_29); lean_ctor_set(x_31, 1, x_30); x_32 = l_Lean_MessageData_note(x_31); -x_33 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_33 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; x_34 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_3); @@ -9478,17 +9791,17 @@ lean_ctor_set(x_37, 1, x_33); x_38 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_38, 0, x_26); lean_ctor_set(x_38, 1, x_37); -x_39 = l_Lean_logWarningAt___at___Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48_spec__48(x_2, x_38, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_39 = l_Lean_logWarningAt___at___Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50_spec__50(x_2, x_38, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_39; } } } -LEAN_EXPORT lean_object* l_Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46(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_EXPORT lean_object* l_Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; uint8_t x_12; lean_inc_ref(x_8); -x_11 = l_Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46(x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48(x_4, x_5, x_6, x_7, x_8, x_9, x_10); x_12 = !lean_is_exclusive(x_11); if (x_12 == 0) { @@ -9511,7 +9824,7 @@ else { lean_object* x_17; lean_free_object(x_11); -x_17 = l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_14); +x_17 = l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_14); return x_17; } } @@ -9540,7 +9853,7 @@ return x_22; else { lean_object* x_23; -x_23 = l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_19); +x_23 = l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_19); return x_23; } } @@ -9559,9 +9872,9 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___closed__0; -x_2 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__0; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__1; -x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__0; +x_2 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__1; +x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__0; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } @@ -9652,7 +9965,7 @@ return x_4; LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView(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_10; uint8_t x_11; uint8_t x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; size_t x_32; uint8_t x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_82; +lean_object* x_10; uint8_t x_11; uint8_t x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; size_t x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_82; x_10 = l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___closed__1; lean_inc(x_2); x_11 = l_Lean_Syntax_isOfKind(x_2, x_10); @@ -9675,16 +9988,16 @@ block_26: lean_object* x_24; lean_object* x_25; x_24 = lean_alloc_ctor(0, 11, 3); lean_ctor_set(x_24, 0, x_2); -lean_ctor_set(x_24, 1, x_21); -lean_ctor_set(x_24, 2, x_20); -lean_ctor_set(x_24, 3, x_17); -lean_ctor_set(x_24, 4, x_14); -lean_ctor_set(x_24, 5, x_15); -lean_ctor_set(x_24, 6, x_16); -lean_ctor_set(x_24, 7, x_19); -lean_ctor_set(x_24, 8, x_13); -lean_ctor_set(x_24, 9, x_22); -lean_ctor_set(x_24, 10, x_18); +lean_ctor_set(x_24, 1, x_14); +lean_ctor_set(x_24, 2, x_15); +lean_ctor_set(x_24, 3, x_16); +lean_ctor_set(x_24, 4, x_13); +lean_ctor_set(x_24, 5, x_17); +lean_ctor_set(x_24, 6, x_21); +lean_ctor_set(x_24, 7, x_20); +lean_ctor_set(x_24, 8, x_19); +lean_ctor_set(x_24, 9, x_18); +lean_ctor_set(x_24, 10, x_22); lean_ctor_set_uint8(x_24, sizeof(void*)*11, x_11); lean_ctor_set_uint8(x_24, sizeof(void*)*11 + 1, x_12); lean_ctor_set_uint8(x_24, sizeof(void*)*11 + 2, x_12); @@ -9697,8 +10010,8 @@ block_81: { size_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; x_55 = lean_array_size(x_54); -x_56 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___redArg(x_41, x_50, x_55, x_32, x_54, x_52); -lean_dec(x_41); +x_56 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__47___redArg(x_27, x_41, x_55, x_50, x_54, x_39); +lean_dec(x_27); x_57 = lean_ctor_get(x_56, 0); lean_inc(x_57); x_58 = lean_ctor_get(x_56, 1); @@ -9726,34 +10039,34 @@ lean_dec(x_68); if (x_69 == 0) { lean_dec(x_66); -lean_dec(x_53); +lean_dec_ref(x_53); +lean_dec(x_52); lean_dec(x_51); -lean_dec_ref(x_47); +lean_dec(x_48); +lean_dec(x_47); lean_dec(x_46); lean_dec_ref(x_45); -lean_dec(x_44); +lean_dec(x_42); lean_dec(x_40); -lean_dec(x_39); lean_dec(x_38); -lean_dec_ref(x_37); -lean_dec(x_35); -lean_dec(x_29); -lean_dec(x_27); +lean_dec(x_34); +lean_dec(x_33); +lean_dec_ref(x_28); lean_dec(x_8); lean_dec(x_6); lean_dec_ref(x_5); lean_dec(x_4); lean_dec_ref(x_3); -x_13 = x_34; -x_14 = x_42; -x_15 = x_28; -x_16 = x_48; -x_17 = x_30; -x_18 = x_62; -x_19 = x_49; -x_20 = x_43; -x_21 = x_31; -x_22 = x_57; +x_13 = x_29; +x_14 = x_30; +x_15 = x_49; +x_16 = x_31; +x_17 = x_35; +x_18 = x_57; +x_19 = x_37; +x_20 = x_32; +x_21 = x_43; +x_22 = x_62; x_23 = x_63; goto block_26; } @@ -9763,26 +10076,26 @@ lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean x_70 = l_Lean_Syntax_getArg(x_2, x_67); x_71 = l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___closed__3; x_72 = l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___closed__6; -x_73 = l_Lean_replaceRef(x_70, x_44); -lean_dec(x_44); +x_73 = l_Lean_replaceRef(x_70, x_34); +lean_dec(x_34); lean_dec(x_70); x_74 = lean_alloc_ctor(0, 13, 2); -lean_ctor_set(x_74, 0, x_37); +lean_ctor_set(x_74, 0, x_53); lean_ctor_set(x_74, 1, x_45); -lean_ctor_set(x_74, 2, x_40); -lean_ctor_set(x_74, 3, x_51); -lean_ctor_set(x_74, 4, x_27); +lean_ctor_set(x_74, 2, x_42); +lean_ctor_set(x_74, 3, x_38); +lean_ctor_set(x_74, 4, x_48); lean_ctor_set(x_74, 5, x_73); -lean_ctor_set(x_74, 6, x_35); -lean_ctor_set(x_74, 7, x_39); -lean_ctor_set(x_74, 8, x_46); -lean_ctor_set(x_74, 9, x_29); -lean_ctor_set(x_74, 10, x_38); -lean_ctor_set(x_74, 11, x_53); -lean_ctor_set(x_74, 12, x_47); -lean_ctor_set_uint8(x_74, sizeof(void*)*13, x_36); -lean_ctor_set_uint8(x_74, sizeof(void*)*13 + 1, x_33); -x_75 = l_Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46(x_71, x_66, x_72, x_3, x_4, x_5, x_6, x_74, x_8, x_63); +lean_ctor_set(x_74, 6, x_51); +lean_ctor_set(x_74, 7, x_46); +lean_ctor_set(x_74, 8, x_33); +lean_ctor_set(x_74, 9, x_52); +lean_ctor_set(x_74, 10, x_40); +lean_ctor_set(x_74, 11, x_47); +lean_ctor_set(x_74, 12, x_28); +lean_ctor_set_uint8(x_74, sizeof(void*)*13, x_44); +lean_ctor_set_uint8(x_74, sizeof(void*)*13 + 1, x_36); +x_75 = l_Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48(x_71, x_66, x_72, x_3, x_4, x_5, x_6, x_74, x_8, x_63); lean_dec(x_8); lean_dec(x_6); lean_dec_ref(x_5); @@ -9792,16 +10105,16 @@ lean_dec(x_66); x_76 = lean_ctor_get(x_75, 1); lean_inc(x_76); lean_dec_ref(x_75); -x_13 = x_34; -x_14 = x_42; -x_15 = x_28; -x_16 = x_48; -x_17 = x_30; -x_18 = x_62; -x_19 = x_49; -x_20 = x_43; -x_21 = x_31; -x_22 = x_57; +x_13 = x_29; +x_14 = x_30; +x_15 = x_49; +x_16 = x_31; +x_17 = x_35; +x_18 = x_57; +x_19 = x_37; +x_20 = x_32; +x_21 = x_43; +x_22 = x_62; x_23 = x_76; goto block_26; } @@ -9810,27 +10123,27 @@ else { uint8_t x_77; lean_dec(x_57); -lean_dec(x_53); +lean_dec_ref(x_53); +lean_dec(x_52); lean_dec(x_51); -lean_dec(x_49); +lean_dec_ref(x_49); lean_dec(x_48); -lean_dec_ref(x_47); +lean_dec(x_47); lean_dec(x_46); lean_dec_ref(x_45); -lean_dec(x_44); -lean_dec_ref(x_43); +lean_dec(x_43); lean_dec(x_42); lean_dec(x_40); -lean_dec(x_39); lean_dec(x_38); lean_dec_ref(x_37); lean_dec(x_35); -lean_dec_ref(x_34); +lean_dec(x_34); +lean_dec(x_33); +lean_dec(x_32); lean_dec(x_31); lean_dec(x_30); lean_dec(x_29); -lean_dec(x_28); -lean_dec(x_27); +lean_dec_ref(x_28); lean_dec(x_8); lean_dec(x_6); lean_dec_ref(x_5); @@ -9936,7 +10249,7 @@ lean_inc(x_114); lean_inc_ref(x_7); lean_inc(x_2); lean_inc(x_112); -x_115 = l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43(x_112, x_114, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_110); +x_115 = l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45(x_112, x_114, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_110); x_116 = lean_ctor_get(x_115, 1); lean_inc(x_116); lean_dec_ref(x_115); @@ -9952,7 +10265,7 @@ lean_inc_ref(x_5); lean_inc(x_4); lean_inc_ref(x_3); lean_inc(x_112); -x_122 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg(x_112, x_82, x_12, x_106, x_120, x_121, x_119, x_3, x_4, x_5, x_6, x_7, x_8, x_116); +x_122 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg(x_112, x_82, x_12, x_106, x_120, x_121, x_119, x_3, x_4, x_5, x_6, x_7, x_8, x_116); if (lean_obj_tag(x_122) == 0) { lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; @@ -9969,33 +10282,33 @@ if (lean_obj_tag(x_127) == 0) { lean_object* x_128; x_128 = l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___closed__7; -x_27 = x_95; -x_28 = x_113; -x_29 = x_100; -x_30 = x_111; -x_31 = x_107; -x_32 = x_121; -x_33 = x_104; -x_34 = x_123; -x_35 = x_97; -x_36 = x_102; -x_37 = x_91; -x_38 = x_101; -x_39 = x_98; -x_40 = x_93; -x_41 = x_106; -x_42 = x_112; -x_43 = x_82; -x_44 = x_96; +x_27 = x_106; +x_28 = x_105; +x_29 = x_112; +x_30 = x_107; +x_31 = x_111; +x_32 = x_87; +x_33 = x_99; +x_34 = x_96; +x_35 = x_113; +x_36 = x_104; +x_37 = x_123; +x_38 = x_94; +x_39 = x_124; +x_40 = x_101; +x_41 = x_117; +x_42 = x_93; +x_43 = x_86; +x_44 = x_102; x_45 = x_92; -x_46 = x_99; -x_47 = x_105; -x_48 = x_86; -x_49 = x_87; -x_50 = x_117; -x_51 = x_94; -x_52 = x_124; -x_53 = x_103; +x_46 = x_98; +x_47 = x_103; +x_48 = x_95; +x_49 = x_82; +x_50 = x_121; +x_51 = x_97; +x_52 = x_100; +x_53 = x_91; x_54 = x_128; goto block_81; } @@ -10009,33 +10322,33 @@ x_130 = l_Lean_Syntax_getArg(x_129, x_106); lean_dec(x_129); x_131 = l_Lean_Syntax_getArgs(x_130); lean_dec(x_130); -x_27 = x_95; -x_28 = x_113; -x_29 = x_100; -x_30 = x_111; -x_31 = x_107; -x_32 = x_121; -x_33 = x_104; -x_34 = x_123; -x_35 = x_97; -x_36 = x_102; -x_37 = x_91; -x_38 = x_101; -x_39 = x_98; -x_40 = x_93; -x_41 = x_106; -x_42 = x_112; -x_43 = x_82; -x_44 = x_96; +x_27 = x_106; +x_28 = x_105; +x_29 = x_112; +x_30 = x_107; +x_31 = x_111; +x_32 = x_87; +x_33 = x_99; +x_34 = x_96; +x_35 = x_113; +x_36 = x_104; +x_37 = x_123; +x_38 = x_94; +x_39 = x_124; +x_40 = x_101; +x_41 = x_117; +x_42 = x_93; +x_43 = x_86; +x_44 = x_102; x_45 = x_92; -x_46 = x_99; -x_47 = x_105; -x_48 = x_86; -x_49 = x_87; -x_50 = x_117; -x_51 = x_94; -x_52 = x_124; -x_53 = x_103; +x_46 = x_98; +x_47 = x_103; +x_48 = x_95; +x_49 = x_82; +x_50 = x_121; +x_51 = x_97; +x_52 = x_100; +x_53 = x_91; x_54 = x_131; goto block_81; } @@ -10467,18 +10780,43 @@ lean_dec_ref(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0___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_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg(x_1, x_2, x_3, x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); +lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); +lean_dec_ref(x_2); return x_9; } } +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0___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_10; lean_object* x_11; +x_10 = lean_unbox(x_1); +x_11 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +return x_11; +} +} LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { @@ -10495,15 +10833,24 @@ x_13 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec_ref(x_4); return x_12; } } +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_3); +x_12 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__5(x_1, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { @@ -10522,25 +10869,25 @@ x_11 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_ return x_11; } } -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; uint8_t x_5; uint8_t x_6; lean_object* x_7; x_4 = lean_unbox(x_1); x_5 = lean_unbox(x_2); -x_6 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0(x_4, x_5, x_3); +x_6 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0(x_4, x_5, x_3); lean_dec(x_3); x_7 = lean_box(x_6); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___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_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___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_10; uint8_t x_11; lean_object* x_12; x_10 = lean_unbox(x_3); x_11 = lean_unbox(x_4); -x_12 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg(x_1, x_2, x_10, x_11, x_5, x_6, x_7, x_8, x_9); +x_12 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg(x_1, x_2, x_10, x_11, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec(x_6); lean_dec_ref(x_5); @@ -10548,13 +10895,13 @@ lean_dec(x_1); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___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); x_13 = lean_unbox(x_4); -x_14 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18(x_1, x_2, x_12, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20(x_1, x_2, x_12, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_10); lean_dec(x_8); lean_dec_ref(x_7); @@ -10564,13 +10911,13 @@ lean_dec(x_1); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18___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_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; uint8_t x_12; lean_object* x_13; x_11 = lean_unbox(x_2); x_12 = lean_unbox(x_3); -x_13 = l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18(x_1, x_11, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20(x_1, x_11, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec(x_7); lean_dec_ref(x_6); @@ -10579,11 +10926,11 @@ lean_dec_ref(x_4); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18___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_EXPORT lean_object* l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -10592,11 +10939,11 @@ lean_dec_ref(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__21___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_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__23___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: { lean_object* x_10; -x_10 = l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__21(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__23(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_6); lean_dec_ref(x_5); @@ -10606,7 +10953,7 @@ lean_dec(x_1); return x_10; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__22___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__24___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { size_t x_15; size_t x_16; lean_object* x_17; @@ -10614,7 +10961,7 @@ x_15 = lean_unbox_usize(x_5); lean_dec(x_5); x_16 = lean_unbox_usize(x_6); lean_dec(x_6); -x_17 = l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__22(x_1, x_2, x_3, x_4, x_15, x_16, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_17 = l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__24(x_1, x_2, x_3, x_4, x_15, x_16, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_13); lean_dec(x_11); lean_dec_ref(x_10); @@ -10626,11 +10973,11 @@ lean_dec(x_1); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18___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_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -10640,11 +10987,11 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___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_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -10653,11 +11000,11 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___lam__0___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_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec(x_7); lean_dec_ref(x_6); @@ -10666,11 +11013,11 @@ lean_dec(x_1); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___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_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___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: { lean_object* x_10; -x_10 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20(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_6); lean_dec_ref(x_5); @@ -10679,11 +11026,11 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18___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_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20___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: { lean_object* x_10; -x_10 = l_Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20(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_6); lean_dec_ref(x_5); @@ -10692,20 +11039,20 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__27___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__29___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__27___redArg(x_1, x_2, x_3); +x_4 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__29___redArg(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__27___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_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__29___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__27(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__29(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -10715,21 +11062,21 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__28___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__30___redArg___boxed(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; -x_6 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__28___redArg(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__30___redArg(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__28___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_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__30___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: { lean_object* x_10; -x_10 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__28(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__30(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -10739,11 +11086,11 @@ lean_dec_ref(x_3); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27___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_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec(x_7); lean_dec_ref(x_6); @@ -10754,20 +11101,20 @@ lean_dec(x_2); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(x_1, x_2, x_3); +x_4 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(x_1, x_2, x_3); lean_dec_ref(x_2); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___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_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); @@ -10777,11 +11124,11 @@ lean_dec_ref(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg___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_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_6); lean_dec_ref(x_5); lean_dec(x_4); @@ -10789,11 +11136,11 @@ lean_dec_ref(x_3); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___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_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___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: { lean_object* x_10; -x_10 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -10803,30 +11150,30 @@ lean_dec_ref(x_3); return x_10; } } -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__32___redArg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__34___redArg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__32___redArg(x_1, x_2); +x_3 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__34___redArg(x_1, x_2); lean_dec_ref(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__32___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__34___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__32(x_1, x_2, x_3, x_4); +x_5 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__34(x_1, x_2, x_3, x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); return x_5; } } -LEAN_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__33___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_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__35___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__33(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__35(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); @@ -10836,11 +11183,11 @@ lean_dec_ref(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___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_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___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: { lean_object* x_10; -x_10 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -10850,11 +11197,11 @@ lean_dec_ref(x_3); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35___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_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); @@ -10864,56 +11211,56 @@ lean_dec_ref(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__0(x_1, x_2, x_3, x_4); +x_5 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__0(x_1, x_2, x_3, x_4); lean_dec_ref(x_3); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__1(x_1, x_2, x_3, x_4); +x_5 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__1(x_1, x_2, x_3, x_4); lean_dec_ref(x_3); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__2(x_1, x_2, x_3); +x_4 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__2(x_1, x_2, x_3); lean_dec_ref(x_2); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__3(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__3(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec_ref(x_5); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__4___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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__4___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) { _start: { lean_object* x_7; -x_7 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___lam__4(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___lam__4(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec_ref(x_5); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg___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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -10921,11 +11268,11 @@ lean_dec(x_3); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30___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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32___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: { lean_object* x_10; -x_10 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32(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_6); lean_dec_ref(x_5); @@ -10933,22 +11280,22 @@ lean_dec(x_4); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0(x_1); +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__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_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; lean_object* x_12; x_11 = lean_unbox(x_1); -x_12 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); @@ -10957,11 +11304,11 @@ lean_dec(x_5); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___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_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -10970,11 +11317,11 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__38___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_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__40___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__38(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__40(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -10983,7 +11330,7 @@ lean_dec_ref(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__39___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__41___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: { size_t x_12; size_t x_13; lean_object* x_14; @@ -10991,7 +11338,7 @@ x_12 = lean_unbox_usize(x_2); lean_dec(x_2); x_13 = lean_unbox_usize(x_3); lean_dec(x_3); -x_14 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__39(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__41(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_10); lean_dec(x_8); lean_dec_ref(x_7); @@ -11000,11 +11347,11 @@ lean_dec_ref(x_1); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30___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_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -11013,11 +11360,11 @@ lean_dec_ref(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30___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_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -11026,14 +11373,14 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { uint8_t x_15; uint8_t x_16; uint8_t x_17; lean_object* x_18; x_15 = lean_unbox(x_3); x_16 = lean_unbox(x_4); x_17 = lean_unbox(x_5); -x_18 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___lam__0(x_1, x_2, x_15, x_16, x_17, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_18 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___lam__0(x_1, x_2, x_15, x_16, x_17, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -11044,14 +11391,14 @@ lean_dec(x_6); return x_18; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { uint8_t x_16; uint8_t x_17; uint8_t x_18; lean_object* x_19; x_16 = lean_unbox(x_3); x_17 = lean_unbox(x_4); x_18 = lean_unbox(x_8); -x_19 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___lam__1(x_1, x_2, x_16, x_17, x_5, x_6, x_7, x_18, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_19 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___lam__1(x_1, x_2, x_16, x_17, x_5, x_6, x_7, x_18, x_9, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec(x_14); lean_dec(x_12); lean_dec_ref(x_11); @@ -11062,11 +11409,11 @@ lean_dec(x_5); return x_19; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___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_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -11074,11 +11421,11 @@ lean_dec(x_3); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___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_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec(x_7); lean_dec_ref(x_6); @@ -11087,25 +11434,25 @@ lean_dec_ref(x_4); return x_11; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__0___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__0___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__0(x_1); +x_2 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__0(x_1); lean_dec_ref(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec_ref(x_4); return x_13; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -11127,13 +11474,13 @@ _start: { uint8_t x_18; lean_object* x_19; x_18 = lean_unbox(x_5); -x_19 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2(x_1, x_2, x_3, x_4, x_18, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_19 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2(x_1, x_2, x_3, x_4, x_18, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); lean_dec(x_7); lean_dec_ref(x_3); return x_19; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { uint8_t x_15; size_t x_16; size_t x_17; lean_object* x_18; @@ -11142,13 +11489,13 @@ x_16 = lean_unbox_usize(x_5); lean_dec(x_5); x_17 = lean_unbox_usize(x_6); lean_dec(x_6); -x_18 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg(x_1, x_2, x_15, x_4, x_16, x_17, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_18 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg(x_1, x_2, x_15, x_4, x_16, x_17, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec_ref(x_12); lean_dec_ref(x_2); return x_18; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -11174,7 +11521,7 @@ x_19 = lean_unbox_usize(x_8); lean_dec(x_8); x_20 = lean_unbox_usize(x_9); lean_dec(x_9); -x_21 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44(x_1, x_2, x_18, x_4, x_5, x_6, x_7, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_21 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46(x_1, x_2, x_18, x_4, x_5, x_6, x_7, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); lean_dec_ref(x_15); lean_dec_ref(x_7); lean_dec_ref(x_6); @@ -11183,7 +11530,7 @@ lean_dec_ref(x_2); return x_21; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___redArg___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_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__47___redArg___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) { _start: { size_t x_7; size_t x_8; lean_object* x_9; @@ -11191,13 +11538,13 @@ x_7 = lean_unbox_usize(x_3); lean_dec(x_3); x_8 = lean_unbox_usize(x_4); lean_dec(x_4); -x_9 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___redArg(x_1, x_2, x_7, x_8, x_5, x_6); +x_9 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__47___redArg(x_1, x_2, x_7, x_8, x_5, x_6); lean_dec(x_2); lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__47___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { size_t x_15; size_t x_16; lean_object* x_17; @@ -11205,7 +11552,7 @@ x_15 = lean_unbox_usize(x_5); lean_dec(x_5); x_16 = lean_unbox_usize(x_6); lean_dec(x_6); -x_17 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45(x_1, x_2, x_3, x_4, x_15, x_16, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_17 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__47(x_1, x_2, x_3, x_4, x_15, x_16, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -11219,20 +11566,20 @@ lean_dec(x_1); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46_spec__46___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48_spec__48___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46_spec__46___redArg(x_1, x_2, x_3); +x_4 = l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48_spec__48___redArg(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46_spec__46___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_EXPORT lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48_spec__48___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46_spec__46(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48_spec__48(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); @@ -11242,11 +11589,11 @@ lean_dec_ref(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46___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_EXPORT lean_object* l_Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_6); lean_dec(x_4); lean_dec_ref(x_3); @@ -11255,11 +11602,11 @@ lean_dec_ref(x_1); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_logWarningAt___at___Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48_spec__48___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_EXPORT lean_object* l_Lean_logWarningAt___at___Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50_spec__50___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: { lean_object* x_10; -x_10 = l_Lean_logWarningAt___at___Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48_spec__48(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_logWarningAt___at___Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50_spec__50(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_6); lean_dec_ref(x_5); @@ -11269,11 +11616,11 @@ lean_dec(x_1); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___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_EXPORT lean_object* l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec(x_7); lean_dec_ref(x_6); @@ -11283,11 +11630,11 @@ lean_dec(x_2); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___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_EXPORT lean_object* l_Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec(x_7); lean_dec_ref(x_6); @@ -12763,7 +13110,7 @@ return x_23; else { lean_object* x_24; lean_object* x_25; uint8_t x_26; -x_24 = l_Lean_localDeclDependsOnPred___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__1___redArg(x_18, x_17, x_19, x_21, x_6, x_16); +x_24 = l_Lean_localDeclDependsOnPred___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__1___redArg(x_19, x_17, x_18, x_21, x_6, x_16); x_25 = lean_ctor_get(x_24, 0); lean_inc(x_25); x_26 = lean_unbox(x_25); @@ -12882,8 +13229,8 @@ x_54 = lean_ctor_get(x_46, 2); lean_inc(x_54); x_16 = x_47; x_17 = x_51; -x_18 = x_46; -x_19 = x_53; +x_18 = x_53; +x_19 = x_46; x_20 = x_54; goto block_40; } @@ -12926,8 +13273,8 @@ x_64 = lean_ctor_get(x_56, 2); lean_inc(x_64); x_16 = x_57; x_17 = x_61; -x_18 = x_56; -x_19 = x_63; +x_18 = x_63; +x_19 = x_56; x_20 = x_64; goto block_40; } @@ -13031,8 +13378,8 @@ lean_dec(x_20); if (x_21 == 0) { lean_object* x_22; lean_object* x_23; -lean_dec_ref(x_19); lean_dec_ref(x_18); +lean_dec_ref(x_17); lean_dec_ref(x_16); lean_dec_ref(x_15); lean_dec_ref(x_5); @@ -13045,13 +13392,13 @@ lean_ctor_set(x_22, 0, x_12); lean_ctor_set(x_22, 1, x_13); x_23 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_23, 0, x_22); -lean_ctor_set(x_23, 1, x_17); +lean_ctor_set(x_23, 1, x_19); return x_23; } else { lean_object* x_24; lean_object* x_25; uint8_t x_26; -x_24 = l_Lean_localDeclDependsOnPred___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__1___redArg(x_19, x_16, x_18, x_21, x_6, x_17); +x_24 = l_Lean_localDeclDependsOnPred___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs_spec__1___redArg(x_16, x_18, x_17, x_21, x_6, x_19); x_25 = lean_ctor_get(x_24, 0); lean_inc(x_25); x_26 = lean_unbox(x_25); @@ -13166,10 +13513,10 @@ x_53 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Array_forI lean_closure_set(x_53, 0, x_52); x_54 = lean_ctor_get(x_46, 2); lean_inc(x_54); -x_16 = x_51; -x_17 = x_47; -x_18 = x_53; -x_19 = x_46; +x_16 = x_46; +x_17 = x_53; +x_18 = x_51; +x_19 = x_47; x_20 = x_54; goto block_40; } @@ -13210,10 +13557,10 @@ x_63 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Array_forI lean_closure_set(x_63, 0, x_62); x_64 = lean_ctor_get(x_56, 2); lean_inc(x_64); -x_16 = x_61; -x_17 = x_57; -x_18 = x_63; -x_19 = x_56; +x_16 = x_56; +x_17 = x_63; +x_18 = x_61; +x_19 = x_57; x_20 = x_64; goto block_40; } @@ -14231,7 +14578,7 @@ x_66 = l_Lean_indentExpr(x_57); x_67 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_67, 0, x_65); lean_ctor_set(x_67, 1, x_66); -x_68 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_68 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; x_69 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_69, 0, x_67); lean_ctor_set(x_69, 1, x_68); @@ -14303,7 +14650,7 @@ x_94 = l_Lean_indentExpr(x_84); x_95 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_95, 0, x_93); lean_ctor_set(x_95, 1, x_94); -x_96 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_96 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; x_97 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_97, 0, x_95); lean_ctor_set(x_97, 1, x_96); @@ -14644,7 +14991,7 @@ x_68 = l_Lean_indentExpr(x_59); x_69 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_69, 0, x_67); lean_ctor_set(x_69, 1, x_68); -x_70 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_70 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; x_71 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_71, 0, x_69); lean_ctor_set(x_71, 1, x_70); @@ -14716,7 +15063,7 @@ x_96 = l_Lean_indentExpr(x_86); x_97 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_97, 0, x_95); lean_ctor_set(x_97, 1, x_96); -x_98 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_98 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; x_99 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_99, 0, x_97); lean_ctor_set(x_99, 1, x_98); @@ -16321,7 +16668,7 @@ LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Meta_withIncRecDe _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_3 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__6; +x_3 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__6; x_4 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_3); @@ -18697,10 +19044,10 @@ if (lean_obj_tag(x_59) == 0) { lean_object* x_60; x_60 = l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs___lam__1___closed__13; -x_10 = x_54; -x_11 = x_53; -x_12 = x_55; -x_13 = x_58; +x_10 = x_58; +x_11 = x_55; +x_12 = x_53; +x_13 = x_54; x_14 = x_60; goto block_36; } @@ -18711,10 +19058,10 @@ x_61 = lean_ctor_get(x_59, 0); lean_inc(x_61); lean_dec_ref(x_59); x_62 = l_Lean_MessageData_ofExpr(x_61); -x_10 = x_54; -x_11 = x_53; -x_12 = x_55; -x_13 = x_58; +x_10 = x_58; +x_11 = x_55; +x_12 = x_53; +x_13 = x_54; x_14 = x_62; goto block_36; } @@ -18816,8 +19163,8 @@ return x_79; block_36: { lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; -lean_dec_ref(x_11); -lean_dec(x_10); +lean_dec(x_13); +lean_dec_ref(x_12); x_15 = l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs___lam__1___closed__1; x_16 = l_Lean_indentD(x_14); x_17 = lean_alloc_ctor(7, 2, 0); @@ -18835,11 +19182,11 @@ x_22 = l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParam x_23 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_23, 0, x_21); lean_ctor_set(x_23, 1, x_22); -x_24 = l_Lean_indentExpr(x_13); +x_24 = l_Lean_indentExpr(x_10); x_25 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_25, 0, x_23); lean_ctor_set(x_25, 1, x_24); -x_26 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_26 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; x_27 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_26); @@ -18848,7 +19195,7 @@ x_29 = l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParam x_30 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_30, 0, x_27); lean_ctor_set(x_30, 1, x_29); -x_31 = l_Lean_throwNamedError___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__0___redArg(x_28, x_30, x_5, x_6, x_7, x_8, x_12); +x_31 = l_Lean_throwNamedError___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs_spec__0___redArg(x_28, x_30, x_5, x_6, x_7, x_8, x_11); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -19539,7 +19886,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_el _start: { lean_object* x_7; lean_object* x_8; -x_7 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_7 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; x_8 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_8, 0, x_7); lean_ctor_set(x_8, 1, x_6); @@ -19799,7 +20146,7 @@ lean_ctor_set(x_22, 1, x_21); x_23 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_16); -x_24 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_24 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; x_25 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_25, 0, x_23); lean_ctor_set(x_25, 1, x_24); @@ -20018,7 +20365,7 @@ lean_ctor_set(x_23, 1, x_22); x_24 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_13); -x_25 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_25 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; x_26 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); @@ -20575,7 +20922,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__2; -x_2 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__1; +x_2 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__1; x_3 = l_Lean_Name_mkStr2(x_2, x_1); return x_3; } @@ -20668,7 +21015,7 @@ return x_2; LEAN_EXPORT lean_object* l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4(lean_object* x_1, lean_object* x_2, lean_object* 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, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_18; lean_object* x_19; lean_object* x_23; uint8_t x_24; lean_object* x_25; lean_object* x_26; uint8_t 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; uint8_t x_85; +lean_object* x_18; lean_object* x_19; uint8_t x_23; lean_object* x_24; uint8_t 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; uint8_t x_85; x_85 = !lean_is_exclusive(x_15); if (x_85 == 0) { @@ -20760,7 +21107,7 @@ lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; x_196 = lean_ctor_get(x_194, 0); x_197 = lean_ctor_get(x_194, 1); x_198 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__3; -x_199 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(x_198, x_15, x_197); +x_199 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(x_198, x_15, x_197); x_200 = !lean_is_exclusive(x_199); if (x_200 == 0) { @@ -20813,7 +21160,7 @@ x_212 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Induct x_213 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_213, 0, x_211); lean_ctor_set(x_213, 1, x_212); -x_214 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_198, x_213, x_13, x_14, x_15, x_16, x_202); +x_214 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_198, x_213, x_13, x_14, x_15, x_16, x_202); x_215 = lean_ctor_get(x_214, 0); lean_inc(x_215); x_216 = lean_ctor_get(x_214, 1); @@ -20885,7 +21232,7 @@ x_230 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Induct x_231 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_231, 0, x_229); lean_ctor_set(x_231, 1, x_230); -x_232 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_198, x_231, x_13, x_14, x_15, x_16, x_219); +x_232 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_198, x_231, x_13, x_14, x_15, x_16, x_219); x_233 = lean_ctor_get(x_232, 0); lean_inc(x_233); x_234 = lean_ctor_get(x_232, 1); @@ -20914,7 +21261,7 @@ lean_inc(x_237); lean_inc(x_236); lean_dec(x_194); x_238 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__3; -x_239 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(x_238, x_15, x_237); +x_239 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(x_238, x_15, x_237); x_240 = lean_ctor_get(x_239, 0); lean_inc(x_240); x_241 = lean_ctor_get(x_239, 1); @@ -20977,7 +21324,7 @@ x_254 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Induct x_255 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_255, 0, x_253); lean_ctor_set(x_255, 1, x_254); -x_256 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_238, x_255, x_13, x_14, x_15, x_16, x_241); +x_256 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_238, x_255, x_13, x_14, x_15, x_16, x_241); x_257 = lean_ctor_get(x_256, 0); lean_inc(x_257); x_258 = lean_ctor_get(x_256, 1); @@ -21070,7 +21417,7 @@ x_108 = lean_ctor_get(x_106, 1); lean_inc(x_108); lean_dec_ref(x_106); x_109 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__3; -x_110 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(x_109, x_15, x_108); +x_110 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(x_109, x_15, x_108); x_111 = lean_ctor_get(x_110, 0); lean_inc(x_111); x_112 = lean_unbox(x_111); @@ -21082,11 +21429,11 @@ lean_free_object(x_99); x_113 = lean_ctor_get(x_110, 1); lean_inc(x_113); lean_dec_ref(x_110); -x_23 = x_89; -x_24 = x_94; -x_25 = x_109; -x_26 = x_97; -x_27 = x_91; +x_23 = x_94; +x_24 = x_97; +x_25 = x_91; +x_26 = x_89; +x_27 = x_109; x_28 = x_107; x_29 = x_13; x_30 = x_14; @@ -21114,19 +21461,19 @@ x_121 = l_Lean_MessageData_ofList(x_120); lean_ctor_set_tag(x_110, 7); lean_ctor_set(x_110, 1, x_121); lean_ctor_set(x_110, 0, x_117); -x_122 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_122 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; lean_ctor_set_tag(x_99, 7); lean_ctor_set(x_99, 1, x_122); lean_ctor_set(x_99, 0, x_110); -x_123 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_109, x_99, x_13, x_14, x_15, x_16, x_115); +x_123 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_109, x_99, x_13, x_14, x_15, x_16, x_115); x_124 = lean_ctor_get(x_123, 1); lean_inc(x_124); lean_dec_ref(x_123); -x_23 = x_89; -x_24 = x_94; -x_25 = x_109; -x_26 = x_97; -x_27 = x_91; +x_23 = x_94; +x_24 = x_97; +x_25 = x_91; +x_26 = x_89; +x_27 = x_109; x_28 = x_107; x_29 = x_13; x_30 = x_14; @@ -21150,19 +21497,19 @@ x_130 = l_Lean_MessageData_ofList(x_129); x_131 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_131, 0, x_126); lean_ctor_set(x_131, 1, x_130); -x_132 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_132 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; lean_ctor_set_tag(x_99, 7); lean_ctor_set(x_99, 1, x_132); lean_ctor_set(x_99, 0, x_131); -x_133 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_109, x_99, x_13, x_14, x_15, x_16, x_125); +x_133 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_109, x_99, x_13, x_14, x_15, x_16, x_125); x_134 = lean_ctor_get(x_133, 1); lean_inc(x_134); lean_dec_ref(x_133); -x_23 = x_89; -x_24 = x_94; -x_25 = x_109; -x_26 = x_97; -x_27 = x_91; +x_23 = x_94; +x_24 = x_97; +x_25 = x_91; +x_26 = x_89; +x_27 = x_109; x_28 = x_107; x_29 = x_13; x_30 = x_14; @@ -21229,7 +21576,7 @@ x_146 = lean_ctor_get(x_144, 1); lean_inc(x_146); lean_dec_ref(x_144); x_147 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__3; -x_148 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(x_147, x_15, x_146); +x_148 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(x_147, x_15, x_146); x_149 = lean_ctor_get(x_148, 0); lean_inc(x_149); x_150 = lean_unbox(x_149); @@ -21240,11 +21587,11 @@ lean_object* x_151; x_151 = lean_ctor_get(x_148, 1); lean_inc(x_151); lean_dec_ref(x_148); -x_23 = x_89; -x_24 = x_94; -x_25 = x_147; -x_26 = x_97; -x_27 = x_91; +x_23 = x_94; +x_24 = x_97; +x_25 = x_91; +x_26 = x_89; +x_27 = x_147; x_28 = x_145; x_29 = x_13; x_30 = x_14; @@ -21280,19 +21627,19 @@ if (lean_is_scalar(x_153)) { } lean_ctor_set(x_159, 0, x_154); lean_ctor_set(x_159, 1, x_158); -x_160 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_160 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; x_161 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_161, 0, x_159); lean_ctor_set(x_161, 1, x_160); -x_162 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_147, x_161, x_13, x_14, x_15, x_16, x_152); +x_162 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_147, x_161, x_13, x_14, x_15, x_16, x_152); x_163 = lean_ctor_get(x_162, 1); lean_inc(x_163); lean_dec_ref(x_162); -x_23 = x_89; -x_24 = x_94; -x_25 = x_147; -x_26 = x_97; -x_27 = x_91; +x_23 = x_94; +x_24 = x_97; +x_25 = x_91; +x_26 = x_89; +x_27 = x_147; x_28 = x_145; x_29 = x_13; x_30 = x_14; @@ -21571,7 +21918,7 @@ if (lean_is_exclusive(x_345)) { x_348 = lean_box(0); } x_349 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__3; -x_350 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(x_349, x_276, x_347); +x_350 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(x_349, x_276, x_347); x_351 = lean_ctor_get(x_350, 0); lean_inc(x_351); x_352 = lean_ctor_get(x_350, 1); @@ -21640,7 +21987,7 @@ x_365 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Induct x_366 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_366, 0, x_364); lean_ctor_set(x_366, 1, x_365); -x_367 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_349, x_366, x_13, x_14, x_276, x_16, x_352); +x_367 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_349, x_366, x_13, x_14, x_276, x_16, x_352); x_368 = lean_ctor_get(x_367, 0); lean_inc(x_368); x_369 = lean_ctor_get(x_367, 1); @@ -21738,7 +22085,7 @@ x_297 = lean_ctor_get(x_295, 1); lean_inc(x_297); lean_dec_ref(x_295); x_298 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__3; -x_299 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(x_298, x_276, x_297); +x_299 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(x_298, x_276, x_297); x_300 = lean_ctor_get(x_299, 0); lean_inc(x_300); x_301 = lean_unbox(x_300); @@ -21750,11 +22097,11 @@ lean_dec(x_291); x_302 = lean_ctor_get(x_299, 1); lean_inc(x_302); lean_dec_ref(x_299); -x_23 = x_278; -x_24 = x_283; -x_25 = x_298; -x_26 = x_286; -x_27 = x_280; +x_23 = x_283; +x_24 = x_286; +x_25 = x_280; +x_26 = x_278; +x_27 = x_298; x_28 = x_296; x_29 = x_13; x_30 = x_14; @@ -21790,7 +22137,7 @@ if (lean_is_scalar(x_304)) { } lean_ctor_set(x_310, 0, x_305); lean_ctor_set(x_310, 1, x_309); -x_311 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_311 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; if (lean_is_scalar(x_291)) { x_312 = lean_alloc_ctor(7, 2, 0); } else { @@ -21799,15 +22146,15 @@ if (lean_is_scalar(x_291)) { } lean_ctor_set(x_312, 0, x_310); lean_ctor_set(x_312, 1, x_311); -x_313 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_298, x_312, x_13, x_14, x_276, x_16, x_303); +x_313 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_298, x_312, x_13, x_14, x_276, x_16, x_303); x_314 = lean_ctor_get(x_313, 1); lean_inc(x_314); lean_dec_ref(x_313); -x_23 = x_278; -x_24 = x_283; -x_25 = x_298; -x_26 = x_286; -x_27 = x_280; +x_23 = x_283; +x_24 = x_286; +x_25 = x_280; +x_26 = x_278; +x_27 = x_298; x_28 = x_296; x_29 = x_13; x_30 = x_14; @@ -21965,10 +22312,10 @@ return x_21; block_84: { lean_object* x_34; uint8_t x_35; lean_object* x_36; -x_34 = l_Array_append___redArg(x_28, x_26); -lean_dec_ref(x_26); +x_34 = l_Array_append___redArg(x_28, x_24); +lean_dec_ref(x_24); x_35 = 1; -x_36 = l_Lean_Meta_mkForallFVars(x_34, x_23, x_27, x_24, x_24, x_35, x_29, x_30, x_31, x_32, x_33); +x_36 = l_Lean_Meta_mkForallFVars(x_34, x_26, x_25, x_23, x_23, x_35, x_29, x_30, x_31, x_32, x_33); lean_dec_ref(x_34); if (lean_obj_tag(x_36) == 0) { @@ -21991,7 +22338,7 @@ lean_inc(x_40); x_41 = lean_ctor_get(x_39, 1); lean_inc(x_41); lean_dec_ref(x_39); -x_42 = l_Lean_Meta_mkForallFVars(x_2, x_40, x_27, x_24, x_24, x_35, x_29, x_30, x_31, x_32, x_41); +x_42 = l_Lean_Meta_mkForallFVars(x_2, x_40, x_25, x_23, x_23, x_35, x_29, x_30, x_31, x_32, x_41); lean_dec_ref(x_2); if (lean_obj_tag(x_42) == 0) { @@ -22001,8 +22348,8 @@ lean_inc(x_43); x_44 = lean_ctor_get(x_42, 1); lean_inc(x_44); lean_dec_ref(x_42); -lean_inc(x_25); -x_45 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(x_25, x_31, x_44); +lean_inc(x_27); +x_45 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(x_27, x_31, x_44); x_46 = lean_ctor_get(x_45, 0); lean_inc(x_46); x_47 = lean_unbox(x_46); @@ -22014,7 +22361,7 @@ lean_dec(x_32); lean_dec_ref(x_31); lean_dec(x_30); lean_dec_ref(x_29); -lean_dec(x_25); +lean_dec(x_27); x_48 = lean_ctor_get(x_45, 1); lean_inc(x_48); lean_dec_ref(x_45); @@ -22032,7 +22379,7 @@ lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean x_50 = lean_ctor_get(x_45, 1); x_51 = lean_ctor_get(x_45, 0); lean_dec(x_51); -x_52 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_52 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; lean_inc(x_1); x_53 = l_Lean_MessageData_ofName(x_1); lean_ctor_set_tag(x_45, 7); @@ -22050,7 +22397,7 @@ lean_ctor_set(x_57, 1, x_56); x_58 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_52); -x_59 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_25, x_58, x_29, x_30, x_31, x_32, x_50); +x_59 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_27, x_58, x_29, x_30, x_31, x_32, x_50); lean_dec(x_32); lean_dec_ref(x_31); lean_dec(x_30); @@ -22068,7 +22415,7 @@ lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean x_61 = lean_ctor_get(x_45, 1); lean_inc(x_61); lean_dec(x_45); -x_62 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_62 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; lean_inc(x_1); x_63 = l_Lean_MessageData_ofName(x_1); x_64 = lean_alloc_ctor(7, 2, 0); @@ -22086,7 +22433,7 @@ lean_ctor_set(x_68, 1, x_67); x_69 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_62); -x_70 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_25, x_69, x_29, x_30, x_31, x_32, x_61); +x_70 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_27, x_69, x_29, x_30, x_31, x_32, x_61); lean_dec(x_32); lean_dec_ref(x_31); lean_dec(x_30); @@ -22107,7 +22454,7 @@ lean_dec(x_32); lean_dec_ref(x_31); lean_dec(x_30); lean_dec_ref(x_29); -lean_dec(x_25); +lean_dec(x_27); lean_dec(x_1); x_72 = !lean_is_exclusive(x_42); if (x_72 == 0) @@ -22136,7 +22483,7 @@ lean_dec(x_32); lean_dec_ref(x_31); lean_dec(x_30); lean_dec_ref(x_29); -lean_dec(x_25); +lean_dec(x_27); lean_dec_ref(x_2); lean_dec(x_1); x_76 = !lean_is_exclusive(x_39); @@ -22166,7 +22513,7 @@ lean_dec(x_32); lean_dec_ref(x_31); lean_dec(x_30); lean_dec_ref(x_29); -lean_dec(x_25); +lean_dec(x_27); lean_dec_ref(x_2); lean_dec(x_1); x_80 = !lean_is_exclusive(x_36); @@ -22428,7 +22775,7 @@ return x_57; LEAN_EXPORT lean_object* l_List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3___redArg___lam__4(lean_object* x_1, lean_object* x_2, lean_object* 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, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_18; lean_object* x_19; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t 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; uint8_t x_85; +lean_object* x_18; lean_object* x_19; lean_object* x_23; uint8_t x_24; uint8_t 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; uint8_t x_85; x_85 = !lean_is_exclusive(x_15); if (x_85 == 0) { @@ -22520,7 +22867,7 @@ lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; x_196 = lean_ctor_get(x_194, 0); x_197 = lean_ctor_get(x_194, 1); x_198 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__3; -x_199 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(x_198, x_15, x_197); +x_199 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(x_198, x_15, x_197); x_200 = !lean_is_exclusive(x_199); if (x_200 == 0) { @@ -22573,7 +22920,7 @@ x_212 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Induct x_213 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_213, 0, x_211); lean_ctor_set(x_213, 1, x_212); -x_214 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_198, x_213, x_13, x_14, x_15, x_16, x_202); +x_214 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_198, x_213, x_13, x_14, x_15, x_16, x_202); x_215 = lean_ctor_get(x_214, 0); lean_inc(x_215); x_216 = lean_ctor_get(x_214, 1); @@ -22645,7 +22992,7 @@ x_230 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Induct x_231 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_231, 0, x_229); lean_ctor_set(x_231, 1, x_230); -x_232 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_198, x_231, x_13, x_14, x_15, x_16, x_219); +x_232 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_198, x_231, x_13, x_14, x_15, x_16, x_219); x_233 = lean_ctor_get(x_232, 0); lean_inc(x_233); x_234 = lean_ctor_get(x_232, 1); @@ -22674,7 +23021,7 @@ lean_inc(x_237); lean_inc(x_236); lean_dec(x_194); x_238 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__3; -x_239 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(x_238, x_15, x_237); +x_239 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(x_238, x_15, x_237); x_240 = lean_ctor_get(x_239, 0); lean_inc(x_240); x_241 = lean_ctor_get(x_239, 1); @@ -22737,7 +23084,7 @@ x_254 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Induct x_255 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_255, 0, x_253); lean_ctor_set(x_255, 1, x_254); -x_256 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_238, x_255, x_13, x_14, x_15, x_16, x_241); +x_256 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_238, x_255, x_13, x_14, x_15, x_16, x_241); x_257 = lean_ctor_get(x_256, 0); lean_inc(x_257); x_258 = lean_ctor_get(x_256, 1); @@ -22830,7 +23177,7 @@ x_108 = lean_ctor_get(x_106, 1); lean_inc(x_108); lean_dec_ref(x_106); x_109 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__3; -x_110 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(x_109, x_15, x_108); +x_110 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(x_109, x_15, x_108); x_111 = lean_ctor_get(x_110, 0); lean_inc(x_111); x_112 = lean_unbox(x_111); @@ -22842,12 +23189,12 @@ lean_free_object(x_99); x_113 = lean_ctor_get(x_110, 1); lean_inc(x_113); lean_dec_ref(x_110); -x_23 = x_97; -x_24 = x_109; -x_25 = x_89; -x_26 = x_91; -x_27 = x_94; -x_28 = x_107; +x_23 = x_109; +x_24 = x_91; +x_25 = x_94; +x_26 = x_107; +x_27 = x_89; +x_28 = x_97; x_29 = x_13; x_30 = x_14; x_31 = x_15; @@ -22874,20 +23221,20 @@ x_121 = l_Lean_MessageData_ofList(x_120); lean_ctor_set_tag(x_110, 7); lean_ctor_set(x_110, 1, x_121); lean_ctor_set(x_110, 0, x_117); -x_122 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_122 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; lean_ctor_set_tag(x_99, 7); lean_ctor_set(x_99, 1, x_122); lean_ctor_set(x_99, 0, x_110); -x_123 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_109, x_99, x_13, x_14, x_15, x_16, x_115); +x_123 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_109, x_99, x_13, x_14, x_15, x_16, x_115); x_124 = lean_ctor_get(x_123, 1); lean_inc(x_124); lean_dec_ref(x_123); -x_23 = x_97; -x_24 = x_109; -x_25 = x_89; -x_26 = x_91; -x_27 = x_94; -x_28 = x_107; +x_23 = x_109; +x_24 = x_91; +x_25 = x_94; +x_26 = x_107; +x_27 = x_89; +x_28 = x_97; x_29 = x_13; x_30 = x_14; x_31 = x_15; @@ -22910,20 +23257,20 @@ x_130 = l_Lean_MessageData_ofList(x_129); x_131 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_131, 0, x_126); lean_ctor_set(x_131, 1, x_130); -x_132 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_132 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; lean_ctor_set_tag(x_99, 7); lean_ctor_set(x_99, 1, x_132); lean_ctor_set(x_99, 0, x_131); -x_133 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_109, x_99, x_13, x_14, x_15, x_16, x_125); +x_133 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_109, x_99, x_13, x_14, x_15, x_16, x_125); x_134 = lean_ctor_get(x_133, 1); lean_inc(x_134); lean_dec_ref(x_133); -x_23 = x_97; -x_24 = x_109; -x_25 = x_89; -x_26 = x_91; -x_27 = x_94; -x_28 = x_107; +x_23 = x_109; +x_24 = x_91; +x_25 = x_94; +x_26 = x_107; +x_27 = x_89; +x_28 = x_97; x_29 = x_13; x_30 = x_14; x_31 = x_15; @@ -22989,7 +23336,7 @@ x_146 = lean_ctor_get(x_144, 1); lean_inc(x_146); lean_dec_ref(x_144); x_147 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__3; -x_148 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(x_147, x_15, x_146); +x_148 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(x_147, x_15, x_146); x_149 = lean_ctor_get(x_148, 0); lean_inc(x_149); x_150 = lean_unbox(x_149); @@ -23000,12 +23347,12 @@ lean_object* x_151; x_151 = lean_ctor_get(x_148, 1); lean_inc(x_151); lean_dec_ref(x_148); -x_23 = x_97; -x_24 = x_147; -x_25 = x_89; -x_26 = x_91; -x_27 = x_94; -x_28 = x_145; +x_23 = x_147; +x_24 = x_91; +x_25 = x_94; +x_26 = x_145; +x_27 = x_89; +x_28 = x_97; x_29 = x_13; x_30 = x_14; x_31 = x_15; @@ -23040,20 +23387,20 @@ if (lean_is_scalar(x_153)) { } lean_ctor_set(x_159, 0, x_154); lean_ctor_set(x_159, 1, x_158); -x_160 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_160 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; x_161 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_161, 0, x_159); lean_ctor_set(x_161, 1, x_160); -x_162 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_147, x_161, x_13, x_14, x_15, x_16, x_152); +x_162 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_147, x_161, x_13, x_14, x_15, x_16, x_152); x_163 = lean_ctor_get(x_162, 1); lean_inc(x_163); lean_dec_ref(x_162); -x_23 = x_97; -x_24 = x_147; -x_25 = x_89; -x_26 = x_91; -x_27 = x_94; -x_28 = x_145; +x_23 = x_147; +x_24 = x_91; +x_25 = x_94; +x_26 = x_145; +x_27 = x_89; +x_28 = x_97; x_29 = x_13; x_30 = x_14; x_31 = x_15; @@ -23331,7 +23678,7 @@ if (lean_is_exclusive(x_345)) { x_348 = lean_box(0); } x_349 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__3; -x_350 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(x_349, x_276, x_347); +x_350 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(x_349, x_276, x_347); x_351 = lean_ctor_get(x_350, 0); lean_inc(x_351); x_352 = lean_ctor_get(x_350, 1); @@ -23400,7 +23747,7 @@ x_365 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Induct x_366 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_366, 0, x_364); lean_ctor_set(x_366, 1, x_365); -x_367 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_349, x_366, x_13, x_14, x_276, x_16, x_352); +x_367 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_349, x_366, x_13, x_14, x_276, x_16, x_352); x_368 = lean_ctor_get(x_367, 0); lean_inc(x_368); x_369 = lean_ctor_get(x_367, 1); @@ -23498,7 +23845,7 @@ x_297 = lean_ctor_get(x_295, 1); lean_inc(x_297); lean_dec_ref(x_295); x_298 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__3; -x_299 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(x_298, x_276, x_297); +x_299 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(x_298, x_276, x_297); x_300 = lean_ctor_get(x_299, 0); lean_inc(x_300); x_301 = lean_unbox(x_300); @@ -23510,12 +23857,12 @@ lean_dec(x_291); x_302 = lean_ctor_get(x_299, 1); lean_inc(x_302); lean_dec_ref(x_299); -x_23 = x_286; -x_24 = x_298; -x_25 = x_278; -x_26 = x_280; -x_27 = x_283; -x_28 = x_296; +x_23 = x_298; +x_24 = x_280; +x_25 = x_283; +x_26 = x_296; +x_27 = x_278; +x_28 = x_286; x_29 = x_13; x_30 = x_14; x_31 = x_276; @@ -23550,7 +23897,7 @@ if (lean_is_scalar(x_304)) { } lean_ctor_set(x_310, 0, x_305); lean_ctor_set(x_310, 1, x_309); -x_311 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_311 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; if (lean_is_scalar(x_291)) { x_312 = lean_alloc_ctor(7, 2, 0); } else { @@ -23559,16 +23906,16 @@ if (lean_is_scalar(x_291)) { } lean_ctor_set(x_312, 0, x_310); lean_ctor_set(x_312, 1, x_311); -x_313 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_298, x_312, x_13, x_14, x_276, x_16, x_303); +x_313 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_298, x_312, x_13, x_14, x_276, x_16, x_303); x_314 = lean_ctor_get(x_313, 1); lean_inc(x_314); lean_dec_ref(x_313); -x_23 = x_286; -x_24 = x_298; -x_25 = x_278; -x_26 = x_280; -x_27 = x_283; -x_28 = x_296; +x_23 = x_298; +x_24 = x_280; +x_25 = x_283; +x_26 = x_296; +x_27 = x_278; +x_28 = x_286; x_29 = x_13; x_30 = x_14; x_31 = x_276; @@ -23725,10 +24072,10 @@ return x_21; block_84: { lean_object* x_34; uint8_t x_35; lean_object* x_36; -x_34 = l_Array_append___redArg(x_28, x_23); -lean_dec_ref(x_23); +x_34 = l_Array_append___redArg(x_26, x_28); +lean_dec_ref(x_28); x_35 = 1; -x_36 = l_Lean_Meta_mkForallFVars(x_34, x_25, x_26, x_27, x_27, x_35, x_29, x_30, x_31, x_32, x_33); +x_36 = l_Lean_Meta_mkForallFVars(x_34, x_27, x_24, x_25, x_25, x_35, x_29, x_30, x_31, x_32, x_33); lean_dec_ref(x_34); if (lean_obj_tag(x_36) == 0) { @@ -23751,7 +24098,7 @@ lean_inc(x_40); x_41 = lean_ctor_get(x_39, 1); lean_inc(x_41); lean_dec_ref(x_39); -x_42 = l_Lean_Meta_mkForallFVars(x_2, x_40, x_26, x_27, x_27, x_35, x_29, x_30, x_31, x_32, x_41); +x_42 = l_Lean_Meta_mkForallFVars(x_2, x_40, x_24, x_25, x_25, x_35, x_29, x_30, x_31, x_32, x_41); lean_dec_ref(x_2); if (lean_obj_tag(x_42) == 0) { @@ -23761,8 +24108,8 @@ lean_inc(x_43); x_44 = lean_ctor_get(x_42, 1); lean_inc(x_44); lean_dec_ref(x_42); -lean_inc(x_24); -x_45 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__30___redArg(x_24, x_31, x_44); +lean_inc(x_23); +x_45 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__32___redArg(x_23, x_31, x_44); x_46 = lean_ctor_get(x_45, 0); lean_inc(x_46); x_47 = lean_unbox(x_46); @@ -23774,7 +24121,7 @@ lean_dec(x_32); lean_dec_ref(x_31); lean_dec(x_30); lean_dec_ref(x_29); -lean_dec(x_24); +lean_dec(x_23); x_48 = lean_ctor_get(x_45, 1); lean_inc(x_48); lean_dec_ref(x_45); @@ -23792,7 +24139,7 @@ lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean x_50 = lean_ctor_get(x_45, 1); x_51 = lean_ctor_get(x_45, 0); lean_dec(x_51); -x_52 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_52 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; lean_inc(x_1); x_53 = l_Lean_MessageData_ofName(x_1); lean_ctor_set_tag(x_45, 7); @@ -23810,7 +24157,7 @@ lean_ctor_set(x_57, 1, x_56); x_58 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_52); -x_59 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_24, x_58, x_29, x_30, x_31, x_32, x_50); +x_59 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_23, x_58, x_29, x_30, x_31, x_32, x_50); lean_dec(x_32); lean_dec_ref(x_31); lean_dec(x_30); @@ -23828,7 +24175,7 @@ lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean x_61 = lean_ctor_get(x_45, 1); lean_inc(x_61); lean_dec(x_45); -x_62 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2; +x_62 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2; lean_inc(x_1); x_63 = l_Lean_MessageData_ofName(x_1); x_64 = lean_alloc_ctor(7, 2, 0); @@ -23846,7 +24193,7 @@ lean_ctor_set(x_68, 1, x_67); x_69 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_62); -x_70 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg(x_24, x_69, x_29, x_30, x_31, x_32, x_61); +x_70 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg(x_23, x_69, x_29, x_30, x_31, x_32, x_61); lean_dec(x_32); lean_dec_ref(x_31); lean_dec(x_30); @@ -23867,7 +24214,7 @@ lean_dec(x_32); lean_dec_ref(x_31); lean_dec(x_30); lean_dec_ref(x_29); -lean_dec(x_24); +lean_dec(x_23); lean_dec(x_1); x_72 = !lean_is_exclusive(x_42); if (x_72 == 0) @@ -23896,7 +24243,7 @@ lean_dec(x_32); lean_dec_ref(x_31); lean_dec(x_30); lean_dec_ref(x_29); -lean_dec(x_24); +lean_dec(x_23); lean_dec_ref(x_2); lean_dec(x_1); x_76 = !lean_is_exclusive(x_39); @@ -23926,7 +24273,7 @@ lean_dec(x_32); lean_dec_ref(x_31); lean_dec(x_30); lean_dec_ref(x_29); -lean_dec(x_24); +lean_dec(x_23); lean_dec_ref(x_2); lean_dec(x_1); x_80 = !lean_is_exclusive(x_36); @@ -24833,9 +25180,9 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_List_mapM_loop___at___List_mapM_loop___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_spec__3_spec__3___lam__4___closed__2; -x_2 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__0; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__1; -x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__0; +x_2 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__1; +x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__0; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } @@ -24853,9 +25200,9 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabInductiveCommand___regBuiltin_Lean_Elab_Command_elabInductiveCommand__1___closed__2; -x_2 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__0; -x_3 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__1; -x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__0; +x_2 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__0; +x_3 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__1; +x_4 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__0; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } @@ -24975,6 +25322,22 @@ l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_El lean_mark_persistent(l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__14___closed__1); l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__14___closed__2 = _init_l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__14___closed__2(); lean_mark_persistent(l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__14___closed__2); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__0 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__0(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__0); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__1 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__1(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__1); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__2 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__2(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__2); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__3 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__3(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__3); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__4 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__4(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__4); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__5 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__5(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__5); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__6 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__6(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__6); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__7 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__7(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6_spec__16_spec__16___redArg___closed__7); l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0___closed__0 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0___closed__0(); lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0___closed__0); l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0___closed__1 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__0___closed__1(); @@ -25001,183 +25364,167 @@ l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____pr lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3___closed__2); l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3___closed__3 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3___closed__3(); lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__3___closed__3); -l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___closed__0 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___closed__0(); -lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___closed__0); -l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___closed__1 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___closed__1(); -lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___closed__1); -l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__0 = _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__0(); -lean_mark_persistent(l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__0); -l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__1 = _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__1(); -lean_mark_persistent(l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__1); -l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__2 = _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__2(); -lean_mark_persistent(l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__2); -l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__3 = _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__3(); -lean_mark_persistent(l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__3); -l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__4 = _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__4(); -lean_mark_persistent(l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__4); -l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__5 = _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__5(); -lean_mark_persistent(l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__5); -l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__6 = _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__6(); -lean_mark_persistent(l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__6); -l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__7 = _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__7(); -lean_mark_persistent(l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6___lam__0___closed__7); -l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__0 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__0(); -lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__0); -l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__1 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__1(); -lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__1); -l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__2 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__2(); -lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__2); -l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__3 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__3(); -lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__3); -l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__4 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__4(); -lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__4); -l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0(); -lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0); -l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__1 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__1(); -lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__1); -l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__0 = _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__0(); -lean_mark_persistent(l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__0); -l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__1 = _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__1(); -lean_mark_persistent(l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__1); -l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2 = _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2(); -lean_mark_persistent(l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18_spec__24___closed__2); -l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___lam__0___closed__0 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___lam__0___closed__0(); -lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___lam__0___closed__0); -l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___closed__0 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___closed__0(); -lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___closed__0); -l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___closed__1 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___closed__1(); -lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__18_spec__18___closed__1); -l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__28___redArg___closed__0 = _init_l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__28___redArg___closed__0(); -lean_mark_persistent(l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__27_spec__28___redArg___closed__0); -l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg___closed__0 = _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg___closed__0(); -l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg___closed__1 = _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg___closed__1(); -lean_mark_persistent(l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__31___redArg___closed__1); -l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__0 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__0(); -lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__0); -l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__1 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__1(); -lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__1); -l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__2 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__2(); -lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__2); -l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__3 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__3(); -lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__3); -l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__4 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__4(); -lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__4); -l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__5 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__5(); -lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__5); -l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__6 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__6(); -lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__34___redArg___closed__6); -l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35___redArg___closed__0 = _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35___redArg___closed__0(); -lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35___redArg___closed__0); -l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35___redArg___closed__1 = _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35___redArg___closed__1(); -lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30_spec__30_spec__35___redArg___closed__1); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__0 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__0(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__0); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__1 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__1(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__1); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__2 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__2(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__2); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__3 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__3(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__3); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__4 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__4(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__0___closed__4); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__0 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__0(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__0); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__1 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__1(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__1); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__2 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__2(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__2); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__3 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__3(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___lam__1___closed__3); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__0 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__0(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__0); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__1 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__1(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__1); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__2 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__2(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__2); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__3 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__3(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__3); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__4 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__4(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__30___closed__4); -l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__38___closed__0 = _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__38___closed__0(); -lean_mark_persistent(l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__38___closed__0); -l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__38___closed__1 = _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__38___closed__1(); -lean_mark_persistent(l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30_spec__38___closed__1); -l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30___closed__0 = _init_l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30___closed__0(); -lean_mark_persistent(l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30_spec__30_spec__30___closed__0); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__0 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__0(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__0); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__1 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__1(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__1); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__2 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__2(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__2); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__3 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__3(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__3); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__4 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__4(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__4); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__5 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__5(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__5); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__6 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__6(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__6); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__7 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__7(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__7); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__8 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__8(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__8); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__9 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__9(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__9); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__10 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__10(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__10); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__11 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__11(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__11); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__12 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__12(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__30___closed__12); -l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__0 = _init_l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__0(); -lean_mark_persistent(l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__0); -l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__1 = _init_l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__1(); -lean_mark_persistent(l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__1); -l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__2 = _init_l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__2(); -lean_mark_persistent(l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__2); -l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__3 = _init_l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__3(); -lean_mark_persistent(l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__3); -l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__4 = _init_l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__4(); -lean_mark_persistent(l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__43___closed__4); -l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__0___closed__0 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__0___closed__0(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__0___closed__0); -l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__1___closed__0 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__1___closed__0(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__1___closed__0); -l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__1___closed__1 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__1___closed__1(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__1___closed__1); -l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__0 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__0(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__0); -l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__1 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__1(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__1); -l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__2 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__2(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__2); -l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__3 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__3(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__3); -l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__4 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__4(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__4); -l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__5 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__5(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__5); -l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__6 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__6(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__6); -l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__7 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__7(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___lam__2___closed__7); -l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___closed__0 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___closed__0(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___closed__0); -l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___closed__1 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___closed__1(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___closed__1); -l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___closed__2 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___closed__2(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__44___redArg___closed__2); -l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46_spec__46___redArg___closed__0 = _init_l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46_spec__46___redArg___closed__0(); -lean_mark_persistent(l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__46_spec__46___redArg___closed__0); -l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__0 = _init_l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__0(); -lean_mark_persistent(l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__0); -l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__1 = _init_l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__1(); -lean_mark_persistent(l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__1); -l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__2 = _init_l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__2(); -lean_mark_persistent(l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__2); -l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__3 = _init_l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__3(); -lean_mark_persistent(l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46_spec__48___closed__3); +l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__5___closed__0 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__5___closed__0(); +lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__5___closed__0); +l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__5___closed__1 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__5___closed__1(); +lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__6_spec__6___lam__5___closed__1); +l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__0 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__0(); +lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__0); +l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__1 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__1(); +lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__1); +l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__2 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__2(); +lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__2); +l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__3 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__3(); +lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__3); +l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__4 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__4(); +lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___closed__4); +l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___closed__0 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___closed__0(); +lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___closed__0); +l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___closed__1 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___closed__1(); +lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___closed__1); +l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__0 = _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__0(); +lean_mark_persistent(l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__0); +l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__1 = _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__1(); +lean_mark_persistent(l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__1); +l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2 = _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2(); +lean_mark_persistent(l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20_spec__26___closed__2); +l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___lam__0___closed__0 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___lam__0___closed__0(); +lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___lam__0___closed__0); +l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___closed__0 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___closed__0(); +lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___closed__0); +l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___closed__1 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___closed__1(); +lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__20_spec__20___closed__1); +l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__30___redArg___closed__0 = _init_l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__30___redArg___closed__0(); +lean_mark_persistent(l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__29_spec__30___redArg___closed__0); +l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg___closed__0 = _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg___closed__0(); +l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg___closed__1 = _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg___closed__1(); +lean_mark_persistent(l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__33___redArg___closed__1); +l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__0 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__0(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__0); +l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__1 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__1(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__1); +l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__2 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__2(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__2); +l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__3 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__3(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__3); +l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__4 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__4(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__4); +l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__5 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__5(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__5); +l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__6 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__6(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__36___redArg___closed__6); +l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37___redArg___closed__0 = _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37___redArg___closed__0(); +lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37___redArg___closed__0); +l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37___redArg___closed__1 = _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37___redArg___closed__1(); +lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32_spec__32_spec__37___redArg___closed__1); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__0 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__0(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__0); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__1 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__1(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__1); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__2 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__2(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__2); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__3 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__3(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__3); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__4 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__4(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__0___closed__4); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__0 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__0(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__0); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__1 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__1(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__1); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__2 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__2(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__2); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__3 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__3(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___lam__1___closed__3); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__0 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__0(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__0); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__1 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__1(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__1); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__2 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__2(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__2); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__3 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__3(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__3); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__4 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__4(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__32___closed__4); +l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__40___closed__0 = _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__40___closed__0(); +lean_mark_persistent(l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__40___closed__0); +l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__40___closed__1 = _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__40___closed__1(); +lean_mark_persistent(l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32_spec__40___closed__1); +l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32___closed__0 = _init_l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32___closed__0(); +lean_mark_persistent(l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32_spec__32_spec__32___closed__0); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__0 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__0(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__0); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__1 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__1(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__1); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__2 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__2(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__2); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__3 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__3(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__3); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__4 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__4(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__4); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__5 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__5(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__5); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__6 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__6(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__6); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__7 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__7(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__7); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__8 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__8(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__8); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__9 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__9(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__9); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__10 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__10(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__10); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__11 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__11(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__11); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__12 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__12(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__32___closed__12); +l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__0 = _init_l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__0(); +lean_mark_persistent(l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__0); +l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__1 = _init_l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__1(); +lean_mark_persistent(l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__1); +l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__2 = _init_l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__2(); +lean_mark_persistent(l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__2); +l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__3 = _init_l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__3(); +lean_mark_persistent(l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__3); +l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__4 = _init_l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__4(); +lean_mark_persistent(l_Lean_Elab_addDeclarationRangesForBuiltin___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__45___closed__4); +l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__0___closed__0 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__0___closed__0(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__0___closed__0); +l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__1___closed__0 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__1___closed__0(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__1___closed__0); +l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__1___closed__1 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__1___closed__1(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__1___closed__1); +l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__0 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__0(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__0); +l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__1 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__1(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__1); +l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__2 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__2(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__2); +l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__3 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__3(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__3); +l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__4 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__4(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__4); +l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__5 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__5(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__5); +l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__6 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__6(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__6); +l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__7 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__7(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___lam__2___closed__7); +l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___closed__0 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___closed__0(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___closed__0); +l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___closed__1 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___closed__1(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___closed__1); +l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___closed__2 = _init_l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___closed__2(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__46___redArg___closed__2); +l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48_spec__48___redArg___closed__0 = _init_l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48_spec__48___redArg___closed__0(); +lean_mark_persistent(l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__48_spec__48___redArg___closed__0); +l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__0 = _init_l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__0(); +lean_mark_persistent(l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__0); +l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__1 = _init_l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__1(); +lean_mark_persistent(l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__1); +l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__2 = _init_l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__2(); +lean_mark_persistent(l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__2); +l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__3 = _init_l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__3(); +lean_mark_persistent(l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView_spec__48_spec__50___closed__3); l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___closed__0 = _init_l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___closed__0(); lean_mark_persistent(l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___closed__0); l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___closed__1 = _init_l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___closed__1(); diff --git a/stage0/stdlib/Lean/Elab/LetRec.c b/stage0/stdlib/Lean/Elab/LetRec.c index dbc17cedb1..a1b4cc554d 100644 --- a/stage0/stdlib/Lean/Elab/LetRec.c +++ b/stage0/stdlib/Lean/Elab/LetRec.c @@ -13,61 +13,53 @@ #ifdef __cplusplus extern "C" { #endif -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__25___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__0; lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabLetRec___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); lean_object* lean_format_pretty(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__13___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__8; static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__1___closed__0; static lean_object* l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2_spec__3___closed__2; +static lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39___closed__0; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__0___redArg___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_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_isAbortExceptionId(lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_formatStx(lean_object*, lean_object*, uint8_t); -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__25___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_Lean_mkAppN(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__2; static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2___redArg___closed__3; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__2; LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__0; +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__1; static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___closed__3; lean_object* lean_private_to_user_name(lean_object*); static lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___closed__0; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42___redArg(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*); extern lean_object* l_Lean_declRangeExt; LEAN_EXPORT lean_object* l_Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__13___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_withAuxLocalDecls(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__25___redArg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__4; -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Environment_header(lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__3; -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoTree___at___Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__13_spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__2; lean_object* l_Lean_indentD(lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__3; +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__31___redArg(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Exception_isInterrupt(lean_object*); -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__36___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__4; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__20(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__4; +LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__1; lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___closed__1; -static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__4; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__39___boxed(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_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__6; static lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRec___regBuiltin_Lean_Elab_Term_elabLetRec_declRange__3___closed__2; lean_object* l_Lean_Syntax_getId(lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__0___redArg(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*); @@ -79,431 +71,449 @@ static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownId LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_String_removeLeadingSpaces(lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__2___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__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_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__2; +LEAN_EXPORT uint8_t l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0(lean_object*); static lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRec___regBuiltin_Lean_Elab_Term_elabLetRec__1___closed__1; -LEAN_EXPORT uint8_t l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0(lean_object*); extern lean_object* l_Lean_unknownIdentifierMessageTag; LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); -LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Name_isAnonymous(lean_object*); -LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__2___redArg___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_rewriteManualLinksCore(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); static lean_object* l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2_spec__3___closed__0; LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Log_0__Lean_MessageData_appendDescriptionWidgetIfNamed(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___boxed(lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__3; +LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_replaceRef(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__8; LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getPos_x3f(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__2_spec__2(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__29___redArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getTailPos_x3f(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Term_elabLetRec_spec__1(size_t, size_t, lean_object*); -static lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22___closed__1; +LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_fvarId_x21(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___redArg(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_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__5; static lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRec___regBuiltin_Lean_Elab_Term_elabLetRec_declRange__3___closed__0; +static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__3; static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__1___closed__3; +static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__2; static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__6; -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__38___closed__0; lean_object* l_Lean_addBuiltinDeclarationRanges(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_MessageData_hasSyntheticSorry(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_DeclarationRange_ofStringPositions(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__34___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__2_spec__2___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__1___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16___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_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__40___closed__0; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__2(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__5; -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___closed__2; -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34___redArg(lean_object*); -static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1___closed__2; +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___closed__1; +LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___closed__0; static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2___redArg___closed__1; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__38___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__10; static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__15; +static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__4; lean_object* l_Lean_stringToMessageData(lean_object*); -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__7; +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__31___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoTree___at___Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__13_spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_note(lean_object*); -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__13; LEAN_EXPORT lean_object* l_Lean_Meta_withAuxDecl___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_withAuxLocalDecls_loop_spec__0___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRec___regBuiltin_Lean_Elab_Term_elabLetRec__1___closed__0; uint8_t lean_string_dec_eq(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__4; -static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__2; static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2___redArg___closed__2; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44___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*); +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__4; lean_object* l_Array_unzip___redArg(lean_object*); LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__2___boxed(lean_object**); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__2; +LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__28(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_byte_size(lean_object*); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__41(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0___closed__2; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44___redArg(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*); +static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__5; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__1; +LEAN_EXPORT uint8_t l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0(uint8_t, uint8_t, lean_object*); +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__33___redArg___boxed(lean_object*, lean_object*); uint8_t lean_is_reserved_name(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__3; lean_object* l_Lean_InternalExceptionId_getName(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__7; +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAux___redArg(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__1___redArg(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___closed__1; +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___closed__0; +LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__28___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); -static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34___redArg___closed__0; -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__31___redArg(lean_object*, lean_object*); -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___closed__1; +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabLetRec___lam__0(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_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRec___regBuiltin_Lean_Elab_Term_elabLetRec__1(lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__0; +LEAN_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__34(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__26___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withAuxDeclImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__0; LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0(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_expandMacroImpl_x3f(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1___boxed(lean_object**); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__3; lean_object* l_Lean_ResolveName_resolveNamespace(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkPrivateName(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withAuxDecl___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_withAuxLocalDecls_loop_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__9; -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__38(lean_object*, lean_object*, size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofSyntax(lean_object*); -static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Term_elabLetRec_spec__0(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25___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_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__3; -static lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__13___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__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_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__1___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_withAuxLocalDecls___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__5; -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__31(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__5; +LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__4; lean_object* l_Lean_Elab_Term_expandOptType(lean_object*, lean_object*); -static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__4; -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__2(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22___closed__0; +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_toAttributeKind___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__6; lean_object* l_Lean_Elab_Term_applyAttributesAt(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___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_Syntax_getKind(lean_object*); +LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofFormat(lean_object*); +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__9; lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___boxed(lean_object**); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___closed__2; static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0___closed__0; -LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0; static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2___redArg___closed__0; -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__2_spec__2___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static double l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg___closed__0; double lean_float_of_nat(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__29___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__27___redArg___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__3; lean_object* lean_st_ref_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__0_spec__0___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___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRec___regBuiltin_Lean_Elab_Term_elabLetRec__1___closed__2; uint8_t l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(uint8_t, uint8_t); -static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__5; lean_object* l_Lean_Syntax_getOptional_x3f(lean_object*); lean_object* l_Lean_Elab_Term_expandMatchAltsIntoMatch___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__31(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_to_list(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_termElabAttribute; static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___closed__1; uint8_t l_Lean_MessageData_hasTag(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__27___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__4; lean_object* l_Lean_Name_append(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__5___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_checkTraceOption(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0___closed__1; -static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__5___closed__1; LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___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_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34___redArg___closed__1; +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_privateToUserName(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___closed__3; -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___closed__1; extern lean_object* l_Lean_instInhabitedExpr; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36___redArg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__40___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__0; -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__3; -static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__3; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentArray_push___redArg(lean_object*, lean_object*); -static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__0; +LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__8; lean_object* l_Lean_Syntax_getSepArgs(lean_object*); -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__6; -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__26(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__1; +LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_warningAsError; extern lean_object* l_Lean_Elab_pp_macroStack; LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_docStringExt; LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoTree___at___Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__13_spec__13___redArg___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___closed__2; +static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___closed__0; static lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRec___regBuiltin_Lean_Elab_Term_elabLetRec_declRange__3___closed__4; LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_withAuxLocalDecls_loop___redArg___lam__0___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*); -static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1___closed__1; -static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__1; +LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__2_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_matchesNull(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___closed__2; +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__6; +LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___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_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___closed__0; +static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__0; +static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__1; +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__2; uint8_t l_Lean_Syntax_isIdent(lean_object*); -static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__6; -static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__5; -LEAN_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__6; static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__9; -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__29___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__2_spec__2___redArg___lam__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_TSyntax_getDocString(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__8; -LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__40___closed__1; lean_object* l_List_appendTR___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__2; -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42___redArg___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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__16; +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofConstName(lean_object*, uint8_t); -LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__0_spec__0___lam__0(lean_object*, lean_object*); uint8_t l_Lean_Environment_contains(lean_object*, lean_object*, uint8_t); -static double l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg___closed__0; static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___closed__2; -LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__29(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__0; +static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__5; +static lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__28___redArg___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2_spec__2___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__0; -static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___closed__1; +LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_toStringWithToken___at___Lean_Name_toString_spec__0(lean_object*, uint8_t); extern lean_object* l_Lean_Elab_TerminationHints_none; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__31___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__4; static lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRec___regBuiltin_Lean_Elab_Term_elabLetRec_declRange__3___closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__0_spec__0(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*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__4; lean_object* l_Lean_SourceInfo_getPos_x3f(lean_object*, uint8_t); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___closed__1; -static lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__26___redArg___closed__0; -static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__1; -LEAN_EXPORT uint8_t l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0(uint8_t, uint8_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44___redArg___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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__5; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__39(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_withAuxLocalDecls___redArg___closed__0; lean_object* l_Lean_Elab_TerminationHints_rememberExtraParams(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27___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_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_withAuxDecl___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_withAuxLocalDecls_loop_spec__0(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_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__2; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__0___redArg(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*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__1; +LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__33(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_addLocalVarInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__9; static lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRec___regBuiltin_Lean_Elab_Term_elabLetRec__1___closed__3; -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__2_spec__2___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__2_spec__2___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__2_spec__2___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__7; lean_object* l_Lean_Elab_Term_getDeclName_x3f___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___boxed(lean_object**); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__1; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42___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*); +static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___closed__1; LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__0; lean_object* l_Lean_Environment_mainModule(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37___closed__0; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__2_spec__2___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__3; -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1___closed__1; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__0___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRec___regBuiltin_Lean_Elab_Term_elabLetRec__1___closed__4; lean_object* l_Lean_Elab_Term_registerCustomErrorIfMVar___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__6; lean_object* l_Lean_MapDeclarationExtension_insert___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_withAuxLocalDecls_loop___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__31___redArg___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__6; -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__25(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Term_elabLetRec_spec__0___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_mkForallFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRec___regBuiltin_Lean_Elab_Term_elabLetRec_declRange__3___closed__6; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__0___redArg___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_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__26___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_toSubarray___redArg(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__3; LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___closed__0; +static lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg___closed__1; +static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36___redArg___closed__1; lean_object* l_List_reverse___redArg(lean_object*); -static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__7; lean_object* l_Lean_Elab_Term_elabBindersEx___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1___boxed(lean_object**); +static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1___closed__0; lean_object* l_Lean_Syntax_getHeadInfo_x3f(lean_object*); -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___closed__0; lean_object* l_Lean_ResolveName_resolveGlobalName(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__1; -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__5(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__11(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__0; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__0___boxed(lean_object**); lean_object* l_Lean_Syntax_getRange_x3f(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Term_elabLetRec_spec__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__0_spec__0___lam__0___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withInfoContext_x27(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_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__1; +static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___lam__0___closed__0; static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__14; LEAN_EXPORT lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_withAuxLocalDecls_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__1; -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__0; +static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__0; +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__0; lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__2___closed__1; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__22(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_getModuleIdxFor_x3f(lean_object*, lean_object*); lean_object* lean_erase_macro_scopes(lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0(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_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___closed__0; -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___closed__2; static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__1___closed__1; -static lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__38___closed__1; -LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__7; +static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__0; lean_object* l_Lean_Elab_Term_withDeclName___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRec___regBuiltin_Lean_Elab_Term_elabLetRec_declRange__3___closed__1; -static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___closed__0; -static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__9; static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2___redArg___closed__4; lean_object* l_Lean_Level_param___override(lean_object*); size_t lean_usize_add(size_t, size_t); -static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__4; -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRec___regBuiltin_Lean_Elab_Term_elabLetRec_declRange__3(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__2_spec__2___redArg___lam__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KVMap_findCore(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__1; +static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__5___closed__0; +static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__27___redArg(lean_object*, lean_object*, lean_object*); lean_object* lean_array_uget(lean_object*, size_t); static lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRec___regBuiltin_Lean_Elab_Term_elabLetRec_declRange__3___closed__3; size_t lean_array_size(lean_object*); -static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__7; +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__33___redArg(lean_object*, lean_object*); +static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__2; lean_object* lean_io_error_to_string(lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabLetRec(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getLocalInstances___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__38___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoTree___at___Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__13_spec__13___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__12; -static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__4; LEAN_EXPORT uint8_t l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2_spec__2(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__3; lean_object* l_Lean_getAttributeImpl(lean_object*, lean_object*); -static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__8; -LEAN_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__38(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__36(lean_object*, lean_object*, size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__31___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__0; +static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__1; LEAN_EXPORT lean_object* l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2_spec__3(lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__7; -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__0; +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__0; -static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__3; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__32(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__33___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__3; extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; uint8_t lean_usize_dec_lt(size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_List_any___redArg(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLambdaFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_withAuxLocalDecls_loop___redArg___lam__0(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_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__41___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Exception_isRuntime(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__2(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___lam__0___closed__0; LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0___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_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___closed__1; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__40(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_setExporting(lean_object*, uint8_t); -static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__2; -LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues_spec__2_spec__2___redArg___lam__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_expandMacros(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__1; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___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_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24___closed__2; lean_object* l_Lean_Expr_mvarId_x21(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkBodyInfo(lean_object*, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l_Lean_MessageData_ofName(lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__26___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__3; +LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__28___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__11; -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__2; -LEAN_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__2; +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__2; lean_object* l_Lean_MessageLog_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___boxed(lean_object*); +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__5; +static lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24___closed__1; static lean_object* l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2_spec__3___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__1___boxed(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* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___lam__0___closed__0() { _start: @@ -2119,6 +2129,392 @@ return x_22; } } } +static lean_object* _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__0; +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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__1; +x_2 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2, 0, x_1); +lean_ctor_set(x_2, 1, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__0; +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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__0; +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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__0; +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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__0; +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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__6; +x_2 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__5; +x_3 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__4; +x_4 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__3; +x_5 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +lean_ctor_set(x_5, 2, x_2); +lean_ctor_set(x_5, 3, x_4); +lean_ctor_set(x_5, 4, x_1); +lean_ctor_set(x_5, 5, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_5 = lean_st_ref_take(x_3, x_4); +x_6 = lean_ctor_get(x_5, 0); +lean_inc(x_6); +x_7 = lean_ctor_get(x_5, 1); +lean_inc(x_7); +lean_dec_ref(x_5); +x_8 = !lean_is_exclusive(x_6); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_9 = lean_ctor_get(x_6, 5); +lean_dec(x_9); +x_10 = lean_ctor_get(x_6, 0); +lean_dec(x_10); +x_11 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__2; +lean_ctor_set(x_6, 5, x_11); +lean_ctor_set(x_6, 0, x_1); +x_12 = lean_st_ref_set(x_3, x_6, x_7); +x_13 = lean_ctor_get(x_12, 1); +lean_inc(x_13); +lean_dec_ref(x_12); +x_14 = lean_st_ref_take(x_2, x_13); +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec_ref(x_14); +x_17 = !lean_is_exclusive(x_15); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_18 = lean_ctor_get(x_15, 1); +lean_dec(x_18); +x_19 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__7; +lean_ctor_set(x_15, 1, x_19); +x_20 = lean_st_ref_set(x_2, x_15, x_16); +x_21 = !lean_is_exclusive(x_20); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_20, 0); +lean_dec(x_22); +x_23 = lean_box(0); +lean_ctor_set(x_20, 0, x_23); +return x_20; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_20, 1); +lean_inc(x_24); +lean_dec(x_20); +x_25 = lean_box(0); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_24); +return x_26; +} +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_27 = lean_ctor_get(x_15, 0); +x_28 = lean_ctor_get(x_15, 2); +x_29 = lean_ctor_get(x_15, 3); +x_30 = lean_ctor_get(x_15, 4); +lean_inc(x_30); +lean_inc(x_29); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_15); +x_31 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__7; +x_32 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_32, 0, x_27); +lean_ctor_set(x_32, 1, x_31); +lean_ctor_set(x_32, 2, x_28); +lean_ctor_set(x_32, 3, x_29); +lean_ctor_set(x_32, 4, x_30); +x_33 = lean_st_ref_set(x_2, x_32, x_16); +x_34 = lean_ctor_get(x_33, 1); +lean_inc(x_34); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + x_35 = x_33; +} else { + lean_dec_ref(x_33); + x_35 = lean_box(0); +} +x_36 = lean_box(0); +if (lean_is_scalar(x_35)) { + x_37 = lean_alloc_ctor(0, 2, 0); +} else { + x_37 = x_35; +} +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set(x_37, 1, x_34); +return x_37; +} +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_38 = lean_ctor_get(x_6, 1); +x_39 = lean_ctor_get(x_6, 2); +x_40 = lean_ctor_get(x_6, 3); +x_41 = lean_ctor_get(x_6, 4); +x_42 = lean_ctor_get(x_6, 6); +x_43 = lean_ctor_get(x_6, 7); +x_44 = lean_ctor_get(x_6, 8); +lean_inc(x_44); +lean_inc(x_43); +lean_inc(x_42); +lean_inc(x_41); +lean_inc(x_40); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_6); +x_45 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__2; +x_46 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_46, 0, x_1); +lean_ctor_set(x_46, 1, x_38); +lean_ctor_set(x_46, 2, x_39); +lean_ctor_set(x_46, 3, x_40); +lean_ctor_set(x_46, 4, x_41); +lean_ctor_set(x_46, 5, x_45); +lean_ctor_set(x_46, 6, x_42); +lean_ctor_set(x_46, 7, x_43); +lean_ctor_set(x_46, 8, x_44); +x_47 = lean_st_ref_set(x_3, x_46, x_7); +x_48 = lean_ctor_get(x_47, 1); +lean_inc(x_48); +lean_dec_ref(x_47); +x_49 = lean_st_ref_take(x_2, x_48); +x_50 = lean_ctor_get(x_49, 0); +lean_inc(x_50); +x_51 = lean_ctor_get(x_49, 1); +lean_inc(x_51); +lean_dec_ref(x_49); +x_52 = lean_ctor_get(x_50, 0); +lean_inc_ref(x_52); +x_53 = lean_ctor_get(x_50, 2); +lean_inc(x_53); +x_54 = lean_ctor_get(x_50, 3); +lean_inc_ref(x_54); +x_55 = lean_ctor_get(x_50, 4); +lean_inc_ref(x_55); +if (lean_is_exclusive(x_50)) { + lean_ctor_release(x_50, 0); + lean_ctor_release(x_50, 1); + lean_ctor_release(x_50, 2); + lean_ctor_release(x_50, 3); + lean_ctor_release(x_50, 4); + x_56 = x_50; +} else { + lean_dec_ref(x_50); + x_56 = lean_box(0); +} +x_57 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__7; +if (lean_is_scalar(x_56)) { + x_58 = lean_alloc_ctor(0, 5, 0); +} else { + x_58 = x_56; +} +lean_ctor_set(x_58, 0, x_52); +lean_ctor_set(x_58, 1, x_57); +lean_ctor_set(x_58, 2, x_53); +lean_ctor_set(x_58, 3, x_54); +lean_ctor_set(x_58, 4, x_55); +x_59 = lean_st_ref_set(x_2, x_58, x_51); +x_60 = lean_ctor_get(x_59, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_59)) { + lean_ctor_release(x_59, 0); + lean_ctor_release(x_59, 1); + x_61 = x_59; +} else { + lean_dec_ref(x_59); + x_61 = lean_box(0); +} +x_62 = lean_box(0); +if (lean_is_scalar(x_61)) { + x_63 = lean_alloc_ctor(0, 2, 0); +} else { + x_63 = x_61; +} +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_60); +return x_63; +} +} +} +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15(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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg(x_1, x_5, x_7, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15___redArg(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_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_10 = lean_st_ref_get(x_8, x_9); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec_ref(x_10); +x_13 = lean_ctor_get(x_11, 0); +lean_inc_ref(x_13); +lean_dec(x_11); +x_14 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg(x_1, x_6, x_8, x_12); +x_15 = lean_ctor_get(x_14, 1); +lean_inc(x_15); +lean_dec_ref(x_14); +lean_inc(x_8); +lean_inc(x_6); +x_16 = lean_apply_7(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_15); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec_ref(x_16); +x_19 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg(x_13, x_6, x_8, x_18); +lean_dec(x_8); +lean_dec(x_6); +x_20 = !lean_is_exclusive(x_19); +if (x_20 == 0) +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_19, 0); +lean_dec(x_21); +lean_ctor_set(x_19, 0, x_17); +return x_19; +} +else +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_19, 1); +lean_inc(x_22); +lean_dec(x_19); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_17); +lean_ctor_set(x_23, 1, x_22); +return x_23; +} +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_24 = lean_ctor_get(x_16, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_16, 1); +lean_inc(x_25); +lean_dec_ref(x_16); +x_26 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg(x_13, x_6, x_8, x_25); +lean_dec(x_8); +lean_dec(x_6); +x_27 = !lean_is_exclusive(x_26); +if (x_27 == 0) +{ +lean_object* x_28; +x_28 = lean_ctor_get(x_26, 0); +lean_dec(x_28); +lean_ctor_set_tag(x_26, 1); +lean_ctor_set(x_26, 0, x_24); +return x_26; +} +else +{ +lean_object* x_29; lean_object* x_30; +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_dec(x_26); +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_24); +lean_ctor_set(x_30, 1, x_29); +return x_30; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} static lean_object* _init_l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0___closed__0() { _start: { @@ -2151,62 +2547,61 @@ lean_ctor_set(x_4, 2, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0(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_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0(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, lean_object* x_8, lean_object* x_9) { _start: { -lean_object* x_9; lean_object* x_10; -x_9 = lean_ctor_get(x_6, 5); -lean_inc(x_9); -lean_inc_ref(x_6); -lean_inc_ref(x_2); -x_10 = l_Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_10) == 0) +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_7, 5); +lean_inc(x_10); +lean_inc_ref(x_7); +lean_inc_ref(x_3); +x_11 = l_Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_11) == 0) { -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_19; lean_object* x_20; -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -x_12 = lean_ctor_get(x_10, 1); +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); -lean_dec_ref(x_10); -x_13 = lean_box(0); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -x_15 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0___closed__2; -x_16 = lean_box(0); -x_17 = 0; +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +lean_dec_ref(x_11); +x_14 = lean_box(0); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_10); +x_16 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0___closed__2; +x_17 = lean_box(0); x_18 = lean_alloc_ctor(0, 4, 1); -lean_ctor_set(x_18, 0, x_14); -lean_ctor_set(x_18, 1, x_15); -lean_ctor_set(x_18, 2, x_16); -lean_ctor_set(x_18, 3, x_11); -lean_ctor_set_uint8(x_18, sizeof(void*)*4, x_17); +lean_ctor_set(x_18, 0, x_15); +lean_ctor_set(x_18, 1, x_16); +lean_ctor_set(x_18, 2, x_17); +lean_ctor_set(x_18, 3, x_12); +lean_ctor_set_uint8(x_18, sizeof(void*)*4, x_1); x_19 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_19, 0, x_18); -x_20 = l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__13(x_19, x_2, x_3, x_4, x_5, x_6, x_7, x_12); -lean_dec_ref(x_6); -lean_dec_ref(x_2); +x_20 = l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__13(x_19, x_3, x_4, x_5, x_6, x_7, x_8, x_13); +lean_dec_ref(x_7); +lean_dec_ref(x_3); return x_20; } else { uint8_t x_21; -lean_dec(x_9); -lean_dec_ref(x_6); -lean_dec_ref(x_2); -x_21 = !lean_is_exclusive(x_10); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec_ref(x_3); +x_21 = !lean_is_exclusive(x_11); if (x_21 == 0) { -return x_10; +return x_11; } else { lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_10, 0); -x_23 = lean_ctor_get(x_10, 1); +x_22 = lean_ctor_get(x_11, 0); +x_23 = lean_ctor_get(x_11, 1); lean_inc(x_23); lean_inc(x_22); -lean_dec(x_10); +lean_dec(x_11); x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_22); lean_ctor_set(x_24, 1, x_23); @@ -2520,7 +2915,88 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_11 = lean_st_ref_get(x_9, x_10); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +if (lean_is_exclusive(x_11)) { + lean_ctor_release(x_11, 0); + lean_ctor_release(x_11, 1); + x_14 = x_11; +} else { + lean_dec_ref(x_11); + x_14 = lean_box(0); +} +x_25 = lean_ctor_get(x_12, 0); +lean_inc_ref(x_25); +lean_dec(x_12); +lean_inc(x_2); +x_26 = l_Lean_privateToUserName(x_2); +lean_inc_ref(x_3); +x_27 = lean_is_reserved_name(x_3, x_26); +if (x_27 == 0) +{ +lean_object* x_28; uint8_t x_29; +lean_inc(x_2); +x_28 = l_Lean_mkPrivateName(x_25, x_2); +lean_dec_ref(x_25); +x_29 = lean_is_reserved_name(x_3, x_28); +x_15 = x_29; +goto block_24; +} +else +{ +lean_dec_ref(x_25); +lean_dec_ref(x_3); +x_15 = x_27; +goto block_24; +} +block_24: +{ +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +lean_dec(x_14); +lean_dec(x_2); +x_16 = lean_box(0); +x_17 = lean_apply_8(x_1, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +return x_17; +} +else +{ +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_dec_ref(x_1); +x_18 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___closed__1; +x_19 = l_Lean_MessageData_ofName(x_2); +if (lean_is_scalar(x_14)) { + x_20 = lean_alloc_ctor(7, 2, 0); +} else { + x_20 = x_14; + lean_ctor_set_tag(x_20, 7); +} +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +x_21 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___closed__3; +x_22 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +x_23 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_22, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_23; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__4(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; lean_object* x_22; uint8_t x_23; @@ -2577,7 +3053,7 @@ return x_20; } } } -static lean_object* _init_l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___closed__0() { +static lean_object* _init_l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__5___closed__0() { _start: { lean_object* x_1; @@ -2585,290 +3061,215 @@ x_1 = lean_mk_string_unchecked("private declaration '", 21, 21); return x_1; } } -static lean_object* _init_l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___closed__1() { +static lean_object* _init_l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__5___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___closed__0; +x_1 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__5___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__5(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc(x_2); +x_11 = lean_apply_8(x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_11) == 0) +{ +uint8_t x_12; +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_11, 1); +x_14 = lean_ctor_get(x_11, 0); +lean_dec(x_14); +lean_inc(x_2); +x_15 = lean_private_to_user_name(x_2); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_16 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___closed__1; +x_17 = l_Lean_MessageData_ofConstName(x_2, x_3); +lean_ctor_set_tag(x_11, 7); +lean_ctor_set(x_11, 1, x_17); +lean_ctor_set(x_11, 0, x_16); +x_18 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__1___closed__3; +x_19 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_19, 0, x_11); +lean_ctor_set(x_19, 1, x_18); +x_20 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_20; +} +else +{ +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_dec(x_2); +x_21 = lean_ctor_get(x_15, 0); +lean_inc(x_21); +lean_dec_ref(x_15); +x_22 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__5___closed__1; +x_23 = l_Lean_MessageData_ofConstName(x_21, x_3); +lean_ctor_set_tag(x_11, 7); +lean_ctor_set(x_11, 1, x_23); +lean_ctor_set(x_11, 0, x_22); +x_24 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__1___closed__3; +x_25 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_25, 0, x_11); +lean_ctor_set(x_25, 1, x_24); +x_26 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_25, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_26; +} +} +else +{ +lean_object* x_27; lean_object* x_28; +x_27 = lean_ctor_get(x_11, 1); +lean_inc(x_27); +lean_dec(x_11); +lean_inc(x_2); +x_28 = lean_private_to_user_name(x_2); +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; +x_29 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___closed__1; +x_30 = l_Lean_MessageData_ofConstName(x_2, x_3); +x_31 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_31, 0, x_29); +lean_ctor_set(x_31, 1, x_30); +x_32 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__1___closed__3; +x_33 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +x_34 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_33, x_4, x_5, x_6, x_7, x_8, x_9, x_27); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_34; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +lean_dec(x_2); +x_35 = lean_ctor_get(x_28, 0); +lean_inc(x_35); +lean_dec_ref(x_28); +x_36 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__5___closed__1; +x_37 = l_Lean_MessageData_ofConstName(x_35, x_3); +x_38 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_37); +x_39 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__1___closed__3; +x_40 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +x_41 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_40, x_4, x_5, x_6, x_7, x_8, x_9, x_27); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_41; +} +} +} +else +{ +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_2); +return x_11; +} +} +} LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0(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; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; uint8_t x_17; +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; uint8_t x_20; x_9 = lean_st_ref_get(x_7, x_8); x_10 = lean_ctor_get(x_9, 0); lean_inc(x_10); x_11 = lean_ctor_get(x_9, 1); lean_inc(x_11); -if (lean_is_exclusive(x_9)) { - lean_ctor_release(x_9, 0); - lean_ctor_release(x_9, 1); - x_12 = x_9; -} else { - lean_dec_ref(x_9); - x_12 = lean_box(0); -} -x_13 = lean_ctor_get(x_10, 0); -lean_inc_ref(x_13); +lean_dec_ref(x_9); +x_12 = lean_ctor_get(x_10, 0); +lean_inc_ref(x_12); lean_dec(x_10); -x_14 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0___boxed), 8, 0); -lean_inc_ref(x_14); -lean_inc_ref(x_13); +x_13 = 0; +x_14 = lean_box(x_13); +x_15 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0___boxed), 9, 1); +lean_closure_set(x_15, 0, x_14); +x_16 = l_Lean_Environment_setExporting(x_12, x_13); +lean_inc_ref(x_15); +lean_inc_ref(x_16); lean_inc(x_1); -x_15 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__1___boxed), 11, 3); -lean_closure_set(x_15, 0, x_1); -lean_closure_set(x_15, 1, x_13); -lean_closure_set(x_15, 2, x_14); -x_16 = 1; +x_17 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__1___boxed), 11, 3); +lean_closure_set(x_17, 0, x_1); +lean_closure_set(x_17, 1, x_16); +lean_closure_set(x_17, 2, x_15); +lean_inc_ref(x_15); lean_inc(x_1); -lean_inc_ref(x_13); -x_17 = l_Lean_Environment_contains(x_13, x_1, x_16); -if (x_17 == 0) -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_32; lean_object* x_33; uint8_t x_34; -x_18 = lean_st_ref_get(x_7, x_11); -x_19 = lean_ctor_get(x_18, 0); -lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -if (lean_is_exclusive(x_18)) { - lean_ctor_release(x_18, 0); - lean_ctor_release(x_18, 1); - x_21 = x_18; -} else { - lean_dec_ref(x_18); - x_21 = lean_box(0); -} -x_32 = lean_ctor_get(x_19, 0); -lean_inc_ref(x_32); -lean_dec(x_19); +lean_inc_ref(x_16); +x_18 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__2___boxed), 12, 4); +lean_closure_set(x_18, 0, x_16); +lean_closure_set(x_18, 1, x_1); +lean_closure_set(x_18, 2, x_17); +lean_closure_set(x_18, 3, x_15); +x_19 = 1; lean_inc(x_1); -x_33 = l_Lean_privateToUserName(x_1); -lean_inc_ref(x_13); -x_34 = lean_is_reserved_name(x_13, x_33); -if (x_34 == 0) +lean_inc_ref(x_16); +x_20 = l_Lean_Environment_contains(x_16, x_1, x_19); +if (x_20 == 0) { -lean_object* x_35; uint8_t x_36; -lean_inc(x_1); -x_35 = l_Lean_mkPrivateName(x_32, x_1); -lean_dec_ref(x_32); -lean_inc_ref(x_13); -x_36 = lean_is_reserved_name(x_13, x_35); -x_22 = x_36; -goto block_31; -} -else -{ -lean_dec_ref(x_32); -x_22 = x_34; -goto block_31; -} -block_31: -{ -if (x_22 == 0) -{ -lean_object* x_23; lean_object* x_24; -lean_dec(x_21); -lean_dec(x_12); -x_23 = lean_box(0); -x_24 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__2(x_13, x_1, x_15, x_14, x_23, x_2, x_3, x_4, x_5, x_6, x_7, x_20); -return x_24; -} -else -{ -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_21; lean_object* x_22; lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -x_25 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___closed__1; -x_26 = l_Lean_MessageData_ofName(x_1); -if (lean_is_scalar(x_21)) { - x_27 = lean_alloc_ctor(7, 2, 0); -} else { - x_27 = x_21; - lean_ctor_set_tag(x_27, 7); -} -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -x_28 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___closed__3; -if (lean_is_scalar(x_12)) { - x_29 = lean_alloc_ctor(7, 2, 0); -} else { - x_29 = x_12; - lean_ctor_set_tag(x_29, 7); -} -lean_ctor_set(x_29, 0, x_27); -lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_29, x_2, x_3, x_4, x_5, x_6, x_7, x_20); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_30; -} -} +lean_inc_ref(x_16); +x_21 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3), 10, 3); +lean_closure_set(x_21, 0, x_18); +lean_closure_set(x_21, 1, x_1); +lean_closure_set(x_21, 2, x_16); +x_22 = l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15___redArg(x_16, x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_11); +return x_22; } else { -lean_object* x_37; -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_inc_ref(x_6); -lean_inc_ref(x_2); -lean_inc(x_1); -x_37 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_11); -if (lean_obj_tag(x_37) == 0) -{ -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 1); -x_40 = lean_ctor_get(x_37, 0); -lean_dec(x_40); -lean_inc(x_1); -x_41 = lean_private_to_user_name(x_1); -if (lean_obj_tag(x_41) == 0) -{ -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_42 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___closed__1; -x_43 = l_Lean_MessageData_ofConstName(x_1, x_16); -lean_ctor_set_tag(x_37, 7); -lean_ctor_set(x_37, 1, x_43); -lean_ctor_set(x_37, 0, x_42); -x_44 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__1___closed__3; -if (lean_is_scalar(x_12)) { - x_45 = lean_alloc_ctor(7, 2, 0); -} else { - x_45 = x_12; - lean_ctor_set_tag(x_45, 7); -} -lean_ctor_set(x_45, 0, x_37); -lean_ctor_set(x_45, 1, x_44); -x_46 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_45, x_2, x_3, x_4, x_5, x_6, x_7, x_39); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_46; -} -else -{ -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_dec(x_1); -x_47 = lean_ctor_get(x_41, 0); -lean_inc(x_47); -lean_dec_ref(x_41); -x_48 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___closed__1; -x_49 = l_Lean_MessageData_ofConstName(x_47, x_16); -lean_ctor_set_tag(x_37, 7); -lean_ctor_set(x_37, 1, x_49); -lean_ctor_set(x_37, 0, x_48); -x_50 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__1___closed__3; -if (lean_is_scalar(x_12)) { - x_51 = lean_alloc_ctor(7, 2, 0); -} else { - x_51 = x_12; - lean_ctor_set_tag(x_51, 7); -} -lean_ctor_set(x_51, 0, x_37); -lean_ctor_set(x_51, 1, x_50); -x_52 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_51, x_2, x_3, x_4, x_5, x_6, x_7, x_39); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_52; -} -} -else -{ -lean_object* x_53; lean_object* x_54; -x_53 = lean_ctor_get(x_37, 1); -lean_inc(x_53); -lean_dec(x_37); -lean_inc(x_1); -x_54 = lean_private_to_user_name(x_1); -if (lean_obj_tag(x_54) == 0) -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_55 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___closed__1; -x_56 = l_Lean_MessageData_ofConstName(x_1, x_16); -x_57 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_57, 0, x_55); -lean_ctor_set(x_57, 1, x_56); -x_58 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__1___closed__3; -if (lean_is_scalar(x_12)) { - x_59 = lean_alloc_ctor(7, 2, 0); -} else { - x_59 = x_12; - lean_ctor_set_tag(x_59, 7); -} -lean_ctor_set(x_59, 0, x_57); -lean_ctor_set(x_59, 1, x_58); -x_60 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_59, x_2, x_3, x_4, x_5, x_6, x_7, x_53); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_60; -} -else -{ -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_dec(x_1); -x_61 = lean_ctor_get(x_54, 0); -lean_inc(x_61); -lean_dec_ref(x_54); -x_62 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___closed__1; -x_63 = l_Lean_MessageData_ofConstName(x_61, x_16); -x_64 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_64, 0, x_62); -lean_ctor_set(x_64, 1, x_63); -x_65 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__1___closed__3; -if (lean_is_scalar(x_12)) { - x_66 = lean_alloc_ctor(7, 2, 0); -} else { - x_66 = x_12; - lean_ctor_set_tag(x_66, 7); -} -lean_ctor_set(x_66, 0, x_64); -lean_ctor_set(x_66, 1, x_65); -x_67 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_66, x_2, x_3, x_4, x_5, x_6, x_7, x_53); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_67; +lean_object* x_23; lean_object* x_24; lean_object* x_25; +lean_dec_ref(x_18); +x_23 = lean_box(x_19); +x_24 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__5___boxed), 10, 3); +lean_closure_set(x_24, 0, x_15); +lean_closure_set(x_24, 1, x_1); +lean_closure_set(x_24, 2, x_23); +x_25 = l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15___redArg(x_16, x_24, x_2, x_3, x_4, x_5, x_6, x_7, x_11); +return x_25; } } } -else -{ -lean_dec(x_12); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_37; -} -} -} -} -static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__0() { +static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__0() { _start: { lean_object* x_1; @@ -2876,7 +3277,7 @@ x_1 = lean_mk_string_unchecked("trace", 5, 5); return x_1; } } -static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__1() { +static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__1() { _start: { lean_object* x_1; @@ -2884,7 +3285,7 @@ x_1 = lean_mk_string_unchecked("Elab", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__2() { +static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__2() { _start: { lean_object* x_1; @@ -2892,7 +3293,7 @@ x_1 = lean_mk_string_unchecked("Tactic", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__3() { +static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__3() { _start: { lean_object* x_1; @@ -2900,7 +3301,7 @@ x_1 = lean_mk_string_unchecked("unsolvedGoals", 13, 13); return x_1; } } -static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__4() { +static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__4() { _start: { lean_object* x_1; @@ -2908,7 +3309,7 @@ x_1 = lean_mk_string_unchecked("synthPlaceholder", 16, 16); return x_1; } } -LEAN_EXPORT uint8_t l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0(uint8_t x_1, uint8_t x_2, lean_object* x_3) { +LEAN_EXPORT uint8_t l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0(uint8_t x_1, uint8_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 1) @@ -2920,7 +3321,7 @@ case 0: { lean_object* x_5; lean_object* x_6; uint8_t x_7; x_5 = lean_ctor_get(x_3, 1); -x_6 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__0; +x_6 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__0; x_7 = lean_string_dec_eq(x_5, x_6); if (x_7 == 0) { @@ -2940,12 +3341,12 @@ if (lean_obj_tag(x_8) == 0) lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; x_9 = lean_ctor_get(x_3, 1); x_10 = lean_ctor_get(x_4, 1); -x_11 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__1; +x_11 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__1; x_12 = lean_string_dec_eq(x_10, x_11); if (x_12 == 0) { lean_object* x_13; uint8_t x_14; -x_13 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__2; +x_13 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__2; x_14 = lean_string_dec_eq(x_10, x_13); if (x_14 == 0) { @@ -2954,7 +3355,7 @@ return x_1; else { lean_object* x_15; uint8_t x_16; -x_15 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__3; +x_15 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__3; x_16 = lean_string_dec_eq(x_9, x_15); if (x_16 == 0) { @@ -2969,7 +3370,7 @@ return x_2; else { lean_object* x_17; uint8_t x_18; -x_17 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__4; +x_17 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__4; x_18 = lean_string_dec_eq(x_9, x_17); if (x_18 == 0) { @@ -2998,7 +3399,7 @@ return x_1; } } } -static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___closed__0() { +static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0() { _start: { lean_object* x_1; @@ -3006,7 +3407,7 @@ x_1 = lean_mk_string_unchecked("", 0, 0); return x_1; } } -static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___closed__1() { +static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__1() { _start: { lean_object* x_1; @@ -3014,10 +3415,10 @@ x_1 = l_Lean_warningAsError; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t 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_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; uint8_t x_85; uint8_t x_86; uint8_t x_87; lean_object* x_88; lean_object* x_110; lean_object* x_111; lean_object* x_112; uint8_t x_113; uint8_t x_114; uint8_t x_115; lean_object* x_116; lean_object* x_117; lean_object* x_121; lean_object* x_122; lean_object* x_123; uint8_t x_124; uint8_t x_125; lean_object* x_126; uint8_t x_127; uint8_t x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; uint8_t x_137; lean_object* x_138; uint8_t x_139; uint8_t x_140; uint8_t x_142; uint8_t x_158; +lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_81; lean_object* x_82; uint8_t x_83; lean_object* x_84; lean_object* x_85; uint8_t x_86; uint8_t x_87; lean_object* x_88; lean_object* x_110; lean_object* x_111; lean_object* x_112; uint8_t x_113; lean_object* x_114; uint8_t x_115; uint8_t x_116; lean_object* x_117; lean_object* x_121; lean_object* x_122; uint8_t x_123; lean_object* x_124; lean_object* x_125; uint8_t x_126; uint8_t x_127; uint8_t x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; uint8_t x_138; uint8_t x_139; uint8_t x_140; uint8_t x_142; uint8_t x_158; x_133 = 2; x_158 = l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(x_3, x_133); if (x_158 == 0) @@ -3057,15 +3458,15 @@ lean_ctor_set(x_20, 1, x_25); lean_ctor_set(x_20, 0, x_24); x_28 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_28, 0, x_20); -lean_ctor_set(x_28, 1, x_11); +lean_ctor_set(x_28, 1, x_16); x_29 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_29, 0, x_10); +lean_ctor_set(x_29, 0, x_11); lean_ctor_set(x_29, 1, x_13); -lean_ctor_set(x_29, 2, x_12); -lean_ctor_set(x_29, 3, x_14); +lean_ctor_set(x_29, 2, x_14); +lean_ctor_set(x_29, 3, x_10); lean_ctor_set(x_29, 4, x_28); -lean_ctor_set_uint8(x_29, sizeof(void*)*5, x_15); -lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 1, x_16); +lean_ctor_set_uint8(x_29, sizeof(void*)*5, x_12); +lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 1, x_15); lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 2, x_4); x_30 = l_Lean_MessageLog_add(x_29, x_27); lean_ctor_set(x_22, 6, x_30); @@ -3119,15 +3520,15 @@ lean_ctor_set(x_20, 1, x_25); lean_ctor_set(x_20, 0, x_24); x_47 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_47, 0, x_20); -lean_ctor_set(x_47, 1, x_11); +lean_ctor_set(x_47, 1, x_16); x_48 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_48, 0, x_10); +lean_ctor_set(x_48, 0, x_11); lean_ctor_set(x_48, 1, x_13); -lean_ctor_set(x_48, 2, x_12); -lean_ctor_set(x_48, 3, x_14); +lean_ctor_set(x_48, 2, x_14); +lean_ctor_set(x_48, 3, x_10); lean_ctor_set(x_48, 4, x_47); -lean_ctor_set_uint8(x_48, sizeof(void*)*5, x_15); -lean_ctor_set_uint8(x_48, sizeof(void*)*5 + 1, x_16); +lean_ctor_set_uint8(x_48, sizeof(void*)*5, x_12); +lean_ctor_set_uint8(x_48, sizeof(void*)*5 + 1, x_15); lean_ctor_set_uint8(x_48, sizeof(void*)*5 + 2, x_4); x_49 = l_Lean_MessageLog_add(x_48, x_44); x_50 = lean_alloc_ctor(0, 9, 0); @@ -3213,15 +3614,15 @@ lean_ctor_set(x_70, 0, x_58); lean_ctor_set(x_70, 1, x_59); x_71 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_71, 0, x_70); -lean_ctor_set(x_71, 1, x_11); +lean_ctor_set(x_71, 1, x_16); x_72 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_72, 0, x_10); +lean_ctor_set(x_72, 0, x_11); lean_ctor_set(x_72, 1, x_13); -lean_ctor_set(x_72, 2, x_12); -lean_ctor_set(x_72, 3, x_14); +lean_ctor_set(x_72, 2, x_14); +lean_ctor_set(x_72, 3, x_10); lean_ctor_set(x_72, 4, x_71); -lean_ctor_set_uint8(x_72, sizeof(void*)*5, x_15); -lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 1, x_16); +lean_ctor_set_uint8(x_72, sizeof(void*)*5, x_12); +lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 1, x_15); lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 2, x_4); x_73 = l_Lean_MessageLog_add(x_72, x_66); if (lean_is_scalar(x_69)) { @@ -3271,25 +3672,25 @@ if (x_91 == 0) lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; x_92 = lean_ctor_get(x_90, 0); x_93 = lean_ctor_get(x_90, 1); -lean_inc_ref(x_83); -x_94 = l_Lean_FileMap_toPosition(x_83, x_84); -lean_dec(x_84); -x_95 = l_Lean_FileMap_toPosition(x_83, x_88); +lean_inc_ref(x_84); +x_94 = l_Lean_FileMap_toPosition(x_84, x_85); +lean_dec(x_85); +x_95 = l_Lean_FileMap_toPosition(x_84, x_88); lean_dec(x_88); x_96 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_96, 0, x_95); -x_97 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___closed__0; -if (x_85 == 0) +x_97 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0; +if (x_87 == 0) { lean_free_object(x_90); lean_dec_ref(x_81); -x_10 = x_82; -x_11 = x_92; -x_12 = x_96; +x_10 = x_97; +x_11 = x_82; +x_12 = x_83; x_13 = x_94; -x_14 = x_97; +x_14 = x_96; x_15 = x_86; -x_16 = x_87; +x_16 = x_92; x_17 = x_7; x_18 = x_8; x_19 = x_93; @@ -3315,13 +3716,13 @@ return x_90; else { lean_free_object(x_90); -x_10 = x_82; -x_11 = x_92; -x_12 = x_96; +x_10 = x_97; +x_11 = x_82; +x_12 = x_83; x_13 = x_94; -x_14 = x_97; +x_14 = x_96; x_15 = x_86; -x_16 = x_87; +x_16 = x_92; x_17 = x_7; x_18 = x_8; x_19 = x_93; @@ -3337,24 +3738,24 @@ x_101 = lean_ctor_get(x_90, 1); lean_inc(x_101); lean_inc(x_100); lean_dec(x_90); -lean_inc_ref(x_83); -x_102 = l_Lean_FileMap_toPosition(x_83, x_84); -lean_dec(x_84); -x_103 = l_Lean_FileMap_toPosition(x_83, x_88); +lean_inc_ref(x_84); +x_102 = l_Lean_FileMap_toPosition(x_84, x_85); +lean_dec(x_85); +x_103 = l_Lean_FileMap_toPosition(x_84, x_88); lean_dec(x_88); x_104 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_104, 0, x_103); -x_105 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___closed__0; -if (x_85 == 0) +x_105 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0; +if (x_87 == 0) { lean_dec_ref(x_81); -x_10 = x_82; -x_11 = x_100; -x_12 = x_104; +x_10 = x_105; +x_11 = x_82; +x_12 = x_83; x_13 = x_102; -x_14 = x_105; +x_14 = x_104; x_15 = x_86; -x_16 = x_87; +x_16 = x_100; x_17 = x_7; x_18 = x_8; x_19 = x_101; @@ -3381,13 +3782,13 @@ return x_108; } else { -x_10 = x_82; -x_11 = x_100; -x_12 = x_104; +x_10 = x_105; +x_11 = x_82; +x_12 = x_83; x_13 = x_102; -x_14 = x_105; +x_14 = x_104; x_15 = x_86; -x_16 = x_87; +x_16 = x_100; x_17 = x_7; x_18 = x_8; x_19 = x_101; @@ -3399,18 +3800,18 @@ goto block_80; block_120: { lean_object* x_118; -x_118 = l_Lean_Syntax_getTailPos_x3f(x_116, x_113); -lean_dec(x_116); +x_118 = l_Lean_Syntax_getTailPos_x3f(x_112, x_113); +lean_dec(x_112); if (lean_obj_tag(x_118) == 0) { lean_inc(x_117); x_81 = x_110; -x_82 = x_112; -x_83 = x_111; -x_84 = x_117; -x_85 = x_114; -x_86 = x_113; -x_87 = x_115; +x_82 = x_111; +x_83 = x_113; +x_84 = x_114; +x_85 = x_117; +x_86 = x_115; +x_87 = x_116; x_88 = x_117; goto block_109; } @@ -3421,12 +3822,12 @@ x_119 = lean_ctor_get(x_118, 0); lean_inc(x_119); lean_dec_ref(x_118); x_81 = x_110; -x_82 = x_112; -x_83 = x_111; -x_84 = x_117; -x_85 = x_114; -x_86 = x_113; -x_87 = x_115; +x_82 = x_111; +x_83 = x_113; +x_84 = x_114; +x_85 = x_117; +x_86 = x_115; +x_87 = x_116; x_88 = x_119; goto block_109; } @@ -3434,20 +3835,20 @@ goto block_109; block_132: { lean_object* x_128; lean_object* x_129; -x_128 = l_Lean_replaceRef(x_1, x_126); -lean_dec(x_126); -x_129 = l_Lean_Syntax_getPos_x3f(x_128, x_125); +x_128 = l_Lean_replaceRef(x_1, x_124); +lean_dec(x_124); +x_129 = l_Lean_Syntax_getPos_x3f(x_128, x_123); if (lean_obj_tag(x_129) == 0) { lean_object* x_130; x_130 = lean_unsigned_to_nat(0u); x_110 = x_121; -x_111 = x_123; -x_112 = x_122; -x_113 = x_125; -x_114 = x_124; +x_111 = x_122; +x_112 = x_128; +x_113 = x_123; +x_114 = x_125; x_115 = x_127; -x_116 = x_128; +x_116 = x_126; x_117 = x_130; goto block_120; } @@ -3458,12 +3859,12 @@ x_131 = lean_ctor_get(x_129, 0); lean_inc(x_131); lean_dec_ref(x_129); x_110 = x_121; -x_111 = x_123; -x_112 = x_122; -x_113 = x_125; -x_114 = x_124; +x_111 = x_122; +x_112 = x_128; +x_113 = x_123; +x_114 = x_125; x_115 = x_127; -x_116 = x_128; +x_116 = x_126; x_117 = x_131; goto block_120; } @@ -3473,10 +3874,10 @@ block_141: if (x_140 == 0) { x_121 = x_136; -x_122 = x_135; -x_123 = x_134; -x_124 = x_137; -x_125 = x_139; +x_122 = x_134; +x_123 = x_139; +x_124 = x_135; +x_125 = x_137; x_126 = x_138; x_127 = x_3; goto block_132; @@ -3484,10 +3885,10 @@ goto block_132; else { x_121 = x_136; -x_122 = x_135; -x_123 = x_134; -x_124 = x_137; -x_125 = x_139; +x_122 = x_134; +x_123 = x_139; +x_124 = x_135; +x_125 = x_137; x_126 = x_138; x_127 = x_133; goto block_132; @@ -3509,7 +3910,7 @@ lean_inc(x_146); x_147 = lean_ctor_get_uint8(x_7, sizeof(void*)*13 + 1); x_148 = lean_box(x_142); x_149 = lean_box(x_147); -x_150 = lean_alloc_closure((void*)(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___boxed), 3, 2); +x_150 = lean_alloc_closure((void*)(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___boxed), 3, 2); lean_closure_set(x_150, 0, x_148); lean_closure_set(x_150, 1, x_149); x_151 = 1; @@ -3517,11 +3918,11 @@ x_152 = l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(x_3, x_151); if (x_152 == 0) { lean_dec(x_145); -x_134 = x_144; -x_135 = x_143; +x_134 = x_143; +x_135 = x_146; x_136 = x_150; -x_137 = x_147; -x_138 = x_146; +x_137 = x_144; +x_138 = x_147; x_139 = x_142; x_140 = x_152; goto block_141; @@ -3529,14 +3930,14 @@ goto block_141; else { lean_object* x_153; uint8_t x_154; -x_153 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___closed__1; +x_153 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__1; x_154 = l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2_spec__2(x_145, x_153); lean_dec(x_145); -x_134 = x_144; -x_135 = x_143; +x_134 = x_143; +x_135 = x_146; x_136 = x_150; -x_137 = x_147; -x_138 = x_146; +x_137 = x_144; +x_138 = x_147; x_139 = x_142; x_140 = x_154; goto block_141; @@ -3556,46 +3957,46 @@ return x_156; } } } -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t 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_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg(x_1, x_2, x_3, x_4, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg(x_1, x_2, x_3, x_4, x_7, x_8, x_9, x_10, x_11); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18(lean_object* x_1, uint8_t 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_object* x_12; x_11 = lean_ctor_get(x_8, 5); lean_inc(x_11); -x_12 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg(x_11, x_1, x_2, x_3, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg(x_11, x_1, x_2, x_3, x_6, x_7, x_8, x_9, x_10); lean_dec(x_11); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16(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_EXPORT lean_object* l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18(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: { uint8_t x_9; uint8_t x_10; lean_object* x_11; x_9 = 2; x_10 = 0; -x_11 = l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16(x_1, x_9, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_11 = l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18(x_1, x_9, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__19(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_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__21(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_10; uint8_t x_11; lean_object* x_12; x_10 = 2; x_11 = 0; -x_12 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg(x_1, x_2, x_10, x_11, x_5, x_6, x_7, x_8, x_9); +x_12 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg(x_1, x_2, x_10, x_11, x_5, x_6, x_7, x_8, x_9); return x_12; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__20(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t 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_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__22(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t 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) { _start: { lean_object* x_15; lean_object* x_16; uint8_t x_21; @@ -3626,7 +4027,7 @@ x_26 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_26, 0, x_25); x_27 = l_Lean_MessageData_ofFormat(x_26); lean_inc_ref(x_12); -x_28 = l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16(x_27, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_28 = l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18(x_27, x_8, x_9, x_10, x_11, x_12, x_13, x_14); x_29 = lean_ctor_get(x_28, 1); lean_inc(x_29); lean_dec_ref(x_28); @@ -3664,7 +4065,7 @@ x_40 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_40, 0, x_30); x_41 = l_Lean_MessageData_ofFormat(x_40); lean_inc_ref(x_12); -x_42 = l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__19(x_24, x_41, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_42 = l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__21(x_24, x_41, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec_ref(x_24); x_43 = lean_ctor_get(x_42, 1); lean_inc(x_43); @@ -3699,7 +4100,7 @@ x_53 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_53, 0, x_30); x_54 = l_Lean_MessageData_ofFormat(x_53); lean_inc_ref(x_12); -x_55 = l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__19(x_52, x_54, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_55 = l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__21(x_52, x_54, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec_ref(x_52); x_56 = lean_ctor_get(x_55, 1); lean_inc(x_56); @@ -3722,7 +4123,7 @@ goto _start; } } } -LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16(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_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18(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; lean_object* x_10; lean_object* x_24; lean_object* x_25; lean_object* x_26; @@ -3766,7 +4167,7 @@ lean_dec(x_12); x_15 = lean_box(0); x_16 = lean_array_size(x_14); x_17 = 0; -x_18 = l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__20(x_10, x_15, x_9, x_14, x_16, x_17, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_13); +x_18 = l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__22(x_10, x_15, x_9, x_14, x_16, x_17, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_13); lean_dec(x_14); lean_dec_ref(x_9); lean_dec(x_10); @@ -3793,7 +4194,7 @@ return x_22; } } } -static lean_object* _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22___closed__0() { +static lean_object* _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24___closed__0() { _start: { lean_object* x_1; @@ -3801,25 +4202,25 @@ x_1 = lean_mk_string_unchecked("unexpected doc string", 21, 21); return x_1; } } -static lean_object* _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22___closed__1() { +static lean_object* _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22___closed__0; +x_1 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22___closed__2() { +static lean_object* _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___closed__0; +x_1 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22(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_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24(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; lean_object* x_10; @@ -3873,13 +4274,13 @@ return x_25; 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 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22___closed__1; +x_26 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24___closed__1; x_27 = l_Lean_MessageData_ofSyntax(x_10); x_28 = l_Lean_indentD(x_27); x_29 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_29, 0, x_26); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22___closed__2; +x_30 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24___closed__2; x_31 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_31, 0, x_29); lean_ctor_set(x_31, 1, x_30); @@ -3888,7 +4289,7 @@ return x_32; } } } -static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__0() { +static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___lam__0___closed__0() { _start: { lean_object* x_1; @@ -3896,103 +4297,16 @@ x_1 = l_Lean_docStringExt; return x_1; } } -static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); -return x_1; -} -} -static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__1; -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_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__2; -x_2 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2, 0, x_1); -lean_ctor_set(x_2, 1, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__1; -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_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__1; -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_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__1; -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_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__1; -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_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__7; -x_2 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__6; -x_3 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__5; -x_4 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__4; -x_5 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_5, 0, x_4); -lean_ctor_set(x_5, 1, x_3); -lean_ctor_set(x_5, 2, x_2); -lean_ctor_set(x_5, 3, x_4); -lean_ctor_set(x_5, 4, x_1); -lean_ctor_set(x_5, 5, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0(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_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_inc_ref(x_8); -x_11 = l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10); x_12 = lean_ctor_get(x_11, 1); lean_inc(x_12); lean_dec_ref(x_11); -x_13 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_12); +x_13 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; @@ -4014,10 +4328,10 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean x_20 = lean_ctor_get(x_17, 0); x_21 = lean_ctor_get(x_17, 5); lean_dec(x_21); -x_22 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__0; +x_22 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___lam__0___closed__0; x_23 = l_String_removeLeadingSpaces(x_14); x_24 = l_Lean_MapDeclarationExtension_insert___redArg(x_22, x_20, x_2, x_23); -x_25 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__3; +x_25 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__2; lean_ctor_set(x_17, 5, x_25); lean_ctor_set(x_17, 0, x_24); x_26 = lean_st_ref_set(x_9, x_17, x_18); @@ -4036,7 +4350,7 @@ if (x_31 == 0) lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; x_32 = lean_ctor_get(x_29, 1); lean_dec(x_32); -x_33 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__8; +x_33 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__7; lean_ctor_set(x_29, 1, x_33); x_34 = lean_st_ref_set(x_7, x_29, x_30); x_35 = !lean_is_exclusive(x_34); @@ -4074,7 +4388,7 @@ lean_inc(x_43); lean_inc(x_42); lean_inc(x_41); lean_dec(x_29); -x_45 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__8; +x_45 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__7; x_46 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_46, 0, x_41); lean_ctor_set(x_46, 1, x_45); @@ -4123,10 +4437,10 @@ lean_inc(x_54); lean_inc(x_53); lean_inc(x_52); lean_dec(x_17); -x_60 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__0; +x_60 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___lam__0___closed__0; x_61 = l_String_removeLeadingSpaces(x_14); x_62 = l_Lean_MapDeclarationExtension_insert___redArg(x_60, x_52, x_2, x_61); -x_63 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__3; +x_63 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__2; x_64 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_64, 0, x_62); lean_ctor_set(x_64, 1, x_53); @@ -4166,7 +4480,7 @@ if (lean_is_exclusive(x_68)) { lean_dec_ref(x_68); x_74 = lean_box(0); } -x_75 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__8; +x_75 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_74)) { x_76 = lean_alloc_ctor(0, 5, 0); } else { @@ -4224,7 +4538,7 @@ return x_85; } } } -static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___closed__0() { +static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___closed__0() { _start: { lean_object* x_1; @@ -4232,7 +4546,7 @@ x_1 = lean_mk_string_unchecked("invalid doc string, declaration '", 33, 33); return x_1; } } -static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___closed__1() { +static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___closed__1() { _start: { lean_object* x_1; @@ -4240,7 +4554,7 @@ x_1 = lean_mk_string_unchecked("' is in an imported module", 26, 26); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16(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_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18(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_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -4259,7 +4573,7 @@ if (lean_obj_tag(x_14) == 0) { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0(x_2, x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_12); +x_16 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___lam__0(x_2, x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_12); return x_16; } else @@ -4271,12 +4585,12 @@ if (x_17 == 0) 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; x_18 = lean_ctor_get(x_14, 0); lean_dec(x_18); -x_19 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___closed__0; +x_19 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___closed__0; x_20 = 1; x_21 = l_Lean_Name_toStringWithToken___at___Lean_Name_toString_spec__0(x_1, x_20); x_22 = lean_string_append(x_19, x_21); lean_dec_ref(x_21); -x_23 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___closed__1; +x_23 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___closed__1; x_24 = lean_string_append(x_22, x_23); lean_ctor_set_tag(x_14, 3); lean_ctor_set(x_14, 0, x_24); @@ -4289,12 +4603,12 @@ else { 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; lean_dec(x_14); -x_27 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___closed__0; +x_27 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___closed__0; x_28 = 1; x_29 = l_Lean_Name_toStringWithToken___at___Lean_Name_toString_spec__0(x_1, x_28); x_30 = lean_string_append(x_27, x_29); lean_dec_ref(x_29); -x_31 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___closed__1; +x_31 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___closed__1; x_32 = lean_string_append(x_30, x_31); x_33 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_33, 0, x_32); @@ -4306,7 +4620,7 @@ return x_35; } } } -LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16(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_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18(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: { if (lean_obj_tag(x_2) == 0) @@ -4325,12 +4639,12 @@ else { lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_2, 0); -x_13 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_13 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_13; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__25___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__27___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; @@ -4427,15 +4741,15 @@ return x_26; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__25(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_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__27(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__25___redArg(x_1, x_6, x_8); +x_9 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__27___redArg(x_1, x_6, x_8); return x_9; } } -static lean_object* _init_l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__26___redArg___closed__0() { +static lean_object* _init_l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__28___redArg___closed__0() { _start: { lean_object* x_1; @@ -4443,7 +4757,7 @@ x_1 = l_Lean_declRangeExt; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__26___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__28___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; @@ -4464,9 +4778,9 @@ lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean x_11 = lean_ctor_get(x_8, 0); x_12 = lean_ctor_get(x_8, 5); lean_dec(x_12); -x_13 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__26___redArg___closed__0; +x_13 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__28___redArg___closed__0; x_14 = l_Lean_MapDeclarationExtension_insert___redArg(x_13, x_11, x_1, x_2); -x_15 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__3; +x_15 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__2; lean_ctor_set(x_8, 5, x_15); lean_ctor_set(x_8, 0, x_14); x_16 = lean_st_ref_set(x_4, x_8, x_9); @@ -4485,7 +4799,7 @@ if (x_21 == 0) lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; x_22 = lean_ctor_get(x_19, 1); lean_dec(x_22); -x_23 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__8; +x_23 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__7; lean_ctor_set(x_19, 1, x_23); x_24 = lean_st_ref_set(x_3, x_19, x_20); x_25 = !lean_is_exclusive(x_24); @@ -4523,7 +4837,7 @@ lean_inc(x_33); lean_inc(x_32); lean_inc(x_31); lean_dec(x_19); -x_35 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__8; +x_35 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__7; x_36 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); @@ -4572,9 +4886,9 @@ lean_inc(x_44); lean_inc(x_43); lean_inc(x_42); lean_dec(x_8); -x_50 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__26___redArg___closed__0; +x_50 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__28___redArg___closed__0; x_51 = l_Lean_MapDeclarationExtension_insert___redArg(x_50, x_42, x_1, x_2); -x_52 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__3; +x_52 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__2; x_53 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_53, 0, x_51); lean_ctor_set(x_53, 1, x_43); @@ -4614,7 +4928,7 @@ if (lean_is_exclusive(x_57)) { lean_dec_ref(x_57); x_63 = lean_box(0); } -x_64 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__8; +x_64 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_63)) { x_65 = lean_alloc_ctor(0, 5, 0); } else { @@ -4660,20 +4974,20 @@ return x_72; } } } -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__26(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_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__28(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_10; -x_10 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__26___redArg(x_1, x_2, x_6, x_8, x_9); +x_10 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__28___redArg(x_1, x_2, x_6, x_8, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25(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_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; lean_object* x_12; lean_inc_ref(x_8); -x_11 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__25___redArg(x_2, x_8, x_10); +x_11 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__27___redArg(x_2, x_8, x_10); x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); if (lean_obj_tag(x_12) == 0) @@ -4713,7 +5027,7 @@ lean_dec_ref(x_11); x_20 = lean_ctor_get(x_12, 0); lean_inc(x_20); lean_dec_ref(x_12); -x_21 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__25___redArg(x_3, x_8, x_19); +x_21 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__27___redArg(x_3, x_8, x_19); x_22 = lean_ctor_get(x_21, 0); lean_inc(x_22); x_23 = lean_ctor_get(x_21, 1); @@ -4751,13 +5065,13 @@ if (lean_is_scalar(x_24)) { } lean_ctor_set(x_26, 0, x_20); lean_ctor_set(x_26, 1, x_25); -x_27 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__26___redArg(x_1, x_26, x_7, x_9, x_23); +x_27 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__28___redArg(x_1, x_26, x_7, x_9, x_23); return x_27; } } } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__0(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_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__0(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; @@ -4767,7 +5081,7 @@ lean_ctor_set(x_9, 1, x_8); return x_9; } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1___closed__0() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1___closed__0() { _start: { lean_object* x_1; @@ -4775,7 +5089,7 @@ x_1 = lean_mk_string_unchecked("decreasingBy", 12, 12); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1___closed__1() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1___closed__1() { _start: { lean_object* x_1; @@ -4783,16 +5097,16 @@ x_1 = lean_mk_string_unchecked("unexpected `decreasing_by` syntax", 33, 33); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1___closed__2() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1___closed__1; +x_1 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1___closed__1; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_24; @@ -4859,7 +5173,7 @@ lean_object* x_47; lean_object* x_48; lean_object* x_49; uint8_t x_50; x_47 = lean_ctor_get(x_1, 0); lean_inc(x_47); lean_dec_ref(x_1); -x_48 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1___closed__0; +x_48 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1___closed__0; x_49 = l_Lean_Name_mkStr4(x_6, x_7, x_8, x_48); lean_inc(x_47); x_50 = l_Lean_Syntax_isOfKind(x_47, x_49); @@ -4867,7 +5181,7 @@ lean_dec(x_49); if (x_50 == 0) { lean_object* x_51; lean_object* x_52; -x_51 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1___closed__2; +x_51 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1___closed__2; x_52 = lean_alloc_closure((void*)(l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___boxed), 10, 3); lean_closure_set(x_52, 0, lean_box(0)); lean_closure_set(x_52, 1, x_47); @@ -4882,7 +5196,7 @@ x_53 = l_Lean_Syntax_getArg(x_47, x_9); x_54 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_54, 0, x_47); lean_ctor_set(x_54, 1, x_53); -x_55 = lean_alloc_closure((void*)(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__0___boxed), 8, 1); +x_55 = lean_alloc_closure((void*)(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__0___boxed), 8, 1); lean_closure_set(x_55, 0, x_54); x_24 = x_55; goto block_37; @@ -4982,7 +5296,7 @@ return x_36; } } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___closed__0() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___closed__0() { _start: { lean_object* x_1; @@ -4990,7 +5304,7 @@ x_1 = lean_mk_string_unchecked("partialFixpoint", 15, 15); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___closed__1() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___closed__1() { _start: { lean_object* x_1; @@ -4998,7 +5312,7 @@ x_1 = lean_mk_string_unchecked("coinductiveFixpoint", 19, 19); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___closed__2() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___closed__2() { _start: { lean_object* x_1; @@ -5006,14 +5320,14 @@ x_1 = lean_mk_string_unchecked("inductiveFixpoint", 17, 17); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { if (lean_obj_tag(x_9) == 0) { lean_object* x_18; lean_object* x_19; x_18 = lean_box(0); -x_19 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1(x_1, x_2, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_19 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1(x_1, x_2, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_19; } else @@ -5028,7 +5342,7 @@ if (lean_is_exclusive(x_9)) { lean_dec_ref(x_9); x_21 = lean_box(0); } -x_40 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___closed__0; +x_40 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___closed__0; lean_inc_ref(x_7); lean_inc_ref(x_6); lean_inc_ref(x_5); @@ -5040,7 +5354,7 @@ if (x_42 == 0) { lean_object* x_43; lean_object* x_44; uint8_t x_45; lean_dec(x_21); -x_43 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___closed__1; +x_43 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___closed__1; lean_inc_ref(x_7); lean_inc_ref(x_6); lean_inc_ref(x_5); @@ -5051,7 +5365,7 @@ lean_dec(x_44); if (x_45 == 0) { lean_object* x_46; lean_object* x_47; uint8_t x_48; -x_46 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___closed__2; +x_46 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___closed__2; lean_inc_ref(x_7); lean_inc_ref(x_6); lean_inc_ref(x_5); @@ -5064,7 +5378,7 @@ if (x_48 == 0) lean_object* x_49; lean_object* x_50; lean_dec(x_20); x_49 = lean_box(0); -x_50 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1(x_1, x_2, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_49, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_50 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1(x_1, x_2, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_49, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_50; } else @@ -5084,7 +5398,7 @@ lean_object* x_55; lean_object* x_56; lean_dec(x_51); lean_dec(x_20); x_55 = lean_box(0); -x_56 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1(x_1, x_2, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_55, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_56 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1(x_1, x_2, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_55, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_56; } else @@ -5125,7 +5439,7 @@ lean_object* x_64; lean_object* x_65; lean_dec(x_60); lean_dec(x_20); x_64 = lean_box(0); -x_65 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1(x_1, x_2, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_64, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_65 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1(x_1, x_2, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_64, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_65; } else @@ -5167,7 +5481,7 @@ lean_dec(x_69); lean_dec(x_21); lean_dec(x_20); x_73 = lean_box(0); -x_74 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1(x_1, x_2, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_73, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_74 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1(x_1, x_2, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_73, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_74; } else @@ -5204,7 +5518,7 @@ if (lean_is_scalar(x_21)) { x_25 = x_21; } lean_ctor_set(x_25, 0, x_24); -x_26 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1(x_1, x_2, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_25, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_26 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1(x_1, x_2, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_25, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_26; } block_33: @@ -5217,7 +5531,7 @@ lean_ctor_set(x_30, 1, x_28); lean_ctor_set_uint8(x_30, sizeof(void*)*2, x_29); x_31 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_31, 0, x_30); -x_32 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1(x_1, x_2, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_31, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_32 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1(x_1, x_2, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_31, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_32; } block_39: @@ -5230,13 +5544,13 @@ lean_ctor_set(x_36, 1, x_34); lean_ctor_set_uint8(x_36, sizeof(void*)*2, x_35); x_37 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_37, 0, x_36); -x_38 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1(x_1, x_2, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_37, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_38 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1(x_1, x_2, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_37, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_38; } } } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__0() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__0() { _start: { lean_object* x_1; @@ -5244,16 +5558,16 @@ x_1 = lean_mk_string_unchecked("unexpected `termination_by` syntax", 34, 34); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__1() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__0; +x_1 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__2() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__2() { _start: { lean_object* x_1; @@ -5261,16 +5575,16 @@ x_1 = lean_mk_string_unchecked("no extra parameters bounds, please omit the `=>` return x_1; } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__3() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__2; +x_1 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__2; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__4() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__4() { _start: { lean_object* x_1; @@ -5278,7 +5592,7 @@ x_1 = lean_mk_string_unchecked("terminationBy", 13, 13); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__5() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__5() { _start: { lean_object* x_1; @@ -5286,22 +5600,22 @@ x_1 = lean_mk_string_unchecked("terminationBy\?", 14, 14); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { if (lean_obj_tag(x_8) == 0) { lean_object* x_26; lean_object* x_27; x_26 = lean_box(0); -x_27 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2(x_1, x_2, x_3, x_9, x_4, x_5, x_6, x_7, x_8, x_26, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_27 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2(x_1, x_2, x_3, x_9, x_4, x_5, x_6, x_7, x_8, x_26, x_10, x_11, x_12, x_13, x_14, x_15, x_16); return x_27; } else { -lean_object* x_28; lean_object* x_29; uint8_t x_30; uint8_t x_31; lean_object* x_37; lean_object* x_38; uint8_t x_39; uint8_t x_40; lean_object* x_45; lean_object* x_70; lean_object* x_71; uint8_t x_72; +lean_object* x_28; lean_object* x_29; uint8_t x_30; uint8_t x_31; lean_object* x_37; uint8_t x_38; lean_object* x_39; uint8_t x_40; lean_object* x_45; lean_object* x_70; lean_object* x_71; uint8_t x_72; x_28 = lean_ctor_get(x_8, 0); lean_inc(x_28); -x_70 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__4; +x_70 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__4; lean_inc_ref(x_6); lean_inc_ref(x_5); lean_inc_ref(x_4); @@ -5312,7 +5626,7 @@ lean_dec(x_71); if (x_72 == 0) { lean_object* x_73; lean_object* x_74; uint8_t x_75; -x_73 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__5; +x_73 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__5; lean_inc_ref(x_6); lean_inc_ref(x_5); lean_inc_ref(x_4); @@ -5323,7 +5637,7 @@ lean_dec(x_74); if (x_75 == 0) { lean_object* x_76; lean_object* x_77; uint8_t x_78; -x_76 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___closed__0; +x_76 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___closed__0; lean_inc_ref(x_6); lean_inc_ref(x_5); lean_inc_ref(x_4); @@ -5334,7 +5648,7 @@ lean_dec(x_77); if (x_78 == 0) { lean_object* x_79; lean_object* x_80; uint8_t x_81; -x_79 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___closed__1; +x_79 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___closed__1; lean_inc_ref(x_6); lean_inc_ref(x_5); lean_inc_ref(x_4); @@ -5345,7 +5659,7 @@ lean_dec(x_80); if (x_81 == 0) { lean_object* x_82; lean_object* x_83; uint8_t x_84; -x_82 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___closed__2; +x_82 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___closed__2; lean_inc_ref(x_6); lean_inc_ref(x_5); lean_inc_ref(x_4); @@ -5364,7 +5678,7 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_85 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__1; +x_85 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__1; x_86 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg(x_28, x_85, x_10, x_11, x_12, x_13, x_14, x_15, x_16); lean_dec(x_15); lean_dec(x_13); @@ -5411,7 +5725,7 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_95 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__1; +x_95 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__1; x_96 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg(x_28, x_95, x_10, x_11, x_12, x_13, x_14, x_15, x_16); lean_dec(x_15); lean_dec(x_13); @@ -5472,7 +5786,7 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_105 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__1; +x_105 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__1; x_106 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg(x_28, x_105, x_10, x_11, x_12, x_13, x_14, x_15, x_16); lean_dec(x_15); lean_dec(x_13); @@ -5533,7 +5847,7 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_115 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__1; +x_115 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__1; x_116 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg(x_28, x_115, x_10, x_11, x_12, x_13, x_14, x_15, x_16); lean_dec(x_15); lean_dec(x_13); @@ -5578,7 +5892,7 @@ else lean_object* x_121; lean_object* x_122; lean_dec(x_28); x_121 = lean_box(0); -x_122 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2(x_1, x_2, x_3, x_9, x_4, x_5, x_6, x_7, x_8, x_121, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_122 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2(x_1, x_2, x_3, x_9, x_4, x_5, x_6, x_7, x_8, x_121, x_10, x_11, x_12, x_13, x_14, x_15, x_16); return x_122; } } @@ -5604,7 +5918,7 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_126 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__1; +x_126 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__1; x_127 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg(x_28, x_126, x_10, x_11, x_12, x_13, x_14, x_15, x_16); lean_dec(x_15); lean_dec(x_13); @@ -5662,7 +5976,7 @@ lean_ctor_set_uint8(x_33, sizeof(void*)*3, x_31); lean_ctor_set_uint8(x_33, sizeof(void*)*3 + 1, x_30); x_34 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_34, 0, x_33); -x_35 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2(x_1, x_2, x_3, x_9, x_4, x_5, x_6, x_7, x_8, x_34, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_35 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2(x_1, x_2, x_3, x_9, x_4, x_5, x_6, x_7, x_8, x_34, x_10, x_11, x_12, x_13, x_14, x_15, x_16); return x_35; } block_44: @@ -5671,12 +5985,12 @@ lean_object* x_41; lean_object* x_42; lean_object* x_43; x_41 = lean_alloc_ctor(0, 3, 2); lean_ctor_set(x_41, 0, x_28); lean_ctor_set(x_41, 1, x_37); -lean_ctor_set(x_41, 2, x_38); +lean_ctor_set(x_41, 2, x_39); lean_ctor_set_uint8(x_41, sizeof(void*)*3, x_40); -lean_ctor_set_uint8(x_41, sizeof(void*)*3 + 1, x_39); +lean_ctor_set_uint8(x_41, sizeof(void*)*3 + 1, x_38); x_42 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_42, 0, x_41); -x_43 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2(x_1, x_2, x_3, x_9, x_4, x_5, x_6, x_7, x_8, x_42, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_43 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2(x_1, x_2, x_3, x_9, x_4, x_5, x_6, x_7, x_8, x_42, x_10, x_11, x_12, x_13, x_14, x_15, x_16); return x_43; } block_69: @@ -5702,7 +6016,7 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_50 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__1; +x_50 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__1; x_51 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg(x_28, x_50, x_10, x_11, x_12, x_13, x_14, x_15, x_16); lean_dec(x_15); lean_dec(x_13); @@ -5767,8 +6081,8 @@ lean_dec(x_58); if (lean_obj_tag(x_45) == 0) { x_37 = x_62; -x_38 = x_61; -x_39 = x_59; +x_38 = x_59; +x_39 = x_61; x_40 = x_59; goto block_44; } @@ -5776,8 +6090,8 @@ else { lean_dec_ref(x_45); x_37 = x_62; -x_38 = x_61; -x_39 = x_59; +x_38 = x_59; +x_39 = x_61; x_40 = x_48; goto block_44; } @@ -5795,7 +6109,7 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_63 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__3; +x_63 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__3; x_64 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg(x_28, x_63, x_10, x_11, x_12, x_13, x_14, x_15, x_16); lean_dec(x_15); lean_dec(x_13); @@ -5828,26 +6142,26 @@ block_19: { lean_object* x_17; lean_object* x_18; x_17 = lean_box(0); -x_18 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2(x_1, x_2, x_3, x_9, x_4, x_5, x_6, x_7, x_8, x_17, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_18 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2(x_1, x_2, x_3, x_9, x_4, x_5, x_6, x_7, x_8, x_17, x_10, x_11, x_12, x_13, x_14, x_15, x_16); return x_18; } block_22: { lean_object* x_20; lean_object* x_21; x_20 = lean_box(0); -x_21 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2(x_1, x_2, x_3, x_9, x_4, x_5, x_6, x_7, x_8, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_21 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2(x_1, x_2, x_3, x_9, x_4, x_5, x_6, x_7, x_8, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); return x_21; } block_25: { lean_object* x_23; lean_object* x_24; x_23 = lean_box(0); -x_24 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2(x_1, x_2, x_3, x_9, x_4, x_5, x_6, x_7, x_8, x_23, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_24 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2(x_1, x_2, x_3, x_9, x_4, x_5, x_6, x_7, x_8, x_23, x_10, x_11, x_12, x_13, x_14, x_15, x_16); return x_24; } } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__0() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__0() { _start: { lean_object* x_1; @@ -5855,7 +6169,7 @@ x_1 = l_Lean_Elab_TerminationHints_none; return x_1; } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__1() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__1() { _start: { lean_object* x_1; @@ -5863,7 +6177,7 @@ x_1 = lean_mk_string_unchecked("Lean", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__2() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__2() { _start: { lean_object* x_1; @@ -5871,7 +6185,7 @@ x_1 = lean_mk_string_unchecked("Parser", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__3() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__3() { _start: { lean_object* x_1; @@ -5879,7 +6193,7 @@ x_1 = lean_mk_string_unchecked("Termination", 11, 11); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__4() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__4() { _start: { lean_object* x_1; @@ -5887,19 +6201,19 @@ x_1 = lean_mk_string_unchecked("suffix", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__5() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__4; -x_2 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__3; -x_3 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__2; -x_4 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__1; +x_1 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__4; +x_2 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__3; +x_3 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__2; +x_4 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__1; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__6() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__6() { _start: { lean_object* x_1; @@ -5907,7 +6221,7 @@ x_1 = lean_mk_string_unchecked("Unexpected Termination.suffix syntax: ", 38, 38) return x_1; } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__7() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__7() { _start: { lean_object* x_1; @@ -5915,31 +6229,31 @@ x_1 = lean_mk_string_unchecked(" of kind ", 9, 9); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__8() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__5; -x_2 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__3; -x_3 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__2; -x_4 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__1; +x_1 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__5; +x_2 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__3; +x_3 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__2; +x_4 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__1; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__9() { +static lean_object* _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1___closed__0; -x_2 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__3; -x_3 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__2; -x_4 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__1; +x_1 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1___closed__0; +x_2 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__3; +x_3 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__2; +x_4 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__1; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28(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_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30(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: { if (lean_obj_tag(x_1) == 0) @@ -5951,7 +6265,7 @@ lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_2); -x_9 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__0; +x_9 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__0; x_10 = !lean_is_exclusive(x_9); if (x_10 == 0) { @@ -5994,16 +6308,16 @@ return x_19; else { lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; -x_20 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__1; -x_21 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__2; -x_22 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__3; -x_23 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__5; +x_20 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__1; +x_21 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__2; +x_22 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__3; +x_23 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__5; lean_inc(x_1); x_24 = l_Lean_Syntax_isOfKind(x_1, x_23); if (x_24 == 0) { lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_25 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__6; +x_25 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__6; x_26 = lean_box(0); lean_inc(x_1); x_27 = l_Lean_Syntax_formatStx(x_1, x_26, x_24); @@ -6012,7 +6326,7 @@ x_29 = lean_unsigned_to_nat(0u); x_30 = lean_format_pretty(x_27, x_28, x_29, x_29); x_31 = lean_string_append(x_25, x_30); lean_dec_ref(x_30); -x_32 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__7; +x_32 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__7; x_33 = lean_string_append(x_31, x_32); lean_inc(x_1); x_34 = l_Lean_Syntax_getKind(x_1); @@ -6047,7 +6361,7 @@ if (x_95 == 0) { lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_dec(x_92); -x_96 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__6; +x_96 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__6; x_97 = lean_box(0); lean_inc(x_1); x_98 = l_Lean_Syntax_formatStx(x_1, x_97, x_95); @@ -6055,7 +6369,7 @@ x_99 = lean_unsigned_to_nat(120u); x_100 = lean_format_pretty(x_98, x_99, x_41, x_41); x_101 = lean_string_append(x_96, x_100); lean_dec_ref(x_100); -x_102 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__7; +x_102 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__7; x_103 = lean_string_append(x_101, x_102); lean_inc(x_1); x_104 = l_Lean_Syntax_getKind(x_1); @@ -6094,31 +6408,31 @@ goto block_91; } block_52: { -if (lean_obj_tag(x_42) == 0) +if (lean_obj_tag(x_43) == 0) { lean_object* x_45; -x_45 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3(x_44, x_1, x_41, x_20, x_21, x_22, x_43, x_42, x_42, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_45 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3(x_44, x_1, x_41, x_20, x_21, x_22, x_42, x_43, x_43, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_45; } else { lean_object* x_46; lean_object* x_47; uint8_t x_48; -x_46 = lean_ctor_get(x_42, 0); +x_46 = lean_ctor_get(x_43, 0); lean_inc(x_46); -x_47 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__8; +x_47 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__8; x_48 = l_Lean_Syntax_isOfKind(x_46, x_47); if (x_48 == 0) { lean_object* x_49; lean_object* x_50; x_49 = lean_box(0); -x_50 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3(x_44, x_1, x_41, x_20, x_21, x_22, x_43, x_42, x_49, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_50 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3(x_44, x_1, x_41, x_20, x_21, x_22, x_42, x_43, x_49, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_50; } else { lean_object* x_51; -lean_inc_ref(x_42); -x_51 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3(x_44, x_1, x_41, x_20, x_21, x_22, x_43, x_42, x_42, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_inc_ref(x_43); +x_51 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3(x_44, x_1, x_41, x_20, x_21, x_22, x_42, x_43, x_43, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_51; } } @@ -6139,7 +6453,7 @@ if (x_57 == 0) lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_dec(x_55); lean_dec(x_53); -x_58 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__6; +x_58 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__6; x_59 = lean_box(0); lean_inc(x_1); x_60 = l_Lean_Syntax_formatStx(x_1, x_59, x_57); @@ -6147,7 +6461,7 @@ x_61 = lean_unsigned_to_nat(120u); x_62 = lean_format_pretty(x_60, x_61, x_41, x_41); x_63 = lean_string_append(x_58, x_62); lean_dec_ref(x_62); -x_64 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__7; +x_64 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__7; x_65 = lean_string_append(x_63, x_64); lean_inc(x_1); x_66 = l_Lean_Syntax_getKind(x_1); @@ -6170,7 +6484,7 @@ else lean_object* x_72; lean_object* x_73; uint8_t x_74; x_72 = l_Lean_Syntax_getArg(x_55, x_41); lean_dec(x_55); -x_73 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__9; +x_73 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__9; lean_inc(x_72); x_74 = l_Lean_Syntax_isOfKind(x_72, x_73); if (x_74 == 0) @@ -6178,7 +6492,7 @@ if (x_74 == 0) lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_dec(x_72); lean_dec(x_53); -x_75 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__6; +x_75 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__6; x_76 = lean_box(0); lean_inc(x_1); x_77 = l_Lean_Syntax_formatStx(x_1, x_76, x_74); @@ -6186,7 +6500,7 @@ x_78 = lean_unsigned_to_nat(120u); x_79 = lean_format_pretty(x_77, x_78, x_41, x_41); x_80 = lean_string_append(x_75, x_79); lean_dec_ref(x_79); -x_81 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__7; +x_81 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__7; x_82 = lean_string_append(x_80, x_81); lean_inc(x_1); x_83 = l_Lean_Syntax_getKind(x_1); @@ -6209,8 +6523,8 @@ else lean_object* x_89; x_89 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_89, 0, x_72); -x_42 = x_53; -x_43 = x_54; +x_42 = x_54; +x_43 = x_53; x_44 = x_89; goto block_52; } @@ -6221,8 +6535,8 @@ else lean_object* x_90; lean_dec(x_55); x_90 = lean_box(0); -x_42 = x_53; -x_43 = x_54; +x_42 = x_54; +x_43 = x_53; x_44 = x_90; goto block_52; } @@ -6231,7 +6545,7 @@ goto block_52; } } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__29___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__31___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; lean_object* x_8; @@ -6245,15 +6559,15 @@ lean_ctor_set(x_8, 1, x_3); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__29(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_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__31(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_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__29___redArg(x_1, x_6, x_8); +x_9 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__31___redArg(x_1, x_6, x_8); return x_9; } } -static double _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg___closed__0() { +static double _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg___closed__0() { _start: { lean_object* x_1; double x_2; @@ -6262,7 +6576,7 @@ x_2 = lean_float_of_nat(x_1); return x_2; } } -static lean_object* _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg___closed__1() { +static lean_object* _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -6271,7 +6585,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg(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_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; @@ -6305,16 +6619,16 @@ if (x_20 == 0) { lean_object* x_21; double x_22; uint8_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; x_21 = lean_ctor_get(x_14, 0); -x_22 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg___closed__0; +x_22 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg___closed__0; x_23 = 0; -x_24 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___closed__0; +x_24 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0; x_25 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_25, 0, x_1); lean_ctor_set(x_25, 1, x_24); lean_ctor_set_float(x_25, sizeof(void*)*2, x_22); lean_ctor_set_float(x_25, sizeof(void*)*2 + 8, x_22); lean_ctor_set_uint8(x_25, sizeof(void*)*2 + 16, x_23); -x_26 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg___closed__1; +x_26 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg___closed__1; x_27 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_10); @@ -6355,16 +6669,16 @@ x_36 = lean_ctor_get_uint64(x_14, sizeof(void*)*1); x_37 = lean_ctor_get(x_14, 0); lean_inc(x_37); lean_dec(x_14); -x_38 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg___closed__0; +x_38 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg___closed__0; x_39 = 0; -x_40 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___closed__0; +x_40 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0; x_41 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_41, 0, x_1); lean_ctor_set(x_41, 1, x_40); lean_ctor_set_float(x_41, sizeof(void*)*2, x_38); lean_ctor_set_float(x_41, sizeof(void*)*2 + 8, x_38); lean_ctor_set_uint8(x_41, sizeof(void*)*2 + 16, x_39); -x_42 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg___closed__1; +x_42 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg___closed__1; x_43 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_43, 0, x_41); lean_ctor_set(x_43, 1, x_10); @@ -6429,16 +6743,16 @@ if (lean_is_exclusive(x_14)) { lean_dec_ref(x_14); x_61 = lean_box(0); } -x_62 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg___closed__0; +x_62 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg___closed__0; x_63 = 0; -x_64 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___closed__0; +x_64 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0; x_65 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_65, 0, x_1); lean_ctor_set(x_65, 1, x_64); lean_ctor_set_float(x_65, sizeof(void*)*2, x_62); lean_ctor_set_float(x_65, sizeof(void*)*2 + 8, x_62); lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 16, x_63); -x_66 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg___closed__1; +x_66 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg___closed__1; x_67 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_67, 0, x_65); lean_ctor_set(x_67, 1, x_10); @@ -6533,16 +6847,16 @@ if (lean_is_exclusive(x_14)) { lean_dec_ref(x_14); x_88 = lean_box(0); } -x_89 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg___closed__0; +x_89 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg___closed__0; x_90 = 0; -x_91 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___closed__0; +x_91 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0; x_92 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_92, 0, x_1); lean_ctor_set(x_92, 1, x_91); lean_ctor_set_float(x_92, sizeof(void*)*2, x_89); lean_ctor_set_float(x_92, sizeof(void*)*2 + 8, x_89); lean_ctor_set_uint8(x_92, sizeof(void*)*2 + 16, x_90); -x_93 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg___closed__1; +x_93 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg___closed__1; x_94 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_94, 0, x_92); lean_ctor_set(x_94, 1, x_10); @@ -6596,15 +6910,15 @@ return x_103; } } } -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30(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_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32(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_10; -x_10 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg(x_1, x_2, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg(x_1, x_2, x_5, x_6, x_7, x_8, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__31___redArg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__33___redArg(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -6629,15 +6943,15 @@ return x_6; } } } -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__31(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__33(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__31___redArg(x_2, x_4); +x_5 = l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__33___redArg(x_2, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__32(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_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__34(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: { if (lean_obj_tag(x_1) == 0) @@ -6663,7 +6977,7 @@ x_14 = lean_ctor_get(x_11, 1); lean_inc(x_14); lean_dec(x_11); lean_inc(x_13); -x_15 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__29___redArg(x_13, x_6, x_8); +x_15 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__31___redArg(x_13, x_6, x_8); x_16 = lean_ctor_get(x_15, 0); lean_inc(x_16); x_17 = lean_unbox(x_16); @@ -6689,7 +7003,7 @@ lean_dec_ref(x_15); x_21 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_21, 0, x_14); x_22 = l_Lean_MessageData_ofFormat(x_21); -x_23 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg(x_13, x_22, x_4, x_5, x_6, x_7, x_20); +x_23 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg(x_13, x_22, x_4, x_5, x_6, x_7, x_20); x_24 = lean_ctor_get(x_23, 1); lean_inc(x_24); lean_dec_ref(x_23); @@ -6700,7 +7014,7 @@ goto _start; } } } -static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__0() { +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__0() { _start: { lean_object* x_1; @@ -6708,7 +7022,7 @@ x_1 = lean_mk_string_unchecked("runtime", 7, 7); return x_1; } } -static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__1() { +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__1() { _start: { lean_object* x_1; @@ -6716,17 +7030,17 @@ x_1 = lean_mk_string_unchecked("maxRecDepth", 11, 11); return x_1; } } -static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__2() { +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__1; -x_2 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__0; +x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__1; +x_2 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__0; x_3 = l_Lean_Name_mkStr2(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__3() { +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__3() { _start: { lean_object* x_1; @@ -6734,42 +7048,42 @@ x_1 = lean_mk_string_unchecked("maximum recursion depth has been reached\nuse `s return x_1; } } -static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__4() { +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__3; +x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__3; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__5() { +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__4; +x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__4; x_2 = l_Lean_MessageData_ofFormat(x_1); return x_2; } } -static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__6() { +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__5; -x_2 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__2; +x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__5; +x_2 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__2; x_3 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_3 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__6; +x_3 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__6; x_4 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_3); @@ -6779,15 +7093,15 @@ lean_ctor_set(x_5, 1, x_2); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33(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_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35(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_10; -x_10 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg(x_2, x_9); +x_10 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg(x_2, x_9); return x_10; } } -static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34___redArg___closed__0() { +static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36___redArg___closed__0() { _start: { lean_object* x_1; @@ -6795,38 +7109,38 @@ x_1 = l_Lean_Elab_unsupportedSyntaxExceptionId; return x_1; } } -static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34___redArg___closed__1() { +static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36___redArg___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34___redArg___closed__0; +x_2 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36___redArg___closed__0; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34___redArg(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36___redArg(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34___redArg___closed__1; +x_2 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36___redArg___closed__1; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34(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_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34___redArg(x_8); +x_9 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36___redArg(x_8); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -6884,7 +7198,7 @@ x_17 = !lean_is_exclusive(x_15); if (x_17 == 0) { lean_object* x_18; -x_18 = l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__31___redArg(x_15, x_16); +x_18 = l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__33___redArg(x_15, x_16); lean_dec_ref(x_15); return x_18; } @@ -6896,7 +7210,7 @@ lean_inc(x_19); lean_dec(x_15); x_20 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_20, 0, x_19); -x_21 = l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__31___redArg(x_20, x_16); +x_21 = l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__33___redArg(x_20, x_16); lean_dec_ref(x_20); return x_21; } @@ -6914,7 +7228,7 @@ lean_object* x_24; lean_object* x_25; x_24 = lean_ctor_get(x_15, 0); lean_ctor_set(x_6, 0, x_24); lean_ctor_set(x_15, 0, x_6); -x_25 = l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__31___redArg(x_15, x_22); +x_25 = l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__33___redArg(x_15, x_22); lean_dec_ref(x_15); return x_25; } @@ -6927,7 +7241,7 @@ lean_dec(x_15); lean_ctor_set(x_6, 0, x_26); x_27 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_27, 0, x_6); -x_28 = l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__31___redArg(x_27, x_22); +x_28 = l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__33___redArg(x_27, x_22); lean_dec_ref(x_27); return x_28; } @@ -6963,7 +7277,7 @@ if (lean_is_scalar(x_33)) { x_34 = x_33; } lean_ctor_set(x_34, 0, x_32); -x_35 = l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__31___redArg(x_34, x_31); +x_35 = l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__33___redArg(x_34, x_31); lean_dec_ref(x_34); return x_35; } @@ -6990,7 +7304,7 @@ if (lean_is_scalar(x_38)) { x_40 = x_38; } lean_ctor_set(x_40, 0, x_39); -x_41 = l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__31___redArg(x_40, x_36); +x_41 = l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__33___redArg(x_40, x_36); lean_dec_ref(x_40); return x_41; } @@ -7021,7 +7335,7 @@ return x_45; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; uint8_t x_6; lean_object* x_7; lean_object* x_8; @@ -7034,7 +7348,7 @@ lean_ctor_set(x_8, 1, x_4); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -7044,7 +7358,7 @@ lean_ctor_set(x_4, 1, x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; lean_object* x_8; @@ -7055,7 +7369,7 @@ lean_ctor_set(x_8, 1, x_6); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__4(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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__4(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; @@ -7066,7 +7380,7 @@ lean_ctor_set(x_8, 1, x_6); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg(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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg(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; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; @@ -7102,23 +7416,23 @@ x_23 = lean_ctor_get(x_21, 1); lean_inc(x_23); lean_dec(x_21); lean_inc_ref(x_12); -x_24 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__0___boxed), 4, 1); +x_24 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__0___boxed), 4, 1); lean_closure_set(x_24, 0, x_12); lean_inc_ref(x_12); -x_25 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__1___boxed), 4, 1); +x_25 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__1___boxed), 4, 1); lean_closure_set(x_25, 0, x_12); lean_inc(x_16); -x_26 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__2___boxed), 3, 1); +x_26 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__2___boxed), 3, 1); lean_closure_set(x_26, 0, x_16); lean_inc(x_17); lean_inc(x_16); lean_inc_ref(x_12); -x_27 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__3___boxed), 6, 3); +x_27 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__3___boxed), 6, 3); lean_closure_set(x_27, 0, x_12); lean_closure_set(x_27, 1, x_16); lean_closure_set(x_27, 2, x_17); lean_inc_ref(x_12); -x_28 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__4___boxed), 6, 3); +x_28 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__4___boxed), 6, 3); lean_closure_set(x_28, 0, x_12); lean_closure_set(x_28, 1, x_16); lean_closure_set(x_28, 2, x_17); @@ -7172,7 +7486,7 @@ x_44 = lean_ctor_get(x_43, 1); lean_inc(x_44); lean_dec_ref(x_43); x_45 = l_List_reverse___redArg(x_37); -x_46 = l_List_forM___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__32(x_45, x_2, x_3, x_4, x_5, x_6, x_7, x_44); +x_46 = l_List_forM___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__34(x_45, x_2, x_3, x_4, x_5, x_6, x_7, x_44); lean_dec_ref(x_6); lean_dec_ref(x_2); x_47 = !lean_is_exclusive(x_46); @@ -7231,7 +7545,7 @@ x_61 = lean_ctor_get(x_60, 1); lean_inc(x_61); lean_dec_ref(x_60); x_62 = l_List_reverse___redArg(x_37); -x_63 = l_List_forM___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__32(x_62, x_2, x_3, x_4, x_5, x_6, x_7, x_61); +x_63 = l_List_forM___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__34(x_62, x_2, x_3, x_4, x_5, x_6, x_7, x_61); lean_dec_ref(x_6); lean_dec_ref(x_2); x_64 = lean_ctor_get(x_63, 1); @@ -7268,7 +7582,7 @@ lean_inc(x_68); x_69 = lean_ctor_get(x_67, 1); lean_inc_ref(x_69); lean_dec_ref(x_67); -x_70 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__3; +x_70 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__3; x_71 = lean_string_dec_eq(x_69, x_70); if (x_71 == 0) { @@ -7286,7 +7600,7 @@ lean_object* x_75; lean_dec_ref(x_69); lean_dec_ref(x_6); lean_dec_ref(x_2); -x_75 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg(x_68, x_22); +x_75 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg(x_68, x_22); return x_75; } } @@ -7295,7 +7609,7 @@ else lean_object* x_76; lean_dec_ref(x_6); lean_dec_ref(x_2); -x_76 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34___redArg(x_22); +x_76 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36___redArg(x_22); return x_76; } } @@ -7312,23 +7626,23 @@ x_79 = lean_ctor_get(x_77, 1); lean_inc(x_79); lean_dec(x_77); lean_inc_ref(x_12); -x_80 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__0___boxed), 4, 1); +x_80 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__0___boxed), 4, 1); lean_closure_set(x_80, 0, x_12); lean_inc_ref(x_12); -x_81 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__1___boxed), 4, 1); +x_81 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__1___boxed), 4, 1); lean_closure_set(x_81, 0, x_12); lean_inc(x_16); -x_82 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__2___boxed), 3, 1); +x_82 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__2___boxed), 3, 1); lean_closure_set(x_82, 0, x_16); lean_inc(x_17); lean_inc(x_16); lean_inc_ref(x_12); -x_83 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__3___boxed), 6, 3); +x_83 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__3___boxed), 6, 3); lean_closure_set(x_83, 0, x_12); lean_closure_set(x_83, 1, x_16); lean_closure_set(x_83, 2, x_17); lean_inc_ref(x_12); -x_84 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__4___boxed), 6, 3); +x_84 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__4___boxed), 6, 3); lean_closure_set(x_84, 0, x_12); lean_closure_set(x_84, 1, x_16); lean_closure_set(x_84, 2, x_17); @@ -7421,7 +7735,7 @@ x_109 = lean_ctor_get(x_108, 1); lean_inc(x_109); lean_dec_ref(x_108); x_110 = l_List_reverse___redArg(x_94); -x_111 = l_List_forM___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__32(x_110, x_2, x_3, x_4, x_5, x_6, x_7, x_109); +x_111 = l_List_forM___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__34(x_110, x_2, x_3, x_4, x_5, x_6, x_7, x_109); lean_dec_ref(x_6); lean_dec_ref(x_2); x_112 = lean_ctor_get(x_111, 1); @@ -7457,7 +7771,7 @@ lean_inc(x_116); x_117 = lean_ctor_get(x_115, 1); lean_inc_ref(x_117); lean_dec_ref(x_115); -x_118 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__3; +x_118 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__3; x_119 = lean_string_dec_eq(x_117, x_118); if (x_119 == 0) { @@ -7475,7 +7789,7 @@ lean_object* x_123; lean_dec_ref(x_117); lean_dec_ref(x_6); lean_dec_ref(x_2); -x_123 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg(x_116, x_78); +x_123 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg(x_116, x_78); return x_123; } } @@ -7484,22 +7798,22 @@ else lean_object* x_124; lean_dec_ref(x_6); lean_dec_ref(x_2); -x_124 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34___redArg(x_78); +x_124 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36___redArg(x_78); return x_124; } } } } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29(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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31(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_10; -x_10 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_10; } } -LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__36(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4) { +LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__38(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4) { _start: { uint8_t x_5; @@ -7534,7 +7848,7 @@ return x_12; } } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__0() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__0() { _start: { lean_object* x_1; @@ -7542,7 +7856,7 @@ x_1 = lean_mk_string_unchecked("Term", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__1() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__1() { _start: { lean_object* x_1; @@ -7550,23 +7864,23 @@ x_1 = lean_mk_string_unchecked("byTactic", 8, 8); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__2() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__1; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__0; -x_3 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__2; -x_4 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__1; +x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__1; +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__0; +x_3 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__2; +x_4 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__1; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -LEAN_EXPORT uint8_t l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0(lean_object* x_1) { +LEAN_EXPORT uint8_t l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__2; +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__2; x_3 = lean_name_eq(x_1, x_2); if (x_3 == 0) { @@ -7582,7 +7896,7 @@ return x_5; } } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__0() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__0() { _start: { lean_object* x_1; @@ -7590,16 +7904,16 @@ x_1 = lean_mk_string_unchecked("Unknown attribute `[", 20, 20); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__1() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__0; +x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__2() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__2() { _start: { lean_object* x_1; @@ -7607,16 +7921,16 @@ x_1 = lean_mk_string_unchecked("]`", 2, 2); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__3() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__2; +x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__2; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; uint8_t x_12; @@ -7638,12 +7952,12 @@ lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean lean_dec_ref(x_16); lean_free_object(x_11); lean_dec(x_2); -x_17 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__1; +x_17 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__1; x_18 = l_Lean_MessageData_ofName(x_3); x_19 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_19, 0, x_17); lean_ctor_set(x_19, 1, x_18); -x_20 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__3; +x_20 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__3; x_21 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_21, 0, x_19); lean_ctor_set(x_21, 1, x_20); @@ -7681,12 +7995,12 @@ if (lean_obj_tag(x_27) == 0) 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_dec_ref(x_27); lean_dec(x_2); -x_28 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__1; +x_28 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__1; x_29 = l_Lean_MessageData_ofName(x_3); x_30 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_30, 0, x_28); lean_ctor_set(x_30, 1, x_29); -x_31 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__3; +x_31 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__3; x_32 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_32, 0, x_30); lean_ctor_set(x_32, 1, x_31); @@ -7710,7 +8024,7 @@ return x_35; } } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__0() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__0() { _start: { lean_object* x_1; @@ -7718,7 +8032,7 @@ x_1 = lean_mk_string_unchecked("Attr", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__1() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__1() { _start: { lean_object* x_1; @@ -7726,19 +8040,19 @@ x_1 = lean_mk_string_unchecked("simple", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__2() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__1; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__0; -x_3 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__2; -x_4 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__1; +x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__1; +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__0; +x_3 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__2; +x_4 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__1; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__3() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__3() { _start: { lean_object* x_1; @@ -7746,16 +8060,16 @@ x_1 = lean_mk_string_unchecked("Unknown attribute", 17, 17); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__4() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__3; +x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__3; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37(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_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39(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; lean_object* x_10; lean_object* x_11; lean_object* x_12; @@ -7765,7 +8079,7 @@ x_11 = lean_alloc_closure((void*)(l_Lean_Elab_toAttributeKind___boxed), 3, 1); lean_closure_set(x_11, 0, x_10); lean_inc_ref(x_6); lean_inc_ref(x_2); -x_12 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_12 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8); if (lean_obj_tag(x_12) == 0) { 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; @@ -7774,7 +8088,7 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_12, 1); lean_inc(x_14); lean_dec_ref(x_12); -x_15 = lean_alloc_closure((void*)(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___boxed), 1, 0); +x_15 = lean_alloc_closure((void*)(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___boxed), 1, 0); x_16 = lean_unsigned_to_nat(1u); x_17 = l_Lean_Syntax_getArg(x_1, x_16); x_18 = lean_alloc_closure((void*)(l_Lean_expandMacros), 4, 2); @@ -7782,7 +8096,7 @@ lean_closure_set(x_18, 0, x_17); lean_closure_set(x_18, 1, x_15); lean_inc_ref(x_6); lean_inc_ref(x_2); -x_19 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg(x_18, x_2, x_3, x_4, x_5, x_6, x_7, x_14); +x_19 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg(x_18, x_2, x_3, x_4, x_5, x_6, x_7, x_14); if (lean_obj_tag(x_19) == 0) { lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; @@ -7793,7 +8107,7 @@ lean_inc(x_21); lean_dec_ref(x_19); lean_inc(x_20); x_22 = l_Lean_Syntax_getKind(x_20); -x_23 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__2; +x_23 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__2; x_24 = lean_name_eq(x_22, x_23); if (x_24 == 0) { @@ -7807,7 +8121,7 @@ x_26 = lean_box(0); x_27 = l_Lean_Name_str___override(x_26, x_25); x_28 = lean_unbox(x_13); lean_dec(x_13); -x_29 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1(x_28, x_20, x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_21); +x_29 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1(x_28, x_20, x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_21); lean_dec_ref(x_6); return x_29; } @@ -7816,7 +8130,7 @@ else lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_22); lean_dec(x_13); -x_30 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__4; +x_30 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__4; x_31 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg(x_20, x_30, x_2, x_3, x_4, x_5, x_6, x_7, x_21); lean_dec(x_20); x_32 = !lean_is_exclusive(x_31); @@ -7849,7 +8163,7 @@ lean_dec(x_36); x_38 = lean_erase_macro_scopes(x_37); x_39 = lean_unbox(x_13); lean_dec(x_13); -x_40 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1(x_39, x_20, x_38, x_2, x_3, x_4, x_5, x_6, x_7, x_21); +x_40 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1(x_39, x_20, x_38, x_2, x_3, x_4, x_5, x_6, x_7, x_21); lean_dec_ref(x_6); return x_40; } @@ -7906,7 +8220,7 @@ return x_48; } } } -static lean_object* _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__38___closed__0() { +static lean_object* _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__40___closed__0() { _start: { lean_object* x_1; @@ -7914,16 +8228,16 @@ x_1 = lean_mk_string_unchecked("internal exception: ", 20, 20); return x_1; } } -static lean_object* _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__38___closed__1() { +static lean_object* _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__40___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__38___closed__0; +x_1 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__40___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__38(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_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__40(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: { if (lean_obj_tag(x_1) == 0) @@ -7934,7 +8248,7 @@ lean_inc(x_9); x_10 = lean_ctor_get(x_1, 1); lean_inc_ref(x_10); lean_dec_ref(x_1); -x_11 = l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__19(x_9, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_11 = l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__21(x_9, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_9); return x_11; } @@ -7973,16 +8287,16 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_14, 1); lean_inc(x_16); lean_dec_ref(x_14); -x_17 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__38___closed__1; +x_17 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__40___closed__1; x_18 = l_Lean_MessageData_ofName(x_15); x_19 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_19, 0, x_17); lean_ctor_set(x_19, 1, x_18); -x_20 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22___closed__2; +x_20 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24___closed__2; x_21 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_21, 0, x_19); lean_ctor_set(x_21, 1, x_20); -x_22 = l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16(x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_16); +x_22 = l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18(x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_16); return x_22; } else @@ -8046,7 +8360,7 @@ return x_39; } } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__39(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__41(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; uint8_t x_18; @@ -8112,7 +8426,7 @@ lean_ctor_set(x_37, 12, x_34); lean_ctor_set_uint8(x_37, sizeof(void*)*13, x_31); lean_ctor_set_uint8(x_37, sizeof(void*)*13 + 1, x_33); lean_inc_ref(x_5); -x_38 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37(x_35, x_5, x_6, x_7, x_8, x_37, x_10, x_11); +x_38 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39(x_35, x_5, x_6, x_7, x_8, x_37, x_10, x_11); lean_dec(x_35); if (lean_obj_tag(x_38) == 0) { @@ -8162,7 +8476,7 @@ if (x_45 == 0) lean_object* x_46; lean_dec(x_44); lean_inc_ref(x_9); -x_46 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__38(x_42, x_5, x_6, x_7, x_8, x_9, x_10, x_43); +x_46 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__40(x_42, x_5, x_6, x_7, x_8, x_9, x_10, x_43); if (lean_obj_tag(x_46) == 0) { lean_object* x_47; @@ -8229,7 +8543,7 @@ goto _start; } } } -static lean_object* _init_l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37___closed__0() { +static lean_object* _init_l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39___closed__0() { _start: { lean_object* x_1; lean_object* x_2; @@ -8238,18 +8552,18 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37(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_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39(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; size_t x_10; size_t x_11; lean_object* x_12; -x_9 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37___closed__0; +x_9 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39___closed__0; x_10 = lean_array_size(x_1); x_11 = 0; -x_12 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__39(x_1, x_10, x_11, x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_12 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__41(x_1, x_10, x_11, x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37(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_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39(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; lean_object* x_10; lean_object* x_11; lean_object* x_12; @@ -8257,12 +8571,12 @@ x_9 = lean_unsigned_to_nat(1u); x_10 = l_Lean_Syntax_getArg(x_1, x_9); x_11 = l_Lean_Syntax_getSepArgs(x_10); lean_dec(x_10); -x_12 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_12 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec_ref(x_11); return x_12; } } -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___closed__0() { +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___closed__0() { _start: { lean_object* x_1; @@ -8270,26 +8584,26 @@ x_1 = lean_mk_string_unchecked("failed to infer 'let rec' declaration type", 42, return x_1; } } -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___closed__1() { +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___closed__0; +x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___closed__0; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___closed__2() { +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___closed__1; +x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___closed__1; x_2 = l_Lean_MessageData_ofFormat(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; @@ -8308,7 +8622,7 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_12, 1); lean_inc(x_14); lean_dec_ref(x_12); -x_15 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___closed__2; +x_15 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___closed__2; x_16 = l_Lean_Elab_Term_registerCustomErrorIfMVar___redArg(x_13, x_1, x_15, x_6, x_14); lean_dec(x_6); if (lean_obj_tag(x_16) == 0) @@ -8512,7 +8826,7 @@ return x_53; } } } -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__0() { +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__0() { _start: { lean_object* x_1; @@ -8520,16 +8834,16 @@ x_1 = lean_mk_string_unchecked("'let rec' expressions must be named", 35, 35); return x_1; } } -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__1() { +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__0; +x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__2() { +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__2() { _start: { lean_object* x_1; @@ -8537,19 +8851,19 @@ x_1 = lean_mk_string_unchecked("letPatDecl", 10, 10); return x_1; } } -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__3() { +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__2; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__0; -x_3 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__2; -x_4 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__1; +x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__2; +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__0; +x_3 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__2; +x_4 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__1; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__4() { +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__4() { _start: { lean_object* x_1; @@ -8557,19 +8871,19 @@ x_1 = lean_mk_string_unchecked("letIdDecl", 9, 9); return x_1; } } -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__5() { +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__4; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__0; -x_3 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__2; -x_4 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__1; +x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__4; +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__0; +x_3 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__2; +x_4 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__1; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__6() { +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__6() { _start: { lean_object* x_1; @@ -8577,19 +8891,19 @@ x_1 = lean_mk_string_unchecked("letEqnsDecl", 11, 11); return x_1; } } -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__7() { +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__6; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__0; -x_3 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__2; -x_4 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__1; +x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__6; +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__0; +x_3 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__2; +x_4 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__1; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__8() { +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__8() { _start: { lean_object* x_1; @@ -8597,16 +8911,16 @@ x_1 = lean_mk_string_unchecked("patterns are not allowed in 'let rec' expression return x_1; } } -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__9() { +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__8; +x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__8; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t 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_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t 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) { _start: { lean_object* x_14; lean_object* x_15; uint8_t x_20; @@ -8627,7 +8941,7 @@ return x_21; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint8_t x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; uint8_t 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; uint8_t x_151; uint8_t x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; uint8_t x_210; lean_object* x_211; uint8_t x_219; uint8_t x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; uint8_t x_246; uint8_t x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; uint8_t x_260; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_302; lean_object* x_315; lean_object* x_316; +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; uint8_t x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint8_t x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; uint8_t 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; uint8_t x_151; uint8_t x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; uint8_t x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; uint8_t x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; uint8_t x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; uint8_t x_223; lean_object* x_224; uint8_t x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; uint8_t x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; uint8_t 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; uint8_t x_259; lean_object* x_260; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_302; lean_object* x_315; lean_object* x_316; x_22 = lean_array_uget(x_3, x_5); x_315 = l_Lean_Syntax_getArg(x_22, x_1); x_316 = l_Lean_Syntax_getOptional_x3f(x_315); @@ -8666,7 +8980,7 @@ lean_object* x_40; lean_object* x_41; lean_object* x_42; x_40 = lean_unsigned_to_nat(3u); x_41 = l_Lean_Syntax_getArg(x_22, x_40); lean_dec(x_22); -x_42 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28(x_41, x_33, x_34, x_35, x_36, x_37, x_38, x_39); +x_42 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30(x_41, x_33, x_34, x_35, x_36, x_37, x_38, x_39); if (lean_obj_tag(x_42) == 0) { lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; @@ -8676,14 +8990,14 @@ x_44 = lean_ctor_get(x_42, 1); lean_inc(x_44); lean_dec_ref(x_42); x_45 = lean_alloc_ctor(0, 10, 0); -lean_ctor_set(x_45, 0, x_26); +lean_ctor_set(x_45, 0, x_24); lean_ctor_set(x_45, 1, x_30); -lean_ctor_set(x_45, 2, x_23); -lean_ctor_set(x_45, 3, x_25); -lean_ctor_set(x_45, 4, x_27); -lean_ctor_set(x_45, 5, x_29); +lean_ctor_set(x_45, 2, x_26); +lean_ctor_set(x_45, 3, x_29); +lean_ctor_set(x_45, 4, x_23); +lean_ctor_set(x_45, 5, x_25); lean_ctor_set(x_45, 6, x_28); -lean_ctor_set(x_45, 7, x_24); +lean_ctor_set(x_45, 7, x_27); lean_ctor_set(x_45, 8, x_32); lean_ctor_set(x_45, 9, x_43); x_46 = lean_array_push(x_31, x_45); @@ -8697,12 +9011,12 @@ uint8_t x_47; lean_dec(x_32); lean_dec_ref(x_31); lean_dec_ref(x_30); -lean_dec_ref(x_29); +lean_dec(x_29); lean_dec_ref(x_28); -lean_dec(x_27); +lean_dec_ref(x_27); lean_dec(x_26); -lean_dec(x_25); -lean_dec_ref(x_24); +lean_dec_ref(x_25); +lean_dec(x_24); lean_dec(x_23); lean_dec(x_12); lean_dec_ref(x_11); @@ -8739,8 +9053,8 @@ lean_inc(x_66); lean_inc_ref(x_65); lean_inc(x_64); lean_inc_ref(x_63); -lean_inc(x_57); -x_70 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0(x_57, x_63, x_64, x_65, x_66, x_67, x_68, x_69); +lean_inc(x_60); +x_70 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0(x_60, x_63, x_64, x_65, x_66, x_67, x_68, x_69); if (lean_obj_tag(x_70) == 0) { lean_object* x_71; uint8_t x_72; lean_object* x_73; @@ -8755,8 +9069,8 @@ lean_inc_ref(x_65); lean_inc(x_64); lean_inc_ref(x_63); lean_inc_ref(x_61); -lean_inc(x_57); -x_73 = l_Lean_Elab_Term_applyAttributesAt(x_57, x_61, x_72, x_63, x_64, x_65, x_66, x_67, x_68, x_71); +lean_inc(x_60); +x_73 = l_Lean_Elab_Term_applyAttributesAt(x_60, x_61, x_72, x_63, x_64, x_65, x_66, x_67, x_68, x_71); if (lean_obj_tag(x_73) == 0) { lean_object* x_74; lean_object* x_75; @@ -8765,8 +9079,8 @@ lean_inc(x_74); lean_dec_ref(x_73); lean_inc_ref(x_67); lean_inc_ref(x_63); -lean_inc(x_57); -x_75 = l_Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16(x_57, x_55, x_63, x_64, x_65, x_66, x_67, x_68, x_74); +lean_inc(x_60); +x_75 = l_Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18(x_60, x_55, x_63, x_64, x_65, x_66, x_67, x_68, x_74); lean_dec(x_55); if (lean_obj_tag(x_75) == 0) { @@ -8775,20 +9089,20 @@ x_76 = lean_ctor_get(x_75, 1); lean_inc(x_76); lean_dec_ref(x_75); lean_inc_ref(x_67); -lean_inc(x_57); -x_77 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25(x_57, x_60, x_58, x_63, x_64, x_65, x_66, x_67, x_68, x_76); +lean_inc(x_60); +x_77 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27(x_60, x_57, x_54, x_63, x_64, x_65, x_66, x_67, x_68, x_76); x_78 = lean_ctor_get(x_77, 1); lean_inc(x_78); lean_dec_ref(x_77); -x_79 = l_Lean_Syntax_getArg(x_60, x_2); +x_79 = l_Lean_Syntax_getArg(x_57, x_2); x_80 = l_Lean_Syntax_getArgs(x_79); lean_dec(x_79); -x_81 = l_Lean_Syntax_getArg(x_60, x_56); -x_82 = l_Lean_Elab_Term_expandOptType(x_58, x_81); +x_81 = l_Lean_Syntax_getArg(x_57, x_59); +x_82 = l_Lean_Elab_Term_expandOptType(x_54, x_81); lean_dec(x_81); x_83 = lean_box(x_52); x_84 = lean_box(x_20); -x_85 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___boxed), 11, 3); +x_85 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___boxed), 11, 3); lean_closure_set(x_85, 0, x_82); lean_closure_set(x_85, 1, x_83); lean_closure_set(x_85, 2, x_84); @@ -8821,7 +9135,7 @@ lean_inc_ref(x_65); x_94 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_91, x_92, x_93, x_65, x_66, x_67, x_68, x_88); if (lean_obj_tag(x_94) == 0) { -if (x_53 == 0) +if (x_56 == 0) { lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; x_95 = lean_ctor_get(x_94, 0); @@ -8830,15 +9144,15 @@ x_96 = lean_ctor_get(x_94, 1); lean_inc(x_96); lean_dec_ref(x_94); x_97 = lean_unsigned_to_nat(3u); -x_98 = l_Lean_Syntax_getArg(x_60, x_97); +x_98 = l_Lean_Syntax_getArg(x_57, x_97); x_99 = lean_box(x_20); x_100 = lean_alloc_closure((void*)(l_Lean_Elab_Term_expandMatchAltsIntoMatch___boxed), 5, 3); -lean_closure_set(x_100, 0, x_60); +lean_closure_set(x_100, 0, x_57); lean_closure_set(x_100, 1, x_98); lean_closure_set(x_100, 2, x_99); lean_inc_ref(x_67); lean_inc_ref(x_63); -x_101 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg(x_100, x_63, x_64, x_65, x_66, x_67, x_68, x_96); +x_101 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg(x_100, x_63, x_64, x_65, x_66, x_67, x_68, x_96); if (lean_obj_tag(x_101) == 0) { lean_object* x_102; lean_object* x_103; @@ -8847,13 +9161,13 @@ lean_inc(x_102); x_103 = lean_ctor_get(x_101, 1); lean_inc(x_103); lean_dec_ref(x_101); -x_23 = x_54; -x_24 = x_95; -x_25 = x_57; +x_23 = x_53; +x_24 = x_54; +x_25 = x_90; x_26 = x_58; -x_27 = x_59; +x_27 = x_95; x_28 = x_89; -x_29 = x_90; +x_29 = x_60; x_30 = x_61; x_31 = x_62; x_32 = x_102; @@ -8880,10 +9194,10 @@ lean_dec(x_64); lean_dec_ref(x_63); lean_dec_ref(x_62); lean_dec_ref(x_61); -lean_dec(x_59); +lean_dec(x_60); lean_dec(x_58); -lean_dec(x_57); lean_dec(x_54); +lean_dec(x_53); lean_dec(x_22); lean_dec(x_12); lean_dec_ref(x_11); @@ -8920,15 +9234,15 @@ x_109 = lean_ctor_get(x_94, 1); lean_inc(x_109); lean_dec_ref(x_94); x_110 = lean_unsigned_to_nat(4u); -x_111 = l_Lean_Syntax_getArg(x_60, x_110); -lean_dec(x_60); -x_23 = x_54; -x_24 = x_108; -x_25 = x_57; +x_111 = l_Lean_Syntax_getArg(x_57, x_110); +lean_dec(x_57); +x_23 = x_53; +x_24 = x_54; +x_25 = x_90; x_26 = x_58; -x_27 = x_59; +x_27 = x_108; x_28 = x_89; -x_29 = x_90; +x_29 = x_60; x_30 = x_61; x_31 = x_62; x_32 = x_111; @@ -8956,10 +9270,10 @@ lean_dec_ref(x_63); lean_dec_ref(x_62); lean_dec_ref(x_61); lean_dec(x_60); -lean_dec(x_59); lean_dec(x_58); lean_dec(x_57); lean_dec(x_54); +lean_dec(x_53); lean_dec(x_22); lean_dec(x_12); lean_dec_ref(x_11); @@ -8999,10 +9313,10 @@ lean_dec_ref(x_63); lean_dec_ref(x_62); lean_dec_ref(x_61); lean_dec(x_60); -lean_dec(x_59); lean_dec(x_58); lean_dec(x_57); lean_dec(x_54); +lean_dec(x_53); lean_dec(x_22); lean_dec(x_12); lean_dec_ref(x_11); @@ -9042,10 +9356,10 @@ lean_dec_ref(x_63); lean_dec_ref(x_62); lean_dec_ref(x_61); lean_dec(x_60); -lean_dec(x_59); lean_dec(x_58); lean_dec(x_57); lean_dec(x_54); +lean_dec(x_53); lean_dec(x_22); lean_dec(x_12); lean_dec_ref(x_11); @@ -9085,11 +9399,11 @@ lean_dec_ref(x_63); lean_dec_ref(x_62); lean_dec_ref(x_61); lean_dec(x_60); -lean_dec(x_59); lean_dec(x_58); lean_dec(x_57); lean_dec(x_55); lean_dec(x_54); +lean_dec(x_53); lean_dec(x_22); lean_dec(x_12); lean_dec_ref(x_11); @@ -9129,11 +9443,11 @@ lean_dec_ref(x_63); lean_dec_ref(x_62); lean_dec_ref(x_61); lean_dec(x_60); -lean_dec(x_59); lean_dec(x_58); lean_dec(x_57); lean_dec(x_55); lean_dec(x_54); +lean_dec(x_53); lean_dec(x_22); lean_dec(x_12); lean_dec_ref(x_11); @@ -9166,34 +9480,34 @@ block_192: if (x_151 == 0) { x_52 = x_133; -x_53 = x_137; +x_53 = x_144; x_54 = x_145; -x_55 = x_138; -x_56 = x_146; -x_57 = x_139; -x_58 = x_140; -x_59 = x_150; -x_60 = x_142; -x_61 = x_141; -x_62 = x_148; -x_63 = x_144; -x_64 = x_147; -x_65 = x_134; -x_66 = x_143; -x_67 = x_149; -x_68 = x_135; -x_69 = x_136; +x_55 = x_135; +x_56 = x_137; +x_57 = x_138; +x_58 = x_147; +x_59 = x_146; +x_60 = x_139; +x_61 = x_149; +x_62 = x_140; +x_63 = x_136; +x_64 = x_142; +x_65 = x_143; +x_66 = x_141; +x_67 = x_148; +x_68 = x_134; +x_69 = x_150; goto block_132; } else { uint8_t x_152; -lean_dec(x_150); -lean_dec_ref(x_148); -lean_dec(x_145); -lean_dec(x_142); -lean_dec_ref(x_141); +lean_dec_ref(x_149); +lean_dec(x_147); +lean_dec(x_144); +lean_dec_ref(x_140); lean_dec(x_138); +lean_dec(x_135); lean_dec(x_22); lean_dec(x_12); lean_dec_ref(x_11); @@ -9201,11 +9515,11 @@ lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec_ref(x_7); -x_152 = !lean_is_exclusive(x_149); +x_152 = !lean_is_exclusive(x_148); if (x_152 == 0) { 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; uint8_t x_161; -x_153 = lean_ctor_get(x_149, 5); +x_153 = lean_ctor_get(x_148, 5); x_154 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___closed__1; x_155 = l_Lean_MessageData_ofName(x_139); x_156 = lean_alloc_ctor(7, 2, 0); @@ -9215,16 +9529,16 @@ x_157 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0_ x_158 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_158, 0, x_156); lean_ctor_set(x_158, 1, x_157); -x_159 = l_Lean_replaceRef(x_140, x_153); +x_159 = l_Lean_replaceRef(x_145, x_153); lean_dec(x_153); -lean_dec(x_140); -lean_ctor_set(x_149, 5, x_159); -x_160 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_158, x_144, x_147, x_134, x_143, x_149, x_135, x_136); -lean_dec(x_135); -lean_dec_ref(x_149); -lean_dec(x_143); -lean_dec_ref(x_134); -lean_dec(x_147); +lean_dec(x_145); +lean_ctor_set(x_148, 5, x_159); +x_160 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_158, x_136, x_142, x_143, x_141, x_148, x_134, x_150); +lean_dec(x_134); +lean_dec_ref(x_148); +lean_dec(x_141); +lean_dec_ref(x_143); +lean_dec(x_142); x_161 = !lean_is_exclusive(x_160); if (x_161 == 0) { @@ -9247,21 +9561,21 @@ return x_164; else { lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; uint8_t x_176; lean_object* x_177; uint8_t x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; -x_165 = lean_ctor_get(x_149, 0); -x_166 = lean_ctor_get(x_149, 1); -x_167 = lean_ctor_get(x_149, 2); -x_168 = lean_ctor_get(x_149, 3); -x_169 = lean_ctor_get(x_149, 4); -x_170 = lean_ctor_get(x_149, 5); -x_171 = lean_ctor_get(x_149, 6); -x_172 = lean_ctor_get(x_149, 7); -x_173 = lean_ctor_get(x_149, 8); -x_174 = lean_ctor_get(x_149, 9); -x_175 = lean_ctor_get(x_149, 10); -x_176 = lean_ctor_get_uint8(x_149, sizeof(void*)*13); -x_177 = lean_ctor_get(x_149, 11); -x_178 = lean_ctor_get_uint8(x_149, sizeof(void*)*13 + 1); -x_179 = lean_ctor_get(x_149, 12); +x_165 = lean_ctor_get(x_148, 0); +x_166 = lean_ctor_get(x_148, 1); +x_167 = lean_ctor_get(x_148, 2); +x_168 = lean_ctor_get(x_148, 3); +x_169 = lean_ctor_get(x_148, 4); +x_170 = lean_ctor_get(x_148, 5); +x_171 = lean_ctor_get(x_148, 6); +x_172 = lean_ctor_get(x_148, 7); +x_173 = lean_ctor_get(x_148, 8); +x_174 = lean_ctor_get(x_148, 9); +x_175 = lean_ctor_get(x_148, 10); +x_176 = lean_ctor_get_uint8(x_148, sizeof(void*)*13); +x_177 = lean_ctor_get(x_148, 11); +x_178 = lean_ctor_get_uint8(x_148, sizeof(void*)*13 + 1); +x_179 = lean_ctor_get(x_148, 12); lean_inc(x_179); lean_inc(x_177); lean_inc(x_175); @@ -9275,7 +9589,7 @@ lean_inc(x_168); lean_inc(x_167); lean_inc(x_166); lean_inc(x_165); -lean_dec(x_149); +lean_dec(x_148); x_180 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___closed__1; x_181 = l_Lean_MessageData_ofName(x_139); x_182 = lean_alloc_ctor(7, 2, 0); @@ -9285,9 +9599,9 @@ x_183 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0_ x_184 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_184, 0, x_182); lean_ctor_set(x_184, 1, x_183); -x_185 = l_Lean_replaceRef(x_140, x_170); +x_185 = l_Lean_replaceRef(x_145, x_170); lean_dec(x_170); -lean_dec(x_140); +lean_dec(x_145); x_186 = lean_alloc_ctor(0, 13, 2); lean_ctor_set(x_186, 0, x_165); lean_ctor_set(x_186, 1, x_166); @@ -9304,12 +9618,12 @@ lean_ctor_set(x_186, 11, x_177); lean_ctor_set(x_186, 12, x_179); lean_ctor_set_uint8(x_186, sizeof(void*)*13, x_176); lean_ctor_set_uint8(x_186, sizeof(void*)*13 + 1, x_178); -x_187 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_184, x_144, x_147, x_134, x_143, x_186, x_135, x_136); -lean_dec(x_135); +x_187 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_184, x_136, x_142, x_143, x_141, x_186, x_134, x_150); +lean_dec(x_134); lean_dec_ref(x_186); -lean_dec(x_143); -lean_dec_ref(x_134); -lean_dec(x_147); +lean_dec(x_141); +lean_dec_ref(x_143); +lean_dec(x_142); x_188 = lean_ctor_get(x_187, 0); lean_inc(x_188); x_189 = lean_ctor_get(x_187, 1); @@ -9336,9 +9650,9 @@ return x_191; block_218: { lean_object* x_212; lean_object* x_213; uint8_t x_214; -lean_inc(x_204); -x_212 = l_Lean_Name_append(x_211, x_204); -x_213 = lean_array_get_size(x_207); +lean_inc(x_205); +x_212 = l_Lean_Name_append(x_211, x_205); +x_213 = lean_array_get_size(x_199); x_214 = lean_nat_dec_lt(x_1, x_213); if (x_214 == 0) { @@ -9346,22 +9660,22 @@ lean_dec(x_213); x_133 = x_193; x_134 = x_194; x_135 = x_195; -x_136 = x_197; -x_137 = x_196; +x_136 = x_196; +x_137 = x_197; x_138 = x_198; x_139 = x_212; x_140 = x_199; -x_141 = x_201; -x_142 = x_200; +x_141 = x_200; +x_142 = x_201; x_143 = x_202; x_144 = x_203; x_145 = x_204; -x_146 = x_205; -x_147 = x_206; +x_146 = x_206; +x_147 = x_205; x_148 = x_207; -x_149 = x_208; +x_149 = x_210; x_150 = x_209; -x_151 = x_210; +x_151 = x_208; goto block_192; } else @@ -9372,22 +9686,22 @@ lean_dec(x_213); x_133 = x_193; x_134 = x_194; x_135 = x_195; -x_136 = x_197; -x_137 = x_196; +x_136 = x_196; +x_137 = x_197; x_138 = x_198; x_139 = x_212; x_140 = x_199; -x_141 = x_201; -x_142 = x_200; +x_141 = x_200; +x_142 = x_201; x_143 = x_202; x_144 = x_203; x_145 = x_204; -x_146 = x_205; -x_147 = x_206; +x_146 = x_206; +x_147 = x_205; x_148 = x_207; -x_149 = x_208; +x_149 = x_210; x_150 = x_209; -x_151 = x_210; +x_151 = x_208; goto block_192; } else @@ -9396,24 +9710,24 @@ size_t x_215; size_t x_216; uint8_t x_217; x_215 = 0; x_216 = lean_usize_of_nat(x_213); lean_dec(x_213); -x_217 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__36(x_212, x_207, x_215, x_216); +x_217 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__38(x_212, x_199, x_215, x_216); x_133 = x_193; x_134 = x_194; x_135 = x_195; -x_136 = x_197; -x_137 = x_196; +x_136 = x_196; +x_137 = x_197; x_138 = x_198; x_139 = x_212; x_140 = x_199; -x_141 = x_201; -x_142 = x_200; +x_141 = x_200; +x_142 = x_201; x_143 = x_202; x_144 = x_203; x_145 = x_204; -x_146 = x_205; -x_147 = x_206; +x_146 = x_206; +x_147 = x_205; x_148 = x_207; -x_149 = x_208; +x_149 = x_210; x_150 = x_209; x_151 = x_217; goto block_192; @@ -9432,29 +9746,29 @@ lean_inc(x_236); x_237 = lean_ctor_get(x_235, 1); lean_inc(x_237); lean_dec_ref(x_235); -x_238 = l_Lean_Syntax_getId(x_223); +x_238 = l_Lean_Syntax_getId(x_221); if (lean_obj_tag(x_236) == 0) { lean_object* x_239; x_239 = lean_box(0); x_193 = x_219; -x_194 = x_230; -x_195 = x_233; -x_196 = x_220; -x_197 = x_237; -x_198 = x_221; -x_199 = x_223; -x_200 = x_226; -x_201 = x_225; -x_202 = x_231; -x_203 = x_228; -x_204 = x_238; -x_205 = x_222; -x_206 = x_229; -x_207 = x_227; -x_208 = x_232; -x_209 = x_236; -x_210 = x_224; +x_194 = x_233; +x_195 = x_220; +x_196 = x_228; +x_197 = x_223; +x_198 = x_222; +x_199 = x_227; +x_200 = x_231; +x_201 = x_229; +x_202 = x_230; +x_203 = x_236; +x_204 = x_221; +x_205 = x_238; +x_206 = x_224; +x_207 = x_232; +x_208 = x_225; +x_209 = x_237; +x_210 = x_226; x_211 = x_239; goto block_218; } @@ -9464,23 +9778,23 @@ lean_object* x_240; x_240 = lean_ctor_get(x_236, 0); lean_inc(x_240); x_193 = x_219; -x_194 = x_230; -x_195 = x_233; -x_196 = x_220; -x_197 = x_237; -x_198 = x_221; -x_199 = x_223; -x_200 = x_226; -x_201 = x_225; -x_202 = x_231; -x_203 = x_228; -x_204 = x_238; -x_205 = x_222; -x_206 = x_229; -x_207 = x_227; -x_208 = x_232; -x_209 = x_236; -x_210 = x_224; +x_194 = x_233; +x_195 = x_220; +x_196 = x_228; +x_197 = x_223; +x_198 = x_222; +x_199 = x_227; +x_200 = x_231; +x_201 = x_229; +x_202 = x_230; +x_203 = x_236; +x_204 = x_221; +x_205 = x_238; +x_206 = x_224; +x_207 = x_232; +x_208 = x_225; +x_209 = x_237; +x_210 = x_226; x_211 = x_240; goto block_218; } @@ -9495,10 +9809,10 @@ lean_dec_ref(x_230); lean_dec(x_229); lean_dec_ref(x_228); lean_dec_ref(x_227); -lean_dec(x_226); -lean_dec_ref(x_225); -lean_dec(x_223); +lean_dec_ref(x_226); +lean_dec(x_222); lean_dec(x_221); +lean_dec(x_220); lean_dec(x_22); lean_dec(x_12); lean_dec_ref(x_11); @@ -9529,16 +9843,16 @@ return x_244; block_270: { lean_object* x_261; lean_object* x_262; uint8_t x_263; -x_261 = l_Lean_Syntax_getArg(x_254, x_1); +x_261 = l_Lean_Syntax_getArg(x_250, x_1); x_262 = l_Lean_Syntax_getArg(x_261, x_1); lean_dec(x_261); x_263 = l_Lean_Syntax_isIdent(x_262); if (x_263 == 0) { lean_object* x_264; lean_object* x_265; uint8_t x_266; -lean_dec_ref(x_255); -lean_dec(x_254); -lean_dec_ref(x_250); +lean_dec_ref(x_260); +lean_dec_ref(x_253); +lean_dec(x_250); lean_dec(x_249); lean_dec(x_22); lean_dec(x_12); @@ -9547,12 +9861,12 @@ lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec_ref(x_7); -x_264 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__1; -x_265 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg(x_262, x_264, x_253, x_258, x_259, x_251, x_256, x_248, x_252); -lean_dec(x_248); -lean_dec(x_251); -lean_dec_ref(x_259); +x_264 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__1; +x_265 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg(x_262, x_264, x_252, x_248, x_247, x_258, x_257, x_255, x_254); +lean_dec(x_255); lean_dec(x_258); +lean_dec_ref(x_247); +lean_dec(x_248); lean_dec(x_262); x_266 = !lean_is_exclusive(x_265); if (x_266 == 0) @@ -9576,21 +9890,21 @@ return x_269; else { x_219 = x_246; -x_220 = x_247; -x_221 = x_249; -x_222 = x_257; -x_223 = x_262; -x_224 = x_260; -x_225 = x_255; -x_226 = x_254; -x_227 = x_250; -x_228 = x_253; -x_229 = x_258; -x_230 = x_259; -x_231 = x_251; -x_232 = x_256; -x_233 = x_248; -x_234 = x_252; +x_220 = x_249; +x_221 = x_262; +x_222 = x_250; +x_223 = x_251; +x_224 = x_256; +x_225 = x_259; +x_226 = x_260; +x_227 = x_253; +x_228 = x_252; +x_229 = x_248; +x_230 = x_247; +x_231 = x_258; +x_232 = x_257; +x_233 = x_255; +x_234 = x_254; goto block_245; } } @@ -9601,19 +9915,19 @@ x_281 = lean_unsigned_to_nat(2u); x_282 = l_Lean_Syntax_getArg(x_22, x_281); x_283 = l_Lean_Syntax_getArg(x_282, x_1); lean_dec(x_282); -x_284 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__3; +x_284 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__3; lean_inc(x_283); x_285 = l_Lean_Syntax_isOfKind(x_283, x_284); if (x_285 == 0) { lean_object* x_286; uint8_t x_287; -x_286 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__5; +x_286 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__5; lean_inc(x_283); x_287 = l_Lean_Syntax_isOfKind(x_283, x_286); if (x_287 == 0) { lean_object* x_288; uint8_t x_289; -x_288 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__7; +x_288 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__7; lean_inc(x_283); x_289 = l_Lean_Syntax_isOfKind(x_283, x_288); if (x_289 == 0) @@ -9636,7 +9950,7 @@ lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec_ref(x_7); -x_290 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34___redArg(x_280); +x_290 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36___redArg(x_280); x_291 = !lean_is_exclusive(x_290); if (x_291 == 0) { @@ -9659,40 +9973,40 @@ return x_294; else { x_246 = x_285; -x_247 = x_287; -x_248 = x_279; +x_247 = x_276; +x_248 = x_275; x_249 = x_271; -x_250 = x_272; -x_251 = x_277; -x_252 = x_280; -x_253 = x_274; -x_254 = x_283; -x_255 = x_273; -x_256 = x_278; -x_257 = x_281; -x_258 = x_275; -x_259 = x_276; -x_260 = x_285; +x_250 = x_283; +x_251 = x_287; +x_252 = x_274; +x_253 = x_272; +x_254 = x_280; +x_255 = x_279; +x_256 = x_281; +x_257 = x_278; +x_258 = x_277; +x_259 = x_285; +x_260 = x_273; goto block_270; } } else { x_246 = x_285; -x_247 = x_287; -x_248 = x_279; +x_247 = x_276; +x_248 = x_275; x_249 = x_271; -x_250 = x_272; -x_251 = x_277; -x_252 = x_280; -x_253 = x_274; -x_254 = x_283; -x_255 = x_273; -x_256 = x_278; -x_257 = x_281; -x_258 = x_275; -x_259 = x_276; -x_260 = x_285; +x_250 = x_283; +x_251 = x_287; +x_252 = x_274; +x_253 = x_272; +x_254 = x_280; +x_255 = x_279; +x_256 = x_281; +x_257 = x_278; +x_258 = x_277; +x_259 = x_285; +x_260 = x_273; goto block_270; } } @@ -9709,7 +10023,7 @@ lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec_ref(x_7); -x_295 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__9; +x_295 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__9; x_296 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg(x_283, x_295, x_274, x_275, x_276, x_277, x_278, x_279, x_280); lean_dec(x_279); lean_dec(x_277); @@ -9748,7 +10062,7 @@ x_305 = l_Lean_Syntax_getArg(x_303, x_1); lean_dec(x_303); lean_inc_ref(x_11); lean_inc_ref(x_7); -x_306 = l_Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37(x_305, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_306 = l_Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39(x_305, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_305); if (lean_obj_tag(x_306) == 0) { @@ -9812,7 +10126,7 @@ else { lean_object* x_313; lean_dec(x_303); -x_313 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37___closed__0; +x_313 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39___closed__0; lean_inc(x_12); lean_inc_ref(x_11); lean_inc(x_10); @@ -9845,7 +10159,7 @@ goto _start; } } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t 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_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t 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) { _start: { lean_object* x_14; lean_object* x_15; uint8_t x_20; @@ -9866,7 +10180,7 @@ return x_21; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; 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; uint8_t 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; uint8_t x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; uint8_t 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; uint8_t x_151; uint8_t x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; uint8_t x_202; uint8_t x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; uint8_t x_219; uint8_t x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; uint8_t x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; uint8_t x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; uint8_t x_254; uint8_t 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_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_302; lean_object* x_315; lean_object* x_316; +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; uint8_t x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint8_t x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; uint8_t 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; uint8_t x_151; uint8_t x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; uint8_t x_202; lean_object* x_203; uint8_t x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; uint8_t x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; uint8_t x_223; lean_object* x_224; uint8_t x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; uint8_t x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; uint8_t x_255; lean_object* x_256; uint8_t x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_302; lean_object* x_315; lean_object* x_316; x_22 = lean_array_uget(x_3, x_5); x_315 = l_Lean_Syntax_getArg(x_22, x_1); x_316 = l_Lean_Syntax_getOptional_x3f(x_315); @@ -9905,7 +10219,7 @@ lean_object* x_40; lean_object* x_41; lean_object* x_42; x_40 = lean_unsigned_to_nat(3u); x_41 = l_Lean_Syntax_getArg(x_22, x_40); lean_dec(x_22); -x_42 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28(x_41, x_33, x_34, x_35, x_36, x_37, x_38, x_39); +x_42 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30(x_41, x_33, x_34, x_35, x_36, x_37, x_38, x_39); if (lean_obj_tag(x_42) == 0) { lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; @@ -9915,14 +10229,14 @@ x_44 = lean_ctor_get(x_42, 1); lean_inc(x_44); lean_dec_ref(x_42); x_45 = lean_alloc_ctor(0, 10, 0); -lean_ctor_set(x_45, 0, x_30); -lean_ctor_set(x_45, 1, x_23); -lean_ctor_set(x_45, 2, x_24); -lean_ctor_set(x_45, 3, x_26); -lean_ctor_set(x_45, 4, x_28); -lean_ctor_set(x_45, 5, x_25); -lean_ctor_set(x_45, 6, x_29); -lean_ctor_set(x_45, 7, x_27); +lean_ctor_set(x_45, 0, x_26); +lean_ctor_set(x_45, 1, x_25); +lean_ctor_set(x_45, 2, x_28); +lean_ctor_set(x_45, 3, x_29); +lean_ctor_set(x_45, 4, x_24); +lean_ctor_set(x_45, 5, x_30); +lean_ctor_set(x_45, 6, x_27); +lean_ctor_set(x_45, 7, x_23); lean_ctor_set(x_45, 8, x_32); lean_ctor_set(x_45, 9, x_43); x_46 = lean_array_push(x_31, x_45); @@ -9935,8 +10249,8 @@ else uint8_t x_47; lean_dec(x_32); lean_dec_ref(x_31); -lean_dec(x_30); -lean_dec_ref(x_29); +lean_dec_ref(x_30); +lean_dec(x_29); lean_dec(x_28); lean_dec_ref(x_27); lean_dec(x_26); @@ -9978,8 +10292,8 @@ lean_inc(x_66); lean_inc_ref(x_65); lean_inc(x_64); lean_inc_ref(x_63); -lean_inc(x_58); -x_70 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0(x_58, x_63, x_64, x_65, x_66, x_67, x_68, x_69); +lean_inc(x_61); +x_70 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0(x_61, x_63, x_64, x_65, x_66, x_67, x_68, x_69); if (lean_obj_tag(x_70) == 0) { lean_object* x_71; uint8_t x_72; lean_object* x_73; @@ -9994,8 +10308,8 @@ lean_inc_ref(x_65); lean_inc(x_64); lean_inc_ref(x_63); lean_inc_ref(x_55); -lean_inc(x_58); -x_73 = l_Lean_Elab_Term_applyAttributesAt(x_58, x_55, x_72, x_63, x_64, x_65, x_66, x_67, x_68, x_71); +lean_inc(x_61); +x_73 = l_Lean_Elab_Term_applyAttributesAt(x_61, x_55, x_72, x_63, x_64, x_65, x_66, x_67, x_68, x_71); if (lean_obj_tag(x_73) == 0) { lean_object* x_74; lean_object* x_75; @@ -10004,9 +10318,9 @@ lean_inc(x_74); lean_dec_ref(x_73); lean_inc_ref(x_67); lean_inc_ref(x_63); -lean_inc(x_58); -x_75 = l_Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16(x_58, x_57, x_63, x_64, x_65, x_66, x_67, x_68, x_74); -lean_dec(x_57); +lean_inc(x_61); +x_75 = l_Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18(x_61, x_58, x_63, x_64, x_65, x_66, x_67, x_68, x_74); +lean_dec(x_58); if (lean_obj_tag(x_75) == 0) { lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; @@ -10014,20 +10328,20 @@ x_76 = lean_ctor_get(x_75, 1); lean_inc(x_76); lean_dec_ref(x_75); lean_inc_ref(x_67); -lean_inc(x_58); -x_77 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25(x_58, x_53, x_60, x_63, x_64, x_65, x_66, x_67, x_68, x_76); +lean_inc(x_61); +x_77 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27(x_61, x_56, x_54, x_63, x_64, x_65, x_66, x_67, x_68, x_76); x_78 = lean_ctor_get(x_77, 1); lean_inc(x_78); lean_dec_ref(x_77); -x_79 = l_Lean_Syntax_getArg(x_53, x_2); +x_79 = l_Lean_Syntax_getArg(x_56, x_2); x_80 = l_Lean_Syntax_getArgs(x_79); lean_dec(x_79); -x_81 = l_Lean_Syntax_getArg(x_53, x_54); -x_82 = l_Lean_Elab_Term_expandOptType(x_60, x_81); +x_81 = l_Lean_Syntax_getArg(x_56, x_60); +x_82 = l_Lean_Elab_Term_expandOptType(x_54, x_81); lean_dec(x_81); x_83 = lean_box(x_52); x_84 = lean_box(x_20); -x_85 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___boxed), 11, 3); +x_85 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___boxed), 11, 3); lean_closure_set(x_85, 0, x_82); lean_closure_set(x_85, 1, x_83); lean_closure_set(x_85, 2, x_84); @@ -10060,7 +10374,7 @@ lean_inc_ref(x_65); x_94 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_91, x_92, x_93, x_65, x_66, x_67, x_68, x_88); if (lean_obj_tag(x_94) == 0) { -if (x_61 == 0) +if (x_57 == 0) { lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; x_95 = lean_ctor_get(x_94, 0); @@ -10069,15 +10383,15 @@ x_96 = lean_ctor_get(x_94, 1); lean_inc(x_96); lean_dec_ref(x_94); x_97 = lean_unsigned_to_nat(3u); -x_98 = l_Lean_Syntax_getArg(x_53, x_97); +x_98 = l_Lean_Syntax_getArg(x_56, x_97); x_99 = lean_box(x_20); x_100 = lean_alloc_closure((void*)(l_Lean_Elab_Term_expandMatchAltsIntoMatch___boxed), 5, 3); -lean_closure_set(x_100, 0, x_53); +lean_closure_set(x_100, 0, x_56); lean_closure_set(x_100, 1, x_98); lean_closure_set(x_100, 2, x_99); lean_inc_ref(x_67); lean_inc_ref(x_63); -x_101 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg(x_100, x_63, x_64, x_65, x_66, x_67, x_68, x_96); +x_101 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg(x_100, x_63, x_64, x_65, x_66, x_67, x_68, x_96); if (lean_obj_tag(x_101) == 0) { lean_object* x_102; lean_object* x_103; @@ -10086,14 +10400,14 @@ lean_inc(x_102); x_103 = lean_ctor_get(x_101, 1); lean_inc(x_103); lean_dec_ref(x_101); -x_23 = x_55; -x_24 = x_56; -x_25 = x_90; -x_26 = x_58; -x_27 = x_95; +x_23 = x_95; +x_24 = x_53; +x_25 = x_55; +x_26 = x_54; +x_27 = x_89; x_28 = x_59; -x_29 = x_89; -x_30 = x_60; +x_29 = x_61; +x_30 = x_90; x_31 = x_62; x_32 = x_102; x_33 = x_63; @@ -10118,11 +10432,11 @@ lean_dec_ref(x_65); lean_dec(x_64); lean_dec_ref(x_63); lean_dec_ref(x_62); -lean_dec(x_60); +lean_dec(x_61); lean_dec(x_59); -lean_dec(x_58); -lean_dec(x_56); lean_dec_ref(x_55); +lean_dec(x_54); +lean_dec(x_53); lean_dec(x_22); lean_dec(x_12); lean_dec_ref(x_11); @@ -10159,16 +10473,16 @@ x_109 = lean_ctor_get(x_94, 1); lean_inc(x_109); lean_dec_ref(x_94); x_110 = lean_unsigned_to_nat(4u); -x_111 = l_Lean_Syntax_getArg(x_53, x_110); -lean_dec(x_53); -x_23 = x_55; -x_24 = x_56; -x_25 = x_90; -x_26 = x_58; -x_27 = x_108; +x_111 = l_Lean_Syntax_getArg(x_56, x_110); +lean_dec(x_56); +x_23 = x_108; +x_24 = x_53; +x_25 = x_55; +x_26 = x_54; +x_27 = x_89; x_28 = x_59; -x_29 = x_89; -x_30 = x_60; +x_29 = x_61; +x_30 = x_90; x_31 = x_62; x_32 = x_111; x_33 = x_63; @@ -10193,11 +10507,11 @@ lean_dec_ref(x_65); lean_dec(x_64); lean_dec_ref(x_63); lean_dec_ref(x_62); -lean_dec(x_60); +lean_dec(x_61); lean_dec(x_59); -lean_dec(x_58); lean_dec(x_56); lean_dec_ref(x_55); +lean_dec(x_54); lean_dec(x_53); lean_dec(x_22); lean_dec(x_12); @@ -10236,11 +10550,11 @@ lean_dec_ref(x_65); lean_dec(x_64); lean_dec_ref(x_63); lean_dec_ref(x_62); -lean_dec(x_60); +lean_dec(x_61); lean_dec(x_59); -lean_dec(x_58); lean_dec(x_56); lean_dec_ref(x_55); +lean_dec(x_54); lean_dec(x_53); lean_dec(x_22); lean_dec(x_12); @@ -10279,11 +10593,11 @@ lean_dec_ref(x_65); lean_dec(x_64); lean_dec_ref(x_63); lean_dec_ref(x_62); -lean_dec(x_60); +lean_dec(x_61); lean_dec(x_59); -lean_dec(x_58); lean_dec(x_56); lean_dec_ref(x_55); +lean_dec(x_54); lean_dec(x_53); lean_dec(x_22); lean_dec(x_12); @@ -10322,12 +10636,12 @@ lean_dec_ref(x_65); lean_dec(x_64); lean_dec_ref(x_63); lean_dec_ref(x_62); -lean_dec(x_60); +lean_dec(x_61); lean_dec(x_59); lean_dec(x_58); -lean_dec(x_57); lean_dec(x_56); lean_dec_ref(x_55); +lean_dec(x_54); lean_dec(x_53); lean_dec(x_22); lean_dec(x_12); @@ -10366,12 +10680,12 @@ lean_dec_ref(x_65); lean_dec(x_64); lean_dec_ref(x_63); lean_dec_ref(x_62); -lean_dec(x_60); +lean_dec(x_61); lean_dec(x_59); lean_dec(x_58); -lean_dec(x_57); lean_dec(x_56); lean_dec_ref(x_55); +lean_dec(x_54); lean_dec(x_53); lean_dec(x_22); lean_dec(x_12); @@ -10405,34 +10719,34 @@ block_192: if (x_151 == 0) { x_52 = x_133; -x_53 = x_134; -x_54 = x_145; -x_55 = x_135; -x_56 = x_146; -x_57 = x_148; -x_58 = x_138; -x_59 = x_150; -x_60 = x_142; -x_61 = x_143; -x_62 = x_139; -x_63 = x_144; -x_64 = x_137; -x_65 = x_147; -x_66 = x_136; -x_67 = x_140; -x_68 = x_141; +x_53 = x_140; +x_54 = x_141; +x_55 = x_134; +x_56 = x_142; +x_57 = x_144; +x_58 = x_143; +x_59 = x_146; +x_60 = x_137; +x_61 = x_147; +x_62 = x_148; +x_63 = x_136; +x_64 = x_138; +x_65 = x_145; +x_66 = x_150; +x_67 = x_139; +x_68 = x_135; x_69 = x_149; goto block_132; } else { uint8_t x_152; -lean_dec(x_150); -lean_dec(x_148); +lean_dec_ref(x_148); lean_dec(x_146); -lean_dec_ref(x_139); -lean_dec_ref(x_135); -lean_dec(x_134); +lean_dec(x_143); +lean_dec(x_142); +lean_dec(x_140); +lean_dec_ref(x_134); lean_dec(x_22); lean_dec(x_12); lean_dec_ref(x_11); @@ -10440,13 +10754,13 @@ lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec_ref(x_7); -x_152 = !lean_is_exclusive(x_140); +x_152 = !lean_is_exclusive(x_139); if (x_152 == 0) { 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; uint8_t x_161; -x_153 = lean_ctor_get(x_140, 5); +x_153 = lean_ctor_get(x_139, 5); x_154 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___closed__1; -x_155 = l_Lean_MessageData_ofName(x_138); +x_155 = l_Lean_MessageData_ofName(x_147); x_156 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_156, 0, x_154); lean_ctor_set(x_156, 1, x_155); @@ -10454,16 +10768,16 @@ x_157 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0_ x_158 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_158, 0, x_156); lean_ctor_set(x_158, 1, x_157); -x_159 = l_Lean_replaceRef(x_142, x_153); +x_159 = l_Lean_replaceRef(x_141, x_153); lean_dec(x_153); -lean_dec(x_142); -lean_ctor_set(x_140, 5, x_159); -x_160 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_158, x_144, x_137, x_147, x_136, x_140, x_141, x_149); lean_dec(x_141); -lean_dec_ref(x_140); -lean_dec(x_136); -lean_dec_ref(x_147); -lean_dec(x_137); +lean_ctor_set(x_139, 5, x_159); +x_160 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_158, x_136, x_138, x_145, x_150, x_139, x_135, x_149); +lean_dec(x_135); +lean_dec_ref(x_139); +lean_dec(x_150); +lean_dec_ref(x_145); +lean_dec(x_138); x_161 = !lean_is_exclusive(x_160); if (x_161 == 0) { @@ -10486,21 +10800,21 @@ return x_164; else { lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; uint8_t x_176; lean_object* x_177; uint8_t x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; -x_165 = lean_ctor_get(x_140, 0); -x_166 = lean_ctor_get(x_140, 1); -x_167 = lean_ctor_get(x_140, 2); -x_168 = lean_ctor_get(x_140, 3); -x_169 = lean_ctor_get(x_140, 4); -x_170 = lean_ctor_get(x_140, 5); -x_171 = lean_ctor_get(x_140, 6); -x_172 = lean_ctor_get(x_140, 7); -x_173 = lean_ctor_get(x_140, 8); -x_174 = lean_ctor_get(x_140, 9); -x_175 = lean_ctor_get(x_140, 10); -x_176 = lean_ctor_get_uint8(x_140, sizeof(void*)*13); -x_177 = lean_ctor_get(x_140, 11); -x_178 = lean_ctor_get_uint8(x_140, sizeof(void*)*13 + 1); -x_179 = lean_ctor_get(x_140, 12); +x_165 = lean_ctor_get(x_139, 0); +x_166 = lean_ctor_get(x_139, 1); +x_167 = lean_ctor_get(x_139, 2); +x_168 = lean_ctor_get(x_139, 3); +x_169 = lean_ctor_get(x_139, 4); +x_170 = lean_ctor_get(x_139, 5); +x_171 = lean_ctor_get(x_139, 6); +x_172 = lean_ctor_get(x_139, 7); +x_173 = lean_ctor_get(x_139, 8); +x_174 = lean_ctor_get(x_139, 9); +x_175 = lean_ctor_get(x_139, 10); +x_176 = lean_ctor_get_uint8(x_139, sizeof(void*)*13); +x_177 = lean_ctor_get(x_139, 11); +x_178 = lean_ctor_get_uint8(x_139, sizeof(void*)*13 + 1); +x_179 = lean_ctor_get(x_139, 12); lean_inc(x_179); lean_inc(x_177); lean_inc(x_175); @@ -10514,9 +10828,9 @@ lean_inc(x_168); lean_inc(x_167); lean_inc(x_166); lean_inc(x_165); -lean_dec(x_140); +lean_dec(x_139); x_180 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___closed__1; -x_181 = l_Lean_MessageData_ofName(x_138); +x_181 = l_Lean_MessageData_ofName(x_147); x_182 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_182, 0, x_180); lean_ctor_set(x_182, 1, x_181); @@ -10524,9 +10838,9 @@ x_183 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0_ x_184 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_184, 0, x_182); lean_ctor_set(x_184, 1, x_183); -x_185 = l_Lean_replaceRef(x_142, x_170); +x_185 = l_Lean_replaceRef(x_141, x_170); lean_dec(x_170); -lean_dec(x_142); +lean_dec(x_141); x_186 = lean_alloc_ctor(0, 13, 2); lean_ctor_set(x_186, 0, x_165); lean_ctor_set(x_186, 1, x_166); @@ -10543,12 +10857,12 @@ lean_ctor_set(x_186, 11, x_177); lean_ctor_set(x_186, 12, x_179); lean_ctor_set_uint8(x_186, sizeof(void*)*13, x_176); lean_ctor_set_uint8(x_186, sizeof(void*)*13 + 1, x_178); -x_187 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_184, x_144, x_137, x_147, x_136, x_186, x_141, x_149); -lean_dec(x_141); +x_187 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_184, x_136, x_138, x_145, x_150, x_186, x_135, x_149); +lean_dec(x_135); lean_dec_ref(x_186); -lean_dec(x_136); -lean_dec_ref(x_147); -lean_dec(x_137); +lean_dec(x_150); +lean_dec_ref(x_145); +lean_dec(x_138); x_188 = lean_ctor_get(x_187, 0); lean_inc(x_188); x_189 = lean_ctor_get(x_187, 1); @@ -10575,9 +10889,9 @@ return x_191; block_218: { lean_object* x_212; lean_object* x_213; uint8_t x_214; -lean_inc(x_206); -x_212 = l_Lean_Name_append(x_211, x_206); -x_213 = lean_array_get_size(x_198); +lean_inc(x_207); +x_212 = l_Lean_Name_append(x_211, x_207); +x_213 = lean_array_get_size(x_208); x_214 = lean_nat_dec_lt(x_1, x_213); if (x_214 == 0) { @@ -10587,20 +10901,20 @@ x_134 = x_194; x_135 = x_195; x_136 = x_196; x_137 = x_197; -x_138 = x_212; -x_139 = x_198; -x_140 = x_199; -x_141 = x_200; -x_142 = x_201; -x_143 = x_202; +x_138 = x_198; +x_139 = x_199; +x_140 = x_200; +x_141 = x_201; +x_142 = x_203; +x_143 = x_205; x_144 = x_204; -x_145 = x_205; -x_146 = x_206; -x_147 = x_207; +x_145 = x_206; +x_146 = x_207; +x_147 = x_212; x_148 = x_208; x_149 = x_209; x_150 = x_210; -x_151 = x_203; +x_151 = x_202; goto block_192; } else @@ -10613,20 +10927,20 @@ x_134 = x_194; x_135 = x_195; x_136 = x_196; x_137 = x_197; -x_138 = x_212; -x_139 = x_198; -x_140 = x_199; -x_141 = x_200; -x_142 = x_201; -x_143 = x_202; +x_138 = x_198; +x_139 = x_199; +x_140 = x_200; +x_141 = x_201; +x_142 = x_203; +x_143 = x_205; x_144 = x_204; -x_145 = x_205; -x_146 = x_206; -x_147 = x_207; +x_145 = x_206; +x_146 = x_207; +x_147 = x_212; x_148 = x_208; x_149 = x_209; x_150 = x_210; -x_151 = x_203; +x_151 = x_202; goto block_192; } else @@ -10635,22 +10949,22 @@ size_t x_215; size_t x_216; uint8_t x_217; x_215 = 0; x_216 = lean_usize_of_nat(x_213); lean_dec(x_213); -x_217 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__36(x_212, x_198, x_215, x_216); +x_217 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__38(x_212, x_208, x_215, x_216); x_133 = x_193; x_134 = x_194; x_135 = x_195; x_136 = x_196; x_137 = x_197; -x_138 = x_212; -x_139 = x_198; -x_140 = x_199; -x_141 = x_200; -x_142 = x_201; -x_143 = x_202; +x_138 = x_198; +x_139 = x_199; +x_140 = x_200; +x_141 = x_201; +x_142 = x_203; +x_143 = x_205; x_144 = x_204; -x_145 = x_205; -x_146 = x_206; -x_147 = x_207; +x_145 = x_206; +x_146 = x_207; +x_147 = x_212; x_148 = x_208; x_149 = x_209; x_150 = x_210; @@ -10671,29 +10985,29 @@ lean_inc(x_236); x_237 = lean_ctor_get(x_235, 1); lean_inc(x_237); lean_dec_ref(x_235); -x_238 = l_Lean_Syntax_getId(x_225); +x_238 = l_Lean_Syntax_getId(x_221); if (lean_obj_tag(x_236) == 0) { lean_object* x_239; x_239 = lean_box(0); x_193 = x_219; -x_194 = x_221; -x_195 = x_223; -x_196 = x_231; -x_197 = x_229; -x_198 = x_227; +x_194 = x_220; +x_195 = x_233; +x_196 = x_228; +x_197 = x_226; +x_198 = x_229; x_199 = x_232; -x_200 = x_233; -x_201 = x_225; -x_202 = x_226; -x_203 = x_220; -x_204 = x_228; -x_205 = x_222; -x_206 = x_238; -x_207 = x_230; -x_208 = x_224; +x_200 = x_236; +x_201 = x_221; +x_202 = x_223; +x_203 = x_222; +x_204 = x_225; +x_205 = x_224; +x_206 = x_230; +x_207 = x_238; +x_208 = x_227; x_209 = x_237; -x_210 = x_236; +x_210 = x_231; x_211 = x_239; goto block_218; } @@ -10703,23 +11017,23 @@ lean_object* x_240; x_240 = lean_ctor_get(x_236, 0); lean_inc(x_240); x_193 = x_219; -x_194 = x_221; -x_195 = x_223; -x_196 = x_231; -x_197 = x_229; -x_198 = x_227; +x_194 = x_220; +x_195 = x_233; +x_196 = x_228; +x_197 = x_226; +x_198 = x_229; x_199 = x_232; -x_200 = x_233; -x_201 = x_225; -x_202 = x_226; -x_203 = x_220; -x_204 = x_228; -x_205 = x_222; -x_206 = x_238; -x_207 = x_230; -x_208 = x_224; +x_200 = x_236; +x_201 = x_221; +x_202 = x_223; +x_203 = x_222; +x_204 = x_225; +x_205 = x_224; +x_206 = x_230; +x_207 = x_238; +x_208 = x_227; x_209 = x_237; -x_210 = x_236; +x_210 = x_231; x_211 = x_240; goto block_218; } @@ -10734,10 +11048,10 @@ lean_dec_ref(x_230); lean_dec(x_229); lean_dec_ref(x_228); lean_dec_ref(x_227); -lean_dec(x_225); lean_dec(x_224); -lean_dec_ref(x_223); +lean_dec(x_222); lean_dec(x_221); +lean_dec_ref(x_220); lean_dec(x_22); lean_dec(x_12); lean_dec_ref(x_11); @@ -10768,16 +11082,16 @@ return x_244; block_270: { lean_object* x_261; lean_object* x_262; uint8_t x_263; -x_261 = l_Lean_Syntax_getArg(x_248, x_1); +x_261 = l_Lean_Syntax_getArg(x_254, x_1); x_262 = l_Lean_Syntax_getArg(x_261, x_1); lean_dec(x_261); x_263 = l_Lean_Syntax_isIdent(x_262); if (x_263 == 0) { lean_object* x_264; lean_object* x_265; uint8_t x_266; -lean_dec(x_258); -lean_dec_ref(x_249); -lean_dec(x_248); +lean_dec(x_256); +lean_dec(x_254); +lean_dec_ref(x_250); lean_dec_ref(x_247); lean_dec(x_22); lean_dec(x_12); @@ -10786,12 +11100,12 @@ lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec_ref(x_7); -x_264 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__1; -x_265 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg(x_262, x_264, x_251, x_260, x_259, x_252, x_257, x_250, x_253); -lean_dec(x_250); -lean_dec(x_252); -lean_dec_ref(x_259); -lean_dec(x_260); +x_264 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__1; +x_265 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg(x_262, x_264, x_258, x_251, x_252, x_253, x_248, x_259, x_260); +lean_dec(x_259); +lean_dec(x_253); +lean_dec_ref(x_252); +lean_dec(x_251); lean_dec(x_262); x_266 = !lean_is_exclusive(x_265); if (x_266 == 0) @@ -10815,21 +11129,21 @@ return x_269; else { x_219 = x_246; -x_220 = x_255; -x_221 = x_248; -x_222 = x_256; -x_223 = x_249; -x_224 = x_258; -x_225 = x_262; -x_226 = x_254; -x_227 = x_247; -x_228 = x_251; -x_229 = x_260; -x_230 = x_259; -x_231 = x_252; -x_232 = x_257; -x_233 = x_250; -x_234 = x_253; +x_220 = x_247; +x_221 = x_262; +x_222 = x_254; +x_223 = x_255; +x_224 = x_256; +x_225 = x_257; +x_226 = x_249; +x_227 = x_250; +x_228 = x_258; +x_229 = x_251; +x_230 = x_252; +x_231 = x_253; +x_232 = x_248; +x_233 = x_259; +x_234 = x_260; goto block_245; } } @@ -10840,19 +11154,19 @@ x_281 = lean_unsigned_to_nat(2u); x_282 = l_Lean_Syntax_getArg(x_22, x_281); x_283 = l_Lean_Syntax_getArg(x_282, x_1); lean_dec(x_282); -x_284 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__3; +x_284 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__3; lean_inc(x_283); x_285 = l_Lean_Syntax_isOfKind(x_283, x_284); if (x_285 == 0) { lean_object* x_286; uint8_t x_287; -x_286 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__5; +x_286 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__5; lean_inc(x_283); x_287 = l_Lean_Syntax_isOfKind(x_283, x_286); if (x_287 == 0) { lean_object* x_288; uint8_t x_289; -x_288 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__7; +x_288 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__7; lean_inc(x_283); x_289 = l_Lean_Syntax_isOfKind(x_283, x_288); if (x_289 == 0) @@ -10875,7 +11189,7 @@ lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec_ref(x_7); -x_290 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34___redArg(x_280); +x_290 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36___redArg(x_280); x_291 = !lean_is_exclusive(x_290); if (x_291 == 0) { @@ -10898,40 +11212,40 @@ return x_294; else { x_246 = x_285; -x_247 = x_272; -x_248 = x_283; -x_249 = x_273; -x_250 = x_279; -x_251 = x_274; -x_252 = x_277; -x_253 = x_280; -x_254 = x_287; +x_247 = x_273; +x_248 = x_278; +x_249 = x_281; +x_250 = x_272; +x_251 = x_275; +x_252 = x_276; +x_253 = x_277; +x_254 = x_283; x_255 = x_285; -x_256 = x_281; -x_257 = x_278; -x_258 = x_271; -x_259 = x_276; -x_260 = x_275; +x_256 = x_271; +x_257 = x_287; +x_258 = x_274; +x_259 = x_279; +x_260 = x_280; goto block_270; } } else { x_246 = x_285; -x_247 = x_272; -x_248 = x_283; -x_249 = x_273; -x_250 = x_279; -x_251 = x_274; -x_252 = x_277; -x_253 = x_280; -x_254 = x_287; +x_247 = x_273; +x_248 = x_278; +x_249 = x_281; +x_250 = x_272; +x_251 = x_275; +x_252 = x_276; +x_253 = x_277; +x_254 = x_283; x_255 = x_285; -x_256 = x_281; -x_257 = x_278; -x_258 = x_271; -x_259 = x_276; -x_260 = x_275; +x_256 = x_271; +x_257 = x_287; +x_258 = x_274; +x_259 = x_279; +x_260 = x_280; goto block_270; } } @@ -10948,7 +11262,7 @@ lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec_ref(x_7); -x_295 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__9; +x_295 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__9; x_296 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg(x_283, x_295, x_274, x_275, x_276, x_277, x_278, x_279, x_280); lean_dec(x_279); lean_dec(x_277); @@ -10987,7 +11301,7 @@ x_305 = l_Lean_Syntax_getArg(x_303, x_1); lean_dec(x_303); lean_inc_ref(x_11); lean_inc_ref(x_7); -x_306 = l_Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37(x_305, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_306 = l_Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39(x_305, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_305); if (lean_obj_tag(x_306) == 0) { @@ -11051,7 +11365,7 @@ else { lean_object* x_313; lean_dec(x_303); -x_313 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37___closed__0; +x_313 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39___closed__0; lean_inc(x_12); lean_inc_ref(x_11); lean_inc(x_10); @@ -11077,16 +11391,16 @@ block_19: size_t x_16; size_t x_17; lean_object* x_18; x_16 = 1; x_17 = lean_usize_add(x_5, x_16); -x_18 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42(x_1, x_2, x_3, x_4, x_17, x_14, x_7, x_8, x_9, x_10, x_11, x_12, x_15); +x_18 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44(x_1, x_2, x_3, x_4, x_17, x_14, x_7, x_8, x_9, x_10, x_11, x_12, x_15); return x_18; } } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t 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_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t 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) { _start: { lean_object* x_15; -x_15 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42___redArg(x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_15 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44___redArg(x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); return x_15; } } @@ -11113,7 +11427,7 @@ x_14 = l_Lean_Syntax_getSepArgs(x_13); lean_dec(x_13); x_15 = lean_array_size(x_14); x_16 = 0; -x_17 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42___redArg(x_9, x_11, x_14, x_15, x_16, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_17 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44___redArg(x_9, x_11, x_14, x_15, x_16, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec_ref(x_14); if (lean_obj_tag(x_17) == 0) { @@ -11437,18 +11751,43 @@ lean_dec_ref(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0___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_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg(x_1, x_2, x_3, x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); +lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); +lean_dec_ref(x_2); return x_9; } } +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0___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_10; lean_object* x_11; +x_10 = lean_unbox(x_1); +x_11 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +return x_11; +} +} LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { @@ -11465,34 +11804,43 @@ x_13 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__ return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec_ref(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_3); +x_12 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__5(x_1, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; uint8_t x_5; uint8_t x_6; lean_object* x_7; x_4 = lean_unbox(x_1); x_5 = lean_unbox(x_2); -x_6 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0(x_4, x_5, x_3); +x_6 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0(x_4, x_5, x_3); lean_dec(x_3); x_7 = lean_box(x_6); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___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_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___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_10; uint8_t x_11; lean_object* x_12; x_10 = lean_unbox(x_3); x_11 = lean_unbox(x_4); -x_12 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg(x_1, x_2, x_10, x_11, x_5, x_6, x_7, x_8, x_9); +x_12 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg(x_1, x_2, x_10, x_11, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec(x_6); lean_dec_ref(x_5); @@ -11500,13 +11848,13 @@ lean_dec(x_1); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___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); x_13 = lean_unbox(x_4); -x_14 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16(x_1, x_2, x_12, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18(x_1, x_2, x_12, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_10); lean_dec(x_8); lean_dec_ref(x_7); @@ -11516,13 +11864,13 @@ lean_dec(x_1); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16___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_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; uint8_t x_12; lean_object* x_13; x_11 = lean_unbox(x_2); x_12 = lean_unbox(x_3); -x_13 = l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16(x_1, x_11, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18(x_1, x_11, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec(x_7); lean_dec_ref(x_6); @@ -11531,11 +11879,11 @@ lean_dec_ref(x_4); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16___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_EXPORT lean_object* l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -11544,11 +11892,11 @@ lean_dec_ref(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__19___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_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__21___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: { lean_object* x_10; -x_10 = l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__19(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_logErrorAt___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__21(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_6); lean_dec_ref(x_5); @@ -11558,7 +11906,7 @@ lean_dec(x_1); return x_10; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__20___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__22___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { size_t x_15; size_t x_16; lean_object* x_17; @@ -11566,7 +11914,7 @@ x_15 = lean_unbox_usize(x_5); lean_dec(x_5); x_16 = lean_unbox_usize(x_6); lean_dec(x_6); -x_17 = l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__20(x_1, x_2, x_3, x_4, x_15, x_16, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_17 = l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__22(x_1, x_2, x_3, x_4, x_15, x_16, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_13); lean_dec(x_11); lean_dec_ref(x_10); @@ -11578,11 +11926,11 @@ lean_dec(x_1); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16___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_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -11592,11 +11940,11 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22___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_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -11605,11 +11953,11 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___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_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec(x_7); lean_dec_ref(x_6); @@ -11618,11 +11966,11 @@ lean_dec(x_1); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___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_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___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: { lean_object* x_10; -x_10 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18(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_6); lean_dec_ref(x_5); @@ -11631,11 +11979,11 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16___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_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18___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: { lean_object* x_10; -x_10 = l_Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18(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_6); lean_dec_ref(x_5); @@ -11644,20 +11992,20 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__25___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__27___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__25___redArg(x_1, x_2, x_3); +x_4 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__27___redArg(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__25___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_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__27___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__25(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__27(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -11667,21 +12015,21 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__26___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__28___redArg___boxed(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; -x_6 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__26___redArg(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__28___redArg(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__26___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_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__28___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: { lean_object* x_10; -x_10 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__26(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__28(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -11691,11 +12039,11 @@ lean_dec_ref(x_3); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25___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_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec(x_7); lean_dec_ref(x_6); @@ -11706,11 +12054,11 @@ lean_dec(x_2); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__0___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_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); @@ -11720,7 +12068,7 @@ lean_dec_ref(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -11741,12 +12089,12 @@ lean_object* x_17 = _args[16]; _start: { lean_object* x_18; -x_18 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_18 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); lean_dec(x_9); return x_18; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -11767,34 +12115,34 @@ lean_object* x_17 = _args[16]; _start: { lean_object* x_18; -x_18 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_18 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); lean_dec(x_8); return x_18; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { lean_object* x_17; -x_17 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_17 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); lean_dec(x_7); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__29___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__31___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__29___redArg(x_1, x_2, x_3); +x_4 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__31___redArg(x_1, x_2, x_3); lean_dec_ref(x_2); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__29___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_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__31___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__29(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__31(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); @@ -11804,11 +12152,11 @@ lean_dec_ref(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg___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_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_6); lean_dec_ref(x_5); lean_dec(x_4); @@ -11816,11 +12164,11 @@ lean_dec_ref(x_3); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___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_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___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: { lean_object* x_10; -x_10 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -11830,30 +12178,30 @@ lean_dec_ref(x_3); return x_10; } } -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__31___redArg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__33___redArg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__31___redArg(x_1, x_2); +x_3 = l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__33___redArg(x_1, x_2); lean_dec_ref(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__31___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__33___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__31(x_1, x_2, x_3, x_4); +x_5 = l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__33(x_1, x_2, x_3, x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); return x_5; } } -LEAN_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__32___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_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__34___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_List_forM___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__32(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_List_forM___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__34(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); @@ -11863,11 +12211,11 @@ lean_dec_ref(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___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_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___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: { lean_object* x_10; -x_10 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -11877,11 +12225,11 @@ lean_dec_ref(x_3); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34___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_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); @@ -11891,56 +12239,56 @@ lean_dec_ref(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__0(x_1, x_2, x_3, x_4); +x_5 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__0(x_1, x_2, x_3, x_4); lean_dec_ref(x_3); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__1(x_1, x_2, x_3, x_4); +x_5 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__1(x_1, x_2, x_3, x_4); lean_dec_ref(x_3); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__2(x_1, x_2, x_3); +x_4 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__2(x_1, x_2, x_3); lean_dec_ref(x_2); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__3(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__3(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec_ref(x_5); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__4___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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__4___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) { _start: { lean_object* x_7; -x_7 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___lam__4(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___lam__4(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec_ref(x_5); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg___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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -11948,11 +12296,11 @@ lean_dec(x_3); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29___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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31___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: { lean_object* x_10; -x_10 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31(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_6); lean_dec_ref(x_5); @@ -11960,7 +12308,7 @@ lean_dec(x_4); return x_10; } } -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__36___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__38___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { size_t x_5; size_t x_6; uint8_t x_7; lean_object* x_8; @@ -11968,29 +12316,29 @@ x_5 = lean_unbox_usize(x_3); lean_dec(x_3); x_6 = lean_unbox_usize(x_4); lean_dec(x_4); -x_7 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__36(x_1, x_2, x_5, x_6); +x_7 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__38(x_1, x_2, x_5, x_6); lean_dec_ref(x_2); lean_dec(x_1); x_8 = lean_box(x_7); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0(x_1); +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__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_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; lean_object* x_12; x_11 = lean_unbox(x_1); -x_12 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); @@ -11999,11 +12347,11 @@ lean_dec(x_5); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___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_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -12012,11 +12360,11 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__38___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_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__40___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__38(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__40(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -12025,7 +12373,7 @@ lean_dec_ref(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__39___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__41___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: { size_t x_12; size_t x_13; lean_object* x_14; @@ -12033,7 +12381,7 @@ x_12 = lean_unbox_usize(x_2); lean_dec(x_2); x_13 = lean_unbox_usize(x_3); lean_dec(x_3); -x_14 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__39(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__41(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_10); lean_dec(x_8); lean_dec_ref(x_7); @@ -12042,11 +12390,11 @@ lean_dec_ref(x_1); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37___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_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -12055,11 +12403,11 @@ lean_dec_ref(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37___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_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -12068,18 +12416,18 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___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_2); x_13 = lean_unbox(x_3); -x_14 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec_ref(x_4); return x_14; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { size_t x_14; size_t x_15; lean_object* x_16; @@ -12087,14 +12435,14 @@ x_14 = lean_unbox_usize(x_4); lean_dec(x_4); x_15 = lean_unbox_usize(x_5); lean_dec(x_5); -x_16 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42(x_1, x_2, x_3, x_14, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_16 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44(x_1, x_2, x_3, x_14, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec_ref(x_3); lean_dec(x_2); lean_dec(x_1); return x_16; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { size_t x_14; size_t x_15; lean_object* x_16; @@ -12102,14 +12450,14 @@ x_14 = lean_unbox_usize(x_4); lean_dec(x_4); x_15 = lean_unbox_usize(x_5); lean_dec(x_5); -x_16 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42___redArg(x_1, x_2, x_3, x_14, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_16 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44___redArg(x_1, x_2, x_3, x_14, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec_ref(x_3); lean_dec(x_2); lean_dec(x_1); return x_16; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { size_t x_15; size_t x_16; lean_object* x_17; @@ -12117,7 +12465,7 @@ x_15 = lean_unbox_usize(x_5); lean_dec(x_5); x_16 = lean_unbox_usize(x_6); lean_dec(x_6); -x_17 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42(x_1, x_2, x_3, x_4, x_15, x_16, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_17 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44(x_1, x_2, x_3, x_4, x_15, x_16, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec(x_2); @@ -13279,93 +13627,146 @@ x_18 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_El return x_18; } } -LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__2___redArg(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_EXPORT lean_object* l_Array_mapFinIdxM_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__2___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_11; uint8_t x_12; -x_11 = lean_unsigned_to_nat(0u); -x_12 = lean_nat_dec_eq(x_7, x_11); -if (x_12 == 1) +lean_object* x_12; uint8_t x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = lean_nat_dec_eq(x_7, x_12); +if (x_13 == 1) { -lean_object* x_13; +lean_object* x_14; lean_dec(x_8); lean_dec(x_7); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec_ref(x_1); -x_13 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_13, 0, x_9); -lean_ctor_set(x_13, 1, x_10); -return x_13; +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_9); +lean_ctor_set(x_14, 1, x_11); +return x_14; } else { -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_14 = lean_array_fget(x_6, x_8); -x_15 = lean_ctor_get(x_14, 0); -lean_inc(x_15); -x_16 = lean_ctor_get(x_14, 1); -lean_inc_ref(x_16); -x_17 = lean_ctor_get(x_14, 2); +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; 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; +x_15 = lean_st_ref_get(x_10, x_11); +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); -x_18 = lean_ctor_get(x_14, 3); -lean_inc(x_18); -x_19 = lean_ctor_get(x_14, 4); -lean_inc(x_19); -x_20 = lean_ctor_get(x_14, 5); -lean_inc_ref(x_20); -x_21 = lean_ctor_get(x_14, 6); +lean_dec_ref(x_15); +x_18 = lean_array_fget(x_6, x_8); +x_19 = lean_ctor_get(x_16, 0); +lean_inc_ref(x_19); +lean_dec(x_16); +x_20 = lean_ctor_get(x_18, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_18, 1); lean_inc_ref(x_21); -x_22 = lean_ctor_get(x_14, 7); -lean_inc_ref(x_22); -x_23 = lean_ctor_get(x_14, 9); -lean_inc_ref(x_23); -lean_dec_ref(x_14); -x_24 = lean_unsigned_to_nat(1u); -x_25 = lean_nat_sub(x_7, x_24); +x_22 = lean_ctor_get(x_18, 2); +lean_inc(x_22); +x_23 = lean_ctor_get(x_18, 3); +lean_inc(x_23); +x_24 = lean_ctor_get(x_18, 4); +lean_inc(x_24); +x_25 = lean_ctor_get(x_18, 5); +lean_inc_ref(x_25); +x_26 = lean_ctor_get(x_18, 6); +lean_inc_ref(x_26); +x_27 = lean_ctor_get(x_18, 7); +lean_inc_ref(x_27); +x_28 = lean_ctor_get(x_18, 9); +lean_inc_ref(x_28); +lean_dec_ref(x_18); +x_29 = lean_ctor_get_uint8(x_19, sizeof(void*)*8); +x_30 = lean_unsigned_to_nat(1u); +x_31 = lean_nat_sub(x_7, x_30); lean_dec(x_7); lean_inc_ref(x_1); -x_26 = lean_array_get(x_1, x_2, x_8); -x_27 = lean_array_get_size(x_20); -lean_dec_ref(x_20); -x_28 = l_Lean_Elab_TerminationHints_rememberExtraParams(x_27, x_23, x_26); -lean_dec(x_27); +x_32 = lean_array_get(x_1, x_2, x_8); +x_33 = lean_array_get_size(x_25); +lean_dec_ref(x_25); +x_34 = l_Lean_Elab_TerminationHints_rememberExtraParams(x_33, x_28, x_32); +lean_dec(x_33); lean_inc_ref(x_1); -x_29 = lean_array_get(x_1, x_3, x_8); -x_30 = l_Lean_Expr_fvarId_x21(x_29); -lean_dec_ref(x_29); -x_31 = l_Lean_Expr_mvarId_x21(x_22); -lean_dec_ref(x_22); +x_35 = lean_array_get(x_1, x_3, x_8); +x_36 = l_Lean_Expr_fvarId_x21(x_35); +lean_dec_ref(x_35); +if (x_29 == 0) +{ +lean_object* x_46; uint8_t x_47; +x_46 = l_Lean_Environment_header(x_19); +x_47 = lean_ctor_get_uint8(x_46, sizeof(void*)*5 + 4); +lean_dec_ref(x_46); +if (x_47 == 0) +{ +lean_dec_ref(x_19); +x_37 = x_23; +goto block_43; +} +else +{ +goto block_45; +} +} +else +{ +goto block_45; +} +block_43: +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_38 = l_Lean_Expr_mvarId_x21(x_27); +lean_dec_ref(x_27); lean_inc_ref(x_5); lean_inc_ref(x_4); -x_32 = lean_alloc_ctor(0, 12, 0); -lean_ctor_set(x_32, 0, x_15); -lean_ctor_set(x_32, 1, x_30); -lean_ctor_set(x_32, 2, x_16); -lean_ctor_set(x_32, 3, x_17); -lean_ctor_set(x_32, 4, x_18); -lean_ctor_set(x_32, 5, x_19); -lean_ctor_set(x_32, 6, x_4); -lean_ctor_set(x_32, 7, x_5); -lean_ctor_set(x_32, 8, x_21); -lean_ctor_set(x_32, 9, x_26); -lean_ctor_set(x_32, 10, x_31); -lean_ctor_set(x_32, 11, x_28); -x_33 = lean_nat_add(x_8, x_24); +x_39 = lean_alloc_ctor(0, 12, 0); +lean_ctor_set(x_39, 0, x_20); +lean_ctor_set(x_39, 1, x_36); +lean_ctor_set(x_39, 2, x_21); +lean_ctor_set(x_39, 3, x_22); +lean_ctor_set(x_39, 4, x_37); +lean_ctor_set(x_39, 5, x_24); +lean_ctor_set(x_39, 6, x_4); +lean_ctor_set(x_39, 7, x_5); +lean_ctor_set(x_39, 8, x_26); +lean_ctor_set(x_39, 9, x_32); +lean_ctor_set(x_39, 10, x_38); +lean_ctor_set(x_39, 11, x_34); +x_40 = lean_nat_add(x_8, x_30); lean_dec(x_8); -x_34 = lean_array_push(x_9, x_32); -x_7 = x_25; -x_8 = x_33; -x_9 = x_34; +x_41 = lean_array_push(x_9, x_39); +x_7 = x_31; +x_8 = x_40; +x_9 = x_41; +x_11 = x_17; goto _start; } +block_45: +{ +if (x_29 == 0) +{ +lean_object* x_44; +x_44 = l_Lean_mkPrivateName(x_19, x_23); +lean_dec_ref(x_19); +x_37 = x_44; +goto block_43; +} +else +{ +lean_dec_ref(x_19); +x_37 = x_23; +goto block_43; +} +} +} } } LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { lean_object* x_18; -x_18 = l_Array_mapFinIdxM_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__2___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_10, x_17); +x_18 = l_Array_mapFinIdxM_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__2___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_10, x_16, x_17); return x_18; } } @@ -13408,7 +13809,7 @@ x_24 = l_Lean_instInhabitedExpr; x_25 = lean_array_get_size(x_1); x_26 = lean_unsigned_to_nat(0u); x_27 = lean_mk_empty_array_with_capacity(x_25); -x_28 = l_Array_mapFinIdxM_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__2___redArg(x_24, x_3, x_2, x_23, x_21, x_1, x_25, x_26, x_27, x_22); +x_28 = l_Array_mapFinIdxM_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__2___redArg(x_24, x_3, x_2, x_23, x_21, x_1, x_25, x_26, x_27, x_9, x_22); x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); x_30 = lean_ctor_get(x_28, 1); @@ -13613,15 +14014,16 @@ lean_dec_ref(x_3); return x_20; } } -LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__2___redArg___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_EXPORT lean_object* l_Array_mapFinIdxM_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__2___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_11; -x_11 = l_Array_mapFinIdxM_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__2___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_object* x_12; +x_12 = l_Array_mapFinIdxM_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__2___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); lean_dec_ref(x_6); lean_dec_ref(x_3); lean_dec_ref(x_2); -return x_11; +return x_12; } } LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift_spec__2___boxed(lean_object** _args) { @@ -14234,9 +14636,9 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRec___regBuiltin_Lean_Elab_Term_elabLetRec__1___closed__1; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__0; -x_3 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__2; -x_4 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__1; +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__0; +x_3 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__2; +x_4 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__1; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } @@ -14254,9 +14656,9 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRec___regBuiltin_Lean_Elab_Term_elabLetRec__1___closed__3; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__0; -x_3 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__1; -x_4 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__1; +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__0; +x_3 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__1; +x_4 = l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__1; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } @@ -14470,6 +14872,22 @@ l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____priva lean_mark_persistent(l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__13___closed__1); l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__13___closed__2 = _init_l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__13___closed__2(); lean_mark_persistent(l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__13___closed__2); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__0 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__0(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__0); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__1 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__1(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__1); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__2 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__2(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__2); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__3 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__3(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__3); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__4 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__4(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__4); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__5 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__5(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__5); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__6 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__6(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__6); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__7 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__7(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0_spec__15_spec__15___redArg___closed__7); l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0___closed__0 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0___closed__0(); lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0___closed__0); l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0___closed__1 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__0___closed__1(); @@ -14496,175 +14914,159 @@ l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_El lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___closed__2); l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___closed__3 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___closed__3(); lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__3___closed__3); -l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___closed__0 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___closed__0(); -lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___closed__0); -l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___closed__1 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___closed__1(); -lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___closed__1); -l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__0 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__0(); -lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__0); -l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__1 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__1(); -lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__1); -l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__2 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__2(); -lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__2); -l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__3 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__3(); -lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__3); -l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__4 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__4(); -lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___lam__0___closed__4); -l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___closed__0 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___closed__0(); -lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___closed__0); -l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___closed__1 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___closed__1(); -lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__16_spec__16_spec__16_spec__16___redArg___closed__1); -l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22___closed__0 = _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22___closed__0(); -lean_mark_persistent(l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22___closed__0); -l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22___closed__1 = _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22___closed__1(); -lean_mark_persistent(l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22___closed__1); -l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22___closed__2 = _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22___closed__2(); -lean_mark_persistent(l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16_spec__22___closed__2); -l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__0 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__0(); -lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__0); -l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__1 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__1(); -lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__1); -l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__2 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__2(); -lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__2); -l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__3 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__3(); -lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__3); -l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__4 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__4(); -lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__4); -l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__5 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__5(); -lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__5); -l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__6 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__6(); -lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__6); -l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__7 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__7(); -lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__7); -l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__8 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__8(); -lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___lam__0___closed__8); -l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___closed__0 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___closed__0(); -lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___closed__0); -l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___closed__1 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___closed__1(); -lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__16_spec__16___closed__1); -l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__26___redArg___closed__0 = _init_l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__26___redArg___closed__0(); -lean_mark_persistent(l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__25_spec__26___redArg___closed__0); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1___closed__0 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1___closed__0(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1___closed__0); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1___closed__1 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1___closed__1(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1___closed__1); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1___closed__2 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1___closed__2(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__1___closed__2); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___closed__0 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___closed__0(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___closed__0); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___closed__1 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___closed__1(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___closed__1); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___closed__2 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___closed__2(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__2___closed__2); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__0 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__0(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__0); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__1 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__1(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__1); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__2 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__2(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__2); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__3 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__3(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__3); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__4 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__4(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__4); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__5 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__5(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___lam__3___closed__5); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__0 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__0(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__0); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__1 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__1(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__1); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__2 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__2(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__2); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__3 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__3(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__3); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__4 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__4(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__4); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__5 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__5(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__5); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__6 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__6(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__6); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__7 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__7(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__7); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__8 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__8(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__8); -l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__9 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__9(); -lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__28___closed__9); -l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg___closed__0 = _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg___closed__0(); -l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg___closed__1 = _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg___closed__1(); -lean_mark_persistent(l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__30___redArg___closed__1); -l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__0 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__0(); -lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__0); -l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__1 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__1(); -lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__1); -l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__2 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__2(); -lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__2); -l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__3 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__3(); -lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__3); -l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__4 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__4(); -lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__4); -l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__5 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__5(); -lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__5); -l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__6 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__6(); -lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__33___redArg___closed__6); -l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34___redArg___closed__0 = _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34___redArg___closed__0(); -lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34___redArg___closed__0); -l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34___redArg___closed__1 = _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34___redArg___closed__1(); -lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__29_spec__34___redArg___closed__1); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__0 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__0(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__0); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__1 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__1(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__1); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__2 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__2(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__0___closed__2); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__0 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__0(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__0); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__1 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__1(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__1); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__2 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__2(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__2); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__3 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__3(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___lam__1___closed__3); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__0 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__0(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__0); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__1 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__1(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__1); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__2 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__2(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__2); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__3 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__3(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__3); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__4 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__4(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__37___closed__4); -l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__38___closed__0 = _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__38___closed__0(); -lean_mark_persistent(l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__38___closed__0); -l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__38___closed__1 = _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__38___closed__1(); -lean_mark_persistent(l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37_spec__38___closed__1); -l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37___closed__0 = _init_l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37___closed__0(); -lean_mark_persistent(l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__37_spec__37___closed__0); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___closed__0 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___closed__0(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___closed__0); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___closed__1 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___closed__1(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___closed__1); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___closed__2 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___closed__2(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___lam__0___closed__2); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__0 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__0(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__0); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__1 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__1(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__1); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__2 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__2(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__2); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__3 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__3(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__3); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__4 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__4(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__4); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__5 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__5(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__5); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__6 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__6(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__6); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__7 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__7(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__7); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__8 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__8(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__8); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__9 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__9(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__42_spec__42___closed__9); +l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__5___closed__0 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__5___closed__0(); +lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__5___closed__0); +l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__5___closed__1 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__5___closed__1(); +lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__0___lam__5___closed__1); +l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__0 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__0(); +lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__0); +l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__1 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__1(); +lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__1); +l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__2 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__2(); +lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__2); +l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__3 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__3(); +lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__3); +l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__4 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__4(); +lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___lam__0___closed__4); +l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0(); +lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__0); +l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__1 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__1(); +lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__18_spec__18_spec__18_spec__18___redArg___closed__1); +l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24___closed__0 = _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24___closed__0(); +lean_mark_persistent(l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24___closed__0); +l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24___closed__1 = _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24___closed__1(); +lean_mark_persistent(l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24___closed__1); +l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24___closed__2 = _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24___closed__2(); +lean_mark_persistent(l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18_spec__24___closed__2); +l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___lam__0___closed__0 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___lam__0___closed__0(); +lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___lam__0___closed__0); +l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___closed__0 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___closed__0(); +lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___closed__0); +l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___closed__1 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___closed__1(); +lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__18_spec__18___closed__1); +l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__28___redArg___closed__0 = _init_l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__28___redArg___closed__0(); +lean_mark_persistent(l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__27_spec__28___redArg___closed__0); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1___closed__0 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1___closed__0(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1___closed__0); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1___closed__1 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1___closed__1(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1___closed__1); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1___closed__2 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1___closed__2(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__1___closed__2); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___closed__0 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___closed__0(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___closed__0); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___closed__1 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___closed__1(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___closed__1); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___closed__2 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___closed__2(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__2___closed__2); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__0 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__0(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__0); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__1 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__1(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__1); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__2 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__2(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__2); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__3 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__3(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__3); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__4 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__4(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__4); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__5 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__5(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___lam__3___closed__5); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__0 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__0(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__0); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__1 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__1(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__1); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__2 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__2(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__2); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__3 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__3(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__3); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__4 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__4(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__4); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__5 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__5(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__5); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__6 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__6(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__6); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__7 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__7(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__7); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__8 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__8(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__8); +l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__9 = _init_l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__9(); +lean_mark_persistent(l_Lean_Elab_elabTerminationHints___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__30___closed__9); +l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg___closed__0 = _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg___closed__0(); +l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg___closed__1 = _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg___closed__1(); +lean_mark_persistent(l_Lean_addTrace___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__32___redArg___closed__1); +l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__0 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__0(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__0); +l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__1 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__1(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__1); +l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__2 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__2(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__2); +l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__3 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__3(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__3); +l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__4 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__4(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__4); +l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__5 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__5(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__5); +l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__6 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__6(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__35___redArg___closed__6); +l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36___redArg___closed__0 = _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36___redArg___closed__0(); +lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36___redArg___closed__0); +l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36___redArg___closed__1 = _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36___redArg___closed__1(); +lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__31_spec__36___redArg___closed__1); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__0 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__0(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__0); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__1 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__1(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__1); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__2 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__2(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__0___closed__2); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__0 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__0(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__0); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__1 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__1(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__1); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__2 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__2(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__2); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__3 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__3(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___lam__1___closed__3); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__0 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__0(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__0); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__1 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__1(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__1); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__2 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__2(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__2); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__3 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__3(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__3); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__4 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__4(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__39___closed__4); +l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__40___closed__0 = _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__40___closed__0(); +lean_mark_persistent(l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__40___closed__0); +l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__40___closed__1 = _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__40___closed__1(); +lean_mark_persistent(l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39_spec__40___closed__1); +l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39___closed__0 = _init_l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39___closed__0(); +lean_mark_persistent(l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__39_spec__39___closed__0); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___closed__0 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___closed__0(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___closed__0); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___closed__1 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___closed__1(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___closed__1); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___closed__2 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___closed__2(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___lam__0___closed__2); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__0 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__0(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__0); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__1 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__1(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__1); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__2 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__2(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__2); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__3 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__3(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__3); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__4 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__4(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__4); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__5 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__5(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__5); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__6 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__6(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__6); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__7 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__7(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__7); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__8 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__8(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__8); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__9 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__9(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_spec__44_spec__44___closed__9); l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___closed__0 = _init_l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___closed__0(); lean_mark_persistent(l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___closed__0); l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_withAuxLocalDecls___redArg___closed__0 = _init_l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_withAuxLocalDecls___redArg___closed__0(); diff --git a/stage0/stdlib/Lean/Elab/PreDefinition/WF/Eqns.c b/stage0/stdlib/Lean/Elab/PreDefinition/WF/Eqns.c index 7411bb4863..d78dc18dcd 100644 --- a/stage0/stdlib/Lean/Elab/PreDefinition/WF/Eqns.c +++ b/stage0/stdlib/Lean/Elab/PreDefinition/WF/Eqns.c @@ -91,7 +91,6 @@ LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnkn static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_findModuleOf_x3f___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__15; LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_findModuleOf_x3f___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_WF_instInhabitedEqnInfo___closed__1; -LEAN_EXPORT lean_object* l___private_Lean_Elab_PreDefinition_WF_Eqns_0__Lean_Elab_WF_initFn____x40_Lean_Elab_PreDefinition_WF_Eqns___hyg_578_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_WF_registerEqnsInfo___lam__0(uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_findModuleOf_x3f___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__5; static lean_object* l_Lean_Elab_WF_copyPrivateUnfoldTheorem___closed__0; @@ -111,6 +110,7 @@ uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_findModuleOf_x3f___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_WF_registerEqnsInfo_spec__1___closed__0; lean_object* lean_io_mono_nanos_now(lean_object*); +lean_object* l_Lean_privateToUserName(lean_object*); static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_findModuleOf_x3f___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__0_spec__0_spec__0_spec__0___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_WF_copyPrivateUnfoldTheorem(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_WF_registerEqnsInfo_spec__4___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -203,6 +203,7 @@ lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_o static lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10_spec__11___redArg___closed__2; LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_findModuleOf_x3f___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static double l_Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10___redArg___closed__0; +LEAN_EXPORT lean_object* l___private_Lean_Elab_PreDefinition_WF_Eqns_0__Lean_Elab_WF_initFn____x40_Lean_Elab_PreDefinition_WF_Eqns___hyg_581_(lean_object*); lean_object* lean_array_get_size(lean_object*); LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_foldl___at___Lean_Elab_WF_initFn____x40_Lean_Elab_PreDefinition_WF_Eqns___hyg_72__spec__0___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10_spec__15___redArg___boxed(lean_object*, lean_object*); @@ -3687,7 +3688,7 @@ return x_1; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; double x_15; double x_16; uint8_t x_17; lean_object* x_18; lean_object* x_19; lean_object* x_28; lean_object* x_29; lean_object* x_30; double x_31; lean_object* x_32; double x_33; uint8_t x_34; lean_object* x_45; lean_object* x_46; double x_47; double x_48; uint8_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_60; lean_object* x_61; double x_62; double x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; 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; double x_84; lean_object* x_85; double x_86; uint8_t x_87; uint8_t x_88; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; double x_131; lean_object* x_132; double x_133; uint8_t x_134; double x_135; lean_object* x_139; lean_object* x_140; lean_object* x_141; uint8_t x_142; lean_object* x_143; lean_object* x_144; lean_object* x_161; lean_object* x_162; lean_object* x_163; double x_164; double x_165; uint8_t x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; lean_object* x_208; lean_object* x_209; lean_object* x_210; double x_211; double x_212; uint8_t x_213; lean_object* x_214; lean_object* x_215; double x_216; lean_object* x_220; lean_object* x_221; lean_object* x_222; uint8_t x_223; lean_object* x_224; lean_object* x_225; uint8_t x_271; +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; double x_15; uint8_t x_16; double x_17; lean_object* x_18; lean_object* x_19; lean_object* x_28; lean_object* x_29; double x_30; uint8_t x_31; lean_object* x_32; lean_object* x_33; double x_34; lean_object* x_45; lean_object* x_46; double x_47; uint8_t x_48; double x_49; lean_object* x_50; lean_object* x_51; lean_object* x_60; lean_object* x_61; double x_62; uint8_t x_63; lean_object* x_64; double x_65; lean_object* x_66; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; double x_82; uint8_t x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; double x_87; uint8_t x_88; lean_object* x_127; lean_object* x_128; double x_129; uint8_t x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; double x_134; double x_135; lean_object* x_139; lean_object* x_140; uint8_t x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_161; lean_object* x_162; double x_163; uint8_t x_164; lean_object* x_165; double x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; lean_object* x_208; lean_object* x_209; double x_210; uint8_t x_211; lean_object* x_212; double x_213; lean_object* x_214; lean_object* x_215; double x_216; lean_object* x_220; lean_object* x_221; uint8_t x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; uint8_t x_271; x_11 = lean_ctor_get(x_8, 2); lean_inc(x_11); x_12 = lean_ctor_get(x_8, 5); @@ -3728,7 +3729,7 @@ goto block_270; } block_27: { -if (x_17 == 0) +if (x_16 == 0) { double x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; x_20 = l_Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10___redArg___closed__0; @@ -3739,11 +3740,11 @@ lean_ctor_set_float(x_21, sizeof(void*)*2, x_20); lean_ctor_set_float(x_21, sizeof(void*)*2 + 8, x_20); lean_ctor_set_uint8(x_21, sizeof(void*)*2 + 16, x_4); x_22 = lean_box(0); -x_23 = l_Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10___redArg___lam__0(x_13, x_12, x_18, x_14, x_21, x_22, x_6, x_7, x_8, x_9, x_19); +x_23 = l_Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10___redArg___lam__0(x_14, x_12, x_18, x_13, x_21, x_22, x_6, x_7, x_8, x_9, x_19); lean_dec(x_9); lean_dec(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_14); +lean_dec_ref(x_13); return x_23; } else @@ -3753,14 +3754,14 @@ x_24 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_24, 0, x_1); lean_ctor_set(x_24, 1, x_5); lean_ctor_set_float(x_24, sizeof(void*)*2, x_15); -lean_ctor_set_float(x_24, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_float(x_24, sizeof(void*)*2 + 8, x_17); lean_ctor_set_uint8(x_24, sizeof(void*)*2 + 16, x_4); x_25 = lean_box(0); -x_26 = l_Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10___redArg___lam__0(x_13, x_12, x_18, x_14, x_24, x_25, x_6, x_7, x_8, x_9, x_19); +x_26 = l_Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10___redArg___lam__0(x_14, x_12, x_18, x_13, x_24, x_25, x_6, x_7, x_8, x_9, x_19); lean_dec(x_9); lean_dec(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_14); +lean_dec_ref(x_13); return x_26; } } @@ -3771,7 +3772,7 @@ lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_6); -x_35 = lean_apply_6(x_2, x_32, x_6, x_7, x_8, x_9, x_30); +x_35 = lean_apply_6(x_2, x_32, x_6, x_7, x_8, x_9, x_33); if (lean_obj_tag(x_35) == 0) { if (lean_obj_tag(x_35) == 0) @@ -3784,8 +3785,8 @@ lean_inc(x_37); lean_dec_ref(x_35); x_13 = x_28; x_14 = x_29; -x_15 = x_31; -x_16 = x_33; +x_15 = x_30; +x_16 = x_31; x_17 = x_34; x_18 = x_36; x_19 = x_37; @@ -3833,8 +3834,8 @@ lean_dec_ref(x_35); x_43 = l_Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10___redArg___closed__2; x_13 = x_28; x_14 = x_29; -x_15 = x_31; -x_16 = x_33; +x_15 = x_30; +x_16 = x_31; x_17 = x_34; x_18 = x_43; x_19 = x_42; @@ -3843,7 +3844,7 @@ goto block_27; } block_59: { -if (x_49 == 0) +if (x_48 == 0) { double x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; x_52 = l_Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10___redArg___closed__0; @@ -3867,7 +3868,7 @@ lean_object* x_56; lean_object* x_57; lean_object* x_58; x_56 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_56, 0, x_1); lean_ctor_set(x_56, 1, x_5); -lean_ctor_set_float(x_56, sizeof(void*)*2, x_48); +lean_ctor_set_float(x_56, sizeof(void*)*2, x_49); lean_ctor_set_float(x_56, sizeof(void*)*2 + 8, x_47); lean_ctor_set_uint8(x_56, sizeof(void*)*2 + 16, x_4); x_57 = lean_box(0); @@ -3886,7 +3887,7 @@ lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_6); -x_67 = lean_apply_6(x_2, x_65, x_6, x_7, x_8, x_9, x_66); +x_67 = lean_apply_6(x_2, x_66, x_6, x_7, x_8, x_9, x_64); if (lean_obj_tag(x_67) == 0) { if (lean_obj_tag(x_67) == 0) @@ -3901,7 +3902,7 @@ x_45 = x_60; x_46 = x_61; x_47 = x_62; x_48 = x_63; -x_49 = x_64; +x_49 = x_65; x_50 = x_68; x_51 = x_69; goto block_59; @@ -3950,7 +3951,7 @@ x_45 = x_60; x_46 = x_61; x_47 = x_62; x_48 = x_63; -x_49 = x_64; +x_49 = x_65; x_50 = x_75; x_51 = x_74; goto block_59; @@ -3975,7 +3976,7 @@ lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_2); lean_dec(x_1); -x_90 = lean_st_ref_take(x_9, x_83); +x_90 = lean_st_ref_take(x_9, x_85); x_91 = lean_ctor_get(x_90, 0); lean_inc(x_91); x_92 = lean_ctor_get(x_91, 4); @@ -3994,7 +3995,7 @@ if (x_96 == 0) { lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; x_97 = lean_ctor_get(x_92, 0); -x_98 = l_Lean_PersistentArray_append___redArg(x_82, x_97); +x_98 = l_Lean_PersistentArray_append___redArg(x_86, x_97); lean_dec_ref(x_97); lean_ctor_set(x_92, 0, x_98); x_99 = lean_st_ref_set(x_9, x_91, x_93); @@ -4002,8 +4003,8 @@ lean_dec(x_9); x_100 = lean_ctor_get(x_99, 1); lean_inc(x_100); lean_dec_ref(x_99); -x_101 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10_spec__15___redArg(x_85, x_100); -lean_dec_ref(x_85); +x_101 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10_spec__15___redArg(x_84, x_100); +lean_dec_ref(x_84); return x_101; } else @@ -4013,7 +4014,7 @@ x_102 = lean_ctor_get_uint64(x_92, sizeof(void*)*1); x_103 = lean_ctor_get(x_92, 0); lean_inc(x_103); lean_dec(x_92); -x_104 = l_Lean_PersistentArray_append___redArg(x_82, x_103); +x_104 = l_Lean_PersistentArray_append___redArg(x_86, x_103); lean_dec_ref(x_103); x_105 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_105, 0, x_104); @@ -4024,8 +4025,8 @@ lean_dec(x_9); x_107 = lean_ctor_get(x_106, 1); lean_inc(x_107); lean_dec_ref(x_106); -x_108 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10_spec__15___redArg(x_85, x_107); -lean_dec_ref(x_85); +x_108 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10_spec__15___redArg(x_84, x_107); +lean_dec_ref(x_84); return x_108; } } @@ -4059,7 +4060,7 @@ if (lean_is_exclusive(x_92)) { lean_dec_ref(x_92); x_119 = lean_box(0); } -x_120 = l_Lean_PersistentArray_append___redArg(x_82, x_118); +x_120 = l_Lean_PersistentArray_append___redArg(x_86, x_118); lean_dec_ref(x_118); if (lean_is_scalar(x_119)) { x_121 = lean_alloc_ctor(0, 1, 8); @@ -4083,33 +4084,33 @@ lean_dec(x_9); x_124 = lean_ctor_get(x_123, 1); lean_inc(x_124); lean_dec_ref(x_123); -x_125 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10_spec__15___redArg(x_85, x_124); -lean_dec_ref(x_85); +x_125 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10_spec__15___redArg(x_84, x_124); +lean_dec_ref(x_84); return x_125; } } else { -lean_dec_ref(x_82); +lean_dec_ref(x_86); x_28 = x_80; x_29 = x_81; -x_30 = x_83; -x_31 = x_84; -x_32 = x_85; -x_33 = x_86; +x_30 = x_82; +x_31 = x_83; +x_32 = x_84; +x_33 = x_85; x_34 = x_87; goto block_44; } } else { -lean_dec_ref(x_82); +lean_dec_ref(x_86); x_28 = x_80; x_29 = x_81; -x_30 = x_83; -x_31 = x_84; -x_32 = x_85; -x_33 = x_86; +x_30 = x_82; +x_31 = x_83; +x_32 = x_84; +x_33 = x_85; x_34 = x_87; goto block_44; } @@ -4117,7 +4118,7 @@ goto block_44; block_138: { double x_136; uint8_t x_137; -x_136 = lean_float_sub(x_133, x_131); +x_136 = lean_float_sub(x_134, x_129); x_137 = lean_float_decLt(x_135, x_136); x_80 = x_127; x_81 = x_128; @@ -4139,7 +4140,7 @@ lean_inc(x_146); x_147 = lean_ctor_get(x_145, 1); lean_inc(x_147); lean_dec_ref(x_145); -x_148 = lean_float_of_nat(x_140); +x_148 = lean_float_of_nat(x_139); x_149 = lean_float_of_nat(x_146); x_150 = l_Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10___redArg___closed__3; x_151 = l_Lean_Option_get___at___Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10_spec__12(x_11, x_150); @@ -4147,20 +4148,20 @@ if (x_151 == 0) { lean_dec(x_11); lean_inc_ref(x_143); -x_80 = x_139; -x_81 = x_143; -x_82 = x_141; -x_83 = x_147; -x_84 = x_148; -x_85 = x_143; -x_86 = x_149; -x_87 = x_151; +x_80 = x_143; +x_81 = x_140; +x_82 = x_148; +x_83 = x_151; +x_84 = x_143; +x_85 = x_147; +x_86 = x_142; +x_87 = x_149; x_88 = x_151; goto block_126; } else { -if (x_142 == 0) +if (x_141 == 0) { lean_object* x_152; lean_object* x_153; double x_154; double x_155; double x_156; x_152 = l_Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10___redArg___closed__4; @@ -4170,14 +4171,14 @@ x_154 = lean_float_of_nat(x_153); x_155 = l_Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10___redArg___closed__5; x_156 = lean_float_div(x_154, x_155); lean_inc_ref(x_143); -x_127 = x_139; -x_128 = x_143; -x_129 = x_141; -x_130 = x_147; -x_131 = x_148; -x_132 = x_143; -x_133 = x_149; -x_134 = x_151; +x_127 = x_143; +x_128 = x_140; +x_129 = x_148; +x_130 = x_151; +x_131 = x_143; +x_132 = x_147; +x_133 = x_142; +x_134 = x_149; x_135 = x_156; goto block_138; } @@ -4189,14 +4190,14 @@ x_158 = l_Lean_Option_get___at___Lean_withTraceNode___at___Lean_Elab_WF_copyPriv lean_dec(x_11); x_159 = lean_float_of_nat(x_158); lean_inc_ref(x_143); -x_127 = x_139; -x_128 = x_143; -x_129 = x_141; -x_130 = x_147; -x_131 = x_148; -x_132 = x_143; -x_133 = x_149; -x_134 = x_151; +x_127 = x_143; +x_128 = x_140; +x_129 = x_148; +x_130 = x_151; +x_131 = x_143; +x_132 = x_147; +x_133 = x_142; +x_134 = x_149; x_135 = x_159; goto block_138; } @@ -4221,7 +4222,7 @@ lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_2); lean_dec(x_1); -x_171 = lean_st_ref_take(x_9, x_168); +x_171 = lean_st_ref_take(x_9, x_165); x_172 = lean_ctor_get(x_171, 0); lean_inc(x_172); x_173 = lean_ctor_get(x_172, 4); @@ -4240,7 +4241,7 @@ if (x_177 == 0) { lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; x_178 = lean_ctor_get(x_173, 0); -x_179 = l_Lean_PersistentArray_append___redArg(x_163, x_178); +x_179 = l_Lean_PersistentArray_append___redArg(x_167, x_178); lean_dec_ref(x_178); lean_ctor_set(x_173, 0, x_179); x_180 = lean_st_ref_set(x_9, x_172, x_174); @@ -4248,8 +4249,8 @@ lean_dec(x_9); x_181 = lean_ctor_get(x_180, 1); lean_inc(x_181); lean_dec_ref(x_180); -x_182 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10_spec__15___redArg(x_167, x_181); -lean_dec_ref(x_167); +x_182 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10_spec__15___redArg(x_168, x_181); +lean_dec_ref(x_168); return x_182; } else @@ -4259,7 +4260,7 @@ x_183 = lean_ctor_get_uint64(x_173, sizeof(void*)*1); x_184 = lean_ctor_get(x_173, 0); lean_inc(x_184); lean_dec(x_173); -x_185 = l_Lean_PersistentArray_append___redArg(x_163, x_184); +x_185 = l_Lean_PersistentArray_append___redArg(x_167, x_184); lean_dec_ref(x_184); x_186 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_186, 0, x_185); @@ -4270,8 +4271,8 @@ lean_dec(x_9); x_188 = lean_ctor_get(x_187, 1); lean_inc(x_188); lean_dec_ref(x_187); -x_189 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10_spec__15___redArg(x_167, x_188); -lean_dec_ref(x_167); +x_189 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10_spec__15___redArg(x_168, x_188); +lean_dec_ref(x_168); return x_189; } } @@ -4305,7 +4306,7 @@ if (lean_is_exclusive(x_173)) { lean_dec_ref(x_173); x_200 = lean_box(0); } -x_201 = l_Lean_PersistentArray_append___redArg(x_163, x_199); +x_201 = l_Lean_PersistentArray_append___redArg(x_167, x_199); lean_dec_ref(x_199); if (lean_is_scalar(x_200)) { x_202 = lean_alloc_ctor(0, 1, 8); @@ -4329,33 +4330,33 @@ lean_dec(x_9); x_205 = lean_ctor_get(x_204, 1); lean_inc(x_205); lean_dec_ref(x_204); -x_206 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10_spec__15___redArg(x_167, x_205); -lean_dec_ref(x_167); +x_206 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10_spec__15___redArg(x_168, x_205); +lean_dec_ref(x_168); return x_206; } } else { -lean_dec_ref(x_163); +lean_dec_ref(x_167); x_60 = x_161; x_61 = x_162; -x_62 = x_164; -x_63 = x_165; -x_64 = x_166; -x_65 = x_167; +x_62 = x_163; +x_63 = x_164; +x_64 = x_165; +x_65 = x_166; x_66 = x_168; goto block_76; } } else { -lean_dec_ref(x_163); +lean_dec_ref(x_167); x_60 = x_161; x_61 = x_162; -x_62 = x_164; -x_63 = x_165; -x_64 = x_166; -x_65 = x_167; +x_62 = x_163; +x_63 = x_164; +x_64 = x_165; +x_65 = x_166; x_66 = x_168; goto block_76; } @@ -4363,7 +4364,7 @@ goto block_76; block_219: { double x_217; uint8_t x_218; -x_217 = lean_float_sub(x_211, x_212); +x_217 = lean_float_sub(x_210, x_213); x_218 = lean_float_decLt(x_216, x_217); x_161 = x_208; x_162 = x_209; @@ -4385,7 +4386,7 @@ lean_inc(x_227); x_228 = lean_ctor_get(x_226, 1); lean_inc(x_228); lean_dec_ref(x_226); -x_229 = lean_float_of_nat(x_221); +x_229 = lean_float_of_nat(x_220); x_230 = l_Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10___redArg___closed__6; x_231 = lean_float_div(x_229, x_230); x_232 = lean_float_of_nat(x_227); @@ -4396,20 +4397,20 @@ if (x_235 == 0) { lean_dec(x_11); lean_inc_ref(x_224); -x_161 = x_220; +x_161 = x_221; x_162 = x_224; -x_163 = x_222; -x_164 = x_233; -x_165 = x_231; -x_166 = x_235; -x_167 = x_224; -x_168 = x_228; +x_163 = x_233; +x_164 = x_235; +x_165 = x_228; +x_166 = x_231; +x_167 = x_223; +x_168 = x_224; x_169 = x_235; goto block_207; } else { -if (x_223 == 0) +if (x_222 == 0) { lean_object* x_236; lean_object* x_237; double x_238; double x_239; double x_240; x_236 = l_Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10___redArg___closed__4; @@ -4419,14 +4420,14 @@ x_238 = lean_float_of_nat(x_237); x_239 = l_Lean_withTraceNode___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__10___redArg___closed__5; x_240 = lean_float_div(x_238, x_239); lean_inc_ref(x_224); -x_208 = x_220; +x_208 = x_221; x_209 = x_224; -x_210 = x_222; -x_211 = x_233; -x_212 = x_231; -x_213 = x_235; -x_214 = x_224; -x_215 = x_228; +x_210 = x_233; +x_211 = x_235; +x_212 = x_228; +x_213 = x_231; +x_214 = x_223; +x_215 = x_224; x_216 = x_240; goto block_219; } @@ -4438,14 +4439,14 @@ x_242 = l_Lean_Option_get___at___Lean_withTraceNode___at___Lean_Elab_WF_copyPriv lean_dec(x_11); x_243 = lean_float_of_nat(x_242); lean_inc_ref(x_224); -x_208 = x_220; +x_208 = x_221; x_209 = x_224; -x_210 = x_222; -x_211 = x_233; -x_212 = x_231; -x_213 = x_235; -x_214 = x_224; -x_215 = x_228; +x_210 = x_233; +x_211 = x_235; +x_212 = x_228; +x_213 = x_231; +x_214 = x_223; +x_215 = x_224; x_216 = x_243; goto block_219; } @@ -4487,10 +4488,10 @@ lean_dec_ref(x_253); x_256 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_256, 0, x_254); lean_inc(x_246); -x_220 = x_246; -x_221 = x_251; -x_222 = x_246; -x_223 = x_249; +x_220 = x_251; +x_221 = x_246; +x_222 = x_249; +x_223 = x_246; x_224 = x_256; x_225 = x_255; goto block_244; @@ -4506,10 +4507,10 @@ lean_dec_ref(x_253); x_259 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_259, 0, x_257); lean_inc(x_246); -x_220 = x_246; -x_221 = x_251; -x_222 = x_246; -x_223 = x_249; +x_220 = x_251; +x_221 = x_246; +x_222 = x_249; +x_223 = x_246; x_224 = x_259; x_225 = x_258; goto block_244; @@ -4540,10 +4541,10 @@ lean_dec_ref(x_263); x_266 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_266, 0, x_264); lean_inc(x_246); -x_139 = x_246; -x_140 = x_261; -x_141 = x_246; -x_142 = x_249; +x_139 = x_261; +x_140 = x_246; +x_141 = x_249; +x_142 = x_246; x_143 = x_266; x_144 = x_265; goto block_160; @@ -4559,10 +4560,10 @@ lean_dec_ref(x_263); x_269 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_269, 0, x_267); lean_inc(x_246); -x_139 = x_246; -x_140 = x_261; -x_141 = x_246; -x_142 = x_249; +x_139 = x_261; +x_140 = x_246; +x_141 = x_249; +x_142 = x_246; x_143 = x_269; x_144 = x_268; goto block_160; @@ -4711,7 +4712,7 @@ x_26 = lean_st_ref_get(x_6, x_24); x_27 = !lean_is_exclusive(x_26); if (x_27 == 0) { -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_object* x_35; +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; uint8_t x_35; lean_object* x_36; x_28 = lean_ctor_get(x_26, 0); x_29 = lean_ctor_get(x_26, 1); x_30 = lean_ctor_get(x_28, 0); @@ -4719,14 +4720,15 @@ lean_inc_ref(x_30); lean_dec(x_28); x_31 = l_Lean_Elab_WF_copyPrivateUnfoldTheorem___lam__3___closed__0; lean_inc(x_1); -x_32 = l_Lean_Name_str___override(x_1, x_31); -x_33 = l_Lean_mkPrivateNameCore(x_25, x_32); -x_34 = 0; -lean_inc(x_33); -x_35 = l_Lean_Environment_find_x3f(x_30, x_33, x_34); -if (lean_obj_tag(x_35) == 0) +x_32 = l_Lean_privateToUserName(x_1); +x_33 = l_Lean_Name_str___override(x_32, x_31); +x_34 = l_Lean_mkPrivateNameCore(x_25, x_33); +x_35 = 0; +lean_inc(x_34); +x_36 = l_Lean_Environment_find_x3f(x_30, x_34, x_35); +if (lean_obj_tag(x_36) == 0) { -lean_dec(x_33); +lean_dec(x_34); lean_free_object(x_26); lean_dec(x_17); lean_dec(x_1); @@ -4739,417 +4741,417 @@ goto block_15; } else { -uint8_t x_36; -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) +uint8_t x_37; +x_37 = !lean_is_exclusive(x_36); +if (x_37 == 0) { -lean_object* x_37; -x_37 = lean_ctor_get(x_35, 0); -if (lean_obj_tag(x_37) == 2) +lean_object* x_38; +x_38 = lean_ctor_get(x_36, 0); +if (lean_obj_tag(x_38) == 2) { -uint8_t x_38; +uint8_t x_39; lean_dec_ref(x_2); -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +x_39 = !lean_is_exclusive(x_38); +if (x_39 == 0) { -lean_object* x_39; uint8_t x_40; -x_39 = lean_ctor_get(x_37, 0); -x_40 = !lean_is_exclusive(x_39); -if (x_40 == 0) +lean_object* x_40; uint8_t x_41; +x_40 = lean_ctor_get(x_38, 0); +x_41 = !lean_is_exclusive(x_40); +if (x_41 == 0) { -lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; -x_41 = lean_ctor_get(x_39, 0); -x_42 = lean_ctor_get(x_39, 2); -lean_dec(x_42); -x_43 = lean_ctor_get(x_39, 1); +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; +x_42 = lean_ctor_get(x_40, 0); +x_43 = lean_ctor_get(x_40, 2); lean_dec(x_43); -x_44 = lean_ctor_get(x_17, 0); -lean_inc_ref(x_44); +x_44 = lean_ctor_get(x_40, 1); +lean_dec(x_44); +x_45 = lean_ctor_get(x_17, 0); +lean_inc_ref(x_45); lean_dec(x_17); -x_45 = !lean_is_exclusive(x_41); -if (x_45 == 0) +x_46 = !lean_is_exclusive(x_42); +if (x_46 == 0) { -lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_46 = lean_ctor_get(x_41, 1); -x_47 = lean_ctor_get(x_41, 0); -lean_dec(x_47); -lean_inc(x_1); -x_48 = l_Lean_Meta_mkEqLikeNameFor(x_44, x_1, x_31); -lean_inc(x_46); -lean_inc(x_48); -lean_ctor_set(x_41, 0, x_48); -x_49 = lean_box(0); -x_50 = l_List_mapTR_loop___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__9(x_46, x_49); -x_51 = l_Lean_Expr_const___override(x_33, x_50); -x_52 = lean_box(0); -lean_inc(x_48); -lean_ctor_set_tag(x_26, 1); -lean_ctor_set(x_26, 1, x_52); -lean_ctor_set(x_26, 0, x_48); -lean_ctor_set(x_39, 2, x_26); -lean_ctor_set(x_39, 1, x_51); -x_53 = lean_alloc_closure((void*)(l_Lean_Elab_WF_copyPrivateUnfoldTheorem___lam__2___boxed), 6, 1); -lean_closure_set(x_53, 0, x_37); -lean_inc(x_48); -x_54 = l_Lean_Meta_realizeConst(x_1, x_48, x_53, x_3, x_4, x_5, x_6, x_29); -if (lean_obj_tag(x_54) == 0) -{ -uint8_t x_55; -x_55 = !lean_is_exclusive(x_54); -if (x_55 == 0) -{ -lean_object* x_56; -x_56 = lean_ctor_get(x_54, 0); -lean_dec(x_56); -lean_ctor_set(x_35, 0, x_48); -lean_ctor_set(x_54, 0, x_35); -return x_54; -} -else -{ -lean_object* x_57; lean_object* x_58; -x_57 = lean_ctor_get(x_54, 1); -lean_inc(x_57); -lean_dec(x_54); -lean_ctor_set(x_35, 0, x_48); -x_58 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_58, 0, x_35); -lean_ctor_set(x_58, 1, x_57); -return x_58; -} -} -else -{ -uint8_t x_59; +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_47 = lean_ctor_get(x_42, 1); +x_48 = lean_ctor_get(x_42, 0); lean_dec(x_48); -lean_free_object(x_35); -x_59 = !lean_is_exclusive(x_54); -if (x_59 == 0) +lean_inc(x_1); +x_49 = l_Lean_Meta_mkEqLikeNameFor(x_45, x_1, x_31); +lean_inc(x_47); +lean_inc(x_49); +lean_ctor_set(x_42, 0, x_49); +x_50 = lean_box(0); +x_51 = l_List_mapTR_loop___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__9(x_47, x_50); +x_52 = l_Lean_Expr_const___override(x_34, x_51); +x_53 = lean_box(0); +lean_inc(x_49); +lean_ctor_set_tag(x_26, 1); +lean_ctor_set(x_26, 1, x_53); +lean_ctor_set(x_26, 0, x_49); +lean_ctor_set(x_40, 2, x_26); +lean_ctor_set(x_40, 1, x_52); +x_54 = lean_alloc_closure((void*)(l_Lean_Elab_WF_copyPrivateUnfoldTheorem___lam__2___boxed), 6, 1); +lean_closure_set(x_54, 0, x_38); +lean_inc(x_49); +x_55 = l_Lean_Meta_realizeConst(x_1, x_49, x_54, x_3, x_4, x_5, x_6, x_29); +if (lean_obj_tag(x_55) == 0) { -return x_54; +uint8_t x_56; +x_56 = !lean_is_exclusive(x_55); +if (x_56 == 0) +{ +lean_object* x_57; +x_57 = lean_ctor_get(x_55, 0); +lean_dec(x_57); +lean_ctor_set(x_36, 0, x_49); +lean_ctor_set(x_55, 0, x_36); +return x_55; } else { -lean_object* x_60; lean_object* x_61; lean_object* x_62; -x_60 = lean_ctor_get(x_54, 0); -x_61 = lean_ctor_get(x_54, 1); +lean_object* x_58; lean_object* x_59; +x_58 = lean_ctor_get(x_55, 1); +lean_inc(x_58); +lean_dec(x_55); +lean_ctor_set(x_36, 0, x_49); +x_59 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_59, 0, x_36); +lean_ctor_set(x_59, 1, x_58); +return x_59; +} +} +else +{ +uint8_t x_60; +lean_dec(x_49); +lean_free_object(x_36); +x_60 = !lean_is_exclusive(x_55); +if (x_60 == 0) +{ +return x_55; +} +else +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_61 = lean_ctor_get(x_55, 0); +x_62 = lean_ctor_get(x_55, 1); +lean_inc(x_62); lean_inc(x_61); -lean_inc(x_60); -lean_dec(x_54); -x_62 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_62, 0, x_60); -lean_ctor_set(x_62, 1, x_61); -return x_62; +lean_dec(x_55); +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_61); +lean_ctor_set(x_63, 1, x_62); +return x_63; } } } else { -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; -x_63 = lean_ctor_get(x_41, 1); -x_64 = lean_ctor_get(x_41, 2); +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; +x_64 = lean_ctor_get(x_42, 1); +x_65 = lean_ctor_get(x_42, 2); +lean_inc(x_65); lean_inc(x_64); -lean_inc(x_63); -lean_dec(x_41); +lean_dec(x_42); lean_inc(x_1); -x_65 = l_Lean_Meta_mkEqLikeNameFor(x_44, x_1, x_31); -lean_inc(x_63); -lean_inc(x_65); -x_66 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_66, 0, x_65); -lean_ctor_set(x_66, 1, x_63); -lean_ctor_set(x_66, 2, x_64); -x_67 = lean_box(0); -x_68 = l_List_mapTR_loop___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__9(x_63, x_67); -x_69 = l_Lean_Expr_const___override(x_33, x_68); -x_70 = lean_box(0); -lean_inc(x_65); +x_66 = l_Lean_Meta_mkEqLikeNameFor(x_45, x_1, x_31); +lean_inc(x_64); +lean_inc(x_66); +x_67 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_64); +lean_ctor_set(x_67, 2, x_65); +x_68 = lean_box(0); +x_69 = l_List_mapTR_loop___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__9(x_64, x_68); +x_70 = l_Lean_Expr_const___override(x_34, x_69); +x_71 = lean_box(0); +lean_inc(x_66); lean_ctor_set_tag(x_26, 1); -lean_ctor_set(x_26, 1, x_70); -lean_ctor_set(x_26, 0, x_65); -lean_ctor_set(x_39, 2, x_26); -lean_ctor_set(x_39, 1, x_69); -lean_ctor_set(x_39, 0, x_66); -x_71 = lean_alloc_closure((void*)(l_Lean_Elab_WF_copyPrivateUnfoldTheorem___lam__2___boxed), 6, 1); -lean_closure_set(x_71, 0, x_37); -lean_inc(x_65); -x_72 = l_Lean_Meta_realizeConst(x_1, x_65, x_71, x_3, x_4, x_5, x_6, x_29); -if (lean_obj_tag(x_72) == 0) +lean_ctor_set(x_26, 1, x_71); +lean_ctor_set(x_26, 0, x_66); +lean_ctor_set(x_40, 2, x_26); +lean_ctor_set(x_40, 1, x_70); +lean_ctor_set(x_40, 0, x_67); +x_72 = lean_alloc_closure((void*)(l_Lean_Elab_WF_copyPrivateUnfoldTheorem___lam__2___boxed), 6, 1); +lean_closure_set(x_72, 0, x_38); +lean_inc(x_66); +x_73 = l_Lean_Meta_realizeConst(x_1, x_66, x_72, x_3, x_4, x_5, x_6, x_29); +if (lean_obj_tag(x_73) == 0) { -lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_73 = lean_ctor_get(x_72, 1); -lean_inc(x_73); -if (lean_is_exclusive(x_72)) { - lean_ctor_release(x_72, 0); - lean_ctor_release(x_72, 1); - x_74 = x_72; +lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_74 = lean_ctor_get(x_73, 1); +lean_inc(x_74); +if (lean_is_exclusive(x_73)) { + lean_ctor_release(x_73, 0); + lean_ctor_release(x_73, 1); + x_75 = x_73; } else { - lean_dec_ref(x_72); - x_74 = lean_box(0); + lean_dec_ref(x_73); + x_75 = lean_box(0); } -lean_ctor_set(x_35, 0, x_65); -if (lean_is_scalar(x_74)) { - x_75 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_66); +if (lean_is_scalar(x_75)) { + x_76 = lean_alloc_ctor(0, 2, 0); } else { - x_75 = x_74; + x_76 = x_75; } -lean_ctor_set(x_75, 0, x_35); -lean_ctor_set(x_75, 1, x_73); -return x_75; +lean_ctor_set(x_76, 0, x_36); +lean_ctor_set(x_76, 1, x_74); +return x_76; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; -lean_dec(x_65); -lean_free_object(x_35); -x_76 = lean_ctor_get(x_72, 0); -lean_inc(x_76); -x_77 = lean_ctor_get(x_72, 1); +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +lean_dec(x_66); +lean_free_object(x_36); +x_77 = lean_ctor_get(x_73, 0); lean_inc(x_77); -if (lean_is_exclusive(x_72)) { - lean_ctor_release(x_72, 0); - lean_ctor_release(x_72, 1); - x_78 = x_72; +x_78 = lean_ctor_get(x_73, 1); +lean_inc(x_78); +if (lean_is_exclusive(x_73)) { + lean_ctor_release(x_73, 0); + lean_ctor_release(x_73, 1); + x_79 = x_73; } else { - lean_dec_ref(x_72); - x_78 = lean_box(0); + lean_dec_ref(x_73); + x_79 = lean_box(0); } -if (lean_is_scalar(x_78)) { - x_79 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_79)) { + x_80 = lean_alloc_ctor(1, 2, 0); } else { - x_79 = x_78; + x_80 = x_79; } -lean_ctor_set(x_79, 0, x_76); -lean_ctor_set(x_79, 1, x_77); -return x_79; +lean_ctor_set(x_80, 0, x_77); +lean_ctor_set(x_80, 1, x_78); +return x_80; } } } else { -lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_80 = lean_ctor_get(x_39, 0); -lean_inc(x_80); -lean_dec(x_39); -x_81 = lean_ctor_get(x_17, 0); -lean_inc_ref(x_81); +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; +x_81 = lean_ctor_get(x_40, 0); +lean_inc(x_81); +lean_dec(x_40); +x_82 = lean_ctor_get(x_17, 0); +lean_inc_ref(x_82); lean_dec(x_17); -x_82 = lean_ctor_get(x_80, 1); -lean_inc(x_82); -x_83 = lean_ctor_get(x_80, 2); -lean_inc_ref(x_83); -if (lean_is_exclusive(x_80)) { - lean_ctor_release(x_80, 0); - lean_ctor_release(x_80, 1); - lean_ctor_release(x_80, 2); - x_84 = x_80; +x_83 = lean_ctor_get(x_81, 1); +lean_inc(x_83); +x_84 = lean_ctor_get(x_81, 2); +lean_inc_ref(x_84); +if (lean_is_exclusive(x_81)) { + lean_ctor_release(x_81, 0); + lean_ctor_release(x_81, 1); + lean_ctor_release(x_81, 2); + x_85 = x_81; } else { - lean_dec_ref(x_80); - x_84 = lean_box(0); + lean_dec_ref(x_81); + x_85 = lean_box(0); } lean_inc(x_1); -x_85 = l_Lean_Meta_mkEqLikeNameFor(x_81, x_1, x_31); -lean_inc(x_82); -lean_inc(x_85); -if (lean_is_scalar(x_84)) { - x_86 = lean_alloc_ctor(0, 3, 0); +x_86 = l_Lean_Meta_mkEqLikeNameFor(x_82, x_1, x_31); +lean_inc(x_83); +lean_inc(x_86); +if (lean_is_scalar(x_85)) { + x_87 = lean_alloc_ctor(0, 3, 0); } else { - x_86 = x_84; + x_87 = x_85; } -lean_ctor_set(x_86, 0, x_85); -lean_ctor_set(x_86, 1, x_82); -lean_ctor_set(x_86, 2, x_83); -x_87 = lean_box(0); -x_88 = l_List_mapTR_loop___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__9(x_82, x_87); -x_89 = l_Lean_Expr_const___override(x_33, x_88); -x_90 = lean_box(0); -lean_inc(x_85); +lean_ctor_set(x_87, 0, x_86); +lean_ctor_set(x_87, 1, x_83); +lean_ctor_set(x_87, 2, x_84); +x_88 = lean_box(0); +x_89 = l_List_mapTR_loop___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__9(x_83, x_88); +x_90 = l_Lean_Expr_const___override(x_34, x_89); +x_91 = lean_box(0); +lean_inc(x_86); lean_ctor_set_tag(x_26, 1); -lean_ctor_set(x_26, 1, x_90); -lean_ctor_set(x_26, 0, x_85); -x_91 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_91, 0, x_86); -lean_ctor_set(x_91, 1, x_89); -lean_ctor_set(x_91, 2, x_26); -lean_ctor_set(x_37, 0, x_91); -x_92 = lean_alloc_closure((void*)(l_Lean_Elab_WF_copyPrivateUnfoldTheorem___lam__2___boxed), 6, 1); -lean_closure_set(x_92, 0, x_37); -lean_inc(x_85); -x_93 = l_Lean_Meta_realizeConst(x_1, x_85, x_92, x_3, x_4, x_5, x_6, x_29); -if (lean_obj_tag(x_93) == 0) +lean_ctor_set(x_26, 1, x_91); +lean_ctor_set(x_26, 0, x_86); +x_92 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_92, 0, x_87); +lean_ctor_set(x_92, 1, x_90); +lean_ctor_set(x_92, 2, x_26); +lean_ctor_set(x_38, 0, x_92); +x_93 = lean_alloc_closure((void*)(l_Lean_Elab_WF_copyPrivateUnfoldTheorem___lam__2___boxed), 6, 1); +lean_closure_set(x_93, 0, x_38); +lean_inc(x_86); +x_94 = l_Lean_Meta_realizeConst(x_1, x_86, x_93, x_3, x_4, x_5, x_6, x_29); +if (lean_obj_tag(x_94) == 0) { -lean_object* x_94; lean_object* x_95; lean_object* x_96; -x_94 = lean_ctor_get(x_93, 1); -lean_inc(x_94); -if (lean_is_exclusive(x_93)) { - lean_ctor_release(x_93, 0); - lean_ctor_release(x_93, 1); - x_95 = x_93; +lean_object* x_95; lean_object* x_96; lean_object* x_97; +x_95 = lean_ctor_get(x_94, 1); +lean_inc(x_95); +if (lean_is_exclusive(x_94)) { + lean_ctor_release(x_94, 0); + lean_ctor_release(x_94, 1); + x_96 = x_94; } else { - lean_dec_ref(x_93); - x_95 = lean_box(0); + lean_dec_ref(x_94); + x_96 = lean_box(0); } -lean_ctor_set(x_35, 0, x_85); -if (lean_is_scalar(x_95)) { - x_96 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_86); +if (lean_is_scalar(x_96)) { + x_97 = lean_alloc_ctor(0, 2, 0); } else { - x_96 = x_95; + x_97 = x_96; } -lean_ctor_set(x_96, 0, x_35); -lean_ctor_set(x_96, 1, x_94); -return x_96; +lean_ctor_set(x_97, 0, x_36); +lean_ctor_set(x_97, 1, x_95); +return x_97; } else { -lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; -lean_dec(x_85); -lean_free_object(x_35); -x_97 = lean_ctor_get(x_93, 0); -lean_inc(x_97); -x_98 = lean_ctor_get(x_93, 1); +lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; +lean_dec(x_86); +lean_free_object(x_36); +x_98 = lean_ctor_get(x_94, 0); lean_inc(x_98); -if (lean_is_exclusive(x_93)) { - lean_ctor_release(x_93, 0); - lean_ctor_release(x_93, 1); - x_99 = x_93; +x_99 = lean_ctor_get(x_94, 1); +lean_inc(x_99); +if (lean_is_exclusive(x_94)) { + lean_ctor_release(x_94, 0); + lean_ctor_release(x_94, 1); + x_100 = x_94; } else { - lean_dec_ref(x_93); - x_99 = lean_box(0); + lean_dec_ref(x_94); + x_100 = lean_box(0); } -if (lean_is_scalar(x_99)) { - x_100 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_100)) { + x_101 = lean_alloc_ctor(1, 2, 0); } else { - x_100 = x_99; + x_101 = x_100; } -lean_ctor_set(x_100, 0, x_97); -lean_ctor_set(x_100, 1, x_98); -return x_100; +lean_ctor_set(x_101, 0, x_98); +lean_ctor_set(x_101, 1, x_99); +return x_101; } } } else { -lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; -x_101 = lean_ctor_get(x_37, 0); -lean_inc(x_101); -lean_dec(x_37); -x_102 = lean_ctor_get(x_101, 0); -lean_inc_ref(x_102); -if (lean_is_exclusive(x_101)) { - lean_ctor_release(x_101, 0); - lean_ctor_release(x_101, 1); - lean_ctor_release(x_101, 2); - x_103 = x_101; -} else { - lean_dec_ref(x_101); - x_103 = lean_box(0); -} -x_104 = lean_ctor_get(x_17, 0); -lean_inc_ref(x_104); -lean_dec(x_17); -x_105 = lean_ctor_get(x_102, 1); -lean_inc(x_105); -x_106 = lean_ctor_get(x_102, 2); -lean_inc_ref(x_106); +lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; +x_102 = lean_ctor_get(x_38, 0); +lean_inc(x_102); +lean_dec(x_38); +x_103 = lean_ctor_get(x_102, 0); +lean_inc_ref(x_103); if (lean_is_exclusive(x_102)) { lean_ctor_release(x_102, 0); lean_ctor_release(x_102, 1); lean_ctor_release(x_102, 2); - x_107 = x_102; + x_104 = x_102; } else { lean_dec_ref(x_102); - x_107 = lean_box(0); + x_104 = lean_box(0); +} +x_105 = lean_ctor_get(x_17, 0); +lean_inc_ref(x_105); +lean_dec(x_17); +x_106 = lean_ctor_get(x_103, 1); +lean_inc(x_106); +x_107 = lean_ctor_get(x_103, 2); +lean_inc_ref(x_107); +if (lean_is_exclusive(x_103)) { + lean_ctor_release(x_103, 0); + lean_ctor_release(x_103, 1); + lean_ctor_release(x_103, 2); + x_108 = x_103; +} else { + lean_dec_ref(x_103); + x_108 = lean_box(0); } lean_inc(x_1); -x_108 = l_Lean_Meta_mkEqLikeNameFor(x_104, x_1, x_31); -lean_inc(x_105); -lean_inc(x_108); -if (lean_is_scalar(x_107)) { - x_109 = lean_alloc_ctor(0, 3, 0); +x_109 = l_Lean_Meta_mkEqLikeNameFor(x_105, x_1, x_31); +lean_inc(x_106); +lean_inc(x_109); +if (lean_is_scalar(x_108)) { + x_110 = lean_alloc_ctor(0, 3, 0); } else { - x_109 = x_107; + x_110 = x_108; } -lean_ctor_set(x_109, 0, x_108); -lean_ctor_set(x_109, 1, x_105); -lean_ctor_set(x_109, 2, x_106); -x_110 = lean_box(0); -x_111 = l_List_mapTR_loop___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__9(x_105, x_110); -x_112 = l_Lean_Expr_const___override(x_33, x_111); -x_113 = lean_box(0); -lean_inc(x_108); +lean_ctor_set(x_110, 0, x_109); +lean_ctor_set(x_110, 1, x_106); +lean_ctor_set(x_110, 2, x_107); +x_111 = lean_box(0); +x_112 = l_List_mapTR_loop___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__9(x_106, x_111); +x_113 = l_Lean_Expr_const___override(x_34, x_112); +x_114 = lean_box(0); +lean_inc(x_109); lean_ctor_set_tag(x_26, 1); -lean_ctor_set(x_26, 1, x_113); -lean_ctor_set(x_26, 0, x_108); -if (lean_is_scalar(x_103)) { - x_114 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_26, 1, x_114); +lean_ctor_set(x_26, 0, x_109); +if (lean_is_scalar(x_104)) { + x_115 = lean_alloc_ctor(0, 3, 0); } else { - x_114 = x_103; + x_115 = x_104; } -lean_ctor_set(x_114, 0, x_109); -lean_ctor_set(x_114, 1, x_112); -lean_ctor_set(x_114, 2, x_26); -x_115 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_115, 0, x_114); -x_116 = lean_alloc_closure((void*)(l_Lean_Elab_WF_copyPrivateUnfoldTheorem___lam__2___boxed), 6, 1); -lean_closure_set(x_116, 0, x_115); -lean_inc(x_108); -x_117 = l_Lean_Meta_realizeConst(x_1, x_108, x_116, x_3, x_4, x_5, x_6, x_29); -if (lean_obj_tag(x_117) == 0) +lean_ctor_set(x_115, 0, x_110); +lean_ctor_set(x_115, 1, x_113); +lean_ctor_set(x_115, 2, x_26); +x_116 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_116, 0, x_115); +x_117 = lean_alloc_closure((void*)(l_Lean_Elab_WF_copyPrivateUnfoldTheorem___lam__2___boxed), 6, 1); +lean_closure_set(x_117, 0, x_116); +lean_inc(x_109); +x_118 = l_Lean_Meta_realizeConst(x_1, x_109, x_117, x_3, x_4, x_5, x_6, x_29); +if (lean_obj_tag(x_118) == 0) { -lean_object* x_118; lean_object* x_119; lean_object* x_120; -x_118 = lean_ctor_get(x_117, 1); -lean_inc(x_118); -if (lean_is_exclusive(x_117)) { - lean_ctor_release(x_117, 0); - lean_ctor_release(x_117, 1); - x_119 = x_117; +lean_object* x_119; lean_object* x_120; lean_object* x_121; +x_119 = lean_ctor_get(x_118, 1); +lean_inc(x_119); +if (lean_is_exclusive(x_118)) { + lean_ctor_release(x_118, 0); + lean_ctor_release(x_118, 1); + x_120 = x_118; } else { - lean_dec_ref(x_117); - x_119 = lean_box(0); + lean_dec_ref(x_118); + x_120 = lean_box(0); } -lean_ctor_set(x_35, 0, x_108); -if (lean_is_scalar(x_119)) { - x_120 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_109); +if (lean_is_scalar(x_120)) { + x_121 = lean_alloc_ctor(0, 2, 0); } else { - x_120 = x_119; + x_121 = x_120; } -lean_ctor_set(x_120, 0, x_35); -lean_ctor_set(x_120, 1, x_118); -return x_120; +lean_ctor_set(x_121, 0, x_36); +lean_ctor_set(x_121, 1, x_119); +return x_121; } else { -lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; -lean_dec(x_108); -lean_free_object(x_35); -x_121 = lean_ctor_get(x_117, 0); -lean_inc(x_121); -x_122 = lean_ctor_get(x_117, 1); +lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; +lean_dec(x_109); +lean_free_object(x_36); +x_122 = lean_ctor_get(x_118, 0); lean_inc(x_122); -if (lean_is_exclusive(x_117)) { - lean_ctor_release(x_117, 0); - lean_ctor_release(x_117, 1); - x_123 = x_117; +x_123 = lean_ctor_get(x_118, 1); +lean_inc(x_123); +if (lean_is_exclusive(x_118)) { + lean_ctor_release(x_118, 0); + lean_ctor_release(x_118, 1); + x_124 = x_118; } else { - lean_dec_ref(x_117); - x_123 = lean_box(0); + lean_dec_ref(x_118); + x_124 = lean_box(0); } -if (lean_is_scalar(x_123)) { - x_124 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_124)) { + x_125 = lean_alloc_ctor(1, 2, 0); } else { - x_124 = x_123; + x_125 = x_124; } -lean_ctor_set(x_124, 0, x_121); -lean_ctor_set(x_124, 1, x_122); -return x_124; +lean_ctor_set(x_125, 0, x_122); +lean_ctor_set(x_125, 1, x_123); +return x_125; } } } else { -lean_free_object(x_35); -lean_dec(x_37); -lean_dec(x_33); +lean_free_object(x_36); +lean_dec(x_38); +lean_dec(x_34); lean_free_object(x_26); lean_dec(x_17); lean_dec(x_1); @@ -5163,142 +5165,142 @@ goto block_15; } else { -lean_object* x_125; -x_125 = lean_ctor_get(x_35, 0); -lean_inc(x_125); -lean_dec(x_35); -if (lean_obj_tag(x_125) == 2) +lean_object* x_126; +x_126 = lean_ctor_get(x_36, 0); +lean_inc(x_126); +lean_dec(x_36); +if (lean_obj_tag(x_126) == 2) { -lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; +lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_dec_ref(x_2); -x_126 = lean_ctor_get(x_125, 0); -lean_inc_ref(x_126); -if (lean_is_exclusive(x_125)) { - lean_ctor_release(x_125, 0); - x_127 = x_125; -} else { - lean_dec_ref(x_125); - x_127 = lean_box(0); -} -x_128 = lean_ctor_get(x_126, 0); -lean_inc_ref(x_128); +x_127 = lean_ctor_get(x_126, 0); +lean_inc_ref(x_127); if (lean_is_exclusive(x_126)) { lean_ctor_release(x_126, 0); - lean_ctor_release(x_126, 1); - lean_ctor_release(x_126, 2); - x_129 = x_126; + x_128 = x_126; } else { lean_dec_ref(x_126); - x_129 = lean_box(0); + x_128 = lean_box(0); } -x_130 = lean_ctor_get(x_17, 0); -lean_inc_ref(x_130); -lean_dec(x_17); -x_131 = lean_ctor_get(x_128, 1); -lean_inc(x_131); -x_132 = lean_ctor_get(x_128, 2); -lean_inc_ref(x_132); -if (lean_is_exclusive(x_128)) { - lean_ctor_release(x_128, 0); - lean_ctor_release(x_128, 1); - lean_ctor_release(x_128, 2); - x_133 = x_128; +x_129 = lean_ctor_get(x_127, 0); +lean_inc_ref(x_129); +if (lean_is_exclusive(x_127)) { + lean_ctor_release(x_127, 0); + lean_ctor_release(x_127, 1); + lean_ctor_release(x_127, 2); + x_130 = x_127; } else { - lean_dec_ref(x_128); - x_133 = lean_box(0); + lean_dec_ref(x_127); + x_130 = lean_box(0); +} +x_131 = lean_ctor_get(x_17, 0); +lean_inc_ref(x_131); +lean_dec(x_17); +x_132 = lean_ctor_get(x_129, 1); +lean_inc(x_132); +x_133 = lean_ctor_get(x_129, 2); +lean_inc_ref(x_133); +if (lean_is_exclusive(x_129)) { + lean_ctor_release(x_129, 0); + lean_ctor_release(x_129, 1); + lean_ctor_release(x_129, 2); + x_134 = x_129; +} else { + lean_dec_ref(x_129); + x_134 = lean_box(0); } lean_inc(x_1); -x_134 = l_Lean_Meta_mkEqLikeNameFor(x_130, x_1, x_31); -lean_inc(x_131); -lean_inc(x_134); -if (lean_is_scalar(x_133)) { - x_135 = lean_alloc_ctor(0, 3, 0); +x_135 = l_Lean_Meta_mkEqLikeNameFor(x_131, x_1, x_31); +lean_inc(x_132); +lean_inc(x_135); +if (lean_is_scalar(x_134)) { + x_136 = lean_alloc_ctor(0, 3, 0); } else { - x_135 = x_133; + x_136 = x_134; } -lean_ctor_set(x_135, 0, x_134); -lean_ctor_set(x_135, 1, x_131); -lean_ctor_set(x_135, 2, x_132); -x_136 = lean_box(0); -x_137 = l_List_mapTR_loop___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__9(x_131, x_136); -x_138 = l_Lean_Expr_const___override(x_33, x_137); -x_139 = lean_box(0); -lean_inc(x_134); +lean_ctor_set(x_136, 0, x_135); +lean_ctor_set(x_136, 1, x_132); +lean_ctor_set(x_136, 2, x_133); +x_137 = lean_box(0); +x_138 = l_List_mapTR_loop___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__9(x_132, x_137); +x_139 = l_Lean_Expr_const___override(x_34, x_138); +x_140 = lean_box(0); +lean_inc(x_135); lean_ctor_set_tag(x_26, 1); -lean_ctor_set(x_26, 1, x_139); -lean_ctor_set(x_26, 0, x_134); -if (lean_is_scalar(x_129)) { - x_140 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_26, 1, x_140); +lean_ctor_set(x_26, 0, x_135); +if (lean_is_scalar(x_130)) { + x_141 = lean_alloc_ctor(0, 3, 0); } else { - x_140 = x_129; + x_141 = x_130; } -lean_ctor_set(x_140, 0, x_135); -lean_ctor_set(x_140, 1, x_138); -lean_ctor_set(x_140, 2, x_26); -if (lean_is_scalar(x_127)) { - x_141 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_141, 0, x_136); +lean_ctor_set(x_141, 1, x_139); +lean_ctor_set(x_141, 2, x_26); +if (lean_is_scalar(x_128)) { + x_142 = lean_alloc_ctor(2, 1, 0); } else { - x_141 = x_127; + x_142 = x_128; } -lean_ctor_set(x_141, 0, x_140); -x_142 = lean_alloc_closure((void*)(l_Lean_Elab_WF_copyPrivateUnfoldTheorem___lam__2___boxed), 6, 1); -lean_closure_set(x_142, 0, x_141); -lean_inc(x_134); -x_143 = l_Lean_Meta_realizeConst(x_1, x_134, x_142, x_3, x_4, x_5, x_6, x_29); -if (lean_obj_tag(x_143) == 0) +lean_ctor_set(x_142, 0, x_141); +x_143 = lean_alloc_closure((void*)(l_Lean_Elab_WF_copyPrivateUnfoldTheorem___lam__2___boxed), 6, 1); +lean_closure_set(x_143, 0, x_142); +lean_inc(x_135); +x_144 = l_Lean_Meta_realizeConst(x_1, x_135, x_143, x_3, x_4, x_5, x_6, x_29); +if (lean_obj_tag(x_144) == 0) { -lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; -x_144 = lean_ctor_get(x_143, 1); -lean_inc(x_144); -if (lean_is_exclusive(x_143)) { - lean_ctor_release(x_143, 0); - lean_ctor_release(x_143, 1); - x_145 = x_143; +lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; +x_145 = lean_ctor_get(x_144, 1); +lean_inc(x_145); +if (lean_is_exclusive(x_144)) { + lean_ctor_release(x_144, 0); + lean_ctor_release(x_144, 1); + x_146 = x_144; } else { - lean_dec_ref(x_143); - x_145 = lean_box(0); + lean_dec_ref(x_144); + x_146 = lean_box(0); } -x_146 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_146, 0, x_134); -if (lean_is_scalar(x_145)) { - x_147 = lean_alloc_ctor(0, 2, 0); +x_147 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_147, 0, x_135); +if (lean_is_scalar(x_146)) { + x_148 = lean_alloc_ctor(0, 2, 0); } else { - x_147 = x_145; + x_148 = x_146; } -lean_ctor_set(x_147, 0, x_146); -lean_ctor_set(x_147, 1, x_144); -return x_147; +lean_ctor_set(x_148, 0, x_147); +lean_ctor_set(x_148, 1, x_145); +return x_148; } else { -lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; -lean_dec(x_134); -x_148 = lean_ctor_get(x_143, 0); -lean_inc(x_148); -x_149 = lean_ctor_get(x_143, 1); +lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; +lean_dec(x_135); +x_149 = lean_ctor_get(x_144, 0); lean_inc(x_149); -if (lean_is_exclusive(x_143)) { - lean_ctor_release(x_143, 0); - lean_ctor_release(x_143, 1); - x_150 = x_143; +x_150 = lean_ctor_get(x_144, 1); +lean_inc(x_150); +if (lean_is_exclusive(x_144)) { + lean_ctor_release(x_144, 0); + lean_ctor_release(x_144, 1); + x_151 = x_144; } else { - lean_dec_ref(x_143); - x_150 = lean_box(0); + lean_dec_ref(x_144); + x_151 = lean_box(0); } -if (lean_is_scalar(x_150)) { - x_151 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_151)) { + x_152 = lean_alloc_ctor(1, 2, 0); } else { - x_151 = x_150; + x_152 = x_151; } -lean_ctor_set(x_151, 0, x_148); -lean_ctor_set(x_151, 1, x_149); -return x_151; +lean_ctor_set(x_152, 0, x_149); +lean_ctor_set(x_152, 1, x_150); +return x_152; } } else { -lean_dec(x_125); -lean_dec(x_33); +lean_dec(x_126); +lean_dec(x_34); lean_free_object(x_26); lean_dec(x_17); lean_dec(x_1); @@ -5314,191 +5316,192 @@ goto block_15; } else { -lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; uint8_t x_158; lean_object* x_159; -x_152 = lean_ctor_get(x_26, 0); -x_153 = lean_ctor_get(x_26, 1); +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; uint8_t x_160; lean_object* x_161; +x_153 = lean_ctor_get(x_26, 0); +x_154 = lean_ctor_get(x_26, 1); +lean_inc(x_154); lean_inc(x_153); -lean_inc(x_152); lean_dec(x_26); -x_154 = lean_ctor_get(x_152, 0); -lean_inc_ref(x_154); -lean_dec(x_152); -x_155 = l_Lean_Elab_WF_copyPrivateUnfoldTheorem___lam__3___closed__0; +x_155 = lean_ctor_get(x_153, 0); +lean_inc_ref(x_155); +lean_dec(x_153); +x_156 = l_Lean_Elab_WF_copyPrivateUnfoldTheorem___lam__3___closed__0; lean_inc(x_1); -x_156 = l_Lean_Name_str___override(x_1, x_155); -x_157 = l_Lean_mkPrivateNameCore(x_25, x_156); -x_158 = 0; -lean_inc(x_157); -x_159 = l_Lean_Environment_find_x3f(x_154, x_157, x_158); -if (lean_obj_tag(x_159) == 0) +x_157 = l_Lean_privateToUserName(x_1); +x_158 = l_Lean_Name_str___override(x_157, x_156); +x_159 = l_Lean_mkPrivateNameCore(x_25, x_158); +x_160 = 0; +lean_inc(x_159); +x_161 = l_Lean_Environment_find_x3f(x_155, x_159, x_160); +if (lean_obj_tag(x_161) == 0) { -lean_dec(x_157); +lean_dec(x_159); lean_dec(x_17); lean_dec(x_1); x_8 = x_3; x_9 = x_4; x_10 = x_5; x_11 = x_6; -x_12 = x_153; +x_12 = x_154; goto block_15; } else { -lean_object* x_160; lean_object* x_161; -x_160 = lean_ctor_get(x_159, 0); -lean_inc(x_160); -if (lean_is_exclusive(x_159)) { - lean_ctor_release(x_159, 0); - x_161 = x_159; +lean_object* x_162; lean_object* x_163; +x_162 = lean_ctor_get(x_161, 0); +lean_inc(x_162); +if (lean_is_exclusive(x_161)) { + lean_ctor_release(x_161, 0); + x_163 = x_161; } else { - lean_dec_ref(x_159); - x_161 = lean_box(0); -} -if (lean_obj_tag(x_160) == 2) -{ -lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; -lean_dec_ref(x_2); -x_162 = lean_ctor_get(x_160, 0); -lean_inc_ref(x_162); -if (lean_is_exclusive(x_160)) { - lean_ctor_release(x_160, 0); - x_163 = x_160; -} else { - lean_dec_ref(x_160); + lean_dec_ref(x_161); x_163 = lean_box(0); } +if (lean_obj_tag(x_162) == 2) +{ +lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; +lean_dec_ref(x_2); x_164 = lean_ctor_get(x_162, 0); lean_inc_ref(x_164); if (lean_is_exclusive(x_162)) { lean_ctor_release(x_162, 0); - lean_ctor_release(x_162, 1); - lean_ctor_release(x_162, 2); x_165 = x_162; } else { lean_dec_ref(x_162); x_165 = lean_box(0); } -x_166 = lean_ctor_get(x_17, 0); +x_166 = lean_ctor_get(x_164, 0); lean_inc_ref(x_166); -lean_dec(x_17); -x_167 = lean_ctor_get(x_164, 1); -lean_inc(x_167); -x_168 = lean_ctor_get(x_164, 2); -lean_inc_ref(x_168); if (lean_is_exclusive(x_164)) { lean_ctor_release(x_164, 0); lean_ctor_release(x_164, 1); lean_ctor_release(x_164, 2); - x_169 = x_164; + x_167 = x_164; } else { lean_dec_ref(x_164); - x_169 = lean_box(0); + x_167 = lean_box(0); +} +x_168 = lean_ctor_get(x_17, 0); +lean_inc_ref(x_168); +lean_dec(x_17); +x_169 = lean_ctor_get(x_166, 1); +lean_inc(x_169); +x_170 = lean_ctor_get(x_166, 2); +lean_inc_ref(x_170); +if (lean_is_exclusive(x_166)) { + lean_ctor_release(x_166, 0); + lean_ctor_release(x_166, 1); + lean_ctor_release(x_166, 2); + x_171 = x_166; +} else { + lean_dec_ref(x_166); + x_171 = lean_box(0); } lean_inc(x_1); -x_170 = l_Lean_Meta_mkEqLikeNameFor(x_166, x_1, x_155); -lean_inc(x_167); -lean_inc(x_170); -if (lean_is_scalar(x_169)) { - x_171 = lean_alloc_ctor(0, 3, 0); +x_172 = l_Lean_Meta_mkEqLikeNameFor(x_168, x_1, x_156); +lean_inc(x_169); +lean_inc(x_172); +if (lean_is_scalar(x_171)) { + x_173 = lean_alloc_ctor(0, 3, 0); } else { - x_171 = x_169; + x_173 = x_171; } -lean_ctor_set(x_171, 0, x_170); -lean_ctor_set(x_171, 1, x_167); -lean_ctor_set(x_171, 2, x_168); -x_172 = lean_box(0); -x_173 = l_List_mapTR_loop___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__9(x_167, x_172); -x_174 = l_Lean_Expr_const___override(x_157, x_173); -x_175 = lean_box(0); -lean_inc(x_170); -x_176 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_176, 0, x_170); -lean_ctor_set(x_176, 1, x_175); +lean_ctor_set(x_173, 0, x_172); +lean_ctor_set(x_173, 1, x_169); +lean_ctor_set(x_173, 2, x_170); +x_174 = lean_box(0); +x_175 = l_List_mapTR_loop___at___Lean_Elab_WF_copyPrivateUnfoldTheorem_spec__9(x_169, x_174); +x_176 = l_Lean_Expr_const___override(x_159, x_175); +x_177 = lean_box(0); +lean_inc(x_172); +x_178 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_178, 0, x_172); +lean_ctor_set(x_178, 1, x_177); +if (lean_is_scalar(x_167)) { + x_179 = lean_alloc_ctor(0, 3, 0); +} else { + x_179 = x_167; +} +lean_ctor_set(x_179, 0, x_173); +lean_ctor_set(x_179, 1, x_176); +lean_ctor_set(x_179, 2, x_178); if (lean_is_scalar(x_165)) { - x_177 = lean_alloc_ctor(0, 3, 0); + x_180 = lean_alloc_ctor(2, 1, 0); } else { - x_177 = x_165; + x_180 = x_165; } -lean_ctor_set(x_177, 0, x_171); -lean_ctor_set(x_177, 1, x_174); -lean_ctor_set(x_177, 2, x_176); -if (lean_is_scalar(x_163)) { - x_178 = lean_alloc_ctor(2, 1, 0); -} else { - x_178 = x_163; -} -lean_ctor_set(x_178, 0, x_177); -x_179 = lean_alloc_closure((void*)(l_Lean_Elab_WF_copyPrivateUnfoldTheorem___lam__2___boxed), 6, 1); -lean_closure_set(x_179, 0, x_178); -lean_inc(x_170); -x_180 = l_Lean_Meta_realizeConst(x_1, x_170, x_179, x_3, x_4, x_5, x_6, x_153); -if (lean_obj_tag(x_180) == 0) +lean_ctor_set(x_180, 0, x_179); +x_181 = lean_alloc_closure((void*)(l_Lean_Elab_WF_copyPrivateUnfoldTheorem___lam__2___boxed), 6, 1); +lean_closure_set(x_181, 0, x_180); +lean_inc(x_172); +x_182 = l_Lean_Meta_realizeConst(x_1, x_172, x_181, x_3, x_4, x_5, x_6, x_154); +if (lean_obj_tag(x_182) == 0) { -lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; -x_181 = lean_ctor_get(x_180, 1); -lean_inc(x_181); -if (lean_is_exclusive(x_180)) { - lean_ctor_release(x_180, 0); - lean_ctor_release(x_180, 1); - x_182 = x_180; -} else { - lean_dec_ref(x_180); - x_182 = lean_box(0); -} -if (lean_is_scalar(x_161)) { - x_183 = lean_alloc_ctor(1, 1, 0); -} else { - x_183 = x_161; -} -lean_ctor_set(x_183, 0, x_170); -if (lean_is_scalar(x_182)) { - x_184 = lean_alloc_ctor(0, 2, 0); -} else { +lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; +x_183 = lean_ctor_get(x_182, 1); +lean_inc(x_183); +if (lean_is_exclusive(x_182)) { + lean_ctor_release(x_182, 0); + lean_ctor_release(x_182, 1); x_184 = x_182; +} else { + lean_dec_ref(x_182); + x_184 = lean_box(0); } -lean_ctor_set(x_184, 0, x_183); -lean_ctor_set(x_184, 1, x_181); -return x_184; +if (lean_is_scalar(x_163)) { + x_185 = lean_alloc_ctor(1, 1, 0); +} else { + x_185 = x_163; +} +lean_ctor_set(x_185, 0, x_172); +if (lean_is_scalar(x_184)) { + x_186 = lean_alloc_ctor(0, 2, 0); +} else { + x_186 = x_184; +} +lean_ctor_set(x_186, 0, x_185); +lean_ctor_set(x_186, 1, x_183); +return x_186; } else { -lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -lean_dec(x_170); -lean_dec(x_161); -x_185 = lean_ctor_get(x_180, 0); -lean_inc(x_185); -x_186 = lean_ctor_get(x_180, 1); -lean_inc(x_186); -if (lean_is_exclusive(x_180)) { - lean_ctor_release(x_180, 0); - lean_ctor_release(x_180, 1); - x_187 = x_180; +lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; +lean_dec(x_172); +lean_dec(x_163); +x_187 = lean_ctor_get(x_182, 0); +lean_inc(x_187); +x_188 = lean_ctor_get(x_182, 1); +lean_inc(x_188); +if (lean_is_exclusive(x_182)) { + lean_ctor_release(x_182, 0); + lean_ctor_release(x_182, 1); + x_189 = x_182; } else { - lean_dec_ref(x_180); - x_187 = lean_box(0); + lean_dec_ref(x_182); + x_189 = lean_box(0); } -if (lean_is_scalar(x_187)) { - x_188 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_189)) { + x_190 = lean_alloc_ctor(1, 2, 0); } else { - x_188 = x_187; + x_190 = x_189; } -lean_ctor_set(x_188, 0, x_185); -lean_ctor_set(x_188, 1, x_186); -return x_188; +lean_ctor_set(x_190, 0, x_187); +lean_ctor_set(x_190, 1, x_188); +return x_190; } } else { -lean_dec(x_161); -lean_dec(x_160); -lean_dec(x_157); +lean_dec(x_163); +lean_dec(x_162); +lean_dec(x_159); lean_dec(x_17); lean_dec(x_1); x_8 = x_3; x_9 = x_4; x_10 = x_5; x_11 = x_6; -x_12 = x_153; +x_12 = x_154; goto block_15; } } @@ -5909,7 +5912,7 @@ lean_dec_ref(x_2); return x_7; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_PreDefinition_WF_Eqns_0__Lean_Elab_WF_initFn____x40_Lean_Elab_PreDefinition_WF_Eqns___hyg_578_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___private_Lean_Elab_PreDefinition_WF_Eqns_0__Lean_Elab_WF_initFn____x40_Lean_Elab_PreDefinition_WF_Eqns___hyg_581_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -6086,7 +6089,7 @@ l_Lean_Elab_WF_copyPrivateUnfoldTheorem___closed__0 = _init_l_Lean_Elab_WF_copyP lean_mark_persistent(l_Lean_Elab_WF_copyPrivateUnfoldTheorem___closed__0); l_Lean_Elab_WF_copyPrivateUnfoldTheorem___closed__1 = _init_l_Lean_Elab_WF_copyPrivateUnfoldTheorem___closed__1(); lean_mark_persistent(l_Lean_Elab_WF_copyPrivateUnfoldTheorem___closed__1); -if (builtin) {res = l___private_Lean_Elab_PreDefinition_WF_Eqns_0__Lean_Elab_WF_initFn____x40_Lean_Elab_PreDefinition_WF_Eqns___hyg_578_(lean_io_mk_world()); +if (builtin) {res = l___private_Lean_Elab_PreDefinition_WF_Eqns_0__Lean_Elab_WF_initFn____x40_Lean_Elab_PreDefinition_WF_Eqns___hyg_581_(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/Structure.c b/stage0/stdlib/Lean/Elab/Structure.c index 5797b5a84c..836ebd8b9a 100644 --- a/stage0/stdlib/Lean/Elab/Structure.c +++ b/stage0/stdlib/Lean/Elab/Structure.c @@ -26,37 +26,32 @@ static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_lo LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___lam__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField_spec__4_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__1; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder___closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__4_spec__4___lam__0___boxed(lean_object*, lean_object*); uint8_t l_Lean_MetavarKind_isNatural(uint8_t); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___lam__0___closed__3; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go_spec__0(size_t, size_t, lean_object*); lean_object* l_Lean_Name_reprPrec(lean_object*, lean_object*); -static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__5; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates___closed__2; -LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getStructureParentInfo(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_logUnassignedUsingErrorInfos(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_insertionSort_swapLoop___at___Array_insertionSort_traverse___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__39_spec__39___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__1_spec__1___redArg(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_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_LocalContext_foldlM___at___Lean_instantiateLCtxMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__7_spec__8_spec__8_spec__8(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_NameMap_contains___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_fieldNormalizeExpr(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__6; static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__15; static lean_object* l_Lean_Elab_Command_Structure_structureSyntaxToView___closed__1; LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__0___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_Structure_structureSyntaxToView___closed__11; -LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_logWarningAt___at___Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__3_spec__5_spec__5___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructFields___redArg___closed__2; @@ -64,33 +59,32 @@ static lean_object* l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDec lean_object* l_Lean_Elab_Term_withAutoBoundImplicit___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__16____x40_Lean_Elab_Structure___hyg_4_; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResultingUniversesForFields___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getProjectionFnInfo_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f___closed__5; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___lam__0___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_runStructElabM___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_lengthTR___redArg(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_findFieldInfo_x3f___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_dropLeadingDeclModifiersDocstring(lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__1; uint8_t l_Lean_Elab_isAbortExceptionId(lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__7___redArg(uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__7_spec__7___redArg___closed__6; -LEAN_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__23(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Core_instMonadCoreM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__0___redArg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefault_x3f_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__17_spec__17___redArg___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__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_EXPORT lean_object* l_Lean_Loop_forIn_loop___at___Lean_Loop_forIn_loop___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__0_spec__6_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__17___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitLet___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__11___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_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*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__12; +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_Lean_mkAppN(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__4___boxed(lean_object**); @@ -107,6 +101,8 @@ static lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___a static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___lam__1___closed__2; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___closed__9; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__11____x40_Lean_Elab_Structure___hyg_4_; +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__41(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitLet___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__11(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldl___at___Std_Format_joinSep___at___Prod_repr___at___Array_Array_repr___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__42_spec__42_spec__42_spec__42(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkDefinitionValInferringUnsafe___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtor_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -114,39 +110,37 @@ LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_Const_get_x21___at_____pri LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__0_spec__1___lam__0___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_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logWarning___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__11_spec__11_spec__11(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_transformWithCache_visit_visitLambda___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__8_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*, lean_object*); static lean_object* l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__3_spec__5___closed__2; -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__3; static lean_object* l_Lean_Elab_Command_Structure_structureSyntaxToView___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addDefaults(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__1_spec__1___redArg___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_EXPORT lean_object* l_Lean_Elab_pushInfoTree___at___Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__2_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addDefaults_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_EXPORT lean_object* l_Lean_Elab_Command_Structure_structureSyntaxToView(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static double l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__0; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x21___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Elab_Command_Structure_instDecidableEqStructFieldKind(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__4_spec__4___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCoercionToCopiedParent___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_getAutoParamFnForField_x3f(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__0; LEAN_EXPORT lean_object* l_Lean_setReducibleAttribute___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCoercionToCopiedParent_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_solveParentMVars_spec__4(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_private_to_user_name(lean_object*); -LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__14(lean_object*, size_t, size_t); static lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__16; +LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___Lean_PersistentHashMap_find_x3f___at___Lean_setStructureParents___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__3_spec__3___redArg(lean_object*, size_t, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__34; LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addDefaults_spec__2_spec__2___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__14___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__50_spec__50___redArg(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_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_toVisibility(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_StateT_instMonad___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -156,6 +150,7 @@ LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logWarning___a LEAN_EXPORT lean_object* l_Lean_LocalContext_foldlM___at___Lean_instantiateLCtxMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__7_spec__8(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_EXPORT lean_object* l_Lean_addDocStringCore_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField_spec__2(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_Command_initFn___closed__4____x40_Lean_Elab_Structure___hyg_106_; +static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___closed__0; extern lean_object* l_Lean_declRangeExt; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__12___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateLCtxMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -164,6 +159,7 @@ LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownC LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__1_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__4(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__5; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__26____x40_Lean_Elab_Structure___hyg_4_; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__13_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*); @@ -176,9 +172,9 @@ lean_object* l_Lean_Expr_eqv___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___Lean_setStructureParents___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__3___redArg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_initFn___closed__3____x40_Lean_Elab_Structure___hyg_106_; static lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__1; -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__7(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_filterMapM___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__9(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__5; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f___closed__4; lean_object* lean_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField_spec__1___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -187,15 +183,18 @@ static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structu static lean_object* l_Lean_Elab_Command_Structure_reprStructFieldKind___closed__9____x40_Lean_Elab_Structure___hyg_1076_; lean_object* l_Lean_Environment_header(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_hasFieldName___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20___redArg___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField___redArg___closed__10; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__18____x40_Lean_Elab_Structure___hyg_4_; -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__9___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__15_spec__15___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_le(size_t, size_t); static lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Command_Structure_structureSyntaxToView_spec__2___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_findParentFieldInfo_x3f___redArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getHeadInfo(lean_object*); +static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___closed__1; LEAN_EXPORT lean_object* l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isProp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___Lean_setStructureParents___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__3___redArg___boxed(lean_object*, lean_object*); @@ -205,6 +204,7 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2___redArg___closed__0; lean_object* l_Lean_indentD(lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__8; +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__7_spec__7___redArg___closed__2; static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__7_spec__7___redArg___closed__0; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__6____x40_Lean_Elab_Structure___hyg_4_; @@ -214,32 +214,34 @@ LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_Const_get_x21___at_____pri lean_object* l_Lean_LocalContext_findFromUserName_x3f(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1_spec__2_spec__2_spec__2_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__9___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Command_Structure_structureSyntaxToView_spec__2___closed__1; uint8_t l_Lean_Exception_isInterrupt(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__1_spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabFieldTypeValue___lam__3___closed__0; -static lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__1; +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__5; lean_object* l_Lean_Elab_Term_synthesizeSyntheticMVars(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__10; +LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__2___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___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__25____x40_Lean_Elab_Structure___hyg_4_; LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkDefaults___closed__2; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__17_spec__17(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__15_spec__15___redArg___closed__1; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_PersistentArray_mapMAux___at___Lean_PersistentArray_mapM___at_____private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___Lean_Elab_withSaveInfoContext___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__9_spec__11_spec__12_spec__12_spec__13(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22___closed__0; LEAN_EXPORT lean_object* l_Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__1___lam__0___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_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__4; -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__6; +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor_spec__0___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__4; +LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoTree___at___Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__13_spec__13___redArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__0_spec__0_spec__0_spec__0_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_EXPORT lean_object* l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__2; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_Format_fill(lean_object*); static lean_object* l_Lean_setStructureParents___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__6; @@ -250,7 +252,6 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Command_S LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabFieldTypeValue___lam__0___boxed(lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__13; lean_object* l_Lean_MessageData_joinSep(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_uint64_to_usize(uint64_t); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__14; LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -270,22 +271,22 @@ uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__13_spec__13___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_DTreeMap_Internal_Impl_Const_get_x21___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__37___redArg___closed__2; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1_spec__2_spec__2_spec__2(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__11_spec__11(uint8_t, size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Command_Structure_reprStructFieldDefault___closed__3____x40_Lean_Elab_Structure___hyg_1446_; LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__31___redArg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27___redArg___closed__1; lean_object* l_Lean_findDocString_x3f(lean_object*, lean_object*, uint8_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__13___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*); uint8_t l_Lean_Expr_isApp(lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResultingUniversesForFields_spec__1___redArg(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*); static lean_object* l_Lean_Elab_Command_Structure_checkValidFieldModifier___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitLambda___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__8___lam__0(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabFieldTypeValue___lam__3___closed__1; -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__17_spec__17___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___Array_Array_repr___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__42_spec__46(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0(uint8_t, uint8_t, lean_object*); lean_object* l_Lean_Elab_Term_elabTermEnsuringType(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_findConstVal_x3f(lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -293,9 +294,12 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_decEqStructFieldKind____x LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__7(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_DHashMap_Internal_AssocList_get_x21___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__3___redArg___closed__3; lean_object* l_Lean_Expr_sort___override(lean_object*); +static size_t l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__0; +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__0(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_LocalContext_foldlM___at___Lean_instantiateLCtxMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__7_spec__8_spec__8_spec__8_spec__8_spec__9___closed__1; lean_object* l_Array_qpartition___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__41___closed__0; lean_object* l_Lean_MessageData_ofList(lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldrM___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go_spec__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withoutExporting___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabFieldTypeValue_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -306,6 +310,7 @@ lean_object* lean_array_push(lean_object*, lean_object*); lean_object* l_Lean_Name_lt___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtorExpr___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*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_defaultCtorName___closed__1; +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_String_removeLeadingSpaces(lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__0(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_insertionSort_traverse___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__39(lean_object*, lean_object*, lean_object*, lean_object*); @@ -321,13 +326,14 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Struc LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__5(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefault_x3f___closed__0; static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2___redArg___closed__4; -static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___closed__1; static lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__11_spec__11___closed__3; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at_____private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1_spec__2_spec__2___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__10; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__1_spec__1___boxed(lean_object**); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_eraseReps___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__27_spec__27___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__7_spec__7___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___lam__0___closed__0; LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go_spec__0(lean_object*, lean_object*, size_t, size_t); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___closed__4; @@ -338,14 +344,14 @@ extern lean_object* l_Lean_unknownIdentifierMessageTag; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___lam__0___closed__4; static lean_object* l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3___lam__1___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___Lean_Elab_withSaveInfoContext___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__9_spec__11___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__7_spec__7(uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField___redArg___closed__4; LEAN_EXPORT lean_object* l_Lean_instantiateLevelMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResultingUniversesForFields_spec__0___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1_spec__2_spec__2_spec__2_spec__2___redArg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__2; LEAN_EXPORT lean_object* l_Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__4; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder___closed__7; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor___closed__6; static lean_object* l_Lean_Elab_Command_Structure_instReprStructFieldDefault___closed__0; @@ -353,7 +359,6 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at_____private_Lean_S LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__16(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_registerStructure_spec__0_spec__0___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*); uint8_t l_Lean_Name_isAnonymous(lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_instFunctorOfMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_rewriteManualLinksCore(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addProjections___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -361,27 +366,25 @@ lean_object* l_Lean_MessageData_hint_x27(lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_typelessBinder_x3f___closed__1; static lean_object* l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__0___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_ST_Prim_Ref_get___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__0_spec__1_spec__1_spec__1___redArg___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_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg(lean_object*, lean_object*); lean_object* l_Lean_Expr_mdata___override(lean_object*, lean_object*); lean_object* l___private_Lean_Log_0__Lean_MessageData_appendDescriptionWidgetIfNamed(lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefault_x3f_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_LocalContext_foldlM___at___Lean_instantiateLCtxMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__7_spec__8_spec__8_spec__8_spec__8_spec__9___closed__0; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__15_spec__15___redArg___lam__0(lean_object*, lean_object*); -static lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18___redArg___closed__0; static lean_object* l_Lean_Elab_Command_Structure_checkValidFieldModifier___closed__0; +LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getProjectionFnInfo_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_findParentFieldInfo_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addDefaults_spec__2___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtor___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_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_collectUsedFVars___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__2___closed__1; -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_LocalContext_foldlM___at___Lean_instantiateLCtxMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__7_spec__8_spec__8_spec__8_spec__8_spec__9___closed__2; -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__2; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addProjections_spec__6___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_replaceRef(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandParents_spec__0_spec__0(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -392,25 +395,27 @@ LEAN_EXPORT lean_object* l_Lean_mergeStructureResolutionOrders_selectParent___at LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___Array_contains___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__5_spec__5(lean_object*, lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Meta_transformWithCache_visit_visitLet___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__11_spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__25(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__0_spec__1_spec__3_spec__3___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtorExpr_spec__0(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_initFn___closed__1____x40_Lean_Elab_Structure___hyg_106_; LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField_spec__4_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__3; +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_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*, lean_object*); static lean_object* l_panic___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__6___closed__2; static lean_object* l_Lean_Elab_Command_Structure_reprStructFieldKind___closed__6____x40_Lean_Elab_Structure___hyg_1076_; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_proj___override(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getPos_x3f(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__34___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_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__19___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2___redArg___closed__1; static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__9; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addProjections_spec__6___boxed(lean_object**); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__7____x40_Lean_Elab_Structure___hyg_4_; -static lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___closed__0; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_registerFailedToInferFieldType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getTailPos_x3f(lean_object*, uint8_t); @@ -421,10 +426,10 @@ LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_ LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__1_spec__1_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withoutExporting___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabFieldTypeValue_spec__0(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__7_spec__7___redArg(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_expr_has_loose_bvar(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1_spec__2_spec__2_spec__2_spec__4(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__1_spec__1___redArg___lam__0(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResultingUniversesForFields_spec__1_spec__1___closed__1; LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__13_spec__13___redArg(lean_object*, lean_object*, lean_object*, size_t, size_t); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates___closed__0; @@ -436,8 +441,10 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_St LEAN_EXPORT lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__3_spec__3_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoTree___at___Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__13_spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at___Std_DTreeMap_Internal_Impl_Const_get_x21___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__37_spec__37___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_LocalContext_foldlM___at___Lean_instantiateLCtxMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__7_spec__8_spec__8_spec__8___closed__0; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addProjections_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__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* l_Lean_Expr_fvarId_x21(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_registerFailedToInferDefaultValue___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_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__15_spec__15___redArg___closed__0; @@ -451,9 +458,8 @@ LEAN_EXPORT lean_object* l_Lean_computeStructureResolutionOrder___at___Lean_merg LEAN_EXPORT lean_object* l_Array_filterMapM___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___Lean_PersistentHashMap_findAux___at___Lean_PersistentHashMap_find_x3f___at___Lean_setStructureParents___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__3_spec__3_spec__3___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4_spec__4___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructFields_goParents___redArg___boxed(lean_object**); -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__17___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__13___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_declareTacticSyntax(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__22____x40_Lean_Elab_Structure___hyg_4_; LEAN_EXPORT lean_object* l_Lean_setStructureParents___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -461,12 +467,13 @@ LEAN_EXPORT lean_object* l_Lean_logError___at_____private_Lean_Elab_Structure_0_ LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__0_spec__1_spec__1___boxed(lean_object**); static lean_object* l_Lean_Elab_Command_Structure_instInhabitedStructFieldInfo___closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__0___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__4; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor___closed__8; lean_object* l_Lean_Syntax_getRangeWithTrailing_x3f(lean_object*, uint8_t); -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidInductiveModifier___at___Lean_Elab_Command_Structure_structureSyntaxToView_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_setReducibilityStatus___at___Lean_setReducibleAttribute___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCoercionToCopiedParent_spec__3_spec__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__3; +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__2; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__9_spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalContextImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_MessageData_hasSyntheticSorry(lean_object*); @@ -479,6 +486,7 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___Lean_Persistent static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__27; LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__15___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Command_Structure_elabStructureCommand_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_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addDefaults_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResultingUniversesForFields_spec__1_spec__1___closed__4; @@ -490,6 +498,7 @@ LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at___Lean_Loop_forIn_loop___at static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0___closed__0; LEAN_EXPORT lean_object* l_Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Linter_getLinterValue(lean_object*, lean_object*); +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_instInhabitedStructView; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabFieldTypeValue___lam__4___boxed(lean_object**); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields___closed__2; @@ -498,8 +507,10 @@ static lean_object* l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___Lean_Ela static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_typelessBinder_x3f___closed__5; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructFields_goParents___redArg___lam__0___boxed(lean_object**); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__21_spec__21(lean_object*, lean_object*, size_t, size_t, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__1; lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__0___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__11; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResultingUniversesForFields_spec__1_spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_ofRange(lean_object*, uint8_t); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___closed__2; @@ -509,12 +520,15 @@ LEAN_EXPORT lean_object* l_List_mapTR_loop___at_____private_Lean_Elab_Structure_ lean_object* l_Lean_Name_mkStr5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkDefaults___closed__1; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__7___redArg___boxed(lean_object**); +static lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30___closed__1; static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__1_spec__1___redArg___closed__3; lean_object* l_Lean_Expr_cleanupAnnotations(lean_object*); static lean_object* l_Lean_Elab_Command_Structure_structureSyntaxToView___closed__13; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields___closed__6; static lean_object* l_Lean_Elab_Command_Structure_structureSyntaxToView___closed__8; -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_replaceFieldInfo___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_panic___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__6___closed__5; lean_object* l_Lean_stringToMessageData(lean_object*); @@ -550,19 +564,19 @@ static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structu lean_object* l_Lean_CollectLevelMVars_main(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkHasTypeButIsExpectedMsg___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KVMap_insertCore(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__0; static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addDefaults_spec__2_spec__2___lam__0___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtor___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_solveParentMVars_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_MessageData_hint(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_solveParentMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitLambda___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_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*, lean_object*); +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__3; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefault_x3f___closed__1; lean_object* l_Lean_Exception_toMessageData(lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_dropLeadingDeclModifiersDocstring___closed__0; +LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addProjections_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___Prod_repr___at___Array_Array_repr___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__42_spec__42_spec__42(lean_object*, lean_object*); @@ -575,8 +589,8 @@ static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structu LEAN_EXPORT lean_object* l_List_mapTR_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__16(lean_object*, lean_object*); static lean_object* l_Lean_setStructureParents___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__1; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addDefaults_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1_spec__2___redArg___lam__0(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___closed__0; static lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__10___closed__1; LEAN_EXPORT lean_object* l_Lean_instantiateLevelMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResultingUniversesForFields_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -584,6 +598,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_ lean_object* l_Array_mkArray0(lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__20; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___lam__1___closed__0; +static lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__2; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addProjections_spec__6___redArg(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*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___closed__4; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__11(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -592,19 +607,19 @@ lean_object* l_Lean_reprExpr____x40_Lean_Expr___hyg_2946_(lean_object*, lean_obj LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_solveParentMVars_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___Std_DHashMap_Internal_Raw_u2080_expand_go___at___Std_DHashMap_Internal_Raw_u2080_expand___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__1_spec__1_spec__1(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__26; +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__11(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_logUnassignedLevelMVarsUsingErrorInfos(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_dropLeadingDeclModifiersDocstring___closed__3; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__1_spec__1_spec__1___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_Structure_instInhabitedStructView___closed__3; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go___redArg___closed__11; LEAN_EXPORT lean_object* l___private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__9___redArg(size_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addProtected(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Elab_Command_Structure_StructFieldKind_isSubobject(lean_object*); lean_object* l_ReaderT_instMonad___redArg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__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_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructFields_goParents___boxed(lean_object**); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInheritedDefault___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -614,7 +629,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_St lean_object* l_Lean_Kernel_enableDiag(lean_object*, uint8_t); static lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__0___closed__3; static lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandParents_spec__0_spec__0___closed__3; -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___lam__0___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*); static lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__12; lean_object* l_Lean_mkDefaultFnOfProjFn(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -623,23 +637,21 @@ LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at_____private_Lean_Ela LEAN_EXPORT lean_object* l_Lean_withoutExporting___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabFieldTypeValue_spec__1___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructFields___redArg___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_StructParentView_mkToParentNames___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__9(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_DTreeMap_Internal_Impl_Const_get_x21___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__37___redArg___closed__1; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_instInhabited__lean___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getStructureFields(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__1___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___lam__0___closed__5; static lean_object* l_Array_foldrMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtorExpr_spec__2___lam__0___closed__0; -static lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__39___closed__0; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__1_spec__1___redArg___lam__0___boxed(lean_object*, lean_object*); uint8_t l_Lean_Kernel_isDiagnosticsEnabled(lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__16___redArg(lean_object*); +static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitLambda___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__8___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__0(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getDefaultFnForField_x3f(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField_spec__4___boxed(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_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2_spec__3___closed__0; @@ -650,22 +662,22 @@ lean_object* l_Lean_Elab_Term_elabTermEnsuringType___boxed(lean_object*, lean_ob static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField___redArg___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructFields_goParents___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasMVar(lean_object*); -static lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__1; static lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_LocalContext_foldlM___at___Lean_instantiateLCtxMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__7_spec__8_spec__8_spec__8_spec__8_spec__9___closed__3; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_is_reserved_name(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__10; -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__17___redArg___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__2; static lean_object* l_Lean_Elab_Command_checkValidInductiveModifier___at___Lean_Elab_Command_Structure_structureSyntaxToView_spec__0___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__8___redArg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__23_spec__23(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField_spec__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28___closed__1; +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__6_spec__6(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Meta_transformWithCache_visit_visitLet___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__11_spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_Array_repr___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__42___closed__0; lean_object* l_Lean_InternalExceptionId_getName(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___lam__1___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___lam__1(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___closed__1; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___lam__1___closed__6; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInheritedDefault___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -674,7 +686,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_St size_t lean_ptr_addr(lean_object*); lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldrMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtorExpr_spec__2___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructFields_goFields(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefault_x3f_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -689,11 +700,13 @@ LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitForall___at__ LEAN_EXPORT uint8_t l_Array_contains___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__5(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_140_(lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs___lam__2___closed__1; +LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__32_spec__32(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__15_spec__15___redArg___lam__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_StructFieldKind_isSubobject___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField___redArg___closed__3; +LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCoercionToCopiedParent_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Option_set___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__0___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalContext_mkForall(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t); LEAN_EXPORT lean_object* l___private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__9___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -701,7 +714,6 @@ static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structu LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__10; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__7; -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder___closed__4; LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__13_spec__13___redArg___closed__0; @@ -720,40 +732,42 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsa LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkToParentName(lean_object*); lean_object* lean_expr_abstract(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_StructFieldKind_isFromSubobject___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_checkValidInductiveModifier___at___Lean_Elab_Command_Structure_structureSyntaxToView_spec__0___closed__0; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields___closed__3; static lean_object* l_Lean_Elab_Command_Structure_reprStructFieldKind___closed__1____x40_Lean_Elab_Structure___hyg_1076_; lean_object* l_Lean_Meta_etaStructReduce(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_eraseReps___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__27(lean_object*); static lean_object* l_Lean_Elab_Command_Structure_reprStructFieldKind___closed__11____x40_Lean_Elab_Structure___hyg_1076_; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1_spec__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_LocalContext_foldlM___at___Lean_instantiateLCtxMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__7_spec__8_spec__8_spec__8_spec__8_spec__9___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___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs___lam__2___closed__2; LEAN_EXPORT lean_object* l_Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__1_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__3_spec__3_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__0___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_checked_assign(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_insertionSort_swapLoop___at___Array_insertionSort_traverse___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__39_spec__39___redArg___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__11; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__15_spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__41___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_filterMapM___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_registerStructure_spec__0___closed__0; -LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__30_spec__30(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1_spec__2_spec__2_spec__2_spec__4___redArg(size_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__0_spec__1_spec__1_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__24(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Prod_repr___at___Array_Array_repr___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__42_spec__42___redArg___closed__0; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor_spec__3(lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_typelessBinder_x3f___closed__8; static lean_object* l_Prod_repr___at___Array_Array_repr___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__42_spec__42___redArg___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at_____private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___Lean_Elab_withSaveInfoContext___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__9_spec__11_spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_local_ctx_find(lean_object*, lean_object*); +static lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__1; static lean_object* l_Lean_Elab_Command_Structure_reprStructFieldKind___closed__10____x40_Lean_Elab_Structure___hyg_1076_; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__35(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefault_x3f(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_replace_expr(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10___lam__0___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*); @@ -764,22 +778,24 @@ lean_object* lean_st_ref_take(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__13(uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__1_spec__3___redArg___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_solveParentMVars_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__15_spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__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___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor___lam__0___closed__0; static lean_object* l_Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0___closed__3; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_registerFailedToInferDefaultValue___redArg___closed__2; -static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___closed__0; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__33; +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__0___closed__0; static lean_object* l_Std_DTreeMap_Internal_Impl_Const_get_x21___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__37___redArg___closed__3; -static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25___redArg___closed__1; +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtorExpr_spec__2___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addDefaults_spec__4(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_expandMacroImpl_x3f(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder___closed__1; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___closed__10; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__19(lean_object*, lean_object*, lean_object*, lean_object*); @@ -793,24 +809,23 @@ lean_object* l_Lean_Elab_getDeclarationSelectionRef(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_expr_eqv(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_reprStructFieldKind____x40_Lean_Elab_Structure___hyg_1076_(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__9(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__21____x40_Lean_Elab_Structure___hyg_4_; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructFields___redArg___closed__4; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_typelessBinder_x3f___closed__0; lean_object* l_Lean_ResolveName_resolveNamespace(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkPrivateName(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_fieldFromMsg___closed__3; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_typelessBinder_x3f(lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Meta_transformWithCache_visit_visitLet___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__11_spec__11___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withoutExporting___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabFieldTypeValue_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__39___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addDefaults_spec__2_spec__2___lam__1___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_findFieldInfo_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_instInhabited__lean___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__7___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_Array_repr___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__42(lean_object*); static lean_object* l_Lean_Elab_Command_Structure_structureSyntaxToView___closed__4; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__13____x40_Lean_Elab_Structure___hyg_4_; @@ -839,6 +854,7 @@ lean_object* l_Lean_MessageData_ofSyntax(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandParents_spec__0___redArg(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInheritedDefault___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePrivateFieldHint___lam__0___closed__0; +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); lean_object* l_Lean_MVarId_getType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_empty(lean_object*); @@ -863,6 +879,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_St static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields___closed__7; lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___closed__6; +LEAN_EXPORT uint8_t l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0(lean_object*); lean_object* l_Lean_LocalContext_setBinderInfo(lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__15___redArg___boxed(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___closed__12; @@ -874,12 +891,14 @@ LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_ LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___boxed(lean_object**); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go___redArg___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__14; LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__0(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField_spec__4_spec__5___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__13; static lean_object* l_Lean_Elab_Command_Structure_instInhabitedStructFieldInfo___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_typelessBinder_x3f___closed__2; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand_go___at___Std_DHashMap_Internal_Raw_u2080_expand___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__1_spec__1___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__0_spec__1_spec__3_spec__3___redArg___boxed(lean_object**); @@ -897,7 +916,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_St LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__0_spec__1_spec__1___redArg___boxed(lean_object**); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_instInhabitedState; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__12; -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__36; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtor(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -906,10 +925,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitLet___at___Le LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField_spec__0___redArg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); lean_object* l_Lean_MessageData_ofFormat(lean_object*); -static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___lam__0___closed__0; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__15___redArg___boxed(lean_object**); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17(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_getBetterRef(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResultingUniversesForFields_spec__1_spec__1___closed__0; @@ -917,8 +933,8 @@ static lean_object* l_Std_DHashMap_Internal_AssocList_get_x21___at_____private_L static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_dropLeadingDeclModifiersDocstring___closed__1; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__10____x40_Lean_Elab_Structure___hyg_4_; lean_object* l_Lean_MessageData_andList(lean_object*); -static double l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2_spec__2___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withoutExporting___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabFieldTypeValue_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_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -935,15 +951,12 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_St LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__17(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__25; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__13_spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__0; lean_object* l_Lean_Expr_forallE___override(lean_object*, lean_object*, lean_object*, uint8_t); -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor___lam__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_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_registerStructure_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand_go___at___Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__16_spec__16___redArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_instMonadTermElabM___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__37(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParent___redArg(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*); double lean_float_of_nat(lean_object*); @@ -955,7 +968,6 @@ LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at__ LEAN_EXPORT lean_object* l_Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_findFieldInfo_x3f___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtorExpr_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__9___closed__0; LEAN_EXPORT lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__3_spec__3_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_zetaDeltaFVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -968,17 +980,18 @@ static lean_object* l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_thro lean_object* l_Lean_Meta_mkAppM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefault_x3f___closed__5; +LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_Structure_instInhabitedStructView___closed__2; LEAN_EXPORT lean_object* l_Lean_withoutExporting___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabFieldTypeValue_spec__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__19; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_typelessBinder_x3f___closed__4; -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__7_spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2_spec__3(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___Array_contains___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__5_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(uint8_t, uint8_t); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkDefaults___closed__3; static lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__11; static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__7_spec__7___redArg___closed__4; +LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor_spec__2___redArg(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_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__3_spec__5___closed__1; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__1_spec__3_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -996,15 +1009,13 @@ LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at__ LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getOptional_x3f(lean_object*); -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__5(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_findParentFieldInfo_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkDefaults(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__3; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__23___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabStructureCommand___regBuiltin_Lean_Elab_Command_Structure_elabStructureCommand__1(lean_object*); +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_to_list(lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___closed__10; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__7(uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefault_x3f_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1012,13 +1023,13 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_St lean_object* l_Lean_Elab_Term_synthesizeSyntheticMVarsNoPostponing(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_initFn___closed__2____x40_Lean_Elab_Structure___hyg_106_; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_registerFailedToInferDefaultValue___redArg___closed__1; -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__2; LEAN_EXPORT lean_object* l_Lean_withoutExporting___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabFieldTypeValue_spec__0___redArg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_MessageData_hasTag(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField___redArg___closed__8; -static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__0___closed__0; +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__9_spec__9___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4(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___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkDefaults___closed__5; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField___redArg___closed__1; @@ -1028,47 +1039,44 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___Lean_Persiste lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ST_Prim_mkRef___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at___Lean_Elab_Command_Structure_structureSyntaxToView_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__0_spec__1_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_ofSubarray___redArg(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__0(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__1_spec__1_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_StateT_instMonad___redArg___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates(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_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__2___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Meta_withIncRecDepth___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__13_spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__0___closed__1; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__52___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__33___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_mkId(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_instInhabited__lean___closed__0; -LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructFields_goParents(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_MessageData_nil; static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__50_spec__50___redArg___closed__3; LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_solveParentMVars_spec__0_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__5___boxed(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___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePrivateFieldHint___closed__4; lean_object* l_Lean_Elab_expandDeclSig(lean_object*); LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__15(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs___lam__2___closed__3; LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__34(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_EXPORT lean_object* l_Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__0(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25___redArg___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabFieldTypeValue___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_privateToUserName(lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResultingUniversesForFields_spec__1_spec__1___closed__3; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___closed__3; lean_object* l_Lean_Elab_Term_instMonadTermElabM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePrivateFieldHint___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_insertionSort_swapLoop___at___Array_insertionSort_traverse___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__39_spec__39(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections___closed__0; LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_solveParentMVars_spec__0_spec__0(lean_object*, lean_object*, lean_object*); @@ -1081,7 +1089,6 @@ LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___Array_anyMUnsafe_any___at_____ LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__15___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__3; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__12___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_solveParentMVars_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResultingUniversesForFields(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1092,7 +1099,6 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_mergeStructureResolu LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go___redArg___lam__0___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCoercionToCopiedParent_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_DHashMap_Internal_AssocList_get_x21___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__3___redArg___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__1_spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__3_spec__3_spec__3___redArg(lean_object*, lean_object*, lean_object*); @@ -1100,11 +1106,14 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_St LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__0_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_filterMapM___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_registerStructure_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResultingUniversesForFields_spec__1___redArg___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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__3(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefault_x3f_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*); uint64_t l_Lean_Expr_hash(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_BinderInfo_isInstImplicit(uint8_t); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_defaultCtorName___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_Structure_instInhabitedStructView___closed__1; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__9____x40_Lean_Elab_Structure___hyg_4_; LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1115,9 +1124,7 @@ static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVi lean_object* l_Lean_MessageData_orList(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__3(lean_object*, lean_object*, uint8_t, uint8_t, 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___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go___redArg___closed__10; -static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___closed__1; static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__11; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__33(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addProjections(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___lam__1___closed__4; lean_object* l_Lean_enableRealizationsForConst(lean_object*, lean_object*, lean_object*, lean_object*); @@ -1125,30 +1132,28 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Struc LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getSepArgs(lean_object*); uint8_t l_Lean_isProtected(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at___Lean_Loop_forIn_loop___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__6_spec__6(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__1___redArg(lean_object*); +static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27___redArg___closed__0; lean_object* l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___Lean_NameMap_find_x3f_spec__0___redArg(lean_object*, lean_object*); lean_object* l_Lean_PersistentArray_set___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_setReducibilityStatus___at___Lean_setReducibleAttribute___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCoercionToCopiedParent_spec__3_spec__3___redArg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___lam__0(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo___closed__3; -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__2(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10___closed__1; LEAN_EXPORT lean_object* l_Lean_LocalContext_foldlM___at___Lean_instantiateLCtxMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__7_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*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields___closed__1; -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__22___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__52___boxed(lean_object**); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__5___redArg___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLetFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabFieldTypeValue___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__9___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtorExpr_spec__0___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_Const_get_x21___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__37___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_registerFailedToInferFieldType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResultingUniversesForFields_spec__1_spec__1___closed__5; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); @@ -1165,12 +1170,12 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab LEAN_EXPORT uint8_t l_Lean_Elab_Command_Structure_StructFieldKind_isFromSubobject(lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__9; static lean_object* l_Lean_Elab_Command_initFn___closed__4____x40_Lean_Elab_Structure___hyg_140_; +static lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___closed__0; +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1_spec__2_spec__2_spec__2_spec__2(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_instInhabited__lean(lean_object*); extern lean_object* l_Lean_warningAsError; -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_pp_macroStack; LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at___Lean_Loop_forIn_loop___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__0_spec__6_spec__6___lam__0(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_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__20(lean_object*, lean_object*, size_t, size_t, lean_object*); @@ -1188,43 +1193,42 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_reprStructFieldDefault___ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandParents_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField_spec__0(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_docStringExt; -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__1; +static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__5___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addDefaults___lam__0___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__0_spec__0_spec__0_spec__0___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*); static lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandParents_spec__0_spec__0___closed__2; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__5___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at___Lean_Elab_Command_Structure_structureSyntaxToView_spec__1___closed__0; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__9(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__7; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___closed__9; static lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__11_spec__11___closed__1; static lean_object* l_Lean_Elab_Command_Structure_checkValidFieldModifier___closed__6; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder___closed__2; lean_object* l_Array_insertIdx_loop___redArg(lean_object*, lean_object*, lean_object*); -static size_t l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__0; static lean_object* l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___Lean_Elab_CommandContextInfo_save___at___Lean_Elab_withSaveInfoContext___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__9_spec__9_spec__9___redArg___closed__0; -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__13(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__20____x40_Lean_Elab_Structure___hyg_4_; uint8_t l_Lean_Syntax_matchesNull(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_collectUsedFVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__2___closed__0; LEAN_EXPORT lean_object* l_Lean_setReducibilityStatus___at___Lean_setReducibleAttribute___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCoercionToCopiedParent_spec__3_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_PersistentArray_mapMAux___at___Lean_PersistentArray_mapM___at_____private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___Lean_Elab_withSaveInfoContext___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__9_spec__11_spec__12_spec__12_spec__12(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_extract___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__23_spec__23___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__39(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_instantiateStructDefaultValueFn_x3f_go_x3f___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__8___closed__1; LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__10(lean_object*, lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_collectUsedFVars_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_StateT_bind(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__11; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__35___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_diagnostics; LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_registerFailedToInferFieldType_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addProjections_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__3; LEAN_EXPORT lean_object* l_List_foldl___at___Std_Format_joinSep___at___Array_Array_repr___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__42_spec__46_spec__46(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_StructFieldKind_isParent___boxed(lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__15_spec__15(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1236,16 +1240,14 @@ LEAN_EXPORT lean_object* l_List_mapTR_loop___at_____private_Lean_Elab_Structure_ LEAN_EXPORT lean_object* l_Nat_cast___at___Prod_repr___at___Array_Array_repr___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__42_spec__42_spec__44(lean_object*); static lean_object* l_Lean_Elab_Command_Structure_reprStructFieldDefault___closed__0____x40_Lean_Elab_Structure___hyg_1446_; lean_object* l___private_Lean_ReducibilityAttrs_0__Lean_setReducibilityStatusCore(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__39; static lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__4; LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__6_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_instantiateStructDefaultValueFn_x3f_go_x3f___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_registerFailedToInferDefaultValue(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_instInhabited__lean___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go___redArg(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_EXPORT uint8_t l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0(lean_object*); +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__7; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_TSyntax_getDocString(lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__35; @@ -1256,7 +1258,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_save___at___Lean_Elab_wi static lean_object* l_Lean_Elab_Command_Structure_instInhabitedStructParentInfo___closed__2; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__13(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addDocStringCore___at___Lean_addDocStringCore_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField_spec__2_spec__2(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_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__1___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_hasFieldName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_initFn___closed__0____x40_Lean_Elab_Structure___hyg_140_; LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___Lean_Elab_CommandContextInfo_save___at___Lean_Elab_withSaveInfoContext___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__9_spec__9_spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1268,11 +1269,11 @@ lean_object* l_Lean_NameSet_insert(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__19____x40_Lean_Elab_Structure___hyg_4_; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePrivateFieldHint___closed__3; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___Lean_PersistentHashMap_findAux___at___Lean_PersistentHashMap_find_x3f___at___Lean_setStructureParents___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__3_spec__3_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9___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_Command_Structure_elabStructureCommand___lam__7___boxed__const__1; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___closed__6; -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtor___lam__0___closed__1; -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__6___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go_spec__1(lean_object*, lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__1_spec__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go___redArg___closed__12; @@ -1280,10 +1281,13 @@ uint8_t l_Lean_Environment_hasUnsafe(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor___closed__5; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__24; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__17_spec__17___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_LocalContext_foldlM___at___Lean_instantiateLCtxMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__7_spec__8_spec__8_spec__8_spec__8_spec__8(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResultingUniversesForFields_spec__1_spec__1___closed__7; +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4_spec__4___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__13_spec__13___redArg___closed__1; lean_object* l_Lean_mkAutoParamFnOfProjFn(lean_object*); +static lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__3; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___closed__14; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___Std_DHashMap_Internal_Raw_u2080_expand_go___at___Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__16_spec__16_spec__16(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__14(lean_object*, lean_object*, size_t, size_t); @@ -1292,7 +1296,6 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtorExpr_spec__4(lean_object*, size_t, size_t, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go___redArg___closed__3; LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_instInhabitedStructParentInfo; LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___Lean_Elab_withSaveInfoContext___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__9_spec__11___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoTree___at___Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__2_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -1306,6 +1309,7 @@ static lean_object* l_Lean_Elab_Command_checkValidInductiveModifier___at___Lean_ lean_object* lean_usize_to_nat(size_t); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__1_spec__1_spec__1___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___lam__0(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__39_spec__39(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_registerStructure___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__52(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*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_Structure_instInhabitedStructParentInfo___closed__1; @@ -1317,6 +1321,7 @@ lean_object* l_Lean_LocalContext_mkLocalDecl(lean_object*, lean_object*, lean_ob LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_findFieldInfoByFVarId_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofConstName(lean_object*, uint8_t); lean_object* lean_register_option(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__2; static lean_object* l_Lean_setStructureParents___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__0; lean_object* l_Lean_Meta_mkProjections(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__6; @@ -1325,9 +1330,9 @@ uint8_t l_Lean_Environment_contains(lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkDefaults_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___Lean_Elab_withSaveInfoContext___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__9_spec__11___redArg___lam__0___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_Level_geq(lean_object*, lean_object*); -static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___lam__0(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__5___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___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__17; lean_object* l_Lean_MessageData_ofExpr(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__12(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1340,24 +1345,24 @@ static lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__3_ LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_106_(lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__5___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandParents_spec__0(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__4; LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___Array_contains___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__25_spec__25(lean_object*, lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Option_set___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__0(lean_object*, lean_object*, uint8_t); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__3; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__1_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__17_spec__17___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_structureResolutionExt; LEAN_EXPORT lean_object* l_Lean_addTrace___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefault_x3f_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResultingUniversesForFields_spec__1_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*); +static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__2; lean_object* l_Lean_Name_toStringWithToken___at___Lean_Name_toString_spec__0(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_addDocStringCore_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField_spec__2___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_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__6; LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__6___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__7_spec__7___redArg___closed__5; static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__7_spec__7___redArg___closed__1; @@ -1366,16 +1371,16 @@ static lean_object* l_Lean_Elab_Command_Structure_instReprStructFieldKind___clos static lean_object* l_Lean_Elab_Command_Structure_reprStructFieldKind___closed__2____x40_Lean_Elab_Structure___hyg_1076_; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__7___lam__0(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_setStructureParents___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__2; -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___Lean_PersistentHashMap_findAux___at___Lean_PersistentHashMap_find_x3f___at___Lean_setStructureParents___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__3_spec__3_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_106_; LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCoercionToCopiedParent_spec__0_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__4; +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_logWarningAt___at___Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__3_spec__5_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor___closed__9; lean_object* l_Lean_Expr_getAppNumArgs(lean_object*); -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__3; lean_object* l_Lean_Meta_getStructureName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1_spec__2_spec__2_spec__2_spec__2_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logWarning___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__11_spec__11(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1385,7 +1390,6 @@ LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_mergeStructureResolution LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go(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*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__9___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_Structure_reprStructFieldDefault___closed__5____x40_Lean_Elab_Structure___hyg_1446_; lean_object* l_Lean_Syntax_node4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_Structure_reprStructFieldDefault___closed__1____x40_Lean_Elab_Structure___hyg_1446_; @@ -1396,15 +1400,17 @@ lean_object* l_Lean_SourceInfo_getPos_x3f(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go_spec__0___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__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_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__21_spec__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__8___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField___redArg___closed__12; LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__50_spec__50(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_collectUsedFVars_spec__1___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___Lean_PersistentHashMap_find_x3f___at___Lean_setStructureParents___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__3_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_findFieldInfoByFVarId_x3f___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Option_register___at___Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_106__spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___closed__5; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addDefaults_spec__2_spec__2___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); @@ -1414,10 +1420,12 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_St LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___Std_DHashMap_Internal_AssocList_foldlM___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addProjections_spec__0_spec__0___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___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParent___redArg___closed__1; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1_spec__2_spec__2_spec__2___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; lean_object* l_Lean_Syntax_getTrailingTailPos_x3f(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___Lean_Elab_Command_Structure_structureSyntaxToView_spec__3(lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l_Lean_addDocStringCore___at___Lean_addDocStringCore_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField_spec__2_spec__2___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_solveParentMVars_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_addTermInfo_x27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1425,47 +1433,44 @@ static lean_object* l_Lean_Elab_Command_Structure_reprStructFieldKind___closed__ LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabFieldTypeValue___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_replaceFieldInfo___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefault_x3f___closed__2; -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_toVisibility___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___lam__1___closed__3; LEAN_EXPORT lean_object* l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__3_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__6___redArg___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isToken(lean_object*, lean_object*); extern lean_object* l_Lean_warn_sorry; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInheritedDefault(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__19___redArg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Structure_0__Lean_getStructureResolutionOrder_x3f(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___lam__0___boxed(lean_object**); static lean_object* l_Lean_Elab_Command_Structure_instInhabitedStructView___closed__0; -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addDefaults_spec__2_spec__2___lam__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__1_spec__1_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResultingUniversesForFields_spec__1_spec__1___closed__2; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__4____x40_Lean_Elab_Structure___hyg_4_; +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_foldlM___at___Lean_LocalContext_foldlM___at___Lean_instantiateLCtxMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__7_spec__8_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*); -static lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__2; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__22(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__3____x40_Lean_Elab_Structure___hyg_4_; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addDefaults_spec__2_spec__2___boxed(lean_object**); -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); -static size_t l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__1; +LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_LocalContext_foldlM___at___Lean_instantiateLCtxMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__7_spec__8_spec__8_spec__8_spec__8(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_getFieldInfo_x3f(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addProjections_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitForall___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__10___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_addAutoBoundImplicits(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_foldlM___at___Lean_LocalContext_foldlM___at___Lean_instantiateLCtxMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__7_spec__8_spec__8(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_Elab_Command_Structure_structureSyntaxToView___closed__5; static lean_object* l_Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0___closed__1; LEAN_EXPORT lean_object* l_Lean_getProjectionFnInfo_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Linter_logLintIf___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__11___redArg(size_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_setStructureParents___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__5; static lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at___Lean_Elab_Command_Structure_structureSyntaxToView_spec__1___closed__2; @@ -1481,21 +1486,24 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_mergeStructureResolu static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__2; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__37; LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___boxed(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_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__1; +static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___closed__0; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates___closed__4; +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_appFnCleanup___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_logError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addDefaults_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__23; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__7_spec__7___redArg(uint8_t, uint8_t, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__29(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addProjections_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Meta_withIncRecDepth___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__13_spec__13___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__22___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__22___redArg___boxed(lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__15_spec__15___redArg___closed__2; +LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__16(lean_object*, size_t, size_t); lean_object* l_Lean_Meta_instMonadMetaM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__0; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_replaceFieldInfo___redArg___closed__2; @@ -1511,6 +1519,7 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at_ lean_object* l_Lean_CollectMVars_visit(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCoercionToCopiedParent_spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x21___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__3___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField_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___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go___redArg___closed__9; LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1527,32 +1536,28 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at_____private_Lean_Elab_Structu LEAN_EXPORT lean_object* l_Lean_Option_get___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__1___boxed(lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandParents_spec__0_spec__0___closed__0; LEAN_EXPORT lean_object* l_Lean_logWarning___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__1___closed__0; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandParents_spec__0_spec__0___lam__0___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_PersistentHashMap_mkCollisionNode___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_eraseReps___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__27___boxed(lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtorExpr_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logWarning___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__11_spec__11_spec__11___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__0_spec__1_spec__3_spec__3___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withoutExporting___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabFieldTypeValue_spec__1___redArg___lam__0___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*); static lean_object* l_Lean_Elab_Command_Structure_structureSyntaxToView___closed__14; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__19___redArg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___closed__0; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields(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_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__0; static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__1_spec__1___redArg___closed__2; LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField_spec__4_spec__5___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_findFieldInfoByFVarId_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__11_spec__11___redArg(lean_object*, uint8_t, lean_object*, lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__1_spec__3_spec__3___boxed(lean_object**); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__11(uint8_t, size_t, size_t, lean_object*); -static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__0; lean_object* l_Std_DTreeMap_Internal_Impl_insert___at___Lean_FVarIdSet_insert_spec__1___redArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_mainModule(lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__13_spec__13(lean_object*, uint8_t, lean_object*, lean_object*, size_t, size_t); @@ -1570,11 +1575,8 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_____private_Lean_Elab_St LEAN_EXPORT lean_object* l_Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__3_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofLevel(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__8___boxed(lean_object**); -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__6___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_panic___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__6___closed__0; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Prod_repr___at___Array_Array_repr___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__42_spec__42___redArg___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_registerFailedToInferDefaultValue___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__17___boxed(lean_object**); @@ -1583,10 +1585,10 @@ static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structu static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabStructureCommand___regBuiltin_Lean_Elab_Command_Structure_elabStructureCommand__1___closed__4; static lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__11_spec__11___closed__2; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__0___redArg___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__3; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtorExpr_spec__1(size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitPost___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__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*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_setSourceInstImplicit_spec__0(lean_object*); lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefault_x3f___closed__3; @@ -1603,21 +1605,26 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at_____private_Lean_Elab_S static lean_object* l_Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10___closed__2; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___closed__8; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_typelessBinder_x3f___closed__7; -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_fieldFromMsg(lean_object*); lean_object* l_Lean_indentExpr(lean_object*); lean_object* l_Lean_Elab_Term_registerCustomErrorIfMVar___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarsNoDelayed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField___redArg___closed__6; +LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__32(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__4; lean_object* l_Lean_PersistentHashMap_mkEmptyEntries(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_setReducibilityStatus___at___Lean_setReducibleAttribute___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCoercionToCopiedParent_spec__3_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__1_spec__3___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MapDeclarationExtension_insert___redArg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_Structure_instInhabitedStructFieldInfo___closed__4; +LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__39(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabStructureCommand___regBuiltin_Lean_Elab_Command_Structure_elabStructureCommand__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__1; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__1_spec__3_spec__3___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_solveParentMVars_spec__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*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1629,20 +1636,23 @@ static lean_object* l_Lean_Elab_Command_Structure_checkValidFieldModifier___clos LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addProjections_spec__8___redArg(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor___closed__1; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__50___redArg___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*); +static lean_object* l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__17___redArg___closed__0; +LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__11_spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_StateT_lift(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkForallFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static size_t l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__1; lean_object* lean_local_ctx_erase(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_Structure_checkValidFieldModifier___closed__1; lean_object* l_Lean_Elab_Term_expandDeclId(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField___redArg___closed__0; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___closed__7; LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__15____x40_Lean_Elab_Structure___hyg_4_; +LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___lam__0___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___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__15; static lean_object* l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__3_spec__5___closed__3; uint64_t l_Lean_Name_hash___override(lean_object*); @@ -1651,10 +1661,10 @@ static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structu LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__9(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructFields_goFields___redArg___lam__0___boxed(lean_object**); +static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__2___closed__0; LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__1_spec__3___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__5; static lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__2; static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__3; LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1665,12 +1675,13 @@ LEAN_EXPORT lean_object* l_List_mapTR_loop___at_____private_Lean_Elab_Structure_ LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at___Lean_Loop_forIn_loop___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__34_spec__34___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Repr_addAppParen(lean_object*, lean_object*); lean_object* l_Array_toSubarray___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27___redArg(lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__18; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addDefaults___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withoutExporting___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabFieldTypeValue_spec__0___redArg___lam__0(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); -static lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; LEAN_EXPORT uint8_t l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabFieldTypeValue___lam__0(lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1680,8 +1691,8 @@ LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at_____private_Lean_Ela LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__1_spec__1_spec__3(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_registerStructure(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_collectUsedFVars_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__9___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__1_spec__3_spec__3___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_reverse___redArg(lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___closed__16; @@ -1692,7 +1703,7 @@ lean_object* l_Lean_Syntax_getHeadInfo_x3f(lean_object*); LEAN_EXPORT lean_object* l_Lean_withoutExporting___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabFieldTypeValue_spec__0___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___lam__1___closed__7; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__5(lean_object*, lean_object*, lean_object*); -static lean_object* l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__5(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ResolveName_resolveGlobalName(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x21___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__3(lean_object*, lean_object*, lean_object*, lean_object*); @@ -1703,14 +1714,15 @@ LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknow static lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___Std_DHashMap_Internal_AssocList_foldlM___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addProjections_spec__0_spec__0___closed__1; lean_object* l_Lean_Expr_getAppFn(lean_object*); static lean_object* l_Prod_repr___at___Array_Array_repr___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__42_spec__42___redArg___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_isStructure(lean_object*, lean_object*); lean_object* l_Array_append___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__8(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__5___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_transformWithCache_visit_visitLambda___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__8_spec__8___redArg___lam__0(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_addInstance(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2_spec__2(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_Structure_instInhabitedStructParentInfo___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_initFn___closed__2____x40_Lean_Elab_Structure___hyg_140_; LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoTree___at___Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1720,10 +1732,12 @@ lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__4(lean_object*, le LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__1_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_instantiateStructDefaultValueFn_x3f_go_x3f___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__8___closed__0; +static lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__1; static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___lam__0___closed__0; uint8_t l_Std_DTreeMap_Internal_Impl_contains___at___Lean_NameMap_contains_spec__0___redArg(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__0; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructFields___redArg___closed__0; -LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__39___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getRange_x3f(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoTree___at___Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__13_spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__3___closed__0; @@ -1731,6 +1745,7 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fol LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkDefaults_spec__0(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_isPrivateName(lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields___closed__5; +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField_spec__4_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__5; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_transformWithCache_visit_visitLambda___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__8_spec__8(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1743,9 +1758,12 @@ lean_object* l_Nat_nextPowerOfTwo(lean_object*); static lean_object* l_Lean_Elab_Command_Structure_reprStructFieldKind___closed__13____x40_Lean_Elab_Structure___hyg_1076_; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__4_spec__4___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_instantiateLevelMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResultingUniversesForFields_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__0___closed__1; static lean_object* l_Lean_Elab_Command_Structure_reprStructFieldKind___closed__3____x40_Lean_Elab_Structure___hyg_1076_; +LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__32_spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitForall___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__10___lam__0(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_Structure_reprStructFieldKind___closed__8____x40_Lean_Elab_Structure___hyg_1076_; +LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_expandOptDeclSig(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_registerStructure_spec__0_spec__0(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__0; @@ -1753,15 +1771,12 @@ static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structu extern lean_object* l_Lean_Linter_linter_deprecated; lean_object* l_Lean_Name_getString_x21(lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__5; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_LocalDecl_binderInfo(lean_object*); -LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__37___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_insertionSort_traverse___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__39___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_addEntry___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__0___closed__2; -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__10; +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4___redArg(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_setStructureParents___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructFields___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withoutAutoBoundImplicit___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1772,12 +1787,12 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_St lean_object* lean_erase_macro_scopes(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19___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_Std_DHashMap_Internal_AssocList_get_x21___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__3___redArg___closed__1; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldrM___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go_spec__2___boxed(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField___redArg___closed__7; LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at_____private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___Lean_Elab_withSaveInfoContext___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__9_spec__11_spec__11___redArg(lean_object*, lean_object*); lean_object* lean_expr_instantiate_rev(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___lam__0___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_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__5; static lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__11_spec__11___closed__0; static lean_object* l_panic___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__6___closed__3; @@ -1785,6 +1800,7 @@ LEAN_EXPORT lean_object* l_List_mapTR_loop___at___Lean_mkConstWithLevelParams___ uint8_t l_Lean_Elab_Visibility_isInferredPublic(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Prod_repr___at___Array_Array_repr___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__42_spec__42___redArg___closed__3; +static lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30___closed__0; static lean_object* l_Lean_Elab_Command_Structure_structureSyntaxToView___closed__10; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1_spec__2_spec__2_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkToParentName___closed__0; @@ -1792,8 +1808,10 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_St size_t lean_usize_sub(size_t, size_t); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabFieldTypeValue(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalContext_mkAuxDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__15_spec__15___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Elab_Command_Structure_structureSyntaxToView___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__11___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_collectUsedFVars_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParent(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0___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*); @@ -1801,22 +1819,24 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Command_structure_strictResolutionOrder; LEAN_EXPORT lean_object* l_Lean_Linter_logLint___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__3_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__13_spec__13___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_instantiateMVarsCore(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__0___closed__0; LEAN_EXPORT lean_object* l_Lean_logWarning___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Prod_repr___at___Array_Array_repr___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__42_spec__42___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__39_spec__39___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*); static lean_object* l_Lean_Elab_Command_Structure_instInhabitedStructFieldInfo___closed__6; lean_object* l_Lean_PersistentHashMap_getCollisionNodeSize___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___closed__3; -static lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__6; +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_findParentFieldInfo_x3f___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Name_quickCmp(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections___closed__1; -static lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__3; +static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_StructView_ctor(lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__1_spec__1___redArg___closed__0; LEAN_EXPORT lean_object* l_Prod_repr___at___Array_Array_repr___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__42_spec__42___redArg(lean_object*); lean_object* l_Lean_getStructureCtor(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_registerFailedToInferDefaultValue___redArg___closed__3; static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___closed__1; lean_object* l_Lean_Level_param___override(lean_object*); @@ -1824,15 +1844,12 @@ size_t lean_usize_add(size_t, size_t); lean_object* l_mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go___redArg___closed__0; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefault_x3f___closed__4; -static lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__39___closed__1; -LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__30_spec__30___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_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0___closed__0; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__17(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addDefaults_spec__2_spec__2___lam__0___closed__1; static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__7; uint8_t l_Lean_Expr_hasFVar(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__3; LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_findFieldInfoByFVarId_x3f_spec__0___redArg___boxed(lean_object*, lean_object*); lean_object* l_Lean_FVarId_getDecl___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor_spec__2___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1841,6 +1858,7 @@ uint8_t l_Lean_Elab_Modifiers_isNoncomputable(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor___lam__0(lean_object*); LEAN_EXPORT lean_object* l_Array_insertionSort_swapLoop___at___Array_insertionSort_traverse___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__39_spec__39___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__9; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go_spec__3(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_registerFailedToInferFieldType_spec__0___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_LocalContext_foldlM___at___Lean_instantiateLCtxMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__7_spec__8_spec__8_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*); @@ -1848,25 +1866,24 @@ lean_object* l_Lean_KVMap_findCore(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandParents(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResultingUniversesForFields_spec__1_spec__1___closed__6; lean_object* lean_array_uget(lean_object*, size_t); +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__24___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__23(lean_object*, size_t, size_t, lean_object*); -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__8; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___lam__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_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_registerFailedToInferDefaultValue___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__1_spec__1_spec__1___redArg___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_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_toVisibility___redArg___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_array_size(lean_object*); -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__9; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__0_spec__1_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_hash___boxed(lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__13_spec__13___redArg___closed__3; -static lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1_spec__2_spec__2_spec__2_spec__4___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__1___closed__1; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addDefaults_spec__2_spec__2___lam__1___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoTree___at___Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__2_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_StructFieldKind_isInCtor___boxed(lean_object*); +static lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_withIncRecDepth___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__13___redArg(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_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__2; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___closed__0; static lean_object* l_panic___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__6___closed__1; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1890,7 +1907,6 @@ LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___Array_anyMUnsafe_any___at___Le lean_object* l_Lean_Elab_Term_getLevelNames___redArg(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePrivateFieldHint___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabFieldTypeValue___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_dropLeadingDeclModifiersDocstring___closed__2; @@ -1899,9 +1915,9 @@ size_t lean_usize_shift_left(size_t, size_t); lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withoutExporting___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabFieldTypeValue_spec__1___redArg___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___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates___closed__1; -LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__14; LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_instInhabitedStructFieldInfo; +static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__1; lean_object* l_Lean_Meta_getLocalInstances___redArg(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_replaceFieldInfo___redArg___closed__1; static lean_object* l_Lean_Elab_Command_initFn___closed__3____x40_Lean_Elab_Structure___hyg_140_; @@ -1910,6 +1926,7 @@ LEAN_EXPORT uint8_t l_Lean_Elab_Command_Structure_decEqStructFieldKind____x40_Le static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___closed__15; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___closed__5; lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePrivateFieldHint___closed__5; LEAN_EXPORT lean_object* l_Lean_addDocStringCore___at___Lean_addDocStringCore_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField_spec__2_spec__2___lam__0___boxed(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_Elab_Command_Structure_structureSyntaxToView___closed__6; @@ -1917,6 +1934,7 @@ LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at___Lean_Loop_forIn_loop___at lean_object* l_Lean_Core_instMonadCoreM___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__8; static lean_object* l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3___boxed__const__1; static lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__10___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_setSourceInstImplicit(lean_object*); @@ -1932,6 +1950,7 @@ static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structu LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addProjections_spec__4_spec__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*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_contains___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__5___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint64_t l_Lean_hashMVarId____x40_Lean_Expr___hyg_1869_(lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__12___redArg___boxed(lean_object**); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f___closed__2; @@ -1942,14 +1961,15 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsa LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtorExpr_spec__3(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructFields_goFields___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__41___closed__1; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__0____x40_Lean_Elab_Structure___hyg_4_; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__4_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___closed__1; LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_structureExt; LEAN_EXPORT lean_object* l_Lean_throwError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__1; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkDefaults_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___Lean_Elab_CommandContextInfo_save___at___Lean_Elab_withSaveInfoContext___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__9_spec__9_spec__9___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -1957,7 +1977,6 @@ lean_object* l_Lean_LocalDecl_toExpr(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addProjections_spec__2(lean_object*, size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__9___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_solveParentMVars_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10___closed__0; @@ -1968,11 +1987,16 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_mergeStructureResolu LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go_match__1_splitter___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___lam__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__1_spec__1_spec__3___redArg(size_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__25___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkRemainingProjections_spec__1_spec__1___redArg___closed__1; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__11_spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__9___closed__1; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__0_spec__1_spec__3_spec__3___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Option_get___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_Structure_structureSyntaxToView___closed__12; lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1983,7 +2007,6 @@ static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownId static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go___redArg___closed__7; uint8_t lean_nat_dec_le(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Prod_repr___at___Array_Array_repr___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__42_spec__42(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCoercionToCopiedParent_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___closed__0; extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; @@ -2001,9 +2024,7 @@ static lean_object* l_Array_filterMapM___at_____private_Lean_Elab_Structure_0__L static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__32; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__6; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___closed__13; -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePrivateFieldHint(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__37_spec__37(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__15_spec__15___boxed(lean_object**); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__1; static lean_object* l_Lean_Elab_Command_Structure_checkValidFieldModifier___closed__7; @@ -2013,9 +2034,7 @@ static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structu LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCoercionToCopiedParent_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefault_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCoercionToCopiedParent_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_solveParentMVars_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___lam__1(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, 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_mkLambdaFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtorExpr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkProjection(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2027,6 +2046,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_transform___at_____private_Lean_Elab_Struct static lean_object* l_Lean_Elab_Command_Structure_structureSyntaxToView___closed__3; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__15___redArg(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__50_spec__50___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*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__3; lean_object* lean_nat_add(lean_object*, lean_object*); static lean_object* l_Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1___closed__0; LEAN_EXPORT lean_object* l_Array_insertionSort_traverse___at___Array_insertionSort_traverse___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__39_spec__40___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -2068,6 +2088,7 @@ LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at__ lean_object* l_Lean_Level_normalize(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isForall(lean_object*); +static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___lam__0___closed__0; lean_object* l_Lean_Elab_Term_elabBinders(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_expandMacros(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_registerLevelMVarErrorExprInfo___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2080,31 +2101,32 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_St lean_object* l_Lean_Expr_mvarId_x21(lean_object*); uint8_t lean_is_class(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_LocalContext_foldlM___at___Lean_instantiateLCtxMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__7_spec__8_spec__8_spec__8_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_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1_spec__1(size_t, size_t, lean_object*); LEAN_EXPORT uint8_t l_Lean_Elab_Command_Structure_StructFieldKind_isParent(lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_defaultCtorName; static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__4; +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__16___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__15___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__3_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__30; -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePrivateFieldHint___closed__2; -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_save___at___Lean_Elab_withSaveInfoContext___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__9_spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___Std_DHashMap_Internal_Raw_u2080_expand_go___at___Std_DHashMap_Internal_Raw_u2080_expand___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__1_spec__1_spec__1___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logWarning___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__11_spec__11_spec__11___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__37_spec__37___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__0_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at___Lean_Loop_forIn_loop___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__6_spec__6___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_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_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__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_ReaderT_instMonadLift___lam__0___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofName(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_solveParentMVars_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__6; LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at___Lean_Loop_forIn_loop___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__34_spec__34___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_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__1_spec__3_spec__3___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__31___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2112,17 +2134,18 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_instantia LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__50_spec__50___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_instMonadMetaM___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_instantiate1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__9_spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg(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_Elab_Command_Structure_instInhabitedStructParentInfo___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitLet___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__11___lam__0(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_Modifiers_isPartial(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__6___redArg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2_spec__3___closed__2; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___closed__11; -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__2___closed__1; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___Lean_Elab_Command_Structure_structureSyntaxToView_spec__3___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__4; static lean_object* l_Array_Array_repr___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__42___closed__2; LEAN_EXPORT lean_object* l_Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__1___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand_go___at___Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__16_spec__16(lean_object*, lean_object*, lean_object*, lean_object*); @@ -2144,11 +2167,10 @@ static lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___Std_DHashMap static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__50_spec__50___redArg___closed__2; LEAN_EXPORT lean_object* l_Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__1_spec__1_spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_Structure_instInhabitedStructFieldInfo___closed__3; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_instInhabitedState___closed__0; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__15_spec__15___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0(uint8_t, uint8_t, lean_object*); static lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at___Lean_Elab_Command_Structure_structureSyntaxToView_spec__1___closed__1; LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField_spec__4_spec__5___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_addDecl(lean_object*, lean_object*, lean_object*, lean_object*); @@ -2157,35 +2179,35 @@ LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at___Lean_ lean_object* l_Lean_MessageLog_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__0_spec__1_spec__3_spec__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_StateT_instMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_land(size_t, size_t); -static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__11___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at___Std_DTreeMap_Internal_Impl_Const_get_x21___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__37_spec__37(lean_object*, lean_object*, lean_object*); lean_object* l_StateT_pure(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___Lean_PersistentHashMap_find_x3f___at___Lean_setStructureParents___at___Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__3_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__23___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addDefaults_spec__2___redArg___boxed(lean_object**); lean_object* l_Lean_Elab_Term_elabType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__1; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__1_spec__1_spec__1_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInfo___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Linter_logLintIf___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__3(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_Command_Structure_reprStructFieldDefault___closed__4____x40_Lean_Elab_Structure___hyg_1446_; +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__1; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__1_spec__1_spec__1_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidInductiveModifier___at___Lean_Elab_Command_Structure_structureSyntaxToView_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructFields_goFields___redArg___boxed(lean_object**); +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__24___redArg___boxed(lean_object*, lean_object*); static lean_object* l_Array_Array_repr___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__42___closed__4; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__12_spec__12___redArg___boxed(lean_object**); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addProjections_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField___redArg___lam__1___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__16; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__9; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__17___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2193,9 +2215,7 @@ static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structu LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1_spec__2_spec__2_spec__2_spec__2_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__50_spec__50___redArg___closed__0; static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___closed__6; -static lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at___Lean_Loop_forIn_loop___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__0_spec__6_spec__6(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__2; static lean_object* l_Lean_Options_toLinterOptions___at___Lean_Linter_getLinterOptions___at___Lean_Linter_logLintIf___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__3_spec__3_spec__3___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3_spec__6(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -5760,6 +5780,392 @@ return x_22; } } } +static lean_object* _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__0; +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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__1; +x_2 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2, 0, x_1); +lean_ctor_set(x_2, 1, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__0; +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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__0; +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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__0; +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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__0; +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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__6; +x_2 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__5; +x_3 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__4; +x_4 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__3; +x_5 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +lean_ctor_set(x_5, 2, x_2); +lean_ctor_set(x_5, 3, x_4); +lean_ctor_set(x_5, 4, x_1); +lean_ctor_set(x_5, 5, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_5 = lean_st_ref_take(x_3, x_4); +x_6 = lean_ctor_get(x_5, 0); +lean_inc(x_6); +x_7 = lean_ctor_get(x_5, 1); +lean_inc(x_7); +lean_dec_ref(x_5); +x_8 = !lean_is_exclusive(x_6); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_9 = lean_ctor_get(x_6, 5); +lean_dec(x_9); +x_10 = lean_ctor_get(x_6, 0); +lean_dec(x_10); +x_11 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; +lean_ctor_set(x_6, 5, x_11); +lean_ctor_set(x_6, 0, x_1); +x_12 = lean_st_ref_set(x_3, x_6, x_7); +x_13 = lean_ctor_get(x_12, 1); +lean_inc(x_13); +lean_dec_ref(x_12); +x_14 = lean_st_ref_take(x_2, x_13); +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec_ref(x_14); +x_17 = !lean_is_exclusive(x_15); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_18 = lean_ctor_get(x_15, 1); +lean_dec(x_18); +x_19 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; +lean_ctor_set(x_15, 1, x_19); +x_20 = lean_st_ref_set(x_2, x_15, x_16); +x_21 = !lean_is_exclusive(x_20); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_20, 0); +lean_dec(x_22); +x_23 = lean_box(0); +lean_ctor_set(x_20, 0, x_23); +return x_20; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_20, 1); +lean_inc(x_24); +lean_dec(x_20); +x_25 = lean_box(0); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_24); +return x_26; +} +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_27 = lean_ctor_get(x_15, 0); +x_28 = lean_ctor_get(x_15, 2); +x_29 = lean_ctor_get(x_15, 3); +x_30 = lean_ctor_get(x_15, 4); +lean_inc(x_30); +lean_inc(x_29); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_15); +x_31 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; +x_32 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_32, 0, x_27); +lean_ctor_set(x_32, 1, x_31); +lean_ctor_set(x_32, 2, x_28); +lean_ctor_set(x_32, 3, x_29); +lean_ctor_set(x_32, 4, x_30); +x_33 = lean_st_ref_set(x_2, x_32, x_16); +x_34 = lean_ctor_get(x_33, 1); +lean_inc(x_34); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + x_35 = x_33; +} else { + lean_dec_ref(x_33); + x_35 = lean_box(0); +} +x_36 = lean_box(0); +if (lean_is_scalar(x_35)) { + x_37 = lean_alloc_ctor(0, 2, 0); +} else { + x_37 = x_35; +} +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set(x_37, 1, x_34); +return x_37; +} +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_38 = lean_ctor_get(x_6, 1); +x_39 = lean_ctor_get(x_6, 2); +x_40 = lean_ctor_get(x_6, 3); +x_41 = lean_ctor_get(x_6, 4); +x_42 = lean_ctor_get(x_6, 6); +x_43 = lean_ctor_get(x_6, 7); +x_44 = lean_ctor_get(x_6, 8); +lean_inc(x_44); +lean_inc(x_43); +lean_inc(x_42); +lean_inc(x_41); +lean_inc(x_40); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_6); +x_45 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; +x_46 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_46, 0, x_1); +lean_ctor_set(x_46, 1, x_38); +lean_ctor_set(x_46, 2, x_39); +lean_ctor_set(x_46, 3, x_40); +lean_ctor_set(x_46, 4, x_41); +lean_ctor_set(x_46, 5, x_45); +lean_ctor_set(x_46, 6, x_42); +lean_ctor_set(x_46, 7, x_43); +lean_ctor_set(x_46, 8, x_44); +x_47 = lean_st_ref_set(x_3, x_46, x_7); +x_48 = lean_ctor_get(x_47, 1); +lean_inc(x_48); +lean_dec_ref(x_47); +x_49 = lean_st_ref_take(x_2, x_48); +x_50 = lean_ctor_get(x_49, 0); +lean_inc(x_50); +x_51 = lean_ctor_get(x_49, 1); +lean_inc(x_51); +lean_dec_ref(x_49); +x_52 = lean_ctor_get(x_50, 0); +lean_inc_ref(x_52); +x_53 = lean_ctor_get(x_50, 2); +lean_inc(x_53); +x_54 = lean_ctor_get(x_50, 3); +lean_inc_ref(x_54); +x_55 = lean_ctor_get(x_50, 4); +lean_inc_ref(x_55); +if (lean_is_exclusive(x_50)) { + lean_ctor_release(x_50, 0); + lean_ctor_release(x_50, 1); + lean_ctor_release(x_50, 2); + lean_ctor_release(x_50, 3); + lean_ctor_release(x_50, 4); + x_56 = x_50; +} else { + lean_dec_ref(x_50); + x_56 = lean_box(0); +} +x_57 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; +if (lean_is_scalar(x_56)) { + x_58 = lean_alloc_ctor(0, 5, 0); +} else { + x_58 = x_56; +} +lean_ctor_set(x_58, 0, x_52); +lean_ctor_set(x_58, 1, x_57); +lean_ctor_set(x_58, 2, x_53); +lean_ctor_set(x_58, 3, x_54); +lean_ctor_set(x_58, 4, x_55); +x_59 = lean_st_ref_set(x_2, x_58, x_51); +x_60 = lean_ctor_get(x_59, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_59)) { + lean_ctor_release(x_59, 0); + lean_ctor_release(x_59, 1); + x_61 = x_59; +} else { + lean_dec_ref(x_59); + x_61 = lean_box(0); +} +x_62 = lean_box(0); +if (lean_is_scalar(x_61)) { + x_63 = lean_alloc_ctor(0, 2, 0); +} else { + x_63 = x_61; +} +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_60); +return x_63; +} +} +} +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15(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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg(x_1, x_5, x_7, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15___redArg(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_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_10 = lean_st_ref_get(x_8, x_9); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec_ref(x_10); +x_13 = lean_ctor_get(x_11, 0); +lean_inc_ref(x_13); +lean_dec(x_11); +x_14 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg(x_1, x_6, x_8, x_12); +x_15 = lean_ctor_get(x_14, 1); +lean_inc(x_15); +lean_dec_ref(x_14); +lean_inc(x_8); +lean_inc(x_6); +x_16 = lean_apply_7(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_15); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec_ref(x_16); +x_19 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg(x_13, x_6, x_8, x_18); +lean_dec(x_8); +lean_dec(x_6); +x_20 = !lean_is_exclusive(x_19); +if (x_20 == 0) +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_19, 0); +lean_dec(x_21); +lean_ctor_set(x_19, 0, x_17); +return x_19; +} +else +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_19, 1); +lean_inc(x_22); +lean_dec(x_19); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_17); +lean_ctor_set(x_23, 1, x_22); +return x_23; +} +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_24 = lean_ctor_get(x_16, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_16, 1); +lean_inc(x_25); +lean_dec_ref(x_16); +x_26 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg(x_13, x_6, x_8, x_25); +lean_dec(x_8); +lean_dec(x_6); +x_27 = !lean_is_exclusive(x_26); +if (x_27 == 0) +{ +lean_object* x_28; +x_28 = lean_ctor_get(x_26, 0); +lean_dec(x_28); +lean_ctor_set_tag(x_26, 1); +lean_ctor_set(x_26, 0, x_24); +return x_26; +} +else +{ +lean_object* x_29; lean_object* x_30; +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_dec(x_26); +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_24); +lean_ctor_set(x_30, 1, x_29); +return x_30; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} static lean_object* _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0___closed__0() { _start: { @@ -5792,62 +6198,61 @@ lean_ctor_set(x_4, 2, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0(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_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0(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, lean_object* x_8, lean_object* x_9) { _start: { -lean_object* x_9; lean_object* x_10; -x_9 = lean_ctor_get(x_6, 5); -lean_inc(x_9); -lean_inc_ref(x_6); -lean_inc_ref(x_2); -x_10 = l_Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_10) == 0) +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_7, 5); +lean_inc(x_10); +lean_inc_ref(x_7); +lean_inc_ref(x_3); +x_11 = l_Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_11) == 0) { -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_19; lean_object* x_20; -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -x_12 = lean_ctor_get(x_10, 1); +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); -lean_dec_ref(x_10); -x_13 = lean_box(0); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -x_15 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0___closed__2; -x_16 = lean_box(0); -x_17 = 0; +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +lean_dec_ref(x_11); +x_14 = lean_box(0); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_10); +x_16 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0___closed__2; +x_17 = lean_box(0); x_18 = lean_alloc_ctor(0, 4, 1); -lean_ctor_set(x_18, 0, x_14); -lean_ctor_set(x_18, 1, x_15); -lean_ctor_set(x_18, 2, x_16); -lean_ctor_set(x_18, 3, x_11); -lean_ctor_set_uint8(x_18, sizeof(void*)*4, x_17); +lean_ctor_set(x_18, 0, x_15); +lean_ctor_set(x_18, 1, x_16); +lean_ctor_set(x_18, 2, x_17); +lean_ctor_set(x_18, 3, x_12); +lean_ctor_set_uint8(x_18, sizeof(void*)*4, x_1); x_19 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_19, 0, x_18); -x_20 = l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__13(x_19, x_2, x_3, x_4, x_5, x_6, x_7, x_12); -lean_dec_ref(x_6); -lean_dec_ref(x_2); +x_20 = l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__13(x_19, x_3, x_4, x_5, x_6, x_7, x_8, x_13); +lean_dec_ref(x_7); +lean_dec_ref(x_3); return x_20; } else { uint8_t x_21; -lean_dec(x_9); -lean_dec_ref(x_6); -lean_dec_ref(x_2); -x_21 = !lean_is_exclusive(x_10); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec_ref(x_3); +x_21 = !lean_is_exclusive(x_11); if (x_21 == 0) { -return x_10; +return x_11; } else { lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_10, 0); -x_23 = lean_ctor_get(x_10, 1); +x_22 = lean_ctor_get(x_11, 0); +x_23 = lean_ctor_get(x_11, 1); lean_inc(x_23); lean_inc(x_22); -lean_dec(x_10); +lean_dec(x_11); x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_22); lean_ctor_set(x_24, 1, x_23); @@ -6161,7 +6566,88 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_11 = lean_st_ref_get(x_9, x_10); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +if (lean_is_exclusive(x_11)) { + lean_ctor_release(x_11, 0); + lean_ctor_release(x_11, 1); + x_14 = x_11; +} else { + lean_dec_ref(x_11); + x_14 = lean_box(0); +} +x_25 = lean_ctor_get(x_12, 0); +lean_inc_ref(x_25); +lean_dec(x_12); +lean_inc(x_2); +x_26 = l_Lean_privateToUserName(x_2); +lean_inc_ref(x_3); +x_27 = lean_is_reserved_name(x_3, x_26); +if (x_27 == 0) +{ +lean_object* x_28; uint8_t x_29; +lean_inc(x_2); +x_28 = l_Lean_mkPrivateName(x_25, x_2); +lean_dec_ref(x_25); +x_29 = lean_is_reserved_name(x_3, x_28); +x_15 = x_29; +goto block_24; +} +else +{ +lean_dec_ref(x_25); +lean_dec_ref(x_3); +x_15 = x_27; +goto block_24; +} +block_24: +{ +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +lean_dec(x_14); +lean_dec(x_2); +x_16 = lean_box(0); +x_17 = lean_apply_8(x_1, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +return x_17; +} +else +{ +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_dec_ref(x_1); +x_18 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__1; +x_19 = l_Lean_MessageData_ofName(x_2); +if (lean_is_scalar(x_14)) { + x_20 = lean_alloc_ctor(7, 2, 0); +} else { + x_20 = x_14; + lean_ctor_set_tag(x_20, 7); +} +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +x_21 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__3; +x_22 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +x_23 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_22, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_23; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__4(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; lean_object* x_22; uint8_t x_23; @@ -6218,7 +6704,7 @@ return x_20; } } } -static lean_object* _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___closed__0() { +static lean_object* _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__5___closed__0() { _start: { lean_object* x_1; @@ -6226,374 +6712,212 @@ x_1 = lean_mk_string_unchecked("private declaration '", 21, 21); return x_1; } } -static lean_object* _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___closed__1() { +static lean_object* _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__5___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___closed__0; +x_1 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__5___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__5(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc(x_2); +x_11 = lean_apply_8(x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_11) == 0) +{ +uint8_t x_12; +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_11, 1); +x_14 = lean_ctor_get(x_11, 0); +lean_dec(x_14); +lean_inc(x_2); +x_15 = lean_private_to_user_name(x_2); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_16 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__1; +x_17 = l_Lean_MessageData_ofConstName(x_2, x_3); +lean_ctor_set_tag(x_11, 7); +lean_ctor_set(x_11, 1, x_17); +lean_ctor_set(x_11, 0, x_16); +x_18 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___closed__3; +x_19 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_19, 0, x_11); +lean_ctor_set(x_19, 1, x_18); +x_20 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_20; +} +else +{ +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_dec(x_2); +x_21 = lean_ctor_get(x_15, 0); +lean_inc(x_21); +lean_dec_ref(x_15); +x_22 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__5___closed__1; +x_23 = l_Lean_MessageData_ofConstName(x_21, x_3); +lean_ctor_set_tag(x_11, 7); +lean_ctor_set(x_11, 1, x_23); +lean_ctor_set(x_11, 0, x_22); +x_24 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___closed__3; +x_25 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_25, 0, x_11); +lean_ctor_set(x_25, 1, x_24); +x_26 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_25, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_26; +} +} +else +{ +lean_object* x_27; lean_object* x_28; +x_27 = lean_ctor_get(x_11, 1); +lean_inc(x_27); +lean_dec(x_11); +lean_inc(x_2); +x_28 = lean_private_to_user_name(x_2); +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; +x_29 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__1; +x_30 = l_Lean_MessageData_ofConstName(x_2, x_3); +x_31 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_31, 0, x_29); +lean_ctor_set(x_31, 1, x_30); +x_32 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___closed__3; +x_33 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +x_34 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_33, x_4, x_5, x_6, x_7, x_8, x_9, x_27); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_34; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +lean_dec(x_2); +x_35 = lean_ctor_get(x_28, 0); +lean_inc(x_35); +lean_dec_ref(x_28); +x_36 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__5___closed__1; +x_37 = l_Lean_MessageData_ofConstName(x_35, x_3); +x_38 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_37); +x_39 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___closed__3; +x_40 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +x_41 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_40, x_4, x_5, x_6, x_7, x_8, x_9, x_27); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_41; +} +} +} +else +{ +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_2); +return x_11; +} +} +} LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0(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; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; uint8_t x_17; +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; uint8_t x_20; x_9 = lean_st_ref_get(x_7, x_8); x_10 = lean_ctor_get(x_9, 0); lean_inc(x_10); x_11 = lean_ctor_get(x_9, 1); lean_inc(x_11); -if (lean_is_exclusive(x_9)) { - lean_ctor_release(x_9, 0); - lean_ctor_release(x_9, 1); - x_12 = x_9; -} else { - lean_dec_ref(x_9); - x_12 = lean_box(0); -} -x_13 = lean_ctor_get(x_10, 0); -lean_inc_ref(x_13); +lean_dec_ref(x_9); +x_12 = lean_ctor_get(x_10, 0); +lean_inc_ref(x_12); lean_dec(x_10); -x_14 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0___boxed), 8, 0); -lean_inc_ref(x_14); -lean_inc_ref(x_13); +x_13 = 0; +x_14 = lean_box(x_13); +x_15 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0___boxed), 9, 1); +lean_closure_set(x_15, 0, x_14); +x_16 = l_Lean_Environment_setExporting(x_12, x_13); +lean_inc_ref(x_15); +lean_inc_ref(x_16); lean_inc(x_1); -x_15 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___boxed), 11, 3); -lean_closure_set(x_15, 0, x_1); -lean_closure_set(x_15, 1, x_13); -lean_closure_set(x_15, 2, x_14); -x_16 = 1; +x_17 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___boxed), 11, 3); +lean_closure_set(x_17, 0, x_1); +lean_closure_set(x_17, 1, x_16); +lean_closure_set(x_17, 2, x_15); +lean_inc_ref(x_15); lean_inc(x_1); -lean_inc_ref(x_13); -x_17 = l_Lean_Environment_contains(x_13, x_1, x_16); -if (x_17 == 0) -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_32; lean_object* x_33; uint8_t x_34; -x_18 = lean_st_ref_get(x_7, x_11); -x_19 = lean_ctor_get(x_18, 0); -lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -if (lean_is_exclusive(x_18)) { - lean_ctor_release(x_18, 0); - lean_ctor_release(x_18, 1); - x_21 = x_18; -} else { - lean_dec_ref(x_18); - x_21 = lean_box(0); -} -x_32 = lean_ctor_get(x_19, 0); -lean_inc_ref(x_32); -lean_dec(x_19); +lean_inc_ref(x_16); +x_18 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__2___boxed), 12, 4); +lean_closure_set(x_18, 0, x_16); +lean_closure_set(x_18, 1, x_1); +lean_closure_set(x_18, 2, x_17); +lean_closure_set(x_18, 3, x_15); +x_19 = 1; lean_inc(x_1); -x_33 = l_Lean_privateToUserName(x_1); -lean_inc_ref(x_13); -x_34 = lean_is_reserved_name(x_13, x_33); -if (x_34 == 0) +lean_inc_ref(x_16); +x_20 = l_Lean_Environment_contains(x_16, x_1, x_19); +if (x_20 == 0) { -lean_object* x_35; uint8_t x_36; -lean_inc(x_1); -x_35 = l_Lean_mkPrivateName(x_32, x_1); -lean_dec_ref(x_32); -lean_inc_ref(x_13); -x_36 = lean_is_reserved_name(x_13, x_35); -x_22 = x_36; -goto block_31; -} -else -{ -lean_dec_ref(x_32); -x_22 = x_34; -goto block_31; -} -block_31: -{ -if (x_22 == 0) -{ -lean_object* x_23; lean_object* x_24; -lean_dec(x_21); -lean_dec(x_12); -x_23 = lean_box(0); -x_24 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__2(x_13, x_1, x_15, x_14, x_23, x_2, x_3, x_4, x_5, x_6, x_7, x_20); -return x_24; -} -else -{ -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_21; lean_object* x_22; lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -x_25 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__1; -x_26 = l_Lean_MessageData_ofName(x_1); -if (lean_is_scalar(x_21)) { - x_27 = lean_alloc_ctor(7, 2, 0); -} else { - x_27 = x_21; - lean_ctor_set_tag(x_27, 7); -} -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -x_28 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__3; -if (lean_is_scalar(x_12)) { - x_29 = lean_alloc_ctor(7, 2, 0); -} else { - x_29 = x_12; - lean_ctor_set_tag(x_29, 7); -} -lean_ctor_set(x_29, 0, x_27); -lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_29, x_2, x_3, x_4, x_5, x_6, x_7, x_20); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_30; -} -} +lean_inc_ref(x_16); +x_21 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3), 10, 3); +lean_closure_set(x_21, 0, x_18); +lean_closure_set(x_21, 1, x_1); +lean_closure_set(x_21, 2, x_16); +x_22 = l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15___redArg(x_16, x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_11); +return x_22; } else { -lean_object* x_37; -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_inc_ref(x_6); -lean_inc_ref(x_2); -lean_inc(x_1); -x_37 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_11); -if (lean_obj_tag(x_37) == 0) -{ -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 1); -x_40 = lean_ctor_get(x_37, 0); -lean_dec(x_40); -lean_inc(x_1); -x_41 = lean_private_to_user_name(x_1); -if (lean_obj_tag(x_41) == 0) -{ -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_42 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__1; -x_43 = l_Lean_MessageData_ofConstName(x_1, x_16); -lean_ctor_set_tag(x_37, 7); -lean_ctor_set(x_37, 1, x_43); -lean_ctor_set(x_37, 0, x_42); -x_44 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___closed__3; -if (lean_is_scalar(x_12)) { - x_45 = lean_alloc_ctor(7, 2, 0); -} else { - x_45 = x_12; - lean_ctor_set_tag(x_45, 7); +lean_object* x_23; lean_object* x_24; lean_object* x_25; +lean_dec_ref(x_18); +x_23 = lean_box(x_19); +x_24 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__5___boxed), 10, 3); +lean_closure_set(x_24, 0, x_15); +lean_closure_set(x_24, 1, x_1); +lean_closure_set(x_24, 2, x_23); +x_25 = l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15___redArg(x_16, x_24, x_2, x_3, x_4, x_5, x_6, x_7, x_11); +return x_25; } -lean_ctor_set(x_45, 0, x_37); -lean_ctor_set(x_45, 1, x_44); -x_46 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_45, x_2, x_3, x_4, x_5, x_6, x_7, x_39); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_46; -} -else -{ -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_dec(x_1); -x_47 = lean_ctor_get(x_41, 0); -lean_inc(x_47); -lean_dec_ref(x_41); -x_48 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___closed__1; -x_49 = l_Lean_MessageData_ofConstName(x_47, x_16); -lean_ctor_set_tag(x_37, 7); -lean_ctor_set(x_37, 1, x_49); -lean_ctor_set(x_37, 0, x_48); -x_50 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___closed__3; -if (lean_is_scalar(x_12)) { - x_51 = lean_alloc_ctor(7, 2, 0); -} else { - x_51 = x_12; - lean_ctor_set_tag(x_51, 7); -} -lean_ctor_set(x_51, 0, x_37); -lean_ctor_set(x_51, 1, x_50); -x_52 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_51, x_2, x_3, x_4, x_5, x_6, x_7, x_39); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_52; -} -} -else -{ -lean_object* x_53; lean_object* x_54; -x_53 = lean_ctor_get(x_37, 1); -lean_inc(x_53); -lean_dec(x_37); -lean_inc(x_1); -x_54 = lean_private_to_user_name(x_1); -if (lean_obj_tag(x_54) == 0) -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_55 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__1; -x_56 = l_Lean_MessageData_ofConstName(x_1, x_16); -x_57 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_57, 0, x_55); -lean_ctor_set(x_57, 1, x_56); -x_58 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___closed__3; -if (lean_is_scalar(x_12)) { - x_59 = lean_alloc_ctor(7, 2, 0); -} else { - x_59 = x_12; - lean_ctor_set_tag(x_59, 7); -} -lean_ctor_set(x_59, 0, x_57); -lean_ctor_set(x_59, 1, x_58); -x_60 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_59, x_2, x_3, x_4, x_5, x_6, x_7, x_53); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_60; -} -else -{ -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_dec(x_1); -x_61 = lean_ctor_get(x_54, 0); -lean_inc(x_61); -lean_dec_ref(x_54); -x_62 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___closed__1; -x_63 = l_Lean_MessageData_ofConstName(x_61, x_16); -x_64 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_64, 0, x_62); -lean_ctor_set(x_64, 1, x_63); -x_65 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___closed__3; -if (lean_is_scalar(x_12)) { - x_66 = lean_alloc_ctor(7, 2, 0); -} else { - x_66 = x_12; - lean_ctor_set_tag(x_66, 7); -} -lean_ctor_set(x_66, 0, x_64); -lean_ctor_set(x_66, 1, x_65); -x_67 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_66, x_2, x_3, x_4, x_5, x_6, x_7, x_53); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_67; -} -} -} -else -{ -lean_dec(x_12); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_37; -} -} -} -} -static lean_object* _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__0; -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_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__1; -x_2 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2, 0, x_1); -lean_ctor_set(x_2, 1, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__0; -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_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__0; -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_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__0; -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_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__0; -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_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__6; -x_2 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__5; -x_3 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__4; -x_4 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__3; -x_5 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_5, 0, x_4); -lean_ctor_set(x_5, 1, x_3); -lean_ctor_set(x_5, 2, x_2); -lean_ctor_set(x_5, 3, x_4); -lean_ctor_set(x_5, 4, x_1); -lean_ctor_set(x_5, 5, x_1); -return x_5; } } LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0(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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { @@ -6627,7 +6951,7 @@ x_18 = lean_ctor_get(x_14, 5); lean_dec(x_18); lean_inc(x_2); x_19 = l_Lean_addProtected(x_17, x_2); -x_20 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_20 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; lean_ctor_set(x_14, 5, x_20); lean_ctor_set(x_14, 0, x_19); x_21 = lean_st_ref_set(x_9, x_14, x_15); @@ -6647,7 +6971,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; x_27 = lean_ctor_get(x_24, 1); lean_dec(x_27); -x_28 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_28 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; lean_ctor_set(x_24, 1, x_28); x_29 = lean_st_ref_set(x_7, x_24, x_25); lean_dec(x_7); @@ -6684,7 +7008,7 @@ lean_inc(x_36); lean_inc(x_35); lean_inc(x_34); lean_dec(x_24); -x_38 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_38 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; x_39 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_39, 0, x_34); lean_ctor_set(x_39, 1, x_38); @@ -6735,7 +7059,7 @@ lean_inc(x_44); lean_dec(x_14); lean_inc(x_2); x_52 = l_Lean_addProtected(x_44, x_2); -x_53 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_53 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; x_54 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_54, 0, x_52); lean_ctor_set(x_54, 1, x_45); @@ -6776,7 +7100,7 @@ if (lean_is_exclusive(x_58)) { lean_dec_ref(x_58); x_64 = lean_box(0); } -x_65 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_65 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_64)) { x_66 = lean_alloc_ctor(0, 5, 0); } else { @@ -6905,7 +7229,7 @@ return x_23; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__17___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__19___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; @@ -7002,15 +7326,15 @@ return x_26; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__17(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_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__19(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__17___redArg(x_1, x_6, x_8); +x_9 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__19___redArg(x_1, x_6, x_8); return x_9; } } -static lean_object* _init_l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18___redArg___closed__0() { +static lean_object* _init_l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20___redArg___closed__0() { _start: { lean_object* x_1; @@ -7018,7 +7342,7 @@ x_1 = l_Lean_declRangeExt; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; @@ -7039,9 +7363,9 @@ lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean x_11 = lean_ctor_get(x_8, 0); x_12 = lean_ctor_get(x_8, 5); lean_dec(x_12); -x_13 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18___redArg___closed__0; +x_13 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20___redArg___closed__0; x_14 = l_Lean_MapDeclarationExtension_insert___redArg(x_13, x_11, x_1, x_2); -x_15 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_15 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; lean_ctor_set(x_8, 5, x_15); lean_ctor_set(x_8, 0, x_14); x_16 = lean_st_ref_set(x_4, x_8, x_9); @@ -7060,7 +7384,7 @@ if (x_21 == 0) lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; x_22 = lean_ctor_get(x_19, 1); lean_dec(x_22); -x_23 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_23 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; lean_ctor_set(x_19, 1, x_23); x_24 = lean_st_ref_set(x_3, x_19, x_20); x_25 = !lean_is_exclusive(x_24); @@ -7098,7 +7422,7 @@ lean_inc(x_33); lean_inc(x_32); lean_inc(x_31); lean_dec(x_19); -x_35 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_35 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; x_36 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); @@ -7147,9 +7471,9 @@ lean_inc(x_44); lean_inc(x_43); lean_inc(x_42); lean_dec(x_8); -x_50 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18___redArg___closed__0; +x_50 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20___redArg___closed__0; x_51 = l_Lean_MapDeclarationExtension_insert___redArg(x_50, x_42, x_1, x_2); -x_52 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_52 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; x_53 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_53, 0, x_51); lean_ctor_set(x_53, 1, x_43); @@ -7189,7 +7513,7 @@ if (lean_is_exclusive(x_57)) { lean_dec_ref(x_57); x_63 = lean_box(0); } -x_64 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_64 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_63)) { x_65 = lean_alloc_ctor(0, 5, 0); } else { @@ -7235,20 +7559,20 @@ return x_72; } } } -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18(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_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20(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_10; -x_10 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18___redArg(x_1, x_2, x_6, x_8, x_9); +x_10 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20___redArg(x_1, x_2, x_6, x_8, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17(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_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; lean_object* x_12; lean_inc_ref(x_8); -x_11 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__17___redArg(x_2, x_8, x_10); +x_11 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__19___redArg(x_2, x_8, x_10); x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); if (lean_obj_tag(x_12) == 0) @@ -7288,7 +7612,7 @@ lean_dec_ref(x_11); x_20 = lean_ctor_get(x_12, 0); lean_inc(x_20); lean_dec_ref(x_12); -x_21 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__17___redArg(x_3, x_8, x_19); +x_21 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__19___redArg(x_3, x_8, x_19); x_22 = lean_ctor_get(x_21, 0); lean_inc(x_22); x_23 = lean_ctor_get(x_21, 1); @@ -7326,13 +7650,13 @@ if (lean_is_scalar(x_24)) { } lean_ctor_set(x_26, 0, x_20); lean_ctor_set(x_26, 1, x_25); -x_27 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18___redArg(x_1, x_26, x_7, x_9, x_23); +x_27 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20___redArg(x_1, x_26, x_7, x_9, x_23); return x_27; } } } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__22___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; lean_object* x_8; @@ -7346,15 +7670,15 @@ lean_ctor_set(x_8, 1, x_3); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20(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_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__22(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_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg(x_1, x_6, x_8); +x_9 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__22___redArg(x_1, x_6, x_8); return x_9; } } -static double _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__0() { +static double _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__0() { _start: { lean_object* x_1; double x_2; @@ -7363,7 +7687,7 @@ x_2 = lean_float_of_nat(x_1); return x_2; } } -static lean_object* _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__1() { +static lean_object* _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -7372,7 +7696,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg(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_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; @@ -7406,7 +7730,7 @@ if (x_20 == 0) { lean_object* x_21; double x_22; uint8_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; x_21 = lean_ctor_get(x_14, 0); -x_22 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__0; +x_22 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__0; x_23 = 0; x_24 = l_Lean_Elab_Command_initFn___closed__2____x40_Lean_Elab_Structure___hyg_106_; x_25 = lean_alloc_ctor(0, 2, 17); @@ -7415,7 +7739,7 @@ lean_ctor_set(x_25, 1, x_24); lean_ctor_set_float(x_25, sizeof(void*)*2, x_22); lean_ctor_set_float(x_25, sizeof(void*)*2 + 8, x_22); lean_ctor_set_uint8(x_25, sizeof(void*)*2 + 16, x_23); -x_26 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__1; +x_26 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__1; x_27 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_10); @@ -7456,7 +7780,7 @@ x_36 = lean_ctor_get_uint64(x_14, sizeof(void*)*1); x_37 = lean_ctor_get(x_14, 0); lean_inc(x_37); lean_dec(x_14); -x_38 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__0; +x_38 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__0; x_39 = 0; x_40 = l_Lean_Elab_Command_initFn___closed__2____x40_Lean_Elab_Structure___hyg_106_; x_41 = lean_alloc_ctor(0, 2, 17); @@ -7465,7 +7789,7 @@ lean_ctor_set(x_41, 1, x_40); lean_ctor_set_float(x_41, sizeof(void*)*2, x_38); lean_ctor_set_float(x_41, sizeof(void*)*2 + 8, x_38); lean_ctor_set_uint8(x_41, sizeof(void*)*2 + 16, x_39); -x_42 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__1; +x_42 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__1; x_43 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_43, 0, x_41); lean_ctor_set(x_43, 1, x_10); @@ -7530,7 +7854,7 @@ if (lean_is_exclusive(x_14)) { lean_dec_ref(x_14); x_61 = lean_box(0); } -x_62 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__0; +x_62 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__0; x_63 = 0; x_64 = l_Lean_Elab_Command_initFn___closed__2____x40_Lean_Elab_Structure___hyg_106_; x_65 = lean_alloc_ctor(0, 2, 17); @@ -7539,7 +7863,7 @@ lean_ctor_set(x_65, 1, x_64); lean_ctor_set_float(x_65, sizeof(void*)*2, x_62); lean_ctor_set_float(x_65, sizeof(void*)*2 + 8, x_62); lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 16, x_63); -x_66 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__1; +x_66 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__1; x_67 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_67, 0, x_65); lean_ctor_set(x_67, 1, x_10); @@ -7634,7 +7958,7 @@ if (lean_is_exclusive(x_14)) { lean_dec_ref(x_14); x_88 = lean_box(0); } -x_89 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__0; +x_89 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__0; x_90 = 0; x_91 = l_Lean_Elab_Command_initFn___closed__2____x40_Lean_Elab_Structure___hyg_106_; x_92 = lean_alloc_ctor(0, 2, 17); @@ -7643,7 +7967,7 @@ lean_ctor_set(x_92, 1, x_91); lean_ctor_set_float(x_92, sizeof(void*)*2, x_89); lean_ctor_set_float(x_92, sizeof(void*)*2 + 8, x_89); lean_ctor_set_uint8(x_92, sizeof(void*)*2 + 16, x_90); -x_93 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__1; +x_93 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__1; x_94 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_94, 0, x_92); lean_ctor_set(x_94, 1, x_10); @@ -7697,15 +8021,15 @@ return x_103; } } } -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21(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_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23(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_10; -x_10 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg(x_1, x_2, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg(x_1, x_2, x_5, x_6, x_7, x_8, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__22___redArg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__24___redArg(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -7730,15 +8054,15 @@ return x_6; } } } -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__22(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__24(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__22___redArg(x_2, x_4); +x_5 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__24___redArg(x_2, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__23(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_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__25(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: { if (lean_obj_tag(x_1) == 0) @@ -7764,7 +8088,7 @@ x_14 = lean_ctor_get(x_11, 1); lean_inc(x_14); lean_dec(x_11); lean_inc(x_13); -x_15 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg(x_13, x_6, x_8); +x_15 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__22___redArg(x_13, x_6, x_8); x_16 = lean_ctor_get(x_15, 0); lean_inc(x_16); x_17 = lean_unbox(x_16); @@ -7790,7 +8114,7 @@ lean_dec_ref(x_15); x_21 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_21, 0, x_14); x_22 = l_Lean_MessageData_ofFormat(x_21); -x_23 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg(x_13, x_22, x_4, x_5, x_6, x_7, x_20); +x_23 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg(x_13, x_22, x_4, x_5, x_6, x_7, x_20); x_24 = lean_ctor_get(x_23, 1); lean_inc(x_24); lean_dec_ref(x_23); @@ -7801,7 +8125,7 @@ goto _start; } } } -static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__0() { +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__0() { _start: { lean_object* x_1; @@ -7809,7 +8133,7 @@ x_1 = lean_mk_string_unchecked("runtime", 7, 7); return x_1; } } -static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__1() { +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__1() { _start: { lean_object* x_1; @@ -7817,17 +8141,17 @@ x_1 = lean_mk_string_unchecked("maxRecDepth", 11, 11); return x_1; } } -static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__2() { +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__1; -x_2 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__0; +x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__1; +x_2 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__0; x_3 = l_Lean_Name_mkStr2(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__3() { +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__3() { _start: { lean_object* x_1; @@ -7835,42 +8159,42 @@ x_1 = lean_mk_string_unchecked("maximum recursion depth has been reached\nuse `s return x_1; } } -static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__4() { +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__3; +x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__3; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__5() { +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__4; +x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__4; x_2 = l_Lean_MessageData_ofFormat(x_1); return x_2; } } -static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__6() { +static lean_object* _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__5; -x_2 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__2; +x_1 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__5; +x_2 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__2; x_3 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_3 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__6; +x_3 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__6; x_4 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_3); @@ -7880,15 +8204,15 @@ lean_ctor_set(x_5, 1, x_2); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24(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_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26(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_10; -x_10 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg(x_2, x_9); +x_10 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg(x_2, x_9); return x_10; } } -static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25___redArg___closed__0() { +static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27___redArg___closed__0() { _start: { lean_object* x_1; @@ -7896,38 +8220,38 @@ x_1 = l_Lean_Elab_unsupportedSyntaxExceptionId; return x_1; } } -static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25___redArg___closed__1() { +static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27___redArg___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25___redArg___closed__0; +x_2 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27___redArg___closed__0; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25___redArg(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27___redArg(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25___redArg___closed__1; +x_2 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27___redArg___closed__1; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25(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_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25___redArg(x_8); +x_9 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27___redArg(x_8); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -7985,7 +8309,7 @@ x_17 = !lean_is_exclusive(x_15); if (x_17 == 0) { lean_object* x_18; -x_18 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__22___redArg(x_15, x_16); +x_18 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__24___redArg(x_15, x_16); lean_dec_ref(x_15); return x_18; } @@ -7997,7 +8321,7 @@ lean_inc(x_19); lean_dec(x_15); x_20 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_20, 0, x_19); -x_21 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__22___redArg(x_20, x_16); +x_21 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__24___redArg(x_20, x_16); lean_dec_ref(x_20); return x_21; } @@ -8015,7 +8339,7 @@ lean_object* x_24; lean_object* x_25; x_24 = lean_ctor_get(x_15, 0); lean_ctor_set(x_6, 0, x_24); lean_ctor_set(x_15, 0, x_6); -x_25 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__22___redArg(x_15, x_22); +x_25 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__24___redArg(x_15, x_22); lean_dec_ref(x_15); return x_25; } @@ -8028,7 +8352,7 @@ lean_dec(x_15); lean_ctor_set(x_6, 0, x_26); x_27 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_27, 0, x_6); -x_28 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__22___redArg(x_27, x_22); +x_28 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__24___redArg(x_27, x_22); lean_dec_ref(x_27); return x_28; } @@ -8064,7 +8388,7 @@ if (lean_is_scalar(x_33)) { x_34 = x_33; } lean_ctor_set(x_34, 0, x_32); -x_35 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__22___redArg(x_34, x_31); +x_35 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__24___redArg(x_34, x_31); lean_dec_ref(x_34); return x_35; } @@ -8091,7 +8415,7 @@ if (lean_is_scalar(x_38)) { x_40 = x_38; } lean_ctor_set(x_40, 0, x_39); -x_41 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__22___redArg(x_40, x_36); +x_41 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__24___redArg(x_40, x_36); lean_dec_ref(x_40); return x_41; } @@ -8122,7 +8446,7 @@ return x_45; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; uint8_t x_6; lean_object* x_7; lean_object* x_8; @@ -8135,7 +8459,7 @@ lean_ctor_set(x_8, 1, x_4); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -8145,7 +8469,7 @@ lean_ctor_set(x_4, 1, x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; lean_object* x_8; @@ -8156,7 +8480,7 @@ lean_ctor_set(x_8, 1, x_6); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__4(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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__4(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; @@ -8167,7 +8491,7 @@ lean_ctor_set(x_8, 1, x_6); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg(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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg(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; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; @@ -8203,23 +8527,23 @@ x_23 = lean_ctor_get(x_21, 1); lean_inc(x_23); lean_dec(x_21); lean_inc_ref(x_12); -x_24 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___boxed), 4, 1); +x_24 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__0___boxed), 4, 1); lean_closure_set(x_24, 0, x_12); lean_inc_ref(x_12); -x_25 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__1___boxed), 4, 1); +x_25 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__1___boxed), 4, 1); lean_closure_set(x_25, 0, x_12); lean_inc(x_16); -x_26 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__2___boxed), 3, 1); +x_26 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__2___boxed), 3, 1); lean_closure_set(x_26, 0, x_16); lean_inc(x_17); lean_inc(x_16); lean_inc_ref(x_12); -x_27 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__3___boxed), 6, 3); +x_27 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__3___boxed), 6, 3); lean_closure_set(x_27, 0, x_12); lean_closure_set(x_27, 1, x_16); lean_closure_set(x_27, 2, x_17); lean_inc_ref(x_12); -x_28 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__4___boxed), 6, 3); +x_28 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__4___boxed), 6, 3); lean_closure_set(x_28, 0, x_12); lean_closure_set(x_28, 1, x_16); lean_closure_set(x_28, 2, x_17); @@ -8273,7 +8597,7 @@ x_44 = lean_ctor_get(x_43, 1); lean_inc(x_44); lean_dec_ref(x_43); x_45 = l_List_reverse___redArg(x_37); -x_46 = l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__23(x_45, x_2, x_3, x_4, x_5, x_6, x_7, x_44); +x_46 = l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__25(x_45, x_2, x_3, x_4, x_5, x_6, x_7, x_44); lean_dec_ref(x_6); lean_dec_ref(x_2); x_47 = !lean_is_exclusive(x_46); @@ -8332,7 +8656,7 @@ x_61 = lean_ctor_get(x_60, 1); lean_inc(x_61); lean_dec_ref(x_60); x_62 = l_List_reverse___redArg(x_37); -x_63 = l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__23(x_62, x_2, x_3, x_4, x_5, x_6, x_7, x_61); +x_63 = l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__25(x_62, x_2, x_3, x_4, x_5, x_6, x_7, x_61); lean_dec_ref(x_6); lean_dec_ref(x_2); x_64 = lean_ctor_get(x_63, 1); @@ -8369,7 +8693,7 @@ lean_inc(x_68); x_69 = lean_ctor_get(x_67, 1); lean_inc_ref(x_69); lean_dec_ref(x_67); -x_70 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__3; +x_70 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__3; x_71 = lean_string_dec_eq(x_69, x_70); if (x_71 == 0) { @@ -8387,7 +8711,7 @@ lean_object* x_75; lean_dec_ref(x_69); lean_dec_ref(x_6); lean_dec_ref(x_2); -x_75 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg(x_68, x_22); +x_75 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg(x_68, x_22); return x_75; } } @@ -8396,7 +8720,7 @@ else lean_object* x_76; lean_dec_ref(x_6); lean_dec_ref(x_2); -x_76 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25___redArg(x_22); +x_76 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27___redArg(x_22); return x_76; } } @@ -8413,23 +8737,23 @@ x_79 = lean_ctor_get(x_77, 1); lean_inc(x_79); lean_dec(x_77); lean_inc_ref(x_12); -x_80 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___boxed), 4, 1); +x_80 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__0___boxed), 4, 1); lean_closure_set(x_80, 0, x_12); lean_inc_ref(x_12); -x_81 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__1___boxed), 4, 1); +x_81 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__1___boxed), 4, 1); lean_closure_set(x_81, 0, x_12); lean_inc(x_16); -x_82 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__2___boxed), 3, 1); +x_82 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__2___boxed), 3, 1); lean_closure_set(x_82, 0, x_16); lean_inc(x_17); lean_inc(x_16); lean_inc_ref(x_12); -x_83 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__3___boxed), 6, 3); +x_83 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__3___boxed), 6, 3); lean_closure_set(x_83, 0, x_12); lean_closure_set(x_83, 1, x_16); lean_closure_set(x_83, 2, x_17); lean_inc_ref(x_12); -x_84 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__4___boxed), 6, 3); +x_84 = lean_alloc_closure((void*)(l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__4___boxed), 6, 3); lean_closure_set(x_84, 0, x_12); lean_closure_set(x_84, 1, x_16); lean_closure_set(x_84, 2, x_17); @@ -8522,7 +8846,7 @@ x_109 = lean_ctor_get(x_108, 1); lean_inc(x_109); lean_dec_ref(x_108); x_110 = l_List_reverse___redArg(x_94); -x_111 = l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__23(x_110, x_2, x_3, x_4, x_5, x_6, x_7, x_109); +x_111 = l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__25(x_110, x_2, x_3, x_4, x_5, x_6, x_7, x_109); lean_dec_ref(x_6); lean_dec_ref(x_2); x_112 = lean_ctor_get(x_111, 1); @@ -8558,7 +8882,7 @@ lean_inc(x_116); x_117 = lean_ctor_get(x_115, 1); lean_inc_ref(x_117); lean_dec_ref(x_115); -x_118 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__3; +x_118 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__3; x_119 = lean_string_dec_eq(x_117, x_118); if (x_119 == 0) { @@ -8576,7 +8900,7 @@ lean_object* x_123; lean_dec_ref(x_117); lean_dec_ref(x_6); lean_dec_ref(x_2); -x_123 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg(x_116, x_78); +x_123 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg(x_116, x_78); return x_123; } } @@ -8585,22 +8909,22 @@ else lean_object* x_124; lean_dec_ref(x_6); lean_dec_ref(x_2); -x_124 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25___redArg(x_78); +x_124 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27___redArg(x_78); return x_124; } } } } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20(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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22(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_10; -x_10 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_10; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0() { _start: { lean_object* x_1; @@ -8608,7 +8932,7 @@ x_1 = lean_mk_string_unchecked("Parser", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__1() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__1() { _start: { lean_object* x_1; @@ -8616,7 +8940,7 @@ x_1 = lean_mk_string_unchecked("Term", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__2() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__2() { _start: { lean_object* x_1; @@ -8624,23 +8948,23 @@ x_1 = lean_mk_string_unchecked("byTactic", 8, 8); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__3() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__2; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__1; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__2; +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__1; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_4 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -LEAN_EXPORT uint8_t l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0(lean_object* x_1) { +LEAN_EXPORT uint8_t l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__3; +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__3; x_3 = lean_name_eq(x_1, x_2); if (x_3 == 0) { @@ -8656,7 +8980,7 @@ return x_5; } } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__0() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__0() { _start: { lean_object* x_1; @@ -8664,16 +8988,16 @@ x_1 = lean_mk_string_unchecked("Unknown attribute `[", 20, 20); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__1() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__0; +x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__2() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__2() { _start: { lean_object* x_1; @@ -8681,16 +9005,16 @@ x_1 = lean_mk_string_unchecked("]`", 2, 2); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__3() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__2; +x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__2; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; uint8_t x_12; @@ -8712,12 +9036,12 @@ lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean lean_dec_ref(x_16); lean_free_object(x_11); lean_dec(x_2); -x_17 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__1; +x_17 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__1; x_18 = l_Lean_MessageData_ofName(x_3); x_19 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_19, 0, x_17); lean_ctor_set(x_19, 1, x_18); -x_20 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__3; +x_20 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__3; x_21 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_21, 0, x_19); lean_ctor_set(x_21, 1, x_20); @@ -8755,12 +9079,12 @@ if (lean_obj_tag(x_27) == 0) 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_dec_ref(x_27); lean_dec(x_2); -x_28 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__1; +x_28 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__1; x_29 = l_Lean_MessageData_ofName(x_3); x_30 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_30, 0, x_28); lean_ctor_set(x_30, 1, x_29); -x_31 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__3; +x_31 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__3; x_32 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_32, 0, x_30); lean_ctor_set(x_32, 1, x_31); @@ -8784,7 +9108,7 @@ return x_35; } } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__0() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__0() { _start: { lean_object* x_1; @@ -8792,7 +9116,7 @@ x_1 = lean_mk_string_unchecked("Attr", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__1() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__1() { _start: { lean_object* x_1; @@ -8800,19 +9124,19 @@ x_1 = lean_mk_string_unchecked("simple", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__2() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__1; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__0; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__1; +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_4 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__3() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__3() { _start: { lean_object* x_1; @@ -8820,16 +9144,16 @@ x_1 = lean_mk_string_unchecked("Unknown attribute", 17, 17); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__4() { +static lean_object* _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__3; +x_1 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__3; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20(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_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22(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; lean_object* x_10; lean_object* x_11; lean_object* x_12; @@ -8839,7 +9163,7 @@ x_11 = lean_alloc_closure((void*)(l_Lean_Elab_toAttributeKind___boxed), 3, 1); lean_closure_set(x_11, 0, x_10); lean_inc_ref(x_6); lean_inc_ref(x_2); -x_12 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_12 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8); if (lean_obj_tag(x_12) == 0) { 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; @@ -8848,7 +9172,7 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_12, 1); lean_inc(x_14); lean_dec_ref(x_12); -x_15 = lean_alloc_closure((void*)(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___boxed), 1, 0); +x_15 = lean_alloc_closure((void*)(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___boxed), 1, 0); x_16 = lean_unsigned_to_nat(1u); x_17 = l_Lean_Syntax_getArg(x_1, x_16); x_18 = lean_alloc_closure((void*)(l_Lean_expandMacros), 4, 2); @@ -8856,7 +9180,7 @@ lean_closure_set(x_18, 0, x_17); lean_closure_set(x_18, 1, x_15); lean_inc_ref(x_6); lean_inc_ref(x_2); -x_19 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg(x_18, x_2, x_3, x_4, x_5, x_6, x_7, x_14); +x_19 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg(x_18, x_2, x_3, x_4, x_5, x_6, x_7, x_14); if (lean_obj_tag(x_19) == 0) { lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; @@ -8867,7 +9191,7 @@ lean_inc(x_21); lean_dec_ref(x_19); lean_inc(x_20); x_22 = l_Lean_Syntax_getKind(x_20); -x_23 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__2; +x_23 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__2; x_24 = lean_name_eq(x_22, x_23); if (x_24 == 0) { @@ -8881,7 +9205,7 @@ x_26 = lean_box(0); x_27 = l_Lean_Name_str___override(x_26, x_25); x_28 = lean_unbox(x_13); lean_dec(x_13); -x_29 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1(x_28, x_20, x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_21); +x_29 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1(x_28, x_20, x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_21); lean_dec_ref(x_6); return x_29; } @@ -8890,7 +9214,7 @@ else lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_22); lean_dec(x_13); -x_30 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__4; +x_30 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__4; x_31 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg(x_20, x_30, x_2, x_3, x_4, x_5, x_6, x_7, x_21); lean_dec(x_20); x_32 = !lean_is_exclusive(x_31); @@ -8923,7 +9247,7 @@ lean_dec(x_36); x_38 = lean_erase_macro_scopes(x_37); x_39 = lean_unbox(x_13); lean_dec(x_13); -x_40 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1(x_39, x_20, x_38, x_2, x_3, x_4, x_5, x_6, x_7, x_21); +x_40 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1(x_39, x_20, x_38, x_2, x_3, x_4, x_5, x_6, x_7, x_21); lean_dec_ref(x_6); return x_40; } @@ -8980,7 +9304,7 @@ return x_48; } } } -static lean_object* _init_l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__0() { +static lean_object* _init_l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__0() { _start: { lean_object* x_1; @@ -8988,7 +9312,7 @@ x_1 = lean_mk_string_unchecked("trace", 5, 5); return x_1; } } -static lean_object* _init_l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__1() { +static lean_object* _init_l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__1() { _start: { lean_object* x_1; @@ -8996,7 +9320,7 @@ x_1 = lean_mk_string_unchecked("Tactic", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__2() { +static lean_object* _init_l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__2() { _start: { lean_object* x_1; @@ -9004,7 +9328,7 @@ x_1 = lean_mk_string_unchecked("unsolvedGoals", 13, 13); return x_1; } } -static lean_object* _init_l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__3() { +static lean_object* _init_l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__3() { _start: { lean_object* x_1; @@ -9012,7 +9336,7 @@ x_1 = lean_mk_string_unchecked("synthPlaceholder", 16, 16); return x_1; } } -LEAN_EXPORT uint8_t l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0(uint8_t x_1, uint8_t x_2, lean_object* x_3) { +LEAN_EXPORT uint8_t l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0(uint8_t x_1, uint8_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 1) @@ -9024,7 +9348,7 @@ case 0: { lean_object* x_5; lean_object* x_6; uint8_t x_7; x_5 = lean_ctor_get(x_3, 1); -x_6 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__0; +x_6 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__0; x_7 = lean_string_dec_eq(x_5, x_6); if (x_7 == 0) { @@ -9049,7 +9373,7 @@ x_12 = lean_string_dec_eq(x_10, x_11); if (x_12 == 0) { lean_object* x_13; uint8_t x_14; -x_13 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__1; +x_13 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__1; x_14 = lean_string_dec_eq(x_10, x_13); if (x_14 == 0) { @@ -9058,7 +9382,7 @@ return x_1; else { lean_object* x_15; uint8_t x_16; -x_15 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__2; +x_15 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__2; x_16 = lean_string_dec_eq(x_9, x_15); if (x_16 == 0) { @@ -9073,7 +9397,7 @@ return x_2; else { lean_object* x_17; uint8_t x_18; -x_17 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__3; +x_17 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__3; x_18 = lean_string_dec_eq(x_9, x_17); if (x_18 == 0) { @@ -9102,7 +9426,7 @@ return x_1; } } } -static lean_object* _init_l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___closed__0() { +static lean_object* _init_l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___closed__0() { _start: { lean_object* x_1; @@ -9110,10 +9434,10 @@ x_1 = l_Lean_warningAsError; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t 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_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_81; uint8_t x_82; lean_object* x_83; lean_object* x_84; uint8_t x_85; uint8_t x_86; lean_object* x_87; lean_object* x_88; lean_object* x_110; uint8_t x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; uint8_t x_115; uint8_t x_116; lean_object* x_117; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; uint8_t x_125; uint8_t x_126; uint8_t x_127; uint8_t x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; uint8_t x_138; uint8_t x_139; uint8_t x_140; uint8_t x_142; uint8_t x_158; +lean_object* x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_81; uint8_t x_82; uint8_t x_83; lean_object* x_84; lean_object* x_85; uint8_t x_86; lean_object* x_87; lean_object* x_88; lean_object* x_110; uint8_t x_111; uint8_t x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; uint8_t x_116; lean_object* x_117; lean_object* x_121; lean_object* x_122; uint8_t x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; uint8_t x_127; uint8_t x_133; lean_object* x_134; uint8_t x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; uint8_t x_139; uint8_t x_140; uint8_t x_142; uint8_t x_158; x_133 = 2; x_158 = l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(x_3, x_133); if (x_158 == 0) @@ -9153,14 +9477,14 @@ lean_ctor_set(x_20, 1, x_25); lean_ctor_set(x_20, 0, x_24); x_28 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_28, 0, x_20); -lean_ctor_set(x_28, 1, x_15); +lean_ctor_set(x_28, 1, x_13); x_29 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_29, 0, x_13); +lean_ctor_set(x_29, 0, x_15); lean_ctor_set(x_29, 1, x_12); -lean_ctor_set(x_29, 2, x_16); -lean_ctor_set(x_29, 3, x_10); +lean_ctor_set(x_29, 2, x_10); +lean_ctor_set(x_29, 3, x_14); lean_ctor_set(x_29, 4, x_28); -lean_ctor_set_uint8(x_29, sizeof(void*)*5, x_14); +lean_ctor_set_uint8(x_29, sizeof(void*)*5, x_16); lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 1, x_11); lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 2, x_4); x_30 = l_Lean_MessageLog_add(x_29, x_27); @@ -9215,14 +9539,14 @@ lean_ctor_set(x_20, 1, x_25); lean_ctor_set(x_20, 0, x_24); x_47 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_47, 0, x_20); -lean_ctor_set(x_47, 1, x_15); +lean_ctor_set(x_47, 1, x_13); x_48 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_48, 0, x_13); +lean_ctor_set(x_48, 0, x_15); lean_ctor_set(x_48, 1, x_12); -lean_ctor_set(x_48, 2, x_16); -lean_ctor_set(x_48, 3, x_10); +lean_ctor_set(x_48, 2, x_10); +lean_ctor_set(x_48, 3, x_14); lean_ctor_set(x_48, 4, x_47); -lean_ctor_set_uint8(x_48, sizeof(void*)*5, x_14); +lean_ctor_set_uint8(x_48, sizeof(void*)*5, x_16); lean_ctor_set_uint8(x_48, sizeof(void*)*5 + 1, x_11); lean_ctor_set_uint8(x_48, sizeof(void*)*5 + 2, x_4); x_49 = l_Lean_MessageLog_add(x_48, x_44); @@ -9309,14 +9633,14 @@ lean_ctor_set(x_70, 0, x_58); lean_ctor_set(x_70, 1, x_59); x_71 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_71, 0, x_70); -lean_ctor_set(x_71, 1, x_15); +lean_ctor_set(x_71, 1, x_13); x_72 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_72, 0, x_13); +lean_ctor_set(x_72, 0, x_15); lean_ctor_set(x_72, 1, x_12); -lean_ctor_set(x_72, 2, x_16); -lean_ctor_set(x_72, 3, x_10); +lean_ctor_set(x_72, 2, x_10); +lean_ctor_set(x_72, 3, x_14); lean_ctor_set(x_72, 4, x_71); -lean_ctor_set_uint8(x_72, sizeof(void*)*5, x_14); +lean_ctor_set_uint8(x_72, sizeof(void*)*5, x_16); lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 1, x_11); lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 2, x_4); x_73 = l_Lean_MessageLog_add(x_72, x_66); @@ -9367,25 +9691,25 @@ if (x_91 == 0) lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; x_92 = lean_ctor_get(x_90, 0); x_93 = lean_ctor_get(x_90, 1); -lean_inc_ref(x_84); -x_94 = l_Lean_FileMap_toPosition(x_84, x_87); -lean_dec(x_87); -x_95 = l_Lean_FileMap_toPosition(x_84, x_88); +lean_inc_ref(x_87); +x_94 = l_Lean_FileMap_toPosition(x_87, x_84); +lean_dec(x_84); +x_95 = l_Lean_FileMap_toPosition(x_87, x_88); lean_dec(x_88); x_96 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_96, 0, x_95); x_97 = l_Lean_Elab_Command_initFn___closed__2____x40_Lean_Elab_Structure___hyg_106_; -if (x_85 == 0) +if (x_82 == 0) { lean_free_object(x_90); lean_dec_ref(x_81); -x_10 = x_97; -x_11 = x_82; +x_10 = x_96; +x_11 = x_83; x_12 = x_94; -x_13 = x_83; -x_14 = x_86; -x_15 = x_92; -x_16 = x_96; +x_13 = x_92; +x_14 = x_97; +x_15 = x_85; +x_16 = x_86; x_17 = x_7; x_18 = x_8; x_19 = x_93; @@ -9402,7 +9726,7 @@ lean_object* x_99; lean_dec_ref(x_96); lean_dec_ref(x_94); lean_dec(x_92); -lean_dec_ref(x_83); +lean_dec_ref(x_85); lean_dec_ref(x_7); x_99 = lean_box(0); lean_ctor_set(x_90, 0, x_99); @@ -9411,13 +9735,13 @@ return x_90; else { lean_free_object(x_90); -x_10 = x_97; -x_11 = x_82; +x_10 = x_96; +x_11 = x_83; x_12 = x_94; -x_13 = x_83; -x_14 = x_86; -x_15 = x_92; -x_16 = x_96; +x_13 = x_92; +x_14 = x_97; +x_15 = x_85; +x_16 = x_86; x_17 = x_7; x_18 = x_8; x_19 = x_93; @@ -9433,24 +9757,24 @@ x_101 = lean_ctor_get(x_90, 1); lean_inc(x_101); lean_inc(x_100); lean_dec(x_90); -lean_inc_ref(x_84); -x_102 = l_Lean_FileMap_toPosition(x_84, x_87); -lean_dec(x_87); -x_103 = l_Lean_FileMap_toPosition(x_84, x_88); +lean_inc_ref(x_87); +x_102 = l_Lean_FileMap_toPosition(x_87, x_84); +lean_dec(x_84); +x_103 = l_Lean_FileMap_toPosition(x_87, x_88); lean_dec(x_88); x_104 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_104, 0, x_103); x_105 = l_Lean_Elab_Command_initFn___closed__2____x40_Lean_Elab_Structure___hyg_106_; -if (x_85 == 0) +if (x_82 == 0) { lean_dec_ref(x_81); -x_10 = x_105; -x_11 = x_82; +x_10 = x_104; +x_11 = x_83; x_12 = x_102; -x_13 = x_83; -x_14 = x_86; -x_15 = x_100; -x_16 = x_104; +x_13 = x_100; +x_14 = x_105; +x_15 = x_85; +x_16 = x_86; x_17 = x_7; x_18 = x_8; x_19 = x_101; @@ -9467,7 +9791,7 @@ lean_object* x_107; lean_object* x_108; lean_dec_ref(x_104); lean_dec_ref(x_102); lean_dec(x_100); -lean_dec_ref(x_83); +lean_dec_ref(x_85); lean_dec_ref(x_7); x_107 = lean_box(0); x_108 = lean_alloc_ctor(0, 2, 0); @@ -9477,13 +9801,13 @@ return x_108; } else { -x_10 = x_105; -x_11 = x_82; +x_10 = x_104; +x_11 = x_83; x_12 = x_102; -x_13 = x_83; -x_14 = x_86; -x_15 = x_100; -x_16 = x_104; +x_13 = x_100; +x_14 = x_105; +x_15 = x_85; +x_16 = x_86; x_17 = x_7; x_18 = x_8; x_19 = x_101; @@ -9495,18 +9819,18 @@ goto block_80; block_120: { lean_object* x_118; -x_118 = l_Lean_Syntax_getTailPos_x3f(x_114, x_116); -lean_dec(x_114); +x_118 = l_Lean_Syntax_getTailPos_x3f(x_113, x_116); +lean_dec(x_113); if (lean_obj_tag(x_118) == 0) { lean_inc(x_117); x_81 = x_110; x_82 = x_111; -x_83 = x_113; -x_84 = x_112; -x_85 = x_115; +x_83 = x_112; +x_84 = x_117; +x_85 = x_114; x_86 = x_116; -x_87 = x_117; +x_87 = x_115; x_88 = x_117; goto block_109; } @@ -9518,11 +9842,11 @@ lean_inc(x_119); lean_dec_ref(x_118); x_81 = x_110; x_82 = x_111; -x_83 = x_113; -x_84 = x_112; -x_85 = x_115; +x_83 = x_112; +x_84 = x_117; +x_85 = x_114; x_86 = x_116; -x_87 = x_117; +x_87 = x_115; x_88 = x_119; goto block_109; } @@ -9532,18 +9856,18 @@ block_132: lean_object* x_128; lean_object* x_129; x_128 = l_Lean_replaceRef(x_1, x_122); lean_dec(x_122); -x_129 = l_Lean_Syntax_getPos_x3f(x_128, x_126); +x_129 = l_Lean_Syntax_getPos_x3f(x_128, x_125); if (lean_obj_tag(x_129) == 0) { lean_object* x_130; x_130 = lean_unsigned_to_nat(0u); x_110 = x_121; -x_111 = x_127; -x_112 = x_124; -x_113 = x_123; -x_114 = x_128; -x_115 = x_125; -x_116 = x_126; +x_111 = x_123; +x_112 = x_127; +x_113 = x_128; +x_114 = x_124; +x_115 = x_126; +x_116 = x_125; x_117 = x_130; goto block_120; } @@ -9554,12 +9878,12 @@ x_131 = lean_ctor_get(x_129, 0); lean_inc(x_131); lean_dec_ref(x_129); x_110 = x_121; -x_111 = x_127; -x_112 = x_124; -x_113 = x_123; -x_114 = x_128; -x_115 = x_125; -x_116 = x_126; +x_111 = x_123; +x_112 = x_127; +x_113 = x_128; +x_114 = x_124; +x_115 = x_126; +x_116 = x_125; x_117 = x_131; goto block_120; } @@ -9568,23 +9892,23 @@ block_141: { if (x_140 == 0) { -x_121 = x_135; +x_121 = x_137; x_122 = x_134; -x_123 = x_137; +x_123 = x_135; x_124 = x_136; -x_125 = x_138; -x_126 = x_139; +x_125 = x_139; +x_126 = x_138; x_127 = x_3; goto block_132; } else { -x_121 = x_135; +x_121 = x_137; x_122 = x_134; -x_123 = x_137; +x_123 = x_135; x_124 = x_136; -x_125 = x_138; -x_126 = x_139; +x_125 = x_139; +x_126 = x_138; x_127 = x_133; goto block_132; } @@ -9605,7 +9929,7 @@ lean_inc(x_146); x_147 = lean_ctor_get_uint8(x_7, sizeof(void*)*13 + 1); x_148 = lean_box(x_142); x_149 = lean_box(x_147); -x_150 = lean_alloc_closure((void*)(l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___boxed), 3, 2); +x_150 = lean_alloc_closure((void*)(l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___boxed), 3, 2); lean_closure_set(x_150, 0, x_148); lean_closure_set(x_150, 1, x_149); x_151 = 1; @@ -9614,10 +9938,10 @@ if (x_152 == 0) { lean_dec(x_145); x_134 = x_146; -x_135 = x_150; -x_136 = x_144; -x_137 = x_143; -x_138 = x_147; +x_135 = x_147; +x_136 = x_143; +x_137 = x_150; +x_138 = x_144; x_139 = x_142; x_140 = x_152; goto block_141; @@ -9625,14 +9949,14 @@ goto block_141; else { lean_object* x_153; uint8_t x_154; -x_153 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___closed__0; +x_153 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___closed__0; x_154 = l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2_spec__2(x_145, x_153); lean_dec(x_145); x_134 = x_146; -x_135 = x_150; -x_136 = x_144; -x_137 = x_143; -x_138 = x_147; +x_135 = x_147; +x_136 = x_143; +x_137 = x_150; +x_138 = x_144; x_139 = x_142; x_140 = x_154; goto block_141; @@ -9652,46 +9976,46 @@ return x_156; } } } -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t 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_EXPORT lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg(x_1, x_2, x_3, x_4, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg(x_1, x_2, x_3, x_4, x_7, x_8, x_9, x_10, x_11); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28(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_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30(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_10; uint8_t x_11; lean_object* x_12; x_10 = 2; x_11 = 0; -x_12 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg(x_1, x_2, x_10, x_11, x_5, x_6, x_7, x_8, x_9); +x_12 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg(x_1, x_2, x_10, x_11, x_5, x_6, x_7, x_8, x_9); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__30_spec__30(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__32_spec__32(lean_object* x_1, uint8_t 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_object* x_12; x_11 = lean_ctor_get(x_8, 5); lean_inc(x_11); -x_12 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg(x_11, x_1, x_2, x_3, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg(x_11, x_1, x_2, x_3, x_6, x_7, x_8, x_9, x_10); lean_dec(x_11); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__30(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_EXPORT lean_object* l_Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__32(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: { uint8_t x_9; uint8_t x_10; lean_object* x_11; x_9 = 2; x_10 = 0; -x_11 = l_Lean_log___at___Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__30_spec__30(x_1, x_9, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_11 = l_Lean_log___at___Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__32_spec__32(x_1, x_9, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_11; } } -static lean_object* _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28___closed__0() { +static lean_object* _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30___closed__0() { _start: { lean_object* x_1; @@ -9699,16 +10023,16 @@ x_1 = lean_mk_string_unchecked("internal exception: ", 20, 20); return x_1; } } -static lean_object* _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28___closed__1() { +static lean_object* _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28___closed__0; +x_1 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28(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_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30(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: { if (lean_obj_tag(x_1) == 0) @@ -9719,7 +10043,7 @@ lean_inc(x_9); x_10 = lean_ctor_get(x_1, 1); lean_inc_ref(x_10); lean_dec_ref(x_1); -x_11 = l_Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28(x_9, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_11 = l_Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30(x_9, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_9); return x_11; } @@ -9758,7 +10082,7 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_14, 1); lean_inc(x_16); lean_dec_ref(x_14); -x_17 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28___closed__1; +x_17 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30___closed__1; x_18 = l_Lean_MessageData_ofName(x_15); x_19 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_19, 0, x_17); @@ -9767,7 +10091,7 @@ x_20 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePr x_21 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_21, 0, x_19); lean_ctor_set(x_21, 1, x_20); -x_22 = l_Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__30(x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_16); +x_22 = l_Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__32(x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_16); return x_22; } else @@ -9831,7 +10155,7 @@ return x_39; } } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__33(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__35(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; uint8_t x_18; @@ -9897,7 +10221,7 @@ lean_ctor_set(x_37, 12, x_34); lean_ctor_set_uint8(x_37, sizeof(void*)*13, x_31); lean_ctor_set_uint8(x_37, sizeof(void*)*13 + 1, x_33); lean_inc_ref(x_5); -x_38 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20(x_35, x_5, x_6, x_7, x_8, x_37, x_10, x_11); +x_38 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22(x_35, x_5, x_6, x_7, x_8, x_37, x_10, x_11); lean_dec(x_35); if (lean_obj_tag(x_38) == 0) { @@ -9947,7 +10271,7 @@ if (x_45 == 0) lean_object* x_46; lean_dec(x_44); lean_inc_ref(x_9); -x_46 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28(x_42, x_5, x_6, x_7, x_8, x_9, x_10, x_43); +x_46 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30(x_42, x_5, x_6, x_7, x_8, x_9, x_10, x_43); if (lean_obj_tag(x_46) == 0) { lean_object* x_47; @@ -10014,7 +10338,7 @@ goto _start; } } } -static lean_object* _init_l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20___closed__0() { +static lean_object* _init_l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22___closed__0() { _start: { lean_object* x_1; lean_object* x_2; @@ -10023,18 +10347,18 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20(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_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22(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; size_t x_10; size_t x_11; lean_object* x_12; -x_9 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20___closed__0; +x_9 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22___closed__0; x_10 = lean_array_size(x_1); x_11 = 0; -x_12 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__33(x_1, x_10, x_11, x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_12 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__35(x_1, x_10, x_11, x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20(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_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22(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; lean_object* x_10; lean_object* x_11; lean_object* x_12; @@ -10042,12 +10366,12 @@ x_9 = lean_unsigned_to_nat(1u); x_10 = l_Lean_Syntax_getArg(x_1, x_9); x_11 = l_Lean_Syntax_getSepArgs(x_10); lean_dec(x_10); -x_12 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_12 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec_ref(x_11); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { _start: { uint8_t x_15; uint8_t x_19; @@ -10084,7 +10408,7 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___lam__1(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___lam__1(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_16; @@ -10093,7 +10417,7 @@ if (lean_obj_tag(x_16) == 0) { lean_object* x_17; lean_object* x_18; x_17 = lean_mk_empty_array_with_capacity(x_7); -x_18 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___lam__0(x_1, x_2, x_8, x_3, x_4, x_5, x_17, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_18 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___lam__0(x_1, x_2, x_8, x_3, x_4, x_5, x_17, x_9, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec_ref(x_13); lean_dec_ref(x_9); return x_18; @@ -10106,7 +10430,7 @@ lean_inc(x_19); lean_dec_ref(x_16); lean_inc_ref(x_13); lean_inc_ref(x_9); -x_20 = l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20(x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_20 = l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22(x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec(x_19); if (lean_obj_tag(x_20) == 0) { @@ -10116,7 +10440,7 @@ lean_inc(x_21); x_22 = lean_ctor_get(x_20, 1); lean_inc(x_22); lean_dec_ref(x_20); -x_23 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___lam__0(x_1, x_2, x_8, x_3, x_4, x_5, x_21, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +x_23 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___lam__0(x_1, x_2, x_8, x_3, x_4, x_5, x_21, x_9, x_10, x_11, x_12, x_13, x_14, x_22); lean_dec_ref(x_13); lean_dec_ref(x_9); return x_23; @@ -10150,7 +10474,7 @@ return x_27; } } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__0() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__0() { _start: { lean_object* x_1; @@ -10158,19 +10482,19 @@ x_1 = lean_mk_string_unchecked("private", 7, 7); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__1() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__0; +x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__0; x_2 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__13____x40_Lean_Elab_Structure___hyg_4_; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_4 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__2() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__2() { _start: { lean_object* x_1; @@ -10178,19 +10502,19 @@ x_1 = lean_mk_string_unchecked("protected", 9, 9); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__3() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__2; +x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__2; x_2 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__13____x40_Lean_Elab_Structure___hyg_4_; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_4 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__4() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__4() { _start: { lean_object* x_1; @@ -10198,19 +10522,19 @@ x_1 = lean_mk_string_unchecked("public", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__5() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__4; +x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__4; x_2 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__13____x40_Lean_Elab_Structure___hyg_4_; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_4 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__6() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__6() { _start: { lean_object* x_1; @@ -10218,16 +10542,16 @@ x_1 = lean_mk_string_unchecked("unexpected visibility modifier", 30, 30); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__7() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__6; +x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__6; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__8() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__8() { _start: { lean_object* x_1; @@ -10235,19 +10559,19 @@ x_1 = lean_mk_string_unchecked("partial", 7, 7); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__9() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__8; +x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__8; x_2 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__13____x40_Lean_Elab_Structure___hyg_4_; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_4 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__10() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__10() { _start: { lean_object* x_1; @@ -10255,22 +10579,22 @@ x_1 = lean_mk_string_unchecked("meta", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__11() { +static lean_object* _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__10; +x_1 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__10; x_2 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__13____x40_Lean_Elab_Structure___hyg_4_; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_4 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20(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_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22(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; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; uint8_t x_17; lean_object* x_18; lean_object* x_42; uint8_t x_43; uint8_t x_44; uint8_t x_51; lean_object* x_65; lean_object* x_66; uint8_t x_67; +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; uint8_t x_42; lean_object* x_43; uint8_t x_44; uint8_t x_51; lean_object* x_65; lean_object* x_66; uint8_t x_67; x_9 = lean_unsigned_to_nat(0u); x_10 = l_Lean_Syntax_getArg(x_1, x_9); x_11 = lean_unsigned_to_nat(1u); @@ -10286,7 +10610,7 @@ lean_object* x_68; lean_object* x_69; lean_object* x_70; uint8_t x_71; x_68 = l_Lean_Syntax_getArg(x_66, x_9); lean_dec(x_66); x_69 = l_Lean_Syntax_getKind(x_68); -x_70 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__11; +x_70 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__11; x_71 = lean_name_eq(x_69, x_70); lean_dec(x_69); if (x_71 == 0) @@ -10321,9 +10645,9 @@ if (lean_obj_tag(x_19) == 0) { uint8_t x_20; lean_object* x_21; x_20 = 0; -x_21 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___lam__1(x_1, x_18, x_16, x_17, x_15, x_12, x_9, x_20, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_21 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___lam__1(x_1, x_18, x_16, x_15, x_17, x_12, x_9, x_20, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_12); -lean_dec(x_15); +lean_dec(x_17); return x_21; } else @@ -10332,29 +10656,29 @@ lean_object* x_22; lean_object* x_23; uint8_t x_24; x_22 = lean_ctor_get(x_19, 0); lean_inc(x_22); lean_dec_ref(x_19); -x_23 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__1; +x_23 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__1; lean_inc(x_22); x_24 = l_Lean_Syntax_isOfKind(x_22, x_23); if (x_24 == 0) { lean_object* x_25; uint8_t x_26; -x_25 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__3; +x_25 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__3; lean_inc(x_22); x_26 = l_Lean_Syntax_isOfKind(x_22, x_25); if (x_26 == 0) { lean_object* x_27; uint8_t x_28; -x_27 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__5; +x_27 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__5; lean_inc(x_22); x_28 = l_Lean_Syntax_isOfKind(x_22, x_27); if (x_28 == 0) { lean_object* x_29; lean_object* x_30; uint8_t x_31; lean_dec(x_18); -lean_dec(x_15); +lean_dec(x_17); lean_dec(x_12); lean_dec(x_1); -x_29 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__7; +x_29 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__7; x_30 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg(x_22, x_29, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_22); x_31 = !lean_is_exclusive(x_30); @@ -10381,9 +10705,9 @@ else uint8_t x_35; lean_object* x_36; lean_dec(x_22); x_35 = 3; -x_36 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___lam__1(x_1, x_18, x_16, x_17, x_15, x_12, x_9, x_35, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_36 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___lam__1(x_1, x_18, x_16, x_15, x_17, x_12, x_9, x_35, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_12); -lean_dec(x_15); +lean_dec(x_17); return x_36; } } @@ -10392,9 +10716,9 @@ else uint8_t x_37; lean_object* x_38; lean_dec(x_22); x_37 = 1; -x_38 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___lam__1(x_1, x_18, x_16, x_17, x_15, x_12, x_9, x_37, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_38 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___lam__1(x_1, x_18, x_16, x_15, x_17, x_12, x_9, x_37, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_12); -lean_dec(x_15); +lean_dec(x_17); return x_38; } } @@ -10403,9 +10727,9 @@ else uint8_t x_39; lean_object* x_40; lean_dec(x_22); x_39 = 2; -x_40 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___lam__1(x_1, x_18, x_16, x_17, x_15, x_12, x_9, x_39, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_40 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___lam__1(x_1, x_18, x_16, x_15, x_17, x_12, x_9, x_39, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_12); -lean_dec(x_15); +lean_dec(x_17); return x_40; } } @@ -10419,9 +10743,9 @@ if (lean_obj_tag(x_45) == 0) { lean_object* x_46; x_46 = lean_box(0); -x_15 = x_42; -x_16 = x_43; -x_17 = x_44; +x_15 = x_44; +x_16 = x_42; +x_17 = x_43; x_18 = x_46; goto block_41; } @@ -10431,9 +10755,9 @@ uint8_t x_47; x_47 = !lean_is_exclusive(x_45); if (x_47 == 0) { -x_15 = x_42; -x_16 = x_43; -x_17 = x_44; +x_15 = x_44; +x_16 = x_42; +x_17 = x_43; x_18 = x_45; goto block_41; } @@ -10445,9 +10769,9 @@ lean_inc(x_48); lean_dec(x_45); x_49 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_49, 0, x_48); -x_15 = x_42; -x_16 = x_43; -x_17 = x_44; +x_15 = x_44; +x_16 = x_42; +x_17 = x_43; x_18 = x_49; goto block_41; } @@ -10467,15 +10791,15 @@ lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; x_57 = l_Lean_Syntax_getArg(x_55, x_9); lean_dec(x_55); x_58 = l_Lean_Syntax_getKind(x_57); -x_59 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__9; +x_59 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__9; x_60 = lean_name_eq(x_58, x_59); lean_dec(x_58); if (x_60 == 0) { uint8_t x_61; x_61 = 1; -x_42 = x_53; -x_43 = x_51; +x_42 = x_51; +x_43 = x_53; x_44 = x_61; goto block_50; } @@ -10483,8 +10807,8 @@ else { uint8_t x_62; x_62 = 0; -x_42 = x_53; -x_43 = x_51; +x_42 = x_51; +x_43 = x_53; x_44 = x_62; goto block_50; } @@ -10494,15 +10818,15 @@ else uint8_t x_63; lean_dec(x_55); x_63 = 2; -x_42 = x_53; -x_43 = x_51; +x_42 = x_51; +x_43 = x_53; x_44 = x_63; goto block_50; } } } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__37_spec__37(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t 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_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__39_spec__39(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t 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) { _start: { lean_object* x_15; lean_object* x_16; uint8_t x_21; @@ -10533,7 +10857,7 @@ x_26 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_26, 0, x_25); x_27 = l_Lean_MessageData_ofFormat(x_26); lean_inc_ref(x_12); -x_28 = l_Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__30(x_27, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_28 = l_Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__32(x_27, x_8, x_9, x_10, x_11, x_12, x_13, x_14); x_29 = lean_ctor_get(x_28, 1); lean_inc(x_29); lean_dec_ref(x_28); @@ -10571,7 +10895,7 @@ x_40 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_40, 0, x_30); x_41 = l_Lean_MessageData_ofFormat(x_40); lean_inc_ref(x_12); -x_42 = l_Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28(x_24, x_41, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_42 = l_Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30(x_24, x_41, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec_ref(x_24); x_43 = lean_ctor_get(x_42, 1); lean_inc(x_43); @@ -10606,7 +10930,7 @@ x_53 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_53, 0, x_30); x_54 = l_Lean_MessageData_ofFormat(x_53); lean_inc_ref(x_12); -x_55 = l_Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28(x_52, x_54, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_55 = l_Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30(x_52, x_54, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec_ref(x_52); x_56 = lean_ctor_get(x_55, 1); lean_inc(x_56); @@ -10629,7 +10953,7 @@ goto _start; } } } -LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__37(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_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__39(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; lean_object* x_10; lean_object* x_24; lean_object* x_25; lean_object* x_26; @@ -10673,7 +10997,7 @@ lean_dec(x_12); x_15 = lean_box(0); x_16 = lean_array_size(x_14); x_17 = 0; -x_18 = l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__37_spec__37(x_10, x_15, x_9, x_14, x_16, x_17, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_13); +x_18 = l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__39_spec__39(x_10, x_15, x_9, x_14, x_16, x_17, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_13); lean_dec(x_14); lean_dec_ref(x_9); lean_dec(x_10); @@ -10700,7 +11024,7 @@ return x_22; } } } -static lean_object* _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__39___closed__0() { +static lean_object* _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__41___closed__0() { _start: { lean_object* x_1; @@ -10708,16 +11032,16 @@ x_1 = lean_mk_string_unchecked("unexpected doc string", 21, 21); return x_1; } } -static lean_object* _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__39___closed__1() { +static lean_object* _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__41___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__39___closed__0; +x_1 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__41___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__39(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_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__41(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; lean_object* x_10; @@ -10771,7 +11095,7 @@ return x_25; 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 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__39___closed__1; +x_26 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__41___closed__1; x_27 = l_Lean_MessageData_ofSyntax(x_10); x_28 = l_Lean_indentD(x_27); x_29 = lean_alloc_ctor(7, 2, 0); @@ -10786,7 +11110,7 @@ return x_32; } } } -static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___lam__0___closed__0() { +static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___lam__0___closed__0() { _start: { lean_object* x_1; @@ -10794,16 +11118,16 @@ x_1 = l_Lean_docStringExt; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___lam__0(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_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_inc_ref(x_8); -x_11 = l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__37(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__39(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10); x_12 = lean_ctor_get(x_11, 1); lean_inc(x_12); lean_dec_ref(x_11); -x_13 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__39(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_12); +x_13 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__41(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; @@ -10825,10 +11149,10 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean x_20 = lean_ctor_get(x_17, 0); x_21 = lean_ctor_get(x_17, 5); lean_dec(x_21); -x_22 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___lam__0___closed__0; +x_22 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___lam__0___closed__0; x_23 = l_String_removeLeadingSpaces(x_14); x_24 = l_Lean_MapDeclarationExtension_insert___redArg(x_22, x_20, x_2, x_23); -x_25 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_25 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; lean_ctor_set(x_17, 5, x_25); lean_ctor_set(x_17, 0, x_24); x_26 = lean_st_ref_set(x_9, x_17, x_18); @@ -10847,7 +11171,7 @@ if (x_31 == 0) lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; x_32 = lean_ctor_get(x_29, 1); lean_dec(x_32); -x_33 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_33 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; lean_ctor_set(x_29, 1, x_33); x_34 = lean_st_ref_set(x_7, x_29, x_30); x_35 = !lean_is_exclusive(x_34); @@ -10885,7 +11209,7 @@ lean_inc(x_43); lean_inc(x_42); lean_inc(x_41); lean_dec(x_29); -x_45 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_45 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; x_46 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_46, 0, x_41); lean_ctor_set(x_46, 1, x_45); @@ -10934,10 +11258,10 @@ lean_inc(x_54); lean_inc(x_53); lean_inc(x_52); lean_dec(x_17); -x_60 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___lam__0___closed__0; +x_60 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___lam__0___closed__0; x_61 = l_String_removeLeadingSpaces(x_14); x_62 = l_Lean_MapDeclarationExtension_insert___redArg(x_60, x_52, x_2, x_61); -x_63 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_63 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; x_64 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_64, 0, x_62); lean_ctor_set(x_64, 1, x_53); @@ -10977,7 +11301,7 @@ if (lean_is_exclusive(x_68)) { lean_dec_ref(x_68); x_74 = lean_box(0); } -x_75 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_75 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_74)) { x_76 = lean_alloc_ctor(0, 5, 0); } else { @@ -11035,7 +11359,7 @@ return x_85; } } } -static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___closed__0() { +static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___closed__0() { _start: { lean_object* x_1; @@ -11043,7 +11367,7 @@ x_1 = lean_mk_string_unchecked("invalid doc string, declaration '", 33, 33); return x_1; } } -static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___closed__1() { +static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___closed__1() { _start: { lean_object* x_1; @@ -11051,7 +11375,7 @@ x_1 = lean_mk_string_unchecked("' is in an imported module", 26, 26); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37(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_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39(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_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -11070,7 +11394,7 @@ if (lean_obj_tag(x_14) == 0) { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___lam__0(x_2, x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_12); +x_16 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___lam__0(x_2, x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_12); return x_16; } else @@ -11082,12 +11406,12 @@ if (x_17 == 0) 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; x_18 = lean_ctor_get(x_14, 0); lean_dec(x_18); -x_19 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___closed__0; +x_19 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___closed__0; x_20 = 1; x_21 = l_Lean_Name_toStringWithToken___at___Lean_Name_toString_spec__0(x_1, x_20); x_22 = lean_string_append(x_19, x_21); lean_dec_ref(x_21); -x_23 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___closed__1; +x_23 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___closed__1; x_24 = lean_string_append(x_22, x_23); lean_ctor_set_tag(x_14, 3); lean_ctor_set(x_14, 0, x_24); @@ -11100,12 +11424,12 @@ else { 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; lean_dec(x_14); -x_27 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___closed__0; +x_27 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___closed__0; x_28 = 1; x_29 = l_Lean_Name_toStringWithToken___at___Lean_Name_toString_spec__0(x_1, x_28); x_30 = lean_string_append(x_27, x_29); lean_dec_ref(x_29); -x_31 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___closed__1; +x_31 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___closed__1; x_32 = lean_string_append(x_30, x_31); x_33 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_33, 0, x_32); @@ -11117,7 +11441,7 @@ return x_35; } } } -LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37(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_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39(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: { if (lean_obj_tag(x_2) == 0) @@ -11136,12 +11460,12 @@ else { lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_2, 0); -x_13 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_13 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_13; } } } -static lean_object* _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__0___closed__0() { +static lean_object* _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__0___closed__0() { _start: { lean_object* x_1; @@ -11149,16 +11473,16 @@ x_1 = lean_mk_string_unchecked("Invalid attribute: Attributes cannot be added to return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__0___closed__1() { +static lean_object* _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__0___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__0___closed__0; +x_1 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__0___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__0(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_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__0(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_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; @@ -11170,7 +11494,7 @@ lean_dec(x_11); if (x_13 == 0) { lean_object* x_14; lean_object* x_15; -x_14 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__0___closed__1; +x_14 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__0___closed__1; x_15 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_14, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_15; } @@ -11186,7 +11510,7 @@ return x_17; } } } -static lean_object* _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__1___closed__0() { +static lean_object* _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__1___closed__0() { _start: { lean_object* x_1; @@ -11194,16 +11518,16 @@ x_1 = lean_mk_string_unchecked("Invalid modifier: Constructors cannot be marked return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__1___closed__1() { +static lean_object* _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__1___closed__0; +x_1 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__1___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; @@ -11219,7 +11543,7 @@ else { lean_object* x_14; lean_object* x_15; lean_dec_ref(x_2); -x_14 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__1___closed__1; +x_14 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__1___closed__1; x_15 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_14, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec_ref(x_8); @@ -11230,7 +11554,7 @@ return x_15; } } } -static lean_object* _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__2___closed__0() { +static lean_object* _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__2___closed__0() { _start: { lean_object* x_1; @@ -11238,16 +11562,16 @@ x_1 = lean_mk_string_unchecked("Invalid modifier: Constructors cannot be marked return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__2___closed__1() { +static lean_object* _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__2___closed__0; +x_1 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__2___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__2(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_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; @@ -11263,7 +11587,7 @@ else { lean_object* x_14; lean_object* x_15; lean_dec_ref(x_2); -x_14 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__2___closed__1; +x_14 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__2___closed__1; x_15 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_14, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec_ref(x_8); @@ -11274,7 +11598,7 @@ return x_15; } } } -static lean_object* _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___closed__0() { +static lean_object* _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___closed__0() { _start: { lean_object* x_1; @@ -11282,24 +11606,24 @@ x_1 = lean_mk_string_unchecked("Invalid modifier: Constructors cannot be marked return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___closed__1() { +static lean_object* _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___closed__0; +x_1 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42(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_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44(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; lean_object* x_10; uint8_t x_11; lean_inc_ref(x_1); -x_9 = lean_alloc_closure((void*)(l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__0___boxed), 9, 1); +x_9 = lean_alloc_closure((void*)(l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__0___boxed), 9, 1); lean_closure_set(x_9, 0, x_1); lean_inc_ref(x_1); -x_10 = lean_alloc_closure((void*)(l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__1___boxed), 10, 2); +x_10 = lean_alloc_closure((void*)(l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__1___boxed), 10, 2); lean_closure_set(x_10, 0, x_1); lean_closure_set(x_10, 1, x_9); x_11 = l_Lean_Elab_Modifiers_isNoncomputable(x_1); @@ -11307,7 +11631,7 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; x_12 = lean_box(0); -x_13 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__2(x_1, x_10, x_12, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_13 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__2(x_1, x_10, x_12, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec_ref(x_1); return x_13; } @@ -11316,7 +11640,7 @@ else lean_object* x_14; lean_object* x_15; lean_dec_ref(x_10); lean_dec_ref(x_1); -x_14 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___closed__1; +x_14 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___closed__1; x_15 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_14, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec_ref(x_6); @@ -11371,7 +11695,7 @@ lean_dec_ref(x_18); lean_inc_ref(x_10); lean_inc_ref(x_6); lean_inc(x_19); -x_21 = l_Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37(x_19, x_13, x_6, x_7, x_8, x_9, x_10, x_11, x_20); +x_21 = l_Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39(x_19, x_13, x_6, x_7, x_8, x_9, x_10, x_11, x_20); lean_dec(x_13); if (lean_obj_tag(x_21) == 0) { @@ -11381,7 +11705,7 @@ lean_inc(x_22); lean_dec_ref(x_21); x_23 = lean_box(0); lean_inc(x_19); -x_24 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17(x_19, x_15, x_23, x_6, x_7, x_8, x_9, x_10, x_11, x_22); +x_24 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19(x_19, x_15, x_23, x_6, x_7, x_8, x_9, x_10, x_11, x_22); lean_dec(x_11); lean_dec(x_9); lean_dec_ref(x_8); @@ -11582,7 +11906,7 @@ return x_2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_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; 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_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; uint8_t x_91; lean_object* x_92; lean_object* x_93; 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; uint8_t x_126; lean_object* x_127; lean_object* x_128; uint8_t x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; uint8_t x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; 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; uint8_t x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; uint8_t x_188; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; uint8_t x_205; uint8_t x_206; uint8_t x_225; +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_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; 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_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; uint8_t x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t 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_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_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; uint8_t x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; uint8_t x_185; lean_object* x_186; lean_object* x_187; uint8_t x_188; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; uint8_t x_206; uint8_t x_225; x_80 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor___lam__0___boxed), 1, 0); x_131 = 1; if (x_4 == 0) @@ -11603,7 +11927,7 @@ block_22: { lean_object* x_20; lean_object* x_21; x_20 = lean_box(0); -x_21 = lean_apply_8(x_17, x_20, x_15, x_13, x_16, x_19, x_18, x_14, x_12); +x_21 = lean_apply_8(x_13, x_20, x_19, x_16, x_15, x_12, x_18, x_14, x_17); return x_21; } block_39: @@ -11662,7 +11986,7 @@ x_53 = l_Lean_Syntax_getArg(x_1, x_52); x_54 = l_Lean_Syntax_mkSynthetic(x_53); x_55 = lean_box(0); lean_inc(x_50); -x_56 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17(x_50, x_54, x_55, x_42, x_43, x_44, x_45, x_46, x_47, x_51); +x_56 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19(x_50, x_54, x_55, x_42, x_43, x_44, x_45, x_46, x_47, x_51); lean_dec(x_47); lean_dec(x_45); lean_dec_ref(x_44); @@ -11763,7 +12087,7 @@ return x_78; block_116: { 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; uint8_t x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; -x_94 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_dropLeadingDeclModifiersDocstring(x_85); +x_94 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_dropLeadingDeclModifiersDocstring(x_89); x_95 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor___closed__3; x_96 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_96, 0, x_93); @@ -11789,13 +12113,13 @@ lean_ctor_set(x_105, 0, x_101); lean_ctor_set(x_105, 1, x_102); lean_ctor_set(x_105, 2, x_103); lean_ctor_set_uint8(x_105, sizeof(void*)*3, x_104); -x_106 = lean_mk_empty_array_with_capacity(x_88); -lean_dec(x_88); +x_106 = lean_mk_empty_array_with_capacity(x_83); +lean_dec(x_83); x_107 = lean_array_push(x_106, x_105); x_108 = lean_box(0); -lean_inc(x_83); -lean_inc_ref(x_90); -x_109 = l_Lean_MessageData_hint(x_95, x_107, x_108, x_97, x_91, x_90, x_83, x_82); +lean_inc(x_84); +lean_inc_ref(x_91); +x_109 = l_Lean_MessageData_hint(x_95, x_107, x_108, x_97, x_86, x_91, x_84, x_88); if (lean_obj_tag(x_109) == 0) { lean_object* x_110; lean_object* x_111; @@ -11804,26 +12128,26 @@ lean_inc(x_110); x_111 = lean_ctor_get(x_109, 1); lean_inc(x_111); lean_dec_ref(x_109); -x_23 = x_87; +x_23 = x_82; x_24 = x_110; -x_25 = x_84; -x_26 = x_81; -x_27 = x_86; -x_28 = x_89; -x_29 = x_90; -x_30 = x_83; +x_25 = x_90; +x_26 = x_87; +x_27 = x_85; +x_28 = x_81; +x_29 = x_91; +x_30 = x_84; x_31 = x_111; goto block_39; } else { uint8_t x_112; +lean_dec_ref(x_91); lean_dec_ref(x_90); -lean_dec(x_89); -lean_dec_ref(x_87); -lean_dec_ref(x_86); -lean_dec_ref(x_84); -lean_dec(x_83); +lean_dec(x_87); +lean_dec_ref(x_85); +lean_dec(x_84); +lean_dec_ref(x_82); lean_dec(x_81); x_112 = !lean_is_exclusive(x_109); if (x_112 == 0) @@ -11848,19 +12172,19 @@ return x_115; block_130: { lean_object* x_129; -x_129 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__0; -x_81 = x_118; -x_82 = x_117; -x_83 = x_119; -x_84 = x_120; -x_85 = x_121; +x_129 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__0; +x_81 = x_117; +x_82 = x_119; +x_83 = x_120; +x_84 = x_121; +x_85 = x_123; x_86 = x_122; x_87 = x_124; -x_88 = x_123; -x_89 = x_128; -x_90 = x_127; -x_91 = x_126; -x_92 = x_125; +x_88 = x_125; +x_89 = x_126; +x_90 = x_128; +x_91 = x_127; +x_92 = x_118; x_93 = x_129; goto block_116; } @@ -11869,19 +12193,19 @@ block_149: if (lean_obj_tag(x_143) == 0) { lean_object* x_144; -lean_dec(x_138); -lean_dec(x_136); +lean_dec(x_140); +lean_dec(x_134); lean_dec_ref(x_80); x_144 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePrivateFieldHint___closed__0; -x_23 = x_139; +x_23 = x_133; x_24 = x_144; -x_25 = x_135; -x_26 = x_133; +x_25 = x_142; +x_26 = x_138; x_27 = x_137; -x_28 = x_142; +x_28 = x_132; x_29 = x_141; -x_30 = x_134; -x_31 = x_132; +x_30 = x_135; +x_31 = x_139; goto block_39; } else @@ -11896,17 +12220,17 @@ lean_ctor_set(x_146, 0, x_145); lean_ctor_set(x_146, 1, x_145); x_147 = l_Lean_Syntax_ofRange(x_146, x_131); x_148 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor___closed__4; -x_81 = x_133; -x_82 = x_132; +x_81 = x_132; +x_82 = x_133; x_83 = x_134; x_84 = x_135; -x_85 = x_136; -x_86 = x_137; -x_87 = x_139; -x_88 = x_138; -x_89 = x_142; -x_90 = x_141; -x_91 = x_140; +x_85 = x_137; +x_86 = x_136; +x_87 = x_138; +x_88 = x_139; +x_89 = x_140; +x_90 = x_142; +x_91 = x_141; x_92 = x_147; x_93 = x_148; goto block_116; @@ -11916,77 +12240,77 @@ block_173: { if (x_4 == 0) { -lean_dec(x_156); +lean_dec(x_161); +lean_dec(x_157); lean_dec(x_155); -lean_dec(x_153); lean_dec_ref(x_80); -x_12 = x_150; -x_13 = x_158; -x_14 = x_151; -x_15 = x_152; -x_16 = x_154; -x_17 = x_159; -x_18 = x_161; +x_12 = x_154; +x_13 = x_156; +x_14 = x_158; +x_15 = x_150; +x_16 = x_151; +x_17 = x_160; +x_18 = x_153; x_19 = x_162; goto block_22; } else { lean_object* x_163; -x_163 = l_Lean_Syntax_getHeadInfo(x_153); +x_163 = l_Lean_Syntax_getHeadInfo(x_161); if (lean_obj_tag(x_163) == 0) { lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_dec_ref(x_163); x_164 = lean_unsigned_to_nat(2u); x_165 = l_Lean_Syntax_getArg(x_155, x_164); -x_166 = l_Lean_Syntax_getRange_x3f(x_165, x_157); +x_166 = l_Lean_Syntax_getRange_x3f(x_165, x_159); if (lean_obj_tag(x_166) == 0) { -if (x_157 == 0) +if (x_159 == 0) { lean_object* x_167; lean_object* x_168; lean_dec(x_165); -x_167 = l_Lean_Syntax_getArg(x_155, x_160); -x_168 = l_Lean_Syntax_getTrailingTailPos_x3f(x_167, x_157); +x_167 = l_Lean_Syntax_getArg(x_155, x_152); +x_168 = l_Lean_Syntax_getTrailingTailPos_x3f(x_167, x_159); lean_dec(x_167); if (lean_obj_tag(x_168) == 0) { lean_object* x_169; -x_169 = l_Lean_Syntax_getPos_x3f(x_155, x_157); +x_169 = l_Lean_Syntax_getPos_x3f(x_155, x_159); lean_dec(x_155); if (lean_obj_tag(x_169) == 0) { lean_object* x_170; lean_object* x_171; -x_170 = l_Lean_Syntax_getArg(x_153, x_156); -x_171 = l_Lean_Syntax_getPos_x3f(x_170, x_157); +x_170 = l_Lean_Syntax_getArg(x_161, x_157); +x_171 = l_Lean_Syntax_getPos_x3f(x_170, x_159); lean_dec(x_170); -x_132 = x_150; -x_133 = x_158; -x_134 = x_151; -x_135 = x_152; -x_136 = x_153; -x_137 = x_154; -x_138 = x_156; -x_139 = x_159; -x_140 = x_157; -x_141 = x_161; +x_132 = x_154; +x_133 = x_156; +x_134 = x_157; +x_135 = x_158; +x_136 = x_159; +x_137 = x_150; +x_138 = x_151; +x_139 = x_160; +x_140 = x_161; +x_141 = x_153; x_142 = x_162; x_143 = x_171; goto block_149; } else { -x_132 = x_150; -x_133 = x_158; -x_134 = x_151; -x_135 = x_152; -x_136 = x_153; -x_137 = x_154; -x_138 = x_156; -x_139 = x_159; -x_140 = x_157; -x_141 = x_161; +x_132 = x_154; +x_133 = x_156; +x_134 = x_157; +x_135 = x_158; +x_136 = x_159; +x_137 = x_150; +x_138 = x_151; +x_139 = x_160; +x_140 = x_161; +x_141 = x_153; x_142 = x_162; x_143 = x_169; goto block_149; @@ -11995,16 +12319,16 @@ goto block_149; else { lean_dec(x_155); -x_132 = x_150; -x_133 = x_158; -x_134 = x_151; -x_135 = x_152; -x_136 = x_153; -x_137 = x_154; -x_138 = x_156; -x_139 = x_159; -x_140 = x_157; -x_141 = x_161; +x_132 = x_154; +x_133 = x_156; +x_134 = x_157; +x_135 = x_158; +x_136 = x_159; +x_137 = x_150; +x_138 = x_151; +x_139 = x_160; +x_140 = x_161; +x_141 = x_153; x_142 = x_162; x_143 = x_168; goto block_149; @@ -12013,17 +12337,17 @@ goto block_149; else { lean_dec(x_155); -x_117 = x_150; -x_118 = x_158; -x_119 = x_151; -x_120 = x_152; -x_121 = x_153; -x_122 = x_154; -x_123 = x_156; -x_124 = x_159; -x_125 = x_165; -x_126 = x_157; -x_127 = x_161; +x_117 = x_154; +x_118 = x_165; +x_119 = x_156; +x_120 = x_157; +x_121 = x_158; +x_122 = x_159; +x_123 = x_150; +x_124 = x_151; +x_125 = x_160; +x_126 = x_161; +x_127 = x_153; x_128 = x_162; goto block_130; } @@ -12032,17 +12356,17 @@ else { lean_dec_ref(x_166); lean_dec(x_155); -x_117 = x_150; -x_118 = x_158; -x_119 = x_151; -x_120 = x_152; -x_121 = x_153; -x_122 = x_154; -x_123 = x_156; -x_124 = x_159; -x_125 = x_165; -x_126 = x_157; -x_127 = x_161; +x_117 = x_154; +x_118 = x_165; +x_119 = x_156; +x_120 = x_157; +x_121 = x_158; +x_122 = x_159; +x_123 = x_150; +x_124 = x_151; +x_125 = x_160; +x_126 = x_161; +x_127 = x_153; x_128 = x_162; goto block_130; } @@ -12051,20 +12375,20 @@ else { lean_object* x_172; lean_dec(x_163); -lean_dec(x_156); +lean_dec(x_161); +lean_dec(x_157); lean_dec(x_155); -lean_dec(x_153); lean_dec_ref(x_80); x_172 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePrivateFieldHint___closed__0; -x_23 = x_159; +x_23 = x_156; x_24 = x_172; -x_25 = x_152; -x_26 = x_158; -x_27 = x_154; -x_28 = x_162; -x_29 = x_161; -x_30 = x_151; -x_31 = x_150; +x_25 = x_162; +x_26 = x_151; +x_27 = x_150; +x_28 = x_154; +x_29 = x_153; +x_30 = x_158; +x_31 = x_160; goto block_39; } } @@ -12074,58 +12398,58 @@ block_196: if (x_188 == 0) { uint8_t x_189; -x_189 = l_Lean_Elab_Modifiers_isPrivate(x_178); -lean_dec_ref(x_178); +x_189 = l_Lean_Elab_Modifiers_isPrivate(x_186); +lean_dec_ref(x_186); if (x_189 == 0) { -x_150 = x_182; -x_151 = x_174; -x_152 = x_180; -x_153 = x_175; -x_154 = x_183; -x_155 = x_176; -x_156 = x_177; -x_157 = x_179; -x_158 = x_187; -x_159 = x_184; -x_160 = x_186; -x_161 = x_185; -x_162 = x_181; +x_150 = x_178; +x_151 = x_179; +x_152 = x_175; +x_153 = x_184; +x_154 = x_181; +x_155 = x_180; +x_156 = x_182; +x_157 = x_183; +x_158 = x_177; +x_159 = x_185; +x_160 = x_174; +x_161 = x_187; +x_162 = x_176; goto block_173; } else { -if (x_179 == 0) +if (x_185 == 0) { -lean_dec(x_177); -lean_dec(x_176); -lean_dec(x_175); +lean_dec(x_187); +lean_dec(x_183); +lean_dec(x_180); lean_dec_ref(x_80); -x_12 = x_182; -x_13 = x_187; -x_14 = x_174; -x_15 = x_180; -x_16 = x_183; -x_17 = x_184; -x_18 = x_185; -x_19 = x_181; +x_12 = x_181; +x_13 = x_182; +x_14 = x_177; +x_15 = x_178; +x_16 = x_179; +x_17 = x_174; +x_18 = x_184; +x_19 = x_176; goto block_22; } else { -x_150 = x_182; -x_151 = x_174; -x_152 = x_180; -x_153 = x_175; -x_154 = x_183; -x_155 = x_176; -x_156 = x_177; -x_157 = x_179; -x_158 = x_187; -x_159 = x_184; -x_160 = x_186; -x_161 = x_185; -x_162 = x_181; +x_150 = x_178; +x_151 = x_179; +x_152 = x_175; +x_153 = x_184; +x_154 = x_181; +x_155 = x_180; +x_156 = x_182; +x_157 = x_183; +x_158 = x_177; +x_159 = x_185; +x_160 = x_174; +x_161 = x_187; +x_162 = x_176; goto block_173; } } @@ -12133,19 +12457,19 @@ goto block_173; else { lean_object* x_190; lean_object* x_191; uint8_t x_192; -lean_dec_ref(x_184); -lean_dec_ref(x_178); -lean_dec(x_177); -lean_dec(x_176); -lean_dec(x_175); +lean_dec(x_187); +lean_dec_ref(x_186); +lean_dec(x_183); +lean_dec_ref(x_182); +lean_dec(x_180); lean_dec_ref(x_80); x_190 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor___closed__6; -x_191 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_190, x_180, x_187, x_183, x_181, x_185, x_174, x_182); -lean_dec(x_174); -lean_dec_ref(x_185); +x_191 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_190, x_176, x_179, x_178, x_181, x_184, x_177, x_174); +lean_dec(x_177); +lean_dec_ref(x_184); lean_dec(x_181); -lean_dec_ref(x_183); -lean_dec(x_187); +lean_dec_ref(x_178); +lean_dec(x_179); x_192 = !lean_is_exclusive(x_191); if (x_192 == 0) { @@ -12171,23 +12495,23 @@ block_224: if (x_206 == 0) { uint8_t x_207; -x_207 = l_Lean_Elab_Modifiers_isProtected(x_202); +x_207 = l_Lean_Elab_Modifiers_isProtected(x_201); if (x_207 == 0) { -x_174 = x_10; -x_175 = x_198; -x_176 = x_199; -x_177 = x_200; -x_178 = x_202; -x_179 = x_205; -x_180 = x_5; +x_174 = x_205; +x_175 = x_202; +x_176 = x_5; +x_177 = x_10; +x_178 = x_7; +x_179 = x_6; +x_180 = x_197; x_181 = x_8; -x_182 = x_197; -x_183 = x_7; -x_184 = x_201; -x_185 = x_204; -x_186 = x_203; -x_187 = x_6; +x_182 = x_198; +x_183 = x_199; +x_184 = x_203; +x_185 = x_200; +x_186 = x_201; +x_187 = x_204; x_188 = x_207; goto block_196; } @@ -12195,20 +12519,20 @@ else { uint8_t x_208; x_208 = l_Lean_Elab_Modifiers_isPrivate(x_2); -x_174 = x_10; -x_175 = x_198; -x_176 = x_199; -x_177 = x_200; -x_178 = x_202; -x_179 = x_205; -x_180 = x_5; +x_174 = x_205; +x_175 = x_202; +x_176 = x_5; +x_177 = x_10; +x_178 = x_7; +x_179 = x_6; +x_180 = x_197; x_181 = x_8; -x_182 = x_197; -x_183 = x_7; -x_184 = x_201; -x_185 = x_204; -x_186 = x_203; -x_187 = x_6; +x_182 = x_198; +x_183 = x_199; +x_184 = x_203; +x_185 = x_200; +x_186 = x_201; +x_187 = x_204; x_188 = x_208; goto block_196; } @@ -12216,15 +12540,15 @@ goto block_196; else { lean_object* x_209; lean_object* x_210; -lean_dec_ref(x_202); lean_dec_ref(x_201); -lean_dec(x_200); +lean_dec(x_199); +lean_dec_ref(x_198); lean_dec_ref(x_80); x_209 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor___closed__7; lean_inc(x_10); -lean_inc_ref(x_204); -x_210 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePrivateFieldHint(x_199, x_198, x_209, x_204, x_10, x_197); -lean_dec(x_199); +lean_inc_ref(x_203); +x_210 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePrivateFieldHint(x_197, x_204, x_209, x_203, x_10, x_205); +lean_dec(x_197); if (lean_obj_tag(x_210) == 0) { lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; @@ -12237,9 +12561,9 @@ x_213 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCto x_214 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_214, 0, x_213); lean_ctor_set(x_214, 1, x_211); -x_215 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_214, x_5, x_6, x_7, x_8, x_204, x_10, x_212); +x_215 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_214, x_5, x_6, x_7, x_8, x_203, x_10, x_212); lean_dec(x_10); -lean_dec_ref(x_204); +lean_dec_ref(x_203); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -12265,7 +12589,7 @@ return x_219; else { uint8_t x_220; -lean_dec_ref(x_204); +lean_dec_ref(x_203); lean_dec(x_10); lean_dec(x_8); lean_dec_ref(x_7); @@ -12327,7 +12651,7 @@ lean_ctor_set(x_9, 5, x_239); lean_inc_ref(x_9); lean_inc_ref(x_5); lean_inc(x_238); -x_240 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20(x_238, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_240 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22(x_238, x_5, x_6, x_7, x_8, x_9, x_10, x_11); if (lean_obj_tag(x_240) == 0) { lean_object* x_241; lean_object* x_242; lean_object* x_243; @@ -12343,7 +12667,7 @@ lean_inc_ref(x_7); lean_inc(x_6); lean_inc_ref(x_5); lean_inc(x_241); -x_243 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42(x_241, x_5, x_6, x_7, x_8, x_9, x_10, x_242); +x_243 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44(x_241, x_5, x_6, x_7, x_8, x_9, x_10, x_242); if (lean_obj_tag(x_243) == 0) { lean_object* x_244; lean_object* x_245; uint8_t x_246; @@ -12360,15 +12684,15 @@ lean_closure_set(x_245, 3, x_3); x_246 = l_Lean_Elab_Modifiers_isPrivate(x_241); if (x_246 == 0) { -x_197 = x_244; -x_198 = x_237; -x_199 = x_238; -x_200 = x_231; -x_201 = x_245; -x_202 = x_241; -x_203 = x_236; -x_204 = x_9; -x_205 = x_233; +x_197 = x_238; +x_198 = x_245; +x_199 = x_231; +x_200 = x_233; +x_201 = x_241; +x_202 = x_236; +x_203 = x_9; +x_204 = x_237; +x_205 = x_244; x_206 = x_246; goto block_224; } @@ -12376,15 +12700,15 @@ else { uint8_t x_247; x_247 = l_Lean_Elab_Modifiers_isPrivate(x_2); -x_197 = x_244; -x_198 = x_237; -x_199 = x_238; -x_200 = x_231; -x_201 = x_245; -x_202 = x_241; -x_203 = x_236; -x_204 = x_9; -x_205 = x_233; +x_197 = x_238; +x_198 = x_245; +x_199 = x_231; +x_200 = x_233; +x_201 = x_241; +x_202 = x_236; +x_203 = x_9; +x_204 = x_237; +x_205 = x_244; x_206 = x_247; goto block_224; } @@ -12513,7 +12837,7 @@ lean_ctor_set_uint8(x_275, sizeof(void*)*13 + 1, x_269); lean_inc_ref(x_275); lean_inc_ref(x_5); lean_inc(x_273); -x_276 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20(x_273, x_5, x_6, x_7, x_8, x_275, x_10, x_11); +x_276 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22(x_273, x_5, x_6, x_7, x_8, x_275, x_10, x_11); if (lean_obj_tag(x_276) == 0) { lean_object* x_277; lean_object* x_278; lean_object* x_279; @@ -12529,7 +12853,7 @@ lean_inc_ref(x_7); lean_inc(x_6); lean_inc_ref(x_5); lean_inc(x_277); -x_279 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42(x_277, x_5, x_6, x_7, x_8, x_275, x_10, x_278); +x_279 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44(x_277, x_5, x_6, x_7, x_8, x_275, x_10, x_278); if (lean_obj_tag(x_279) == 0) { lean_object* x_280; lean_object* x_281; uint8_t x_282; @@ -12546,15 +12870,15 @@ lean_closure_set(x_281, 3, x_3); x_282 = l_Lean_Elab_Modifiers_isPrivate(x_277); if (x_282 == 0) { -x_197 = x_280; -x_198 = x_272; -x_199 = x_273; -x_200 = x_231; -x_201 = x_281; -x_202 = x_277; -x_203 = x_271; -x_204 = x_275; -x_205 = x_233; +x_197 = x_273; +x_198 = x_281; +x_199 = x_231; +x_200 = x_233; +x_201 = x_277; +x_202 = x_271; +x_203 = x_275; +x_204 = x_272; +x_205 = x_280; x_206 = x_282; goto block_224; } @@ -12562,15 +12886,15 @@ else { uint8_t x_283; x_283 = l_Lean_Elab_Modifiers_isPrivate(x_2); -x_197 = x_280; -x_198 = x_272; -x_199 = x_273; -x_200 = x_231; -x_201 = x_281; -x_202 = x_277; -x_203 = x_271; -x_204 = x_275; -x_205 = x_233; +x_197 = x_273; +x_198 = x_281; +x_199 = x_231; +x_200 = x_233; +x_201 = x_277; +x_202 = x_271; +x_203 = x_275; +x_204 = x_272; +x_205 = x_280; x_206 = x_283; goto block_224; } @@ -12946,18 +13270,43 @@ lean_dec_ref(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0___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_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg(x_1, x_2, x_3, x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); +lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); +lean_dec_ref(x_2); return x_9; } } +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0___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_10; lean_object* x_11; +x_10 = lean_unbox(x_1); +x_11 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +return x_11; +} +} LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { @@ -12974,15 +13323,24 @@ x_13 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec_ref(x_4); return x_12; } } +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_3); +x_12 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__5(x_1, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { @@ -13001,20 +13359,20 @@ x_11 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_ return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__17___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__19___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__17___redArg(x_1, x_2, x_3); +x_4 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__19___redArg(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__17___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_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__19___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__17(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_getDeclarationRange_x3f___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__19(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -13024,21 +13382,21 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20___redArg___boxed(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; -x_6 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18___redArg(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20___redArg(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18___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_EXPORT lean_object* l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20___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: { lean_object* x_10; -x_10 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -13048,11 +13406,11 @@ lean_dec_ref(x_3); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17___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_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec(x_7); lean_dec_ref(x_6); @@ -13063,20 +13421,20 @@ lean_dec(x_2); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg(x_1, x_2, x_3); +x_4 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__22___redArg(x_1, x_2, x_3); lean_dec_ref(x_2); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___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_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__22___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__22(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); @@ -13086,11 +13444,11 @@ lean_dec_ref(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___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_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_6); lean_dec_ref(x_5); lean_dec(x_4); @@ -13098,11 +13456,11 @@ lean_dec_ref(x_3); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___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_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___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: { lean_object* x_10; -x_10 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -13112,30 +13470,30 @@ lean_dec_ref(x_3); return x_10; } } -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__22___redArg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__24___redArg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__22___redArg(x_1, x_2); +x_3 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__24___redArg(x_1, x_2); lean_dec_ref(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__22___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__24___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__22(x_1, x_2, x_3, x_4); +x_5 = l_liftExcept___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__24(x_1, x_2, x_3, x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); return x_5; } } -LEAN_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__23___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_EXPORT lean_object* l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__25___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__23(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_List_forM___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__25(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); @@ -13145,11 +13503,11 @@ lean_dec_ref(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___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_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___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: { lean_object* x_10; -x_10 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -13159,11 +13517,11 @@ lean_dec_ref(x_3); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25___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_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); @@ -13173,56 +13531,56 @@ lean_dec_ref(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__0(x_1, x_2, x_3, x_4); +x_5 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__0(x_1, x_2, x_3, x_4); lean_dec_ref(x_3); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__1(x_1, x_2, x_3, x_4); +x_5 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__1(x_1, x_2, x_3, x_4); lean_dec_ref(x_3); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__2(x_1, x_2, x_3); +x_4 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__2(x_1, x_2, x_3); lean_dec_ref(x_2); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__3(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__3(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec_ref(x_5); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__4___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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__4___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) { _start: { lean_object* x_7; -x_7 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___lam__4(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___lam__4(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec_ref(x_5); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg___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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -13230,11 +13588,11 @@ lean_dec(x_3); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20___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_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22___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: { lean_object* x_10; -x_10 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22(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_6); lean_dec_ref(x_5); @@ -13242,22 +13600,22 @@ lean_dec(x_4); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0(x_1); +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__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_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; lean_object* x_12; x_11 = lean_unbox(x_1); -x_12 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); @@ -13266,11 +13624,11 @@ lean_dec(x_5); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___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_EXPORT lean_object* l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -13279,25 +13637,25 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; uint8_t x_5; uint8_t x_6; lean_object* x_7; x_4 = lean_unbox(x_1); x_5 = lean_unbox(x_2); -x_6 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0(x_4, x_5, x_3); +x_6 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0(x_4, x_5, x_3); lean_dec(x_3); x_7 = lean_box(x_6); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___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_EXPORT lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___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_10; uint8_t x_11; lean_object* x_12; x_10 = lean_unbox(x_3); x_11 = lean_unbox(x_4); -x_12 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg(x_1, x_2, x_10, x_11, x_5, x_6, x_7, x_8, x_9); +x_12 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg(x_1, x_2, x_10, x_11, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec(x_6); lean_dec_ref(x_5); @@ -13305,13 +13663,13 @@ lean_dec(x_1); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___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); x_13 = lean_unbox(x_4); -x_14 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28(x_1, x_2, x_12, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30(x_1, x_2, x_12, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_10); lean_dec(x_8); lean_dec_ref(x_7); @@ -13321,11 +13679,11 @@ lean_dec(x_1); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28___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_EXPORT lean_object* l_Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30___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: { lean_object* x_10; -x_10 = l_Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30(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_6); lean_dec_ref(x_5); @@ -13335,13 +13693,13 @@ lean_dec(x_1); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__30_spec__30___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_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__32_spec__32___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; uint8_t x_12; lean_object* x_13; x_11 = lean_unbox(x_2); x_12 = lean_unbox(x_3); -x_13 = l_Lean_log___at___Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__30_spec__30(x_1, x_11, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_log___at___Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__32_spec__32(x_1, x_11, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec(x_7); lean_dec_ref(x_6); @@ -13350,11 +13708,11 @@ lean_dec_ref(x_4); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__30___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_EXPORT lean_object* l_Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__32___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__30(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__32(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -13363,11 +13721,11 @@ lean_dec_ref(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28___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_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -13376,7 +13734,7 @@ lean_dec_ref(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__33___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__35___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: { size_t x_12; size_t x_13; lean_object* x_14; @@ -13384,7 +13742,7 @@ x_12 = lean_unbox_usize(x_2); lean_dec(x_2); x_13 = lean_unbox_usize(x_3); lean_dec(x_3); -x_14 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__33(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__35(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_10); lean_dec(x_8); lean_dec_ref(x_7); @@ -13393,11 +13751,11 @@ lean_dec_ref(x_1); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20___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_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -13406,11 +13764,11 @@ lean_dec_ref(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20___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_EXPORT lean_object* l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -13419,14 +13777,14 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { uint8_t x_15; uint8_t x_16; uint8_t x_17; lean_object* x_18; x_15 = lean_unbox(x_3); x_16 = lean_unbox(x_4); x_17 = lean_unbox(x_5); -x_18 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___lam__0(x_1, x_2, x_15, x_16, x_17, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_18 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___lam__0(x_1, x_2, x_15, x_16, x_17, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -13437,14 +13795,14 @@ lean_dec(x_6); return x_18; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { uint8_t x_16; uint8_t x_17; uint8_t x_18; lean_object* x_19; x_16 = lean_unbox(x_3); x_17 = lean_unbox(x_4); x_18 = lean_unbox(x_8); -x_19 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___lam__1(x_1, x_2, x_16, x_17, x_5, x_6, x_7, x_18, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_19 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___lam__1(x_1, x_2, x_16, x_17, x_5, x_6, x_7, x_18, x_9, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec(x_14); lean_dec(x_12); lean_dec_ref(x_11); @@ -13455,11 +13813,11 @@ lean_dec(x_5); return x_19; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___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_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -13467,7 +13825,7 @@ lean_dec(x_3); return x_9; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__37_spec__37___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__39_spec__39___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { size_t x_15; size_t x_16; lean_object* x_17; @@ -13475,7 +13833,7 @@ x_15 = lean_unbox_usize(x_5); lean_dec(x_5); x_16 = lean_unbox_usize(x_6); lean_dec(x_6); -x_17 = l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__37_spec__37(x_1, x_2, x_3, x_4, x_15, x_16, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_17 = l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__39_spec__39(x_1, x_2, x_3, x_4, x_15, x_16, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_13); lean_dec(x_11); lean_dec_ref(x_10); @@ -13487,11 +13845,11 @@ lean_dec(x_1); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__37___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_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__39___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__37(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__39(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -13501,11 +13859,11 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__39___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_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__41___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__39(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__41(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -13514,11 +13872,11 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___lam__0___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_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec(x_7); lean_dec_ref(x_6); @@ -13527,11 +13885,11 @@ lean_dec(x_1); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___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_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___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: { lean_object* x_10; -x_10 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39(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_6); lean_dec_ref(x_5); @@ -13540,11 +13898,11 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37___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_EXPORT lean_object* l_Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39___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: { lean_object* x_10; -x_10 = l_Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39(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_6); lean_dec_ref(x_5); @@ -13553,11 +13911,11 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__0___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_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__0___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: { lean_object* x_10; -x_10 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -13567,20 +13925,20 @@ lean_dec_ref(x_1); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__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_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec_ref(x_1); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__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_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__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) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec_ref(x_1); return x_11; } @@ -14458,7 +14816,7 @@ x_49 = lean_ctor_get(x_47, 1); lean_inc(x_49); lean_dec_ref(x_47); lean_inc(x_48); -x_50 = l_Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37(x_48, x_44, x_37, x_38, x_39, x_40, x_41, x_42, x_49); +x_50 = l_Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39(x_48, x_44, x_37, x_38, x_39, x_40, x_41, x_42, x_49); lean_dec(x_42); lean_dec(x_40); lean_dec_ref(x_39); @@ -14661,7 +15019,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__6; x_2 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__13____x40_Lean_Elab_Structure___hyg_4_; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_4 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; @@ -14681,7 +15039,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__8; x_2 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__13____x40_Lean_Elab_Structure___hyg_4_; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_4 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; @@ -14701,7 +15059,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__10; x_2 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__13____x40_Lean_Elab_Structure___hyg_4_; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_4 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; @@ -14738,7 +15096,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__14; x_2 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__13____x40_Lean_Elab_Structure___hyg_4_; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_4 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; @@ -14781,7 +15139,7 @@ return x_2; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t 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) { _start: { -lean_object* x_15; lean_object* x_16; lean_object* x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_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_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; uint8_t x_61; lean_object* x_71; lean_object* x_72; uint8_t x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; uint8_t x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_129; lean_object* x_130; uint8_t x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_145; lean_object* x_146; uint8_t 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; uint8_t x_159; lean_object* x_176; uint8_t x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_235; +lean_object* x_15; lean_object* x_16; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t 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_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; uint8_t x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; uint8_t x_61; lean_object* x_71; lean_object* x_72; lean_object* x_73; uint8_t x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; uint8_t x_119; lean_object* x_120; uint8_t x_121; lean_object* x_129; lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_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; uint8_t x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; uint8_t x_159; lean_object* x_176; uint8_t x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_235; x_235 = lean_usize_dec_eq(x_5, x_6); if (x_235 == 0) { @@ -14935,12 +15293,12 @@ block_46: { lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; x_35 = lean_unsigned_to_nat(2u); -x_36 = l_Lean_Syntax_getArg(x_24, x_35); -lean_dec(x_24); +x_36 = l_Lean_Syntax_getArg(x_23, x_35); +lean_dec(x_23); x_37 = l_Lean_Syntax_getArgs(x_36); lean_dec(x_36); x_38 = lean_array_get_size(x_37); -x_39 = lean_nat_dec_lt(x_21, x_38); +x_39 = lean_nat_dec_lt(x_22, x_38); if (x_39 == 0) { lean_dec(x_38); @@ -14954,7 +15312,7 @@ lean_dec_ref(x_28); lean_dec(x_27); lean_dec(x_26); lean_dec(x_25); -lean_dec_ref(x_23); +lean_dec_ref(x_21); x_15 = x_7; x_16 = x_34; goto block_20; @@ -14976,7 +15334,7 @@ lean_dec_ref(x_28); lean_dec(x_27); lean_dec(x_26); lean_dec(x_25); -lean_dec_ref(x_23); +lean_dec_ref(x_21); x_15 = x_7; x_16 = x_34; goto block_20; @@ -14988,7 +15346,7 @@ x_41 = 0; x_42 = lean_usize_of_nat(x_38); lean_dec(x_38); lean_inc(x_1); -x_43 = l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__0(x_1, x_23, x_22, x_25, x_26, x_27, x_37, x_41, x_42, x_7, x_28, x_29, x_30, x_31, x_32, x_33, x_34); +x_43 = l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__0(x_1, x_21, x_24, x_25, x_26, x_27, x_37, x_41, x_42, x_7, x_28, x_29, x_30, x_31, x_32, x_33, x_34); lean_dec_ref(x_32); lean_dec_ref(x_37); if (lean_obj_tag(x_43) == 0) @@ -15022,52 +15380,52 @@ if (x_61 == 0) { lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; x_62 = lean_unsigned_to_nat(2u); -x_63 = l_Lean_Syntax_getArg(x_58, x_62); -lean_dec(x_58); +x_63 = l_Lean_Syntax_getArg(x_52, x_62); +lean_dec(x_52); x_64 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_64, 0, x_63); x_65 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_65, 0, x_64); -x_21 = x_47; -x_22 = x_51; -x_23 = x_52; -x_24 = x_53; -x_25 = x_49; -x_26 = x_60; +x_21 = x_54; +x_22 = x_47; +x_23 = x_48; +x_24 = x_55; +x_25 = x_58; +x_26 = x_51; x_27 = x_65; -x_28 = x_50; -x_29 = x_54; -x_30 = x_59; -x_31 = x_48; -x_32 = x_56; -x_33 = x_55; -x_34 = x_57; +x_28 = x_53; +x_29 = x_56; +x_30 = x_57; +x_31 = x_49; +x_32 = x_60; +x_33 = x_50; +x_34 = x_59; goto block_46; } else { lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; x_66 = lean_unsigned_to_nat(1u); -x_67 = l_Lean_Syntax_getArg(x_58, x_66); -lean_dec(x_58); +x_67 = l_Lean_Syntax_getArg(x_52, x_66); +lean_dec(x_52); x_68 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_68, 0, x_67); x_69 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_69, 0, x_68); -x_21 = x_47; -x_22 = x_51; -x_23 = x_52; -x_24 = x_53; -x_25 = x_49; -x_26 = x_60; +x_21 = x_54; +x_22 = x_47; +x_23 = x_48; +x_24 = x_55; +x_25 = x_58; +x_26 = x_51; x_27 = x_69; -x_28 = x_50; -x_29 = x_54; -x_30 = x_59; -x_31 = x_48; -x_32 = x_56; -x_33 = x_55; -x_34 = x_57; +x_28 = x_53; +x_29 = x_56; +x_30 = x_57; +x_31 = x_49; +x_32 = x_60; +x_33 = x_50; +x_34 = x_59; goto block_46; } } @@ -15075,14 +15433,14 @@ block_107: { uint8_t x_84; uint8_t x_85; x_84 = 0; -x_85 = l_Lean_beqBinderInfo____x40_Lean_Expr___hyg_413_(x_73, x_84); +x_85 = l_Lean_beqBinderInfo____x40_Lean_Expr___hyg_413_(x_74, x_84); if (x_85 == 0) { lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_dec_ref(x_76); -lean_dec_ref(x_72); +lean_dec_ref(x_75); x_86 = lean_unsigned_to_nat(3u); -x_87 = l_Lean_Syntax_getArg(x_75, x_86); +x_87 = l_Lean_Syntax_getArg(x_73, x_86); x_88 = l_Lean_Elab_expandDeclSig(x_87); lean_dec(x_87); x_89 = lean_ctor_get(x_88, 0); @@ -15094,9 +15452,9 @@ x_91 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_91, 0, x_90); x_92 = lean_box(0); x_21 = x_71; -x_22 = x_73; -x_23 = x_74; -x_24 = x_75; +x_22 = x_72; +x_23 = x_73; +x_24 = x_74; x_25 = x_89; x_26 = x_91; x_27 = x_92; @@ -15113,7 +15471,7 @@ else { lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; uint8_t x_99; x_93 = lean_unsigned_to_nat(3u); -x_94 = l_Lean_Syntax_getArg(x_75, x_93); +x_94 = l_Lean_Syntax_getArg(x_73, x_93); x_95 = l_Lean_Elab_expandOptDeclSig(x_94); lean_dec(x_94); x_96 = lean_ctor_get(x_95, 0); @@ -15121,56 +15479,56 @@ lean_inc(x_96); x_97 = lean_ctor_get(x_95, 1); lean_inc(x_97); lean_dec_ref(x_95); -x_98 = l_Lean_Syntax_getArg(x_75, x_2); +x_98 = l_Lean_Syntax_getArg(x_73, x_2); x_99 = l_Lean_Syntax_isNone(x_98); if (x_99 == 0) { lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; uint8_t x_105; -x_100 = l_Lean_Syntax_getArg(x_98, x_71); +x_100 = l_Lean_Syntax_getArg(x_98, x_72); lean_dec(x_98); lean_inc(x_100); x_101 = l_Lean_Syntax_getKind(x_100); -x_102 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__1; +x_102 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__1; x_103 = l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__0; -x_104 = l_Lean_Name_mkStr4(x_76, x_72, x_102, x_103); +x_104 = l_Lean_Name_mkStr4(x_75, x_76, x_102, x_103); x_105 = lean_name_eq(x_101, x_104); lean_dec(x_104); lean_dec(x_101); if (x_105 == 0) { -x_47 = x_71; -x_48 = x_80; -x_49 = x_96; -x_50 = x_77; -x_51 = x_73; -x_52 = x_74; -x_53 = x_75; -x_54 = x_78; -x_55 = x_82; -x_56 = x_81; -x_57 = x_83; -x_58 = x_100; -x_59 = x_79; -x_60 = x_97; +x_47 = x_72; +x_48 = x_73; +x_49 = x_80; +x_50 = x_82; +x_51 = x_97; +x_52 = x_100; +x_53 = x_77; +x_54 = x_71; +x_55 = x_74; +x_56 = x_78; +x_57 = x_79; +x_58 = x_96; +x_59 = x_83; +x_60 = x_81; x_61 = x_85; goto block_70; } else { -x_47 = x_71; -x_48 = x_80; -x_49 = x_96; -x_50 = x_77; -x_51 = x_73; -x_52 = x_74; -x_53 = x_75; -x_54 = x_78; -x_55 = x_82; -x_56 = x_81; -x_57 = x_83; -x_58 = x_100; -x_59 = x_79; -x_60 = x_97; +x_47 = x_72; +x_48 = x_73; +x_49 = x_80; +x_50 = x_82; +x_51 = x_97; +x_52 = x_100; +x_53 = x_77; +x_54 = x_71; +x_55 = x_74; +x_56 = x_78; +x_57 = x_79; +x_58 = x_96; +x_59 = x_83; +x_60 = x_81; x_61 = x_99; goto block_70; } @@ -15180,12 +15538,12 @@ else lean_object* x_106; lean_dec(x_98); lean_dec_ref(x_76); -lean_dec_ref(x_72); +lean_dec_ref(x_75); x_106 = lean_box(0); x_21 = x_71; -x_22 = x_73; -x_23 = x_74; -x_24 = x_75; +x_22 = x_72; +x_23 = x_73; +x_24 = x_74; x_25 = x_96; x_26 = x_97; x_27 = x_106; @@ -15204,28 +15562,28 @@ block_128: { if (x_121 == 0) { -x_71 = x_108; -x_72 = x_111; -x_73 = x_112; -x_74 = x_114; -x_75 = x_116; -x_76 = x_120; -x_77 = x_118; -x_78 = x_119; -x_79 = x_113; -x_80 = x_115; -x_81 = x_109; -x_82 = x_117; -x_83 = x_110; +x_71 = x_116; +x_72 = x_108; +x_73 = x_111; +x_74 = x_119; +x_75 = x_120; +x_76 = x_115; +x_77 = x_113; +x_78 = x_109; +x_79 = x_110; +x_80 = x_118; +x_81 = x_117; +x_82 = x_114; +x_83 = x_112; goto block_107; } else { lean_object* x_122; lean_object* x_123; uint8_t x_124; lean_dec_ref(x_120); -lean_dec(x_116); -lean_dec_ref(x_114); -lean_dec_ref(x_111); +lean_dec_ref(x_116); +lean_dec_ref(x_115); +lean_dec(x_111); lean_dec(x_13); lean_dec(x_11); lean_dec_ref(x_10); @@ -15234,12 +15592,12 @@ lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec(x_1); x_122 = l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__2; -x_123 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_122, x_118, x_119, x_113, x_115, x_109, x_117, x_110); -lean_dec(x_117); -lean_dec_ref(x_109); -lean_dec(x_115); -lean_dec_ref(x_113); -lean_dec(x_119); +x_123 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_122, x_113, x_109, x_110, x_118, x_117, x_114, x_112); +lean_dec(x_114); +lean_dec_ref(x_117); +lean_dec(x_118); +lean_dec_ref(x_110); +lean_dec(x_109); x_124 = !lean_is_exclusive(x_123); if (x_124 == 0) { @@ -15263,22 +15621,22 @@ return x_127; block_144: { uint8_t x_142; -x_142 = l_Lean_Elab_Modifiers_isProtected(x_132); +x_142 = l_Lean_Elab_Modifiers_isProtected(x_129); if (x_142 == 0) { -x_108 = x_129; -x_109 = x_139; -x_110 = x_141; -x_111 = x_130; -x_112 = x_131; -x_113 = x_137; -x_114 = x_132; -x_115 = x_138; -x_116 = x_133; -x_117 = x_140; -x_118 = x_135; -x_119 = x_136; -x_120 = x_134; +x_108 = x_130; +x_109 = x_136; +x_110 = x_137; +x_111 = x_131; +x_112 = x_141; +x_113 = x_135; +x_114 = x_140; +x_115 = x_134; +x_116 = x_129; +x_117 = x_139; +x_118 = x_138; +x_119 = x_132; +x_120 = x_133; x_121 = x_142; goto block_128; } @@ -15286,19 +15644,19 @@ else { uint8_t x_143; x_143 = l_Lean_Elab_Modifiers_isPrivate(x_3); -x_108 = x_129; -x_109 = x_139; -x_110 = x_141; -x_111 = x_130; -x_112 = x_131; -x_113 = x_137; -x_114 = x_132; -x_115 = x_138; -x_116 = x_133; -x_117 = x_140; -x_118 = x_135; -x_119 = x_136; -x_120 = x_134; +x_108 = x_130; +x_109 = x_136; +x_110 = x_137; +x_111 = x_131; +x_112 = x_141; +x_113 = x_135; +x_114 = x_140; +x_115 = x_134; +x_116 = x_129; +x_117 = x_139; +x_118 = x_138; +x_119 = x_132; +x_120 = x_133; x_121 = x_143; goto block_128; } @@ -15307,28 +15665,28 @@ block_175: { if (x_159 == 0) { -lean_dec(x_151); -x_129 = x_145; -x_130 = x_146; -x_131 = x_147; -x_132 = x_148; -x_133 = x_150; -x_134 = x_158; -x_135 = x_153; -x_136 = x_152; -x_137 = x_157; -x_138 = x_154; -x_139 = x_155; -x_140 = x_156; -x_141 = x_149; +lean_dec(x_152); +x_129 = x_153; +x_130 = x_147; +x_131 = x_148; +x_132 = x_155; +x_133 = x_156; +x_134 = x_150; +x_135 = x_149; +x_136 = x_151; +x_137 = x_146; +x_138 = x_158; +x_139 = x_145; +x_140 = x_157; +x_141 = x_154; goto block_144; } else { lean_object* x_160; lean_object* x_161; -lean_dec_ref(x_158); -lean_dec_ref(x_148); -lean_dec_ref(x_146); +lean_dec_ref(x_156); +lean_dec_ref(x_153); +lean_dec_ref(x_150); lean_dec(x_13); lean_dec(x_11); lean_dec_ref(x_10); @@ -15337,10 +15695,10 @@ lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec(x_1); x_160 = l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__3; -lean_inc(x_156); -lean_inc_ref(x_155); -x_161 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePrivateFieldHint(x_151, x_150, x_160, x_155, x_156, x_149); -lean_dec(x_151); +lean_inc(x_157); +lean_inc_ref(x_145); +x_161 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePrivateFieldHint(x_152, x_148, x_160, x_145, x_157, x_154); +lean_dec(x_152); if (lean_obj_tag(x_161) == 0) { lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; uint8_t x_167; @@ -15353,12 +15711,12 @@ x_164 = l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____privat x_165 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_165, 0, x_164); lean_ctor_set(x_165, 1, x_162); -x_166 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_165, x_153, x_152, x_157, x_154, x_155, x_156, x_163); -lean_dec(x_156); -lean_dec_ref(x_155); -lean_dec(x_154); -lean_dec_ref(x_157); -lean_dec(x_152); +x_166 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_165, x_149, x_151, x_146, x_158, x_145, x_157, x_163); +lean_dec(x_157); +lean_dec_ref(x_145); +lean_dec(x_158); +lean_dec_ref(x_146); +lean_dec(x_151); x_167 = !lean_is_exclusive(x_166); if (x_167 == 0) { @@ -15381,12 +15739,12 @@ return x_170; else { uint8_t x_171; -lean_dec_ref(x_157); -lean_dec(x_156); -lean_dec_ref(x_155); -lean_dec(x_154); -lean_dec_ref(x_153); -lean_dec(x_152); +lean_dec(x_158); +lean_dec(x_157); +lean_dec(x_151); +lean_dec_ref(x_149); +lean_dec_ref(x_146); +lean_dec_ref(x_145); x_171 = !lean_is_exclusive(x_161); if (x_171 == 0) { @@ -15416,7 +15774,7 @@ x_186 = l_Lean_Syntax_getArg(x_176, x_185); lean_inc_ref(x_182); lean_inc_ref(x_178); lean_inc(x_186); -x_187 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20(x_186, x_178, x_179, x_180, x_181, x_182, x_183, x_184); +x_187 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22(x_186, x_178, x_179, x_180, x_181, x_182, x_183, x_184); if (lean_obj_tag(x_187) == 0) { lean_object* x_188; lean_object* x_189; lean_object* x_190; @@ -15434,24 +15792,24 @@ x_191 = lean_ctor_get(x_190, 1); lean_inc(x_191); lean_dec_ref(x_190); x_192 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; -x_193 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_193 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_194 = l_Lean_Elab_Modifiers_isPrivate(x_188); if (x_194 == 0) { -x_145 = x_185; -x_146 = x_193; -x_147 = x_177; -x_148 = x_188; -x_149 = x_191; -x_150 = x_176; -x_151 = x_186; -x_152 = x_179; -x_153 = x_178; -x_154 = x_181; -x_155 = x_182; -x_156 = x_183; -x_157 = x_180; -x_158 = x_192; +x_145 = x_182; +x_146 = x_180; +x_147 = x_185; +x_148 = x_176; +x_149 = x_178; +x_150 = x_193; +x_151 = x_179; +x_152 = x_186; +x_153 = x_188; +x_154 = x_191; +x_155 = x_177; +x_156 = x_192; +x_157 = x_183; +x_158 = x_181; x_159 = x_194; goto block_175; } @@ -15459,20 +15817,20 @@ else { uint8_t x_195; x_195 = l_Lean_Elab_Modifiers_isPrivate(x_3); -x_145 = x_185; -x_146 = x_193; -x_147 = x_177; -x_148 = x_188; -x_149 = x_191; -x_150 = x_176; -x_151 = x_186; -x_152 = x_179; -x_153 = x_178; -x_154 = x_181; -x_155 = x_182; -x_156 = x_183; -x_157 = x_180; -x_158 = x_192; +x_145 = x_182; +x_146 = x_180; +x_147 = x_185; +x_148 = x_176; +x_149 = x_178; +x_150 = x_193; +x_151 = x_179; +x_152 = x_186; +x_153 = x_188; +x_154 = x_191; +x_155 = x_177; +x_156 = x_192; +x_157 = x_183; +x_158 = x_181; x_159 = x_195; goto block_175; } @@ -15672,7 +16030,7 @@ goto block_204; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t 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) { _start: { -lean_object* x_15; lean_object* x_16; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t 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_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; uint8_t x_61; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; uint8_t x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_108; lean_object* x_109; uint8_t x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; uint8_t x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; uint8_t 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; uint8_t x_159; lean_object* x_176; uint8_t x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_235; +lean_object* x_15; lean_object* x_16; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t 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_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; uint8_t x_61; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; uint8_t x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; uint8_t x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; uint8_t x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; uint8_t 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; uint8_t x_159; lean_object* x_176; uint8_t x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_235; x_235 = lean_usize_dec_eq(x_5, x_6); if (x_235 == 0) { @@ -15829,7 +16187,7 @@ lean_dec(x_22); x_37 = l_Lean_Syntax_getArgs(x_36); lean_dec(x_36); x_38 = lean_array_get_size(x_37); -x_39 = lean_nat_dec_lt(x_21, x_38); +x_39 = lean_nat_dec_lt(x_23, x_38); if (x_39 == 0) { lean_dec(x_38); @@ -15843,7 +16201,7 @@ lean_dec_ref(x_28); lean_dec(x_27); lean_dec(x_26); lean_dec(x_25); -lean_dec_ref(x_23); +lean_dec_ref(x_21); x_15 = x_7; x_16 = x_34; goto block_20; @@ -15865,7 +16223,7 @@ lean_dec_ref(x_28); lean_dec(x_27); lean_dec(x_26); lean_dec(x_25); -lean_dec_ref(x_23); +lean_dec_ref(x_21); x_15 = x_7; x_16 = x_34; goto block_20; @@ -15877,7 +16235,7 @@ x_41 = 0; x_42 = lean_usize_of_nat(x_38); lean_dec(x_38); lean_inc(x_1); -x_43 = l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__0(x_1, x_23, x_24, x_25, x_26, x_27, x_37, x_41, x_42, x_7, x_28, x_29, x_30, x_31, x_32, x_33, x_34); +x_43 = l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__0(x_1, x_21, x_24, x_25, x_26, x_27, x_37, x_41, x_42, x_7, x_28, x_29, x_30, x_31, x_32, x_33, x_34); lean_dec_ref(x_32); lean_dec_ref(x_37); if (lean_obj_tag(x_43) == 0) @@ -15911,52 +16269,52 @@ if (x_61 == 0) { lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; x_62 = lean_unsigned_to_nat(2u); -x_63 = l_Lean_Syntax_getArg(x_52, x_62); -lean_dec(x_52); +x_63 = l_Lean_Syntax_getArg(x_56, x_62); +lean_dec(x_56); x_64 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_64, 0, x_63); x_65 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_65, 0, x_64); -x_21 = x_55; -x_22 = x_56; -x_23 = x_49; +x_21 = x_53; +x_22 = x_57; +x_23 = x_59; x_24 = x_51; -x_25 = x_53; -x_26 = x_54; +x_25 = x_49; +x_26 = x_58; x_27 = x_65; -x_28 = x_58; +x_28 = x_54; x_29 = x_60; -x_30 = x_50; -x_31 = x_57; -x_32 = x_59; -x_33 = x_47; -x_34 = x_48; +x_30 = x_47; +x_31 = x_48; +x_32 = x_55; +x_33 = x_52; +x_34 = x_50; goto block_46; } else { lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; x_66 = lean_unsigned_to_nat(1u); -x_67 = l_Lean_Syntax_getArg(x_52, x_66); -lean_dec(x_52); +x_67 = l_Lean_Syntax_getArg(x_56, x_66); +lean_dec(x_56); x_68 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_68, 0, x_67); x_69 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_69, 0, x_68); -x_21 = x_55; -x_22 = x_56; -x_23 = x_49; +x_21 = x_53; +x_22 = x_57; +x_23 = x_59; x_24 = x_51; -x_25 = x_53; -x_26 = x_54; +x_25 = x_49; +x_26 = x_58; x_27 = x_69; -x_28 = x_58; +x_28 = x_54; x_29 = x_60; -x_30 = x_50; -x_31 = x_57; -x_32 = x_59; -x_33 = x_47; -x_34 = x_48; +x_30 = x_47; +x_31 = x_48; +x_32 = x_55; +x_33 = x_52; +x_34 = x_50; goto block_46; } } @@ -15969,9 +16327,9 @@ if (x_85 == 0) { lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_dec_ref(x_74); -lean_dec_ref(x_73); +lean_dec_ref(x_72); x_86 = lean_unsigned_to_nat(3u); -x_87 = l_Lean_Syntax_getArg(x_72, x_86); +x_87 = l_Lean_Syntax_getArg(x_73, x_86); x_88 = l_Lean_Elab_expandDeclSig(x_87); lean_dec(x_87); x_89 = lean_ctor_get(x_88, 0); @@ -15983,7 +16341,7 @@ x_91 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_91, 0, x_90); x_92 = lean_box(0); x_21 = x_71; -x_22 = x_72; +x_22 = x_73; x_23 = x_75; x_24 = x_76; x_25 = x_89; @@ -16002,7 +16360,7 @@ else { lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; uint8_t x_99; x_93 = lean_unsigned_to_nat(3u); -x_94 = l_Lean_Syntax_getArg(x_72, x_93); +x_94 = l_Lean_Syntax_getArg(x_73, x_93); x_95 = l_Lean_Elab_expandOptDeclSig(x_94); lean_dec(x_94); x_96 = lean_ctor_get(x_95, 0); @@ -16010,55 +16368,55 @@ lean_inc(x_96); x_97 = lean_ctor_get(x_95, 1); lean_inc(x_97); lean_dec_ref(x_95); -x_98 = l_Lean_Syntax_getArg(x_72, x_2); +x_98 = l_Lean_Syntax_getArg(x_73, x_2); x_99 = l_Lean_Syntax_isNone(x_98); if (x_99 == 0) { lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; uint8_t x_105; -x_100 = l_Lean_Syntax_getArg(x_98, x_71); +x_100 = l_Lean_Syntax_getArg(x_98, x_75); lean_dec(x_98); lean_inc(x_100); x_101 = l_Lean_Syntax_getKind(x_100); -x_102 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__1; +x_102 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__1; x_103 = l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__0; -x_104 = l_Lean_Name_mkStr4(x_73, x_74, x_102, x_103); +x_104 = l_Lean_Name_mkStr4(x_72, x_74, x_102, x_103); x_105 = lean_name_eq(x_101, x_104); lean_dec(x_104); lean_dec(x_101); if (x_105 == 0) { -x_47 = x_82; -x_48 = x_83; -x_49 = x_75; -x_50 = x_79; +x_47 = x_79; +x_48 = x_80; +x_49 = x_96; +x_50 = x_83; x_51 = x_76; -x_52 = x_100; -x_53 = x_96; -x_54 = x_97; -x_55 = x_71; -x_56 = x_72; -x_57 = x_80; -x_58 = x_77; -x_59 = x_81; +x_52 = x_82; +x_53 = x_71; +x_54 = x_77; +x_55 = x_81; +x_56 = x_100; +x_57 = x_73; +x_58 = x_97; +x_59 = x_75; x_60 = x_78; x_61 = x_85; goto block_70; } else { -x_47 = x_82; -x_48 = x_83; -x_49 = x_75; -x_50 = x_79; +x_47 = x_79; +x_48 = x_80; +x_49 = x_96; +x_50 = x_83; x_51 = x_76; -x_52 = x_100; -x_53 = x_96; -x_54 = x_97; -x_55 = x_71; -x_56 = x_72; -x_57 = x_80; -x_58 = x_77; -x_59 = x_81; +x_52 = x_82; +x_53 = x_71; +x_54 = x_77; +x_55 = x_81; +x_56 = x_100; +x_57 = x_73; +x_58 = x_97; +x_59 = x_75; x_60 = x_78; x_61 = x_99; goto block_70; @@ -16069,10 +16427,10 @@ else lean_object* x_106; lean_dec(x_98); lean_dec_ref(x_74); -lean_dec_ref(x_73); +lean_dec_ref(x_72); x_106 = lean_box(0); x_21 = x_71; -x_22 = x_72; +x_22 = x_73; x_23 = x_75; x_24 = x_76; x_25 = x_96; @@ -16093,28 +16451,28 @@ block_128: { if (x_121 == 0) { -x_71 = x_115; -x_72 = x_116; -x_73 = x_108; -x_74 = x_117; -x_75 = x_109; -x_76 = x_110; -x_77 = x_119; -x_78 = x_120; -x_79 = x_113; -x_80 = x_118; -x_81 = x_111; +x_71 = x_117; +x_72 = x_111; +x_73 = x_119; +x_74 = x_113; +x_75 = x_120; +x_76 = x_115; +x_77 = x_112; +x_78 = x_118; +x_79 = x_108; +x_80 = x_109; +x_81 = x_116; x_82 = x_114; -x_83 = x_112; +x_83 = x_110; goto block_107; } else { lean_object* x_122; lean_object* x_123; uint8_t x_124; +lean_dec(x_119); lean_dec_ref(x_117); -lean_dec(x_116); -lean_dec_ref(x_109); -lean_dec_ref(x_108); +lean_dec_ref(x_113); +lean_dec_ref(x_111); lean_dec(x_13); lean_dec(x_11); lean_dec_ref(x_10); @@ -16123,12 +16481,12 @@ lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec(x_1); x_122 = l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__2; -x_123 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_122, x_119, x_120, x_113, x_118, x_111, x_114, x_112); +x_123 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_122, x_112, x_118, x_108, x_109, x_116, x_114, x_110); lean_dec(x_114); -lean_dec_ref(x_111); +lean_dec_ref(x_116); +lean_dec(x_109); +lean_dec_ref(x_108); lean_dec(x_118); -lean_dec_ref(x_113); -lean_dec(x_120); x_124 = !lean_is_exclusive(x_123); if (x_124 == 0) { @@ -16152,22 +16510,22 @@ return x_127; block_144: { uint8_t x_142; -x_142 = l_Lean_Elab_Modifiers_isProtected(x_133); +x_142 = l_Lean_Elab_Modifiers_isProtected(x_129); if (x_142 == 0) { -x_108 = x_131; -x_109 = x_133; -x_110 = x_134; -x_111 = x_139; -x_112 = x_141; -x_113 = x_137; +x_108 = x_137; +x_109 = x_138; +x_110 = x_141; +x_111 = x_130; +x_112 = x_135; +x_113 = x_132; x_114 = x_140; -x_115 = x_130; -x_116 = x_129; -x_117 = x_132; -x_118 = x_138; -x_119 = x_135; -x_120 = x_136; +x_115 = x_134; +x_116 = x_139; +x_117 = x_129; +x_118 = x_136; +x_119 = x_131; +x_120 = x_133; x_121 = x_142; goto block_128; } @@ -16175,19 +16533,19 @@ else { uint8_t x_143; x_143 = l_Lean_Elab_Modifiers_isPrivate(x_3); -x_108 = x_131; -x_109 = x_133; -x_110 = x_134; -x_111 = x_139; -x_112 = x_141; -x_113 = x_137; +x_108 = x_137; +x_109 = x_138; +x_110 = x_141; +x_111 = x_130; +x_112 = x_135; +x_113 = x_132; x_114 = x_140; -x_115 = x_130; -x_116 = x_129; -x_117 = x_132; -x_118 = x_138; -x_119 = x_135; -x_120 = x_136; +x_115 = x_134; +x_116 = x_139; +x_117 = x_129; +x_118 = x_136; +x_119 = x_131; +x_120 = x_133; x_121 = x_143; goto block_128; } @@ -16196,28 +16554,28 @@ block_175: { if (x_159 == 0) { -lean_dec(x_151); -x_129 = x_154; -x_130 = x_155; -x_131 = x_147; -x_132 = x_157; -x_133 = x_148; -x_134 = x_150; +lean_dec(x_150); +x_129 = x_153; +x_130 = x_148; +x_131 = x_156; +x_132 = x_149; +x_133 = x_158; +x_134 = x_151; x_135 = x_152; -x_136 = x_158; -x_137 = x_145; -x_138 = x_153; -x_139 = x_146; -x_140 = x_149; -x_141 = x_156; +x_136 = x_146; +x_137 = x_154; +x_138 = x_145; +x_139 = x_155; +x_140 = x_147; +x_141 = x_157; goto block_144; } else { lean_object* x_160; lean_object* x_161; -lean_dec_ref(x_157); +lean_dec_ref(x_153); +lean_dec_ref(x_149); lean_dec_ref(x_148); -lean_dec_ref(x_147); lean_dec(x_13); lean_dec(x_11); lean_dec_ref(x_10); @@ -16226,10 +16584,10 @@ lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec(x_1); x_160 = l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1_spec__1___closed__3; -lean_inc(x_149); -lean_inc_ref(x_146); -x_161 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePrivateFieldHint(x_151, x_154, x_160, x_146, x_149, x_156); -lean_dec(x_151); +lean_inc(x_147); +lean_inc_ref(x_155); +x_161 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePrivateFieldHint(x_150, x_156, x_160, x_155, x_147, x_157); +lean_dec(x_150); if (lean_obj_tag(x_161) == 0) { lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; uint8_t x_167; @@ -16242,12 +16600,12 @@ x_164 = l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at_____privat x_165 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_165, 0, x_164); lean_ctor_set(x_165, 1, x_162); -x_166 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_165, x_152, x_158, x_145, x_153, x_146, x_149, x_163); -lean_dec(x_149); -lean_dec_ref(x_146); -lean_dec(x_153); -lean_dec_ref(x_145); -lean_dec(x_158); +x_166 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1___redArg(x_165, x_152, x_146, x_154, x_145, x_155, x_147, x_163); +lean_dec(x_147); +lean_dec_ref(x_155); +lean_dec(x_145); +lean_dec_ref(x_154); +lean_dec(x_146); x_167 = !lean_is_exclusive(x_166); if (x_167 == 0) { @@ -16270,12 +16628,12 @@ return x_170; else { uint8_t x_171; -lean_dec(x_158); -lean_dec(x_153); +lean_dec_ref(x_155); +lean_dec_ref(x_154); lean_dec_ref(x_152); -lean_dec(x_149); -lean_dec_ref(x_146); -lean_dec_ref(x_145); +lean_dec(x_147); +lean_dec(x_146); +lean_dec(x_145); x_171 = !lean_is_exclusive(x_161); if (x_171 == 0) { @@ -16305,7 +16663,7 @@ x_186 = l_Lean_Syntax_getArg(x_176, x_185); lean_inc_ref(x_182); lean_inc_ref(x_178); lean_inc(x_186); -x_187 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20(x_186, x_178, x_179, x_180, x_181, x_182, x_183, x_184); +x_187 = l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22(x_186, x_178, x_179, x_180, x_181, x_182, x_183, x_184); if (lean_obj_tag(x_187) == 0) { lean_object* x_188; lean_object* x_189; lean_object* x_190; @@ -16323,24 +16681,24 @@ x_191 = lean_ctor_get(x_190, 1); lean_inc(x_191); lean_dec_ref(x_190); x_192 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; -x_193 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_193 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_194 = l_Lean_Elab_Modifiers_isPrivate(x_188); if (x_194 == 0) { -x_145 = x_180; -x_146 = x_182; -x_147 = x_192; -x_148 = x_188; -x_149 = x_183; -x_150 = x_177; -x_151 = x_186; +x_145 = x_181; +x_146 = x_179; +x_147 = x_183; +x_148 = x_192; +x_149 = x_193; +x_150 = x_186; +x_151 = x_177; x_152 = x_178; -x_153 = x_181; -x_154 = x_176; -x_155 = x_185; -x_156 = x_191; -x_157 = x_193; -x_158 = x_179; +x_153 = x_188; +x_154 = x_180; +x_155 = x_182; +x_156 = x_176; +x_157 = x_191; +x_158 = x_185; x_159 = x_194; goto block_175; } @@ -16348,20 +16706,20 @@ else { uint8_t x_195; x_195 = l_Lean_Elab_Modifiers_isPrivate(x_3); -x_145 = x_180; -x_146 = x_182; -x_147 = x_192; -x_148 = x_188; -x_149 = x_183; -x_150 = x_177; -x_151 = x_186; +x_145 = x_181; +x_146 = x_179; +x_147 = x_183; +x_148 = x_192; +x_149 = x_193; +x_150 = x_186; +x_151 = x_177; x_152 = x_178; -x_153 = x_181; -x_154 = x_176; -x_155 = x_185; -x_156 = x_191; -x_157 = x_193; -x_158 = x_179; +x_153 = x_188; +x_154 = x_180; +x_155 = x_182; +x_156 = x_176; +x_157 = x_191; +x_158 = x_185; x_159 = x_195; goto block_175; } @@ -16651,7 +17009,7 @@ _start: uint8_t x_8; uint8_t x_9; lean_object* x_10; x_8 = 1; x_9 = 0; -x_10 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg(x_1, x_2, x_8, x_9, x_3, x_4, x_5, x_6, x_7); +x_10 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg(x_1, x_2, x_8, x_9, x_3, x_4, x_5, x_6, x_7); return x_10; } } @@ -16894,7 +17252,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields___closed__5; x_2 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__13____x40_Lean_Elab_Structure___hyg_4_; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_4 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; @@ -17041,15 +17399,15 @@ if (x_23 == 0) lean_object* x_24; lean_dec(x_22); lean_dec_ref(x_19); -lean_dec_ref(x_18); -lean_dec_ref(x_17); +lean_dec(x_18); lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_12); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_11); lean_dec(x_3); x_24 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_24, 0, x_21); -lean_ctor_set(x_24, 1, x_11); +lean_ctor_set(x_24, 1, x_16); return x_24; } else @@ -17061,15 +17419,15 @@ if (x_25 == 0) lean_object* x_26; lean_dec(x_22); lean_dec_ref(x_19); -lean_dec_ref(x_18); -lean_dec_ref(x_17); +lean_dec(x_18); lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_12); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_11); lean_dec(x_3); x_26 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_26, 0, x_21); -lean_ctor_set(x_26, 1, x_11); +lean_ctor_set(x_26, 1, x_16); return x_26; } else @@ -17078,7 +17436,7 @@ size_t x_27; size_t x_28; lean_object* x_29; x_27 = 0; x_28 = lean_usize_of_nat(x_22); lean_dec(x_22); -x_29 = l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1(x_3, x_16, x_2, x_19, x_27, x_28, x_21, x_17, x_12, x_18, x_14, x_13, x_15, x_11); +x_29 = l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields_spec__1(x_3, x_12, x_2, x_19, x_27, x_28, x_21, x_11, x_18, x_14, x_13, x_17, x_15, x_16); lean_dec_ref(x_19); return x_29; } @@ -17101,14 +17459,14 @@ x_44 = l_Lean_Syntax_getArg(x_42, x_43); lean_dec(x_42); x_45 = l_Lean_Syntax_getArgs(x_44); lean_dec(x_44); -x_11 = x_37; -x_12 = x_32; -x_13 = x_35; -x_14 = x_34; +x_11 = x_31; +x_12 = x_38; +x_13 = x_34; +x_14 = x_33; x_15 = x_36; -x_16 = x_38; -x_17 = x_31; -x_18 = x_33; +x_16 = x_37; +x_17 = x_35; +x_18 = x_32; x_19 = x_45; goto block_30; } @@ -17117,14 +17475,14 @@ else lean_object* x_46; lean_dec(x_39); x_46 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandParents___closed__0; -x_11 = x_37; -x_12 = x_32; -x_13 = x_35; -x_14 = x_34; +x_11 = x_31; +x_12 = x_38; +x_13 = x_34; +x_14 = x_33; x_15 = x_36; -x_16 = x_38; -x_17 = x_31; -x_18 = x_33; +x_16 = x_37; +x_17 = x_35; +x_18 = x_32; x_19 = x_46; goto block_30; } @@ -17389,7 +17747,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_Elab_addDeclarationRangesForBuiltin___at___Lean_Elab_Command_Structure_structureSyntaxToView_spec__1___closed__0; x_2 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__13____x40_Lean_Elab_Structure___hyg_4_; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_4 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; @@ -17427,7 +17785,7 @@ lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); lean_ctor_set(x_19, 2, x_16); x_20 = l_Lean_Elab_getDeclarationSelectionRef(x_3); -x_21 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17(x_1, x_19, x_20, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_21 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19(x_1, x_19, x_20, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_20); lean_dec_ref(x_19); return x_21; @@ -17526,7 +17884,7 @@ x_30 = lean_ctor_get(x_21, 2); lean_inc(x_30); lean_dec_ref(x_21); x_31 = lean_box(0); -x_32 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17(x_30, x_29, x_31, x_22, x_23, x_24, x_25, x_26, x_27, x_28); +x_32 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19(x_30, x_29, x_31, x_22, x_23, x_24, x_25, x_26, x_27, x_28); lean_dec_ref(x_22); lean_dec(x_29); x_13 = x_32; @@ -17815,28 +18173,28 @@ block_38: { uint8_t 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; x_31 = 0; -x_32 = lean_mk_empty_array_with_capacity(x_26); -x_33 = lean_array_push(x_32, x_20); +x_32 = lean_mk_empty_array_with_capacity(x_24); +x_33 = lean_array_push(x_32, x_25); x_34 = l_Lean_Elab_Command_Structure_structureSyntaxToView___closed__0; x_35 = lean_alloc_ctor(0, 11, 3); lean_ctor_set(x_35, 0, x_2); lean_ctor_set(x_35, 1, x_19); -lean_ctor_set(x_35, 2, x_29); -lean_ctor_set(x_35, 3, x_28); -lean_ctor_set(x_35, 4, x_18); -lean_ctor_set(x_35, 5, x_24); -lean_ctor_set(x_35, 6, x_22); -lean_ctor_set(x_35, 7, x_21); +lean_ctor_set(x_35, 2, x_20); +lean_ctor_set(x_35, 3, x_23); +lean_ctor_set(x_35, 4, x_28); +lean_ctor_set(x_35, 5, x_22); +lean_ctor_set(x_35, 6, x_27); +lean_ctor_set(x_35, 7, x_18); lean_ctor_set(x_35, 8, x_33); lean_ctor_set(x_35, 9, x_34); -lean_ctor_set(x_35, 10, x_25); +lean_ctor_set(x_35, 10, x_26); lean_ctor_set_uint8(x_35, sizeof(void*)*11, x_17); lean_ctor_set_uint8(x_35, sizeof(void*)*11 + 1, x_31); lean_ctor_set_uint8(x_35, sizeof(void*)*11 + 2, x_31); x_36 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_36, 0, x_35); -lean_ctor_set(x_36, 1, x_23); -lean_ctor_set(x_36, 2, x_27); +lean_ctor_set(x_36, 1, x_21); +lean_ctor_set(x_36, 2, x_29); if (lean_is_scalar(x_12)) { x_37 = lean_alloc_ctor(0, 2, 0); } else { @@ -17850,13 +18208,13 @@ block_77: { lean_object* x_58; lean_inc(x_49); -lean_inc_ref(x_42); -lean_inc(x_54); -lean_inc_ref(x_50); -lean_inc(x_44); -lean_inc_ref(x_43); -lean_inc(x_39); -x_58 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor(x_2, x_48, x_39, x_57, x_43, x_44, x_50, x_54, x_42, x_49, x_45); +lean_inc_ref(x_44); +lean_inc(x_42); +lean_inc_ref(x_51); +lean_inc(x_45); +lean_inc_ref(x_56); +lean_inc(x_55); +x_58 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor(x_2, x_43, x_55, x_57, x_56, x_45, x_51, x_42, x_44, x_49, x_39); if (lean_obj_tag(x_58) == 0) { lean_object* x_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; @@ -17865,29 +18223,29 @@ lean_inc(x_59); x_60 = lean_ctor_get(x_58, 1); lean_inc(x_60); lean_dec_ref(x_58); -x_61 = lean_array_get_size(x_56); +x_61 = lean_array_get_size(x_52); x_62 = lean_nat_dec_lt(x_13, x_61); if (x_62 == 0) { lean_dec(x_61); -lean_dec(x_54); -lean_dec_ref(x_50); +lean_dec_ref(x_56); +lean_dec_ref(x_51); lean_dec(x_49); -lean_dec(x_44); -lean_dec_ref(x_43); -lean_dec_ref(x_42); -x_18 = x_39; -x_19 = x_51; -x_20 = x_59; -x_21 = x_40; -x_22 = x_41; -x_23 = x_53; -x_24 = x_52; -x_25 = x_55; -x_26 = x_46; -x_27 = x_56; -x_28 = x_47; -x_29 = x_48; +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_42); +x_18 = x_40; +x_19 = x_41; +x_20 = x_43; +x_21 = x_47; +x_22 = x_48; +x_23 = x_46; +x_24 = x_53; +x_25 = x_59; +x_26 = x_54; +x_27 = x_50; +x_28 = x_55; +x_29 = x_52; x_30 = x_60; goto block_38; } @@ -17898,24 +18256,24 @@ x_63 = lean_nat_dec_le(x_61, x_61); if (x_63 == 0) { lean_dec(x_61); -lean_dec(x_54); -lean_dec_ref(x_50); +lean_dec_ref(x_56); +lean_dec_ref(x_51); lean_dec(x_49); -lean_dec(x_44); -lean_dec_ref(x_43); -lean_dec_ref(x_42); -x_18 = x_39; -x_19 = x_51; -x_20 = x_59; -x_21 = x_40; -x_22 = x_41; -x_23 = x_53; -x_24 = x_52; -x_25 = x_55; -x_26 = x_46; -x_27 = x_56; -x_28 = x_47; -x_29 = x_48; +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec(x_42); +x_18 = x_40; +x_19 = x_41; +x_20 = x_43; +x_21 = x_47; +x_22 = x_48; +x_23 = x_46; +x_24 = x_53; +x_25 = x_59; +x_26 = x_54; +x_27 = x_50; +x_28 = x_55; +x_29 = x_52; x_30 = x_60; goto block_38; } @@ -17926,29 +18284,29 @@ x_64 = lean_box(0); x_65 = 0; x_66 = lean_usize_of_nat(x_61); lean_dec(x_61); -x_67 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_Command_Structure_structureSyntaxToView_spec__2(x_59, x_56, x_65, x_66, x_64, x_43, x_44, x_50, x_54, x_42, x_49, x_60); +x_67 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_Command_Structure_structureSyntaxToView_spec__2(x_59, x_52, x_65, x_66, x_64, x_56, x_45, x_51, x_42, x_44, x_49, x_60); lean_dec(x_49); -lean_dec(x_54); -lean_dec_ref(x_50); -lean_dec(x_44); +lean_dec(x_42); +lean_dec_ref(x_51); +lean_dec(x_45); if (lean_obj_tag(x_67) == 0) { lean_object* x_68; x_68 = lean_ctor_get(x_67, 1); lean_inc(x_68); lean_dec_ref(x_67); -x_18 = x_39; -x_19 = x_51; -x_20 = x_59; -x_21 = x_40; -x_22 = x_41; -x_23 = x_53; -x_24 = x_52; -x_25 = x_55; -x_26 = x_46; -x_27 = x_56; -x_28 = x_47; -x_29 = x_48; +x_18 = x_40; +x_19 = x_41; +x_20 = x_43; +x_21 = x_47; +x_22 = x_48; +x_23 = x_46; +x_24 = x_53; +x_25 = x_59; +x_26 = x_54; +x_27 = x_50; +x_28 = x_55; +x_29 = x_52; x_30 = x_68; goto block_38; } @@ -17956,16 +18314,16 @@ else { uint8_t x_69; lean_dec(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_55); -lean_dec_ref(x_53); -lean_dec(x_52); -lean_dec(x_51); -lean_dec_ref(x_48); -lean_dec(x_47); +lean_dec(x_55); +lean_dec_ref(x_54); +lean_dec_ref(x_52); +lean_dec(x_50); +lean_dec(x_48); +lean_dec_ref(x_47); +lean_dec(x_46); +lean_dec_ref(x_43); lean_dec(x_41); lean_dec(x_40); -lean_dec(x_39); lean_dec(x_12); lean_dec(x_2); x_69 = !lean_is_exclusive(x_67); @@ -17994,21 +18352,21 @@ else { uint8_t x_73; lean_dec_ref(x_56); -lean_dec_ref(x_55); -lean_dec(x_54); -lean_dec_ref(x_53); -lean_dec(x_52); -lean_dec(x_51); -lean_dec_ref(x_50); +lean_dec(x_55); +lean_dec_ref(x_54); +lean_dec_ref(x_52); +lean_dec_ref(x_51); +lean_dec(x_50); lean_dec(x_49); -lean_dec_ref(x_48); -lean_dec(x_47); -lean_dec(x_44); +lean_dec(x_48); +lean_dec_ref(x_47); +lean_dec(x_46); +lean_dec(x_45); +lean_dec_ref(x_44); lean_dec_ref(x_43); -lean_dec_ref(x_42); +lean_dec(x_42); lean_dec(x_41); lean_dec(x_40); -lean_dec(x_39); lean_dec(x_12); lean_dec(x_2); x_73 = !lean_is_exclusive(x_58); @@ -18035,8 +18393,8 @@ block_128: { lean_object* x_94; lean_inc_ref(x_87); -x_94 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandParents(x_82, x_87, x_88, x_89, x_90, x_91, x_92, x_93); -lean_dec(x_82); +x_94 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandParents(x_80, x_87, x_88, x_89, x_90, x_91, x_92, x_93); +lean_dec(x_80); if (lean_obj_tag(x_94) == 0) { lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; @@ -18063,8 +18421,8 @@ lean_inc(x_90); lean_inc_ref(x_89); lean_inc(x_88); lean_inc_ref(x_87); -lean_inc(x_79); -x_102 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields(x_2, x_85, x_79, x_87, x_88, x_89, x_90, x_91, x_92, x_101); +lean_inc(x_85); +x_102 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandFields(x_2, x_79, x_85, x_87, x_88, x_89, x_90, x_91, x_92, x_101); if (lean_obj_tag(x_102) == 0) { lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; uint8_t x_110; @@ -18088,24 +18446,24 @@ x_110 = lean_ctor_get_uint8(x_109, sizeof(void*)*5 + 4); lean_dec_ref(x_109); if (x_110 == 0) { -x_39 = x_79; +x_39 = x_107; x_40 = x_86; -x_41 = x_80; -x_42 = x_91; -x_43 = x_87; -x_44 = x_88; -x_45 = x_107; +x_41 = x_78; +x_42 = x_90; +x_43 = x_79; +x_44 = x_91; +x_45 = x_88; x_46 = x_83; -x_47 = x_84; -x_48 = x_85; +x_47 = x_95; +x_48 = x_82; x_49 = x_92; -x_50 = x_89; -x_51 = x_78; -x_52 = x_81; -x_53 = x_95; -x_54 = x_90; -x_55 = x_100; -x_56 = x_103; +x_50 = x_84; +x_51 = x_89; +x_52 = x_103; +x_53 = x_81; +x_54 = x_100; +x_55 = x_85; +x_56 = x_87; x_57 = x_110; goto block_77; } @@ -18117,24 +18475,24 @@ x_112 = lean_nat_dec_lt(x_13, x_111); if (x_112 == 0) { lean_dec(x_111); -x_39 = x_79; +x_39 = x_107; x_40 = x_86; -x_41 = x_80; -x_42 = x_91; -x_43 = x_87; -x_44 = x_88; -x_45 = x_107; +x_41 = x_78; +x_42 = x_90; +x_43 = x_79; +x_44 = x_91; +x_45 = x_88; x_46 = x_83; -x_47 = x_84; -x_48 = x_85; +x_47 = x_95; +x_48 = x_82; x_49 = x_92; -x_50 = x_89; -x_51 = x_78; -x_52 = x_81; -x_53 = x_95; -x_54 = x_90; -x_55 = x_100; -x_56 = x_103; +x_50 = x_84; +x_51 = x_89; +x_52 = x_103; +x_53 = x_81; +x_54 = x_100; +x_55 = x_85; +x_56 = x_87; x_57 = x_112; goto block_77; } @@ -18143,24 +18501,24 @@ else if (x_112 == 0) { lean_dec(x_111); -x_39 = x_79; +x_39 = x_107; x_40 = x_86; -x_41 = x_80; -x_42 = x_91; -x_43 = x_87; -x_44 = x_88; -x_45 = x_107; +x_41 = x_78; +x_42 = x_90; +x_43 = x_79; +x_44 = x_91; +x_45 = x_88; x_46 = x_83; -x_47 = x_84; -x_48 = x_85; +x_47 = x_95; +x_48 = x_82; x_49 = x_92; -x_50 = x_89; -x_51 = x_78; -x_52 = x_81; -x_53 = x_95; -x_54 = x_90; -x_55 = x_100; -x_56 = x_103; +x_50 = x_84; +x_51 = x_89; +x_52 = x_103; +x_53 = x_81; +x_54 = x_100; +x_55 = x_85; +x_56 = x_87; x_57 = x_112; goto block_77; } @@ -18171,24 +18529,24 @@ x_113 = 0; x_114 = lean_usize_of_nat(x_111); lean_dec(x_111); x_115 = l_Array_anyMUnsafe_any___at___Lean_Elab_Command_Structure_structureSyntaxToView_spec__3(x_103, x_113, x_114); -x_39 = x_79; +x_39 = x_107; x_40 = x_86; -x_41 = x_80; -x_42 = x_91; -x_43 = x_87; -x_44 = x_88; -x_45 = x_107; +x_41 = x_78; +x_42 = x_90; +x_43 = x_79; +x_44 = x_91; +x_45 = x_88; x_46 = x_83; -x_47 = x_84; -x_48 = x_85; +x_47 = x_95; +x_48 = x_82; x_49 = x_92; -x_50 = x_89; -x_51 = x_78; -x_52 = x_81; -x_53 = x_95; -x_54 = x_90; -x_55 = x_100; -x_56 = x_103; +x_50 = x_84; +x_51 = x_89; +x_52 = x_103; +x_53 = x_81; +x_54 = x_100; +x_55 = x_85; +x_56 = x_87; x_57 = x_115; goto block_77; } @@ -18207,11 +18565,11 @@ lean_dec_ref(x_89); lean_dec(x_88); lean_dec_ref(x_87); lean_dec(x_86); -lean_dec_ref(x_85); +lean_dec(x_85); lean_dec(x_84); -lean_dec(x_81); -lean_dec(x_80); -lean_dec(x_79); +lean_dec(x_83); +lean_dec(x_82); +lean_dec_ref(x_79); lean_dec(x_78); lean_dec(x_12); lean_dec(x_2); @@ -18246,11 +18604,11 @@ lean_dec_ref(x_89); lean_dec(x_88); lean_dec_ref(x_87); lean_dec(x_86); -lean_dec_ref(x_85); +lean_dec(x_85); lean_dec(x_84); -lean_dec(x_81); -lean_dec(x_80); -lean_dec(x_79); +lean_dec(x_83); +lean_dec(x_82); +lean_dec_ref(x_79); lean_dec(x_78); lean_dec(x_12); lean_dec(x_2); @@ -18284,11 +18642,11 @@ lean_dec_ref(x_89); lean_dec(x_88); lean_dec_ref(x_87); lean_dec(x_86); -lean_dec_ref(x_85); +lean_dec(x_85); lean_dec(x_84); -lean_dec(x_81); -lean_dec(x_80); -lean_dec(x_79); +lean_dec(x_83); +lean_dec(x_82); +lean_dec_ref(x_79); lean_dec(x_78); lean_dec(x_12); lean_dec(x_2); @@ -18316,54 +18674,54 @@ block_150: { lean_object* x_141; lean_object* x_142; uint8_t x_143; x_141 = lean_box(0); -x_142 = lean_apply_1(x_132, x_141); +x_142 = lean_apply_1(x_137, x_141); x_143 = lean_unbox(x_142); if (x_143 == 0) { -lean_dec(x_135); -x_78 = x_130; -x_79 = x_129; -x_80 = x_133; -x_81 = x_134; -x_82 = x_136; -x_83 = x_138; -x_84 = x_140; +lean_dec(x_133); +x_78 = x_129; +x_79 = x_131; +x_80 = x_130; +x_81 = x_136; +x_82 = x_135; +x_83 = x_134; +x_84 = x_138; x_85 = x_139; -x_86 = x_137; +x_86 = x_140; x_87 = x_3; x_88 = x_4; x_89 = x_5; x_90 = x_6; x_91 = x_7; x_92 = x_8; -x_93 = x_131; +x_93 = x_132; goto block_128; } else { lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; -x_144 = l_Lean_Syntax_getArg(x_136, x_13); -x_145 = l_Lean_Syntax_getArg(x_144, x_135); -lean_dec(x_135); +x_144 = l_Lean_Syntax_getArg(x_130, x_13); +x_145 = l_Lean_Syntax_getArg(x_144, x_133); +lean_dec(x_133); lean_dec(x_144); x_146 = l_Lean_Syntax_getArg(x_145, x_13); lean_dec(x_145); x_147 = l_Lean_Elab_Command_Structure_structureSyntaxToView___closed__8; lean_inc_ref(x_7); -x_148 = l_Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28(x_146, x_147, x_3, x_4, x_5, x_6, x_7, x_8, x_131); +x_148 = l_Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30(x_146, x_147, x_3, x_4, x_5, x_6, x_7, x_8, x_132); lean_dec(x_146); x_149 = lean_ctor_get(x_148, 1); lean_inc(x_149); lean_dec_ref(x_148); -x_78 = x_130; -x_79 = x_129; -x_80 = x_133; -x_81 = x_134; -x_82 = x_136; -x_83 = x_138; -x_84 = x_140; +x_78 = x_129; +x_79 = x_131; +x_80 = x_130; +x_81 = x_136; +x_82 = x_135; +x_83 = x_134; +x_84 = x_138; x_85 = x_139; -x_86 = x_137; +x_86 = x_140; x_87 = x_3; x_88 = x_4; x_89 = x_5; @@ -18377,38 +18735,38 @@ goto block_128; block_165: { uint8_t x_164; -x_164 = l_Lean_Syntax_isNone(x_158); +x_164 = l_Lean_Syntax_isNone(x_153); if (x_164 == 0) { -x_129 = x_152; -x_130 = x_151; -x_131 = x_154; -x_132 = x_153; -x_133 = x_155; -x_134 = x_156; +x_129 = x_151; +x_130 = x_153; +x_131 = x_152; +x_132 = x_154; +x_133 = x_159; +x_134 = x_158; x_135 = x_157; -x_136 = x_158; -x_137 = x_159; +x_136 = x_156; +x_137 = x_155; x_138 = x_160; -x_139 = x_162; -x_140 = x_161; +x_139 = x_161; +x_140 = x_162; goto block_150; } else { if (x_163 == 0) { -lean_dec(x_157); -lean_dec_ref(x_153); +lean_dec(x_159); +lean_dec_ref(x_155); x_78 = x_151; x_79 = x_152; -x_80 = x_155; +x_80 = x_153; x_81 = x_156; -x_82 = x_158; -x_83 = x_160; -x_84 = x_161; -x_85 = x_162; -x_86 = x_159; +x_82 = x_157; +x_83 = x_158; +x_84 = x_160; +x_85 = x_161; +x_86 = x_162; x_87 = x_3; x_88 = x_4; x_89 = x_5; @@ -18420,18 +18778,18 @@ goto block_128; } else { -x_129 = x_152; -x_130 = x_151; -x_131 = x_154; -x_132 = x_153; -x_133 = x_155; -x_134 = x_156; +x_129 = x_151; +x_130 = x_153; +x_131 = x_152; +x_132 = x_154; +x_133 = x_159; +x_134 = x_158; x_135 = x_157; -x_136 = x_158; -x_137 = x_159; +x_136 = x_156; +x_137 = x_155; x_138 = x_160; -x_139 = x_162; -x_140 = x_161; +x_139 = x_161; +x_140 = x_162; goto block_150; } } @@ -18511,17 +18869,17 @@ x_192 = l_Lean_Elab_Command_Structure_structureSyntaxToView___lam__0(x_188, x_13 if (x_192 == 0) { x_151 = x_172; -x_152 = x_177; -x_153 = x_189; +x_152 = x_166; +x_153 = x_188; x_154 = x_181; -x_155 = x_185; -x_156 = x_178; -x_157 = x_182; -x_158 = x_188; -x_159 = x_186; -x_160 = x_171; -x_161 = x_176; -x_162 = x_166; +x_155 = x_189; +x_156 = x_171; +x_157 = x_178; +x_158 = x_176; +x_159 = x_182; +x_160 = x_185; +x_161 = x_177; +x_162 = x_186; x_163 = x_192; goto block_165; } @@ -18545,13 +18903,13 @@ lean_dec(x_195); x_200 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_200, 0, x_199); x_78 = x_172; -x_79 = x_177; -x_80 = x_185; -x_81 = x_178; -x_82 = x_188; -x_83 = x_171; -x_84 = x_176; -x_85 = x_166; +x_79 = x_166; +x_80 = x_188; +x_81 = x_171; +x_82 = x_178; +x_83 = x_176; +x_84 = x_185; +x_85 = x_177; x_86 = x_200; x_87 = x_3; x_88 = x_4; @@ -18568,17 +18926,17 @@ else uint8_t x_201; x_201 = 0; x_151 = x_172; -x_152 = x_177; -x_153 = x_189; +x_152 = x_166; +x_153 = x_188; x_154 = x_181; -x_155 = x_185; -x_156 = x_178; -x_157 = x_182; -x_158 = x_188; -x_159 = x_186; -x_160 = x_171; -x_161 = x_176; -x_162 = x_166; +x_155 = x_189; +x_156 = x_171; +x_157 = x_178; +x_158 = x_176; +x_159 = x_182; +x_160 = x_185; +x_161 = x_177; +x_162 = x_186; x_163 = x_201; goto block_165; } @@ -18588,17 +18946,17 @@ else uint8_t x_202; x_202 = 0; x_151 = x_172; -x_152 = x_177; -x_153 = x_189; +x_152 = x_166; +x_153 = x_188; x_154 = x_181; -x_155 = x_185; -x_156 = x_178; -x_157 = x_182; -x_158 = x_188; -x_159 = x_186; -x_160 = x_171; -x_161 = x_176; -x_162 = x_166; +x_155 = x_189; +x_156 = x_171; +x_157 = x_178; +x_158 = x_176; +x_159 = x_182; +x_160 = x_185; +x_161 = x_177; +x_162 = x_186; x_163 = x_202; goto block_165; } @@ -21820,7 +22178,7 @@ LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Meta_withIncRecDe _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_3 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__6; +x_3 = l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__6; x_4 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_3); @@ -24466,7 +24824,7 @@ lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean x_82 = l_Array_toSubarray___redArg(x_76, x_80, x_81); x_83 = l_Array_ofSubarray___redArg(x_82); lean_dec_ref(x_82); -x_84 = l_Lean_mkAppN(x_77, x_83); +x_84 = l_Lean_mkAppN(x_79, x_83); lean_dec_ref(x_83); if (lean_is_scalar(x_70)) { x_85 = lean_alloc_ctor(1, 1, 0); @@ -24480,7 +24838,7 @@ if (lean_is_scalar(x_68)) { x_86 = x_68; } lean_ctor_set(x_86, 0, x_85); -lean_ctor_set(x_86, 1, x_79); +lean_ctor_set(x_86, 1, x_77); if (lean_is_scalar(x_66)) { x_87 = lean_alloc_ctor(0, 2, 0); } else { @@ -24560,9 +24918,9 @@ x_114 = lean_array_get_size(x_76); x_115 = lean_nat_dec_le(x_112, x_113); if (x_115 == 0) { -x_77 = x_111; +x_77 = x_90; x_78 = x_97; -x_79 = x_90; +x_79 = x_111; x_80 = x_112; x_81 = x_114; goto block_88; @@ -24570,9 +24928,9 @@ goto block_88; else { lean_dec(x_112); -x_77 = x_111; +x_77 = x_90; x_78 = x_97; -x_79 = x_90; +x_79 = x_111; x_80 = x_113; x_81 = x_114; goto block_88; @@ -28940,7 +29298,7 @@ return x_198; LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logWarning___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__11_spec__11_spec__11___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -lean_object* x_11; lean_object* x_12; uint8_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_79; lean_object* x_80; uint8_t x_81; uint8_t x_82; lean_object* x_83; lean_object* x_84; uint8_t x_85; lean_object* x_86; lean_object* x_98; lean_object* x_99; uint8_t x_100; uint8_t x_101; lean_object* x_102; lean_object* x_103; uint8_t x_104; lean_object* x_105; lean_object* x_109; uint8_t x_110; uint8_t x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; uint8_t x_115; uint8_t x_121; uint8_t x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; uint8_t x_127; uint8_t x_128; uint8_t x_130; uint8_t x_147; +lean_object* x_11; lean_object* x_12; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_79; lean_object* x_80; uint8_t x_81; lean_object* x_82; uint8_t x_83; lean_object* x_84; uint8_t x_85; lean_object* x_86; lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; uint8_t x_102; lean_object* x_103; uint8_t x_104; lean_object* x_105; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; uint8_t x_113; uint8_t x_114; uint8_t x_115; uint8_t x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; uint8_t x_126; uint8_t x_127; uint8_t x_128; uint8_t x_130; uint8_t x_147; x_121 = 2; x_147 = l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(x_3, x_121); if (x_147 == 0) @@ -28991,15 +29349,15 @@ lean_ctor_set(x_26, 1, x_31); lean_ctor_set(x_26, 0, x_30); x_34 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_34, 0, x_26); -lean_ctor_set(x_34, 1, x_22); +lean_ctor_set(x_34, 1, x_19); x_35 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_35, 0, x_17); +lean_ctor_set(x_35, 0, x_22); lean_ctor_set(x_35, 1, x_18); -lean_ctor_set(x_35, 2, x_20); -lean_ctor_set(x_35, 3, x_19); +lean_ctor_set(x_35, 2, x_16); +lean_ctor_set(x_35, 3, x_17); lean_ctor_set(x_35, 4, x_34); -lean_ctor_set_uint8(x_35, sizeof(void*)*5, x_16); -lean_ctor_set_uint8(x_35, sizeof(void*)*5 + 1, x_21); +lean_ctor_set_uint8(x_35, sizeof(void*)*5, x_21); +lean_ctor_set_uint8(x_35, sizeof(void*)*5 + 1, x_20); lean_ctor_set_uint8(x_35, sizeof(void*)*5 + 2, x_4); x_36 = l_Lean_MessageLog_add(x_35, x_33); lean_ctor_set(x_28, 6, x_36); @@ -29038,15 +29396,15 @@ lean_ctor_set(x_26, 1, x_31); lean_ctor_set(x_26, 0, x_30); x_49 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_49, 0, x_26); -lean_ctor_set(x_49, 1, x_22); +lean_ctor_set(x_49, 1, x_19); x_50 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_50, 0, x_17); +lean_ctor_set(x_50, 0, x_22); lean_ctor_set(x_50, 1, x_18); -lean_ctor_set(x_50, 2, x_20); -lean_ctor_set(x_50, 3, x_19); +lean_ctor_set(x_50, 2, x_16); +lean_ctor_set(x_50, 3, x_17); lean_ctor_set(x_50, 4, x_49); -lean_ctor_set_uint8(x_50, sizeof(void*)*5, x_16); -lean_ctor_set_uint8(x_50, sizeof(void*)*5 + 1, x_21); +lean_ctor_set_uint8(x_50, sizeof(void*)*5, x_21); +lean_ctor_set_uint8(x_50, sizeof(void*)*5 + 1, x_20); lean_ctor_set_uint8(x_50, sizeof(void*)*5 + 2, x_4); x_51 = l_Lean_MessageLog_add(x_50, x_46); x_52 = lean_alloc_ctor(0, 9, 0); @@ -29120,15 +29478,15 @@ lean_ctor_set(x_70, 0, x_58); lean_ctor_set(x_70, 1, x_59); x_71 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_71, 0, x_70); -lean_ctor_set(x_71, 1, x_22); +lean_ctor_set(x_71, 1, x_19); x_72 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_72, 0, x_17); +lean_ctor_set(x_72, 0, x_22); lean_ctor_set(x_72, 1, x_18); -lean_ctor_set(x_72, 2, x_20); -lean_ctor_set(x_72, 3, x_19); +lean_ctor_set(x_72, 2, x_16); +lean_ctor_set(x_72, 3, x_17); lean_ctor_set(x_72, 4, x_71); -lean_ctor_set_uint8(x_72, sizeof(void*)*5, x_16); -lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 1, x_21); +lean_ctor_set_uint8(x_72, sizeof(void*)*5, x_21); +lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 1, x_20); lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 2, x_4); x_73 = l_Lean_MessageLog_add(x_72, x_66); if (lean_is_scalar(x_69)) { @@ -29165,24 +29523,24 @@ lean_inc(x_89); x_90 = lean_ctor_get(x_88, 1); lean_inc(x_90); lean_dec_ref(x_88); -lean_inc_ref(x_84); -x_91 = l_Lean_FileMap_toPosition(x_84, x_80); -lean_dec(x_80); -x_92 = l_Lean_FileMap_toPosition(x_84, x_86); +lean_inc_ref(x_80); +x_91 = l_Lean_FileMap_toPosition(x_80, x_84); +lean_dec(x_84); +x_92 = l_Lean_FileMap_toPosition(x_80, x_86); lean_dec(x_86); x_93 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_93, 0, x_92); x_94 = l_Lean_Elab_Command_initFn___closed__2____x40_Lean_Elab_Structure___hyg_106_; -if (x_81 == 0) +if (x_85 == 0) { lean_dec_ref(x_79); -x_16 = x_82; -x_17 = x_83; +x_16 = x_93; +x_17 = x_94; x_18 = x_91; -x_19 = x_94; -x_20 = x_93; -x_21 = x_85; -x_22 = x_89; +x_19 = x_89; +x_20 = x_81; +x_21 = x_83; +x_22 = x_82; x_23 = x_8; x_24 = x_9; x_25 = x_90; @@ -29199,7 +29557,7 @@ lean_object* x_96; lean_dec_ref(x_93); lean_dec_ref(x_91); lean_dec(x_89); -lean_dec_ref(x_83); +lean_dec_ref(x_82); lean_dec_ref(x_8); x_96 = lean_box(0); x_11 = x_96; @@ -29208,13 +29566,13 @@ goto block_15; } else { -x_16 = x_82; -x_17 = x_83; +x_16 = x_93; +x_17 = x_94; x_18 = x_91; -x_19 = x_94; -x_20 = x_93; -x_21 = x_85; -x_22 = x_89; +x_19 = x_89; +x_20 = x_81; +x_21 = x_83; +x_22 = x_82; x_23 = x_8; x_24 = x_9; x_25 = x_90; @@ -29225,17 +29583,17 @@ goto block_78; block_108: { lean_object* x_106; -x_106 = l_Lean_Syntax_getTailPos_x3f(x_99, x_101); -lean_dec(x_99); +x_106 = l_Lean_Syntax_getTailPos_x3f(x_100, x_102); +lean_dec(x_100); if (lean_obj_tag(x_106) == 0) { lean_inc(x_105); x_79 = x_98; -x_80 = x_105; -x_81 = x_100; -x_82 = x_101; +x_80 = x_99; +x_81 = x_101; +x_82 = x_103; x_83 = x_102; -x_84 = x_103; +x_84 = x_105; x_85 = x_104; x_86 = x_105; goto block_97; @@ -29247,11 +29605,11 @@ x_107 = lean_ctor_get(x_106, 0); lean_inc(x_107); lean_dec_ref(x_106); x_79 = x_98; -x_80 = x_105; -x_81 = x_100; -x_82 = x_101; +x_80 = x_99; +x_81 = x_101; +x_82 = x_103; x_83 = x_102; -x_84 = x_103; +x_84 = x_105; x_85 = x_104; x_86 = x_107; goto block_97; @@ -29260,20 +29618,20 @@ goto block_97; block_120: { lean_object* x_116; lean_object* x_117; -x_116 = l_Lean_replaceRef(x_1, x_113); -lean_dec(x_113); -x_117 = l_Lean_Syntax_getPos_x3f(x_116, x_111); +x_116 = l_Lean_replaceRef(x_1, x_111); +lean_dec(x_111); +x_117 = l_Lean_Syntax_getPos_x3f(x_116, x_113); if (lean_obj_tag(x_117) == 0) { lean_object* x_118; x_118 = lean_unsigned_to_nat(0u); x_98 = x_109; -x_99 = x_116; -x_100 = x_110; -x_101 = x_111; -x_102 = x_112; -x_103 = x_114; -x_104 = x_115; +x_99 = x_110; +x_100 = x_116; +x_101 = x_115; +x_102 = x_113; +x_103 = x_112; +x_104 = x_114; x_105 = x_118; goto block_108; } @@ -29284,12 +29642,12 @@ x_119 = lean_ctor_get(x_117, 0); lean_inc(x_119); lean_dec_ref(x_117); x_98 = x_109; -x_99 = x_116; -x_100 = x_110; -x_101 = x_111; -x_102 = x_112; -x_103 = x_114; -x_104 = x_115; +x_99 = x_110; +x_100 = x_116; +x_101 = x_115; +x_102 = x_113; +x_103 = x_112; +x_104 = x_114; x_105 = x_119; goto block_108; } @@ -29299,10 +29657,10 @@ block_129: if (x_128 == 0) { x_109 = x_124; -x_110 = x_122; -x_111 = x_127; -x_112 = x_123; -x_113 = x_125; +x_110 = x_123; +x_111 = x_122; +x_112 = x_125; +x_113 = x_127; x_114 = x_126; x_115 = x_3; goto block_120; @@ -29310,10 +29668,10 @@ goto block_120; else { x_109 = x_124; -x_110 = x_122; -x_111 = x_127; -x_112 = x_123; -x_113 = x_125; +x_110 = x_123; +x_111 = x_122; +x_112 = x_125; +x_113 = x_127; x_114 = x_126; x_115 = x_121; goto block_120; @@ -29335,7 +29693,7 @@ lean_inc(x_134); x_135 = lean_ctor_get_uint8(x_8, sizeof(void*)*13 + 1); x_136 = lean_box(x_130); x_137 = lean_box(x_135); -x_138 = lean_alloc_closure((void*)(l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___boxed), 3, 2); +x_138 = lean_alloc_closure((void*)(l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___boxed), 3, 2); lean_closure_set(x_138, 0, x_136); lean_closure_set(x_138, 1, x_137); x_139 = 1; @@ -29343,11 +29701,11 @@ x_140 = l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(x_3, x_139); if (x_140 == 0) { lean_dec(x_133); -x_122 = x_135; -x_123 = x_131; +x_122 = x_134; +x_123 = x_132; x_124 = x_138; -x_125 = x_134; -x_126 = x_132; +x_125 = x_131; +x_126 = x_135; x_127 = x_130; x_128 = x_140; goto block_129; @@ -29355,14 +29713,14 @@ goto block_129; else { lean_object* x_141; uint8_t x_142; -x_141 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___closed__0; +x_141 = l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___closed__0; x_142 = l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1_spec__1_spec__2_spec__2(x_133, x_141); lean_dec(x_133); -x_122 = x_135; -x_123 = x_131; +x_122 = x_134; +x_123 = x_132; x_124 = x_138; -x_125 = x_134; -x_126 = x_132; +x_125 = x_131; +x_126 = x_135; x_127 = x_130; x_128 = x_142; goto block_129; @@ -30665,7 +31023,7 @@ if (x_22 == 0) { lean_object* x_23; double x_24; uint8_t 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; uint8_t x_32; x_23 = lean_ctor_get(x_16, 0); -x_24 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__0; +x_24 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__0; x_25 = 0; x_26 = l_Lean_Elab_Command_initFn___closed__2____x40_Lean_Elab_Structure___hyg_106_; x_27 = lean_alloc_ctor(0, 2, 17); @@ -30674,7 +31032,7 @@ lean_ctor_set(x_27, 1, x_26); lean_ctor_set_float(x_27, sizeof(void*)*2, x_24); lean_ctor_set_float(x_27, sizeof(void*)*2 + 8, x_24); lean_ctor_set_uint8(x_27, sizeof(void*)*2 + 16, x_25); -x_28 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__1; +x_28 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__1; x_29 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_29, 0, x_27); lean_ctor_set(x_29, 1, x_12); @@ -30719,7 +31077,7 @@ x_38 = lean_ctor_get_uint64(x_16, sizeof(void*)*1); x_39 = lean_ctor_get(x_16, 0); lean_inc(x_39); lean_dec(x_16); -x_40 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__0; +x_40 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__0; x_41 = 0; x_42 = l_Lean_Elab_Command_initFn___closed__2____x40_Lean_Elab_Structure___hyg_106_; x_43 = lean_alloc_ctor(0, 2, 17); @@ -30728,7 +31086,7 @@ lean_ctor_set(x_43, 1, x_42); lean_ctor_set_float(x_43, sizeof(void*)*2, x_40); lean_ctor_set_float(x_43, sizeof(void*)*2 + 8, x_40); lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 16, x_41); -x_44 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__1; +x_44 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__1; x_45 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_45, 0, x_43); lean_ctor_set(x_45, 1, x_12); @@ -30795,7 +31153,7 @@ if (lean_is_exclusive(x_16)) { lean_dec_ref(x_16); x_63 = lean_box(0); } -x_64 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__0; +x_64 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__0; x_65 = 0; x_66 = l_Lean_Elab_Command_initFn___closed__2____x40_Lean_Elab_Structure___hyg_106_; x_67 = lean_alloc_ctor(0, 2, 17); @@ -30804,7 +31162,7 @@ lean_ctor_set(x_67, 1, x_66); lean_ctor_set_float(x_67, sizeof(void*)*2, x_64); lean_ctor_set_float(x_67, sizeof(void*)*2 + 8, x_64); lean_ctor_set_uint8(x_67, sizeof(void*)*2 + 16, x_65); -x_68 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__1; +x_68 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__1; x_69 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_69, 0, x_67); lean_ctor_set(x_69, 1, x_12); @@ -30901,7 +31259,7 @@ if (lean_is_exclusive(x_16)) { lean_dec_ref(x_16); x_90 = lean_box(0); } -x_91 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__0; +x_91 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__0; x_92 = 0; x_93 = l_Lean_Elab_Command_initFn___closed__2____x40_Lean_Elab_Structure___hyg_106_; x_94 = lean_alloc_ctor(0, 2, 17); @@ -30910,7 +31268,7 @@ lean_ctor_set(x_94, 1, x_93); lean_ctor_set_float(x_94, sizeof(void*)*2, x_91); lean_ctor_set_float(x_94, sizeof(void*)*2 + 8, x_91); lean_ctor_set_uint8(x_94, sizeof(void*)*2 + 16, x_92); -x_95 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__1; +x_95 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__1; x_96 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_96, 0, x_94); lean_ctor_set(x_96, 1, x_12); @@ -31029,7 +31387,7 @@ if (lean_is_exclusive(x_110)) { lean_dec_ref(x_110); x_124 = lean_box(0); } -x_125 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__0; +x_125 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__0; x_126 = 0; x_127 = l_Lean_Elab_Command_initFn___closed__2____x40_Lean_Elab_Structure___hyg_106_; x_128 = lean_alloc_ctor(0, 2, 17); @@ -31038,7 +31396,7 @@ lean_ctor_set(x_128, 1, x_127); lean_ctor_set_float(x_128, sizeof(void*)*2, x_125); lean_ctor_set_float(x_128, sizeof(void*)*2 + 8, x_125); lean_ctor_set_uint8(x_128, sizeof(void*)*2 + 16, x_126); -x_129 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__1; +x_129 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__1; x_130 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_130, 0, x_128); lean_ctor_set(x_130, 1, x_106); @@ -32683,96 +33041,555 @@ return x_25; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__0(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_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4_spec__4___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { -lean_object* x_10; lean_object* x_11; -x_10 = lean_ctor_get(x_7, 5); -lean_inc(x_10); -lean_inc_ref(x_7); -x_11 = l_Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_11) == 0) +lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_6 = lean_st_ref_take(x_4, x_5); +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_6, 1); +lean_inc(x_8); +lean_dec_ref(x_6); +x_9 = !lean_is_exclusive(x_7); +if (x_9 == 0) { -lean_object* x_12; lean_object* x_13; uint8_t x_14; +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_10 = lean_ctor_get(x_7, 5); +lean_dec(x_10); +x_11 = lean_ctor_get(x_7, 0); +lean_dec(x_11); +x_12 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; +lean_ctor_set(x_7, 5, x_12); +lean_ctor_set(x_7, 0, x_1); +x_13 = lean_st_ref_set(x_4, x_7, x_8); +x_14 = lean_ctor_get(x_13, 1); +lean_inc(x_14); +lean_dec_ref(x_13); +x_15 = lean_st_ref_take(x_3, x_14); +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +lean_object* x_17; uint8_t x_18; +x_17 = lean_ctor_get(x_15, 0); +x_18 = !lean_is_exclusive(x_17); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_19 = lean_ctor_get(x_15, 1); +x_20 = lean_ctor_get(x_17, 1); +lean_dec(x_20); +x_21 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; +lean_ctor_set(x_17, 1, x_21); +x_22 = lean_st_ref_set(x_3, x_17, x_19); +x_23 = !lean_is_exclusive(x_22); +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; +x_24 = lean_ctor_get(x_22, 0); +lean_dec(x_24); +x_25 = lean_box(0); +lean_ctor_set(x_15, 1, x_2); +lean_ctor_set(x_15, 0, x_25); +lean_ctor_set(x_22, 0, x_15); +return x_22; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_22, 1); +lean_inc(x_26); +lean_dec(x_22); +x_27 = lean_box(0); +lean_ctor_set(x_15, 1, x_2); +lean_ctor_set(x_15, 0, x_27); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_15); +lean_ctor_set(x_28, 1, x_26); +return x_28; +} +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_29 = lean_ctor_get(x_15, 1); +x_30 = lean_ctor_get(x_17, 0); +x_31 = lean_ctor_get(x_17, 2); +x_32 = lean_ctor_get(x_17, 3); +x_33 = lean_ctor_get(x_17, 4); +lean_inc(x_33); +lean_inc(x_32); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_17); +x_34 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; +x_35 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_35, 0, x_30); +lean_ctor_set(x_35, 1, x_34); +lean_ctor_set(x_35, 2, x_31); +lean_ctor_set(x_35, 3, x_32); +lean_ctor_set(x_35, 4, x_33); +x_36 = lean_st_ref_set(x_3, x_35, x_29); +x_37 = lean_ctor_get(x_36, 1); +lean_inc(x_37); +if (lean_is_exclusive(x_36)) { + lean_ctor_release(x_36, 0); + lean_ctor_release(x_36, 1); + x_38 = x_36; +} else { + lean_dec_ref(x_36); + x_38 = lean_box(0); +} +x_39 = lean_box(0); +lean_ctor_set(x_15, 1, x_2); +lean_ctor_set(x_15, 0, x_39); +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_15); +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_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_41 = lean_ctor_get(x_15, 0); +x_42 = lean_ctor_get(x_15, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_15); +x_43 = lean_ctor_get(x_41, 0); +lean_inc_ref(x_43); +x_44 = lean_ctor_get(x_41, 2); +lean_inc(x_44); +x_45 = lean_ctor_get(x_41, 3); +lean_inc_ref(x_45); +x_46 = lean_ctor_get(x_41, 4); +lean_inc_ref(x_46); +if (lean_is_exclusive(x_41)) { + lean_ctor_release(x_41, 0); + lean_ctor_release(x_41, 1); + lean_ctor_release(x_41, 2); + lean_ctor_release(x_41, 3); + lean_ctor_release(x_41, 4); + x_47 = x_41; +} else { + lean_dec_ref(x_41); + x_47 = lean_box(0); +} +x_48 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; +if (lean_is_scalar(x_47)) { + x_49 = lean_alloc_ctor(0, 5, 0); +} else { + x_49 = x_47; +} +lean_ctor_set(x_49, 0, x_43); +lean_ctor_set(x_49, 1, x_48); +lean_ctor_set(x_49, 2, x_44); +lean_ctor_set(x_49, 3, x_45); +lean_ctor_set(x_49, 4, x_46); +x_50 = lean_st_ref_set(x_3, x_49, x_42); +x_51 = lean_ctor_get(x_50, 1); +lean_inc(x_51); +if (lean_is_exclusive(x_50)) { + lean_ctor_release(x_50, 0); + lean_ctor_release(x_50, 1); + x_52 = x_50; +} else { + lean_dec_ref(x_50); + x_52 = lean_box(0); +} +x_53 = lean_box(0); +x_54 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_54, 0, x_53); +lean_ctor_set(x_54, 1, x_2); +if (lean_is_scalar(x_52)) { + x_55 = lean_alloc_ctor(0, 2, 0); +} else { + x_55 = x_52; +} +lean_ctor_set(x_55, 0, x_54); +lean_ctor_set(x_55, 1, x_51); +return x_55; +} +} +else +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_56 = lean_ctor_get(x_7, 1); +x_57 = lean_ctor_get(x_7, 2); +x_58 = lean_ctor_get(x_7, 3); +x_59 = lean_ctor_get(x_7, 4); +x_60 = lean_ctor_get(x_7, 6); +x_61 = lean_ctor_get(x_7, 7); +x_62 = lean_ctor_get(x_7, 8); +lean_inc(x_62); +lean_inc(x_61); +lean_inc(x_60); +lean_inc(x_59); +lean_inc(x_58); +lean_inc(x_57); +lean_inc(x_56); +lean_dec(x_7); +x_63 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; +x_64 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_64, 0, x_1); +lean_ctor_set(x_64, 1, x_56); +lean_ctor_set(x_64, 2, x_57); +lean_ctor_set(x_64, 3, x_58); +lean_ctor_set(x_64, 4, x_59); +lean_ctor_set(x_64, 5, x_63); +lean_ctor_set(x_64, 6, x_60); +lean_ctor_set(x_64, 7, x_61); +lean_ctor_set(x_64, 8, x_62); +x_65 = lean_st_ref_set(x_4, x_64, x_8); +x_66 = lean_ctor_get(x_65, 1); +lean_inc(x_66); +lean_dec_ref(x_65); +x_67 = lean_st_ref_take(x_3, x_66); +x_68 = lean_ctor_get(x_67, 0); +lean_inc(x_68); +x_69 = lean_ctor_get(x_67, 1); +lean_inc(x_69); +if (lean_is_exclusive(x_67)) { + lean_ctor_release(x_67, 0); + lean_ctor_release(x_67, 1); + x_70 = x_67; +} else { + lean_dec_ref(x_67); + x_70 = lean_box(0); +} +x_71 = lean_ctor_get(x_68, 0); +lean_inc_ref(x_71); +x_72 = lean_ctor_get(x_68, 2); +lean_inc(x_72); +x_73 = lean_ctor_get(x_68, 3); +lean_inc_ref(x_73); +x_74 = lean_ctor_get(x_68, 4); +lean_inc_ref(x_74); +if (lean_is_exclusive(x_68)) { + lean_ctor_release(x_68, 0); + lean_ctor_release(x_68, 1); + lean_ctor_release(x_68, 2); + lean_ctor_release(x_68, 3); + lean_ctor_release(x_68, 4); + x_75 = x_68; +} else { + lean_dec_ref(x_68); + x_75 = lean_box(0); +} +x_76 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; +if (lean_is_scalar(x_75)) { + x_77 = lean_alloc_ctor(0, 5, 0); +} else { + x_77 = x_75; +} +lean_ctor_set(x_77, 0, x_71); +lean_ctor_set(x_77, 1, x_76); +lean_ctor_set(x_77, 2, x_72); +lean_ctor_set(x_77, 3, x_73); +lean_ctor_set(x_77, 4, x_74); +x_78 = lean_st_ref_set(x_3, x_77, x_69); +x_79 = lean_ctor_get(x_78, 1); +lean_inc(x_79); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_80 = x_78; +} else { + lean_dec_ref(x_78); + x_80 = lean_box(0); +} +x_81 = lean_box(0); +if (lean_is_scalar(x_70)) { + x_82 = lean_alloc_ctor(0, 2, 0); +} else { + x_82 = x_70; +} +lean_ctor_set(x_82, 0, x_81); +lean_ctor_set(x_82, 1, x_2); +if (lean_is_scalar(x_80)) { + x_83 = lean_alloc_ctor(0, 2, 0); +} else { + x_83 = x_80; +} +lean_ctor_set(x_83, 0, x_82); +lean_ctor_set(x_83, 1, x_79); +return x_83; +} +} +} +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4_spec__4(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_10; +x_10 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4_spec__4___redArg(x_1, x_2, x_6, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4___redArg___lam__0(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: +{ +if (lean_obj_tag(x_5) == 0) +{ +lean_object* x_7; +x_7 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4_spec__4___redArg(x_1, x_2, x_3, x_4, x_6); +return x_7; +} +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; +lean_dec_ref(x_2); +x_8 = lean_ctor_get(x_5, 0); +lean_inc(x_8); +lean_dec_ref(x_5); +x_9 = lean_ctor_get(x_8, 1); +lean_inc(x_9); +lean_dec(x_8); +x_10 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4_spec__4___redArg(x_1, x_9, x_3, x_4, x_6); +return x_10; +} +} +} +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; 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_11 = lean_st_ref_get(x_9, x_10); 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_ref(x_11); -x_14 = !lean_is_exclusive(x_12); -if (x_14 == 0) +x_14 = lean_ctor_get(x_12, 0); +lean_inc_ref(x_14); +lean_dec(x_12); +lean_inc_ref(x_3); +x_15 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4_spec__4___redArg(x_1, x_3, x_7, x_9, x_13); +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +lean_dec_ref(x_15); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec(x_16); +lean_inc(x_9); +lean_inc(x_7); +x_19 = lean_apply_8(x_2, x_18, x_4, x_5, x_6, x_7, x_8, x_9, x_17); +if (lean_obj_tag(x_19) == 0) { -lean_object* x_15; lean_object* x_16; 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; -x_15 = lean_ctor_get(x_12, 0); -x_16 = lean_ctor_get(x_12, 1); -x_17 = lean_box(0); -lean_ctor_set(x_12, 1, x_10); -lean_ctor_set(x_12, 0, x_17); -x_18 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0___closed__2; -x_19 = lean_box(0); -x_20 = 0; -x_21 = lean_alloc_ctor(0, 4, 1); -lean_ctor_set(x_21, 0, x_12); -lean_ctor_set(x_21, 1, x_18); -lean_ctor_set(x_21, 2, x_19); -lean_ctor_set(x_21, 3, x_15); -lean_ctor_set_uint8(x_21, sizeof(void*)*4, x_20); +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); +lean_inc(x_21); +lean_dec_ref(x_19); +lean_inc(x_20); x_22 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_22, 0, x_21); -x_23 = l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__2(x_22, x_16, x_3, x_4, x_5, x_6, x_7, x_8, x_13); -lean_dec_ref(x_7); +lean_ctor_set(x_22, 0, x_20); +x_23 = l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4___redArg___lam__0(x_14, x_3, x_7, x_9, x_22, x_21); +lean_dec(x_9); +lean_dec(x_7); +x_24 = !lean_is_exclusive(x_23); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_25 = lean_ctor_get(x_23, 0); +x_26 = lean_ctor_get(x_20, 0); +lean_inc(x_26); +lean_dec(x_20); +x_27 = !lean_is_exclusive(x_25); +if (x_27 == 0) +{ +lean_object* x_28; +x_28 = lean_ctor_get(x_25, 0); +lean_dec(x_28); +lean_ctor_set(x_25, 0, x_26); return x_23; } else { -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; -x_24 = lean_ctor_get(x_12, 0); -x_25 = lean_ctor_get(x_12, 1); +lean_object* x_29; lean_object* x_30; +x_29 = lean_ctor_get(x_25, 1); +lean_inc(x_29); +lean_dec(x_25); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_26); +lean_ctor_set(x_30, 1, x_29); +lean_ctor_set(x_23, 0, x_30); +return x_23; +} +} +else +{ +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; +x_31 = lean_ctor_get(x_23, 0); +x_32 = lean_ctor_get(x_23, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_23); +x_33 = lean_ctor_get(x_20, 0); +lean_inc(x_33); +lean_dec(x_20); +x_34 = lean_ctor_get(x_31, 1); +lean_inc(x_34); +if (lean_is_exclusive(x_31)) { + lean_ctor_release(x_31, 0); + lean_ctor_release(x_31, 1); + x_35 = x_31; +} else { + lean_dec_ref(x_31); + x_35 = lean_box(0); +} +if (lean_is_scalar(x_35)) { + x_36 = lean_alloc_ctor(0, 2, 0); +} else { + x_36 = x_35; +} +lean_ctor_set(x_36, 0, x_33); +lean_ctor_set(x_36, 1, x_34); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set(x_37, 1, x_32); +return x_37; +} +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; +x_38 = lean_ctor_get(x_19, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_19, 1); +lean_inc(x_39); +lean_dec_ref(x_19); +x_40 = lean_box(0); +x_41 = l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4___redArg___lam__0(x_14, x_3, x_7, x_9, x_40, x_39); +lean_dec(x_9); +lean_dec(x_7); +x_42 = !lean_is_exclusive(x_41); +if (x_42 == 0) +{ +lean_object* x_43; +x_43 = lean_ctor_get(x_41, 0); +lean_dec(x_43); +lean_ctor_set_tag(x_41, 1); +lean_ctor_set(x_41, 0, x_38); +return x_41; +} +else +{ +lean_object* x_44; lean_object* x_45; +x_44 = lean_ctor_get(x_41, 1); +lean_inc(x_44); +lean_dec(x_41); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_38); +lean_ctor_set(x_45, 1, x_44); +return x_45; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__0(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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_8, 5); +lean_inc(x_11); +lean_inc_ref(x_8); +x_12 = l_Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__0(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; lean_object* x_14; uint8_t x_15; +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_ref(x_12); +x_15 = !lean_is_exclusive(x_13); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_16 = lean_ctor_get(x_13, 0); +x_17 = lean_ctor_get(x_13, 1); +x_18 = lean_box(0); +lean_ctor_set(x_13, 1, x_11); +lean_ctor_set(x_13, 0, x_18); +x_19 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0___closed__2; +x_20 = lean_box(0); +x_21 = lean_alloc_ctor(0, 4, 1); +lean_ctor_set(x_21, 0, x_13); +lean_ctor_set(x_21, 1, x_19); +lean_ctor_set(x_21, 2, x_20); +lean_ctor_set(x_21, 3, x_16); +lean_ctor_set_uint8(x_21, sizeof(void*)*4, x_1); +x_22 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_22, 0, x_21); +x_23 = l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__2(x_22, x_17, x_4, x_5, x_6, x_7, x_8, x_9, x_14); +lean_dec_ref(x_8); +return x_23; +} +else +{ +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; +x_24 = lean_ctor_get(x_13, 0); +x_25 = lean_ctor_get(x_13, 1); lean_inc(x_25); lean_inc(x_24); -lean_dec(x_12); +lean_dec(x_13); x_26 = lean_box(0); x_27 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_27, 0, x_26); -lean_ctor_set(x_27, 1, x_10); +lean_ctor_set(x_27, 1, x_11); x_28 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0___closed__2; x_29 = lean_box(0); -x_30 = 0; -x_31 = lean_alloc_ctor(0, 4, 1); -lean_ctor_set(x_31, 0, x_27); -lean_ctor_set(x_31, 1, x_28); -lean_ctor_set(x_31, 2, x_29); -lean_ctor_set(x_31, 3, x_24); -lean_ctor_set_uint8(x_31, sizeof(void*)*4, x_30); -x_32 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_32, 0, x_31); -x_33 = l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__2(x_32, x_25, x_3, x_4, x_5, x_6, x_7, x_8, x_13); -lean_dec_ref(x_7); -return x_33; +x_30 = lean_alloc_ctor(0, 4, 1); +lean_ctor_set(x_30, 0, x_27); +lean_ctor_set(x_30, 1, x_28); +lean_ctor_set(x_30, 2, x_29); +lean_ctor_set(x_30, 3, x_24); +lean_ctor_set_uint8(x_30, sizeof(void*)*4, x_1); +x_31 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_31, 0, x_30); +x_32 = l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__2(x_31, x_25, x_4, x_5, x_6, x_7, x_8, x_9, x_14); +lean_dec_ref(x_8); +return x_32; } } else { -uint8_t x_34; -lean_dec(x_10); -lean_dec_ref(x_7); -x_34 = !lean_is_exclusive(x_11); -if (x_34 == 0) -{ -return x_11; -} -else -{ -lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_35 = lean_ctor_get(x_11, 0); -x_36 = lean_ctor_get(x_11, 1); -lean_inc(x_36); -lean_inc(x_35); +uint8_t x_33; lean_dec(x_11); -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; +lean_dec_ref(x_8); +x_33 = !lean_is_exclusive(x_12); +if (x_33 == 0) +{ +return x_12; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_12, 0); +x_35 = lean_ctor_get(x_12, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_12); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; } } } @@ -32991,7 +33808,90 @@ return x_19; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_12 = lean_st_ref_get(x_10, x_11); +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +if (lean_is_exclusive(x_12)) { + lean_ctor_release(x_12, 0); + lean_ctor_release(x_12, 1); + x_15 = x_12; +} else { + lean_dec_ref(x_12); + x_15 = lean_box(0); +} +x_26 = lean_ctor_get(x_13, 0); +lean_inc_ref(x_26); +lean_dec(x_13); +lean_inc(x_2); +x_27 = l_Lean_privateToUserName(x_2); +lean_inc_ref(x_3); +x_28 = lean_is_reserved_name(x_3, x_27); +if (x_28 == 0) +{ +lean_object* x_29; uint8_t x_30; +lean_inc(x_2); +x_29 = l_Lean_mkPrivateName(x_26, x_2); +lean_dec_ref(x_26); +x_30 = lean_is_reserved_name(x_3, x_29); +x_16 = x_30; +goto block_25; +} +else +{ +lean_dec_ref(x_26); +lean_dec_ref(x_3); +x_16 = x_28; +goto block_25; +} +block_25: +{ +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; +lean_dec(x_15); +lean_dec(x_2); +x_17 = lean_box(0); +x_18 = lean_apply_9(x_1, x_17, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_14); +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_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_1); +x_19 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__1; +x_20 = l_Lean_MessageData_ofName(x_2); +if (lean_is_scalar(x_15)) { + x_21 = lean_alloc_ctor(7, 2, 0); +} else { + x_21 = x_15; + lean_ctor_set_tag(x_21, 7); +} +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_20); +x_22 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__3; +x_23 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set(x_23, 1, x_22); +x_24 = l_Lean_throwError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo_spec__0___redArg(x_23, x_7, x_8, x_9, x_10, x_14); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +return x_24; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { uint8_t x_13; lean_object* x_23; uint8_t x_24; @@ -33050,278 +33950,198 @@ return x_21; } } } +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__5(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_2); +x_12 = lean_apply_9(x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_12) == 0) +{ +uint8_t x_13; +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_12, 1); +x_15 = lean_ctor_get(x_12, 0); +lean_dec(x_15); +lean_inc(x_2); +x_16 = lean_private_to_user_name(x_2); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_17 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__1; +x_18 = l_Lean_MessageData_ofConstName(x_2, x_3); +lean_ctor_set_tag(x_12, 7); +lean_ctor_set(x_12, 1, x_18); +lean_ctor_set(x_12, 0, x_17); +x_19 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___closed__3; +x_20 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_20, 0, x_12); +lean_ctor_set(x_20, 1, x_19); +x_21 = l_Lean_throwError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo_spec__0___redArg(x_20, x_7, x_8, x_9, x_10, x_14); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +return x_21; +} +else +{ +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_dec(x_2); +x_22 = lean_ctor_get(x_16, 0); +lean_inc(x_22); +lean_dec_ref(x_16); +x_23 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__5___closed__1; +x_24 = l_Lean_MessageData_ofConstName(x_22, x_3); +lean_ctor_set_tag(x_12, 7); +lean_ctor_set(x_12, 1, x_24); +lean_ctor_set(x_12, 0, x_23); +x_25 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___closed__3; +x_26 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_26, 0, x_12); +lean_ctor_set(x_26, 1, x_25); +x_27 = l_Lean_throwError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo_spec__0___redArg(x_26, x_7, x_8, x_9, x_10, x_14); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +return x_27; +} +} +else +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_12, 1); +lean_inc(x_28); +lean_dec(x_12); +lean_inc(x_2); +x_29 = lean_private_to_user_name(x_2); +if (lean_obj_tag(x_29) == 0) +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_30 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__1; +x_31 = l_Lean_MessageData_ofConstName(x_2, x_3); +x_32 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +x_33 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___closed__3; +x_34 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +x_35 = l_Lean_throwError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo_spec__0___redArg(x_34, x_7, x_8, x_9, x_10, x_28); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +return x_35; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; +lean_dec(x_2); +x_36 = lean_ctor_get(x_29, 0); +lean_inc(x_36); +lean_dec_ref(x_29); +x_37 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__5___closed__1; +x_38 = l_Lean_MessageData_ofConstName(x_36, x_3); +x_39 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_38); +x_40 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___closed__3; +x_41 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +x_42 = l_Lean_throwError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo_spec__0___redArg(x_41, x_7, x_8, x_9, x_10, x_28); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +return x_42; +} +} +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_2); +return x_12; +} +} +} LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0(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_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; uint8_t x_18; +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; uint8_t x_21; x_10 = lean_st_ref_get(x_8, x_9); x_11 = lean_ctor_get(x_10, 0); lean_inc(x_11); x_12 = lean_ctor_get(x_10, 1); lean_inc(x_12); -if (lean_is_exclusive(x_10)) { - lean_ctor_release(x_10, 0); - lean_ctor_release(x_10, 1); - x_13 = x_10; -} else { - lean_dec_ref(x_10); - x_13 = lean_box(0); -} -x_14 = lean_ctor_get(x_11, 0); -lean_inc_ref(x_14); +lean_dec_ref(x_10); +x_13 = lean_ctor_get(x_11, 0); +lean_inc_ref(x_13); lean_dec(x_11); -x_15 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__0___boxed), 9, 0); -lean_inc_ref(x_15); -lean_inc_ref(x_14); +x_14 = 0; +x_15 = lean_box(x_14); +x_16 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__0___boxed), 10, 1); +lean_closure_set(x_16, 0, x_15); +x_17 = l_Lean_Environment_setExporting(x_13, x_14); +lean_inc_ref(x_16); +lean_inc_ref(x_17); lean_inc(x_1); -x_16 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__1___boxed), 12, 3); -lean_closure_set(x_16, 0, x_1); -lean_closure_set(x_16, 1, x_14); -lean_closure_set(x_16, 2, x_15); -x_17 = 1; +x_18 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__1___boxed), 12, 3); +lean_closure_set(x_18, 0, x_1); +lean_closure_set(x_18, 1, x_17); +lean_closure_set(x_18, 2, x_16); +lean_inc_ref(x_16); lean_inc(x_1); -lean_inc_ref(x_14); -x_18 = l_Lean_Environment_contains(x_14, x_1, x_17); -if (x_18 == 0) -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_33; lean_object* x_34; uint8_t x_35; -x_19 = lean_st_ref_get(x_8, x_12); -x_20 = lean_ctor_get(x_19, 0); -lean_inc(x_20); -x_21 = lean_ctor_get(x_19, 1); -lean_inc(x_21); -if (lean_is_exclusive(x_19)) { - lean_ctor_release(x_19, 0); - lean_ctor_release(x_19, 1); - x_22 = x_19; -} else { - lean_dec_ref(x_19); - x_22 = lean_box(0); -} -x_33 = lean_ctor_get(x_20, 0); -lean_inc_ref(x_33); -lean_dec(x_20); +lean_inc_ref(x_17); +x_19 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__2___boxed), 13, 4); +lean_closure_set(x_19, 0, x_17); +lean_closure_set(x_19, 1, x_1); +lean_closure_set(x_19, 2, x_18); +lean_closure_set(x_19, 3, x_16); +x_20 = 1; lean_inc(x_1); -x_34 = l_Lean_privateToUserName(x_1); -lean_inc_ref(x_14); -x_35 = lean_is_reserved_name(x_14, x_34); -if (x_35 == 0) +lean_inc_ref(x_17); +x_21 = l_Lean_Environment_contains(x_17, x_1, x_20); +if (x_21 == 0) { -lean_object* x_36; uint8_t x_37; -lean_inc(x_1); -x_36 = l_Lean_mkPrivateName(x_33, x_1); -lean_dec_ref(x_33); -lean_inc_ref(x_14); -x_37 = lean_is_reserved_name(x_14, x_36); -x_23 = x_37; -goto block_32; -} -else -{ -lean_dec_ref(x_33); -x_23 = x_35; -goto block_32; -} -block_32: -{ -if (x_23 == 0) -{ -lean_object* x_24; lean_object* x_25; -lean_dec(x_22); -lean_dec(x_13); -x_24 = lean_box(0); -x_25 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__2(x_14, x_1, x_16, x_15, x_24, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_21); -return x_25; -} -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_22; lean_object* x_23; lean_dec_ref(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_26 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__1; -x_27 = l_Lean_MessageData_ofName(x_1); -if (lean_is_scalar(x_22)) { - x_28 = lean_alloc_ctor(7, 2, 0); -} else { - x_28 = x_22; - lean_ctor_set_tag(x_28, 7); -} -lean_ctor_set(x_28, 0, x_26); -lean_ctor_set(x_28, 1, x_27); -x_29 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__3; -if (lean_is_scalar(x_13)) { - x_30 = lean_alloc_ctor(7, 2, 0); -} else { - x_30 = x_13; - lean_ctor_set_tag(x_30, 7); -} -lean_ctor_set(x_30, 0, x_28); -lean_ctor_set(x_30, 1, x_29); -x_31 = l_Lean_throwError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo_spec__0___redArg(x_30, x_5, x_6, x_7, x_8, x_21); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -return x_31; -} -} +lean_inc_ref(x_17); +x_22 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__3), 11, 3); +lean_closure_set(x_22, 0, x_19); +lean_closure_set(x_22, 1, x_1); +lean_closure_set(x_22, 2, x_17); +x_23 = l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4___redArg(x_17, x_22, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_12); +return x_23; } else { -lean_object* x_38; -lean_dec_ref(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_inc_ref(x_7); -lean_inc(x_1); -x_38 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_12); -lean_dec(x_4); -lean_dec_ref(x_3); -if (lean_obj_tag(x_38) == 0) -{ -uint8_t x_39; -x_39 = !lean_is_exclusive(x_38); -if (x_39 == 0) -{ -lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_40 = lean_ctor_get(x_38, 1); -x_41 = lean_ctor_get(x_38, 0); -lean_dec(x_41); -lean_inc(x_1); -x_42 = lean_private_to_user_name(x_1); -if (lean_obj_tag(x_42) == 0) -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_43 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__1; -x_44 = l_Lean_MessageData_ofConstName(x_1, x_17); -lean_ctor_set_tag(x_38, 7); -lean_ctor_set(x_38, 1, x_44); -lean_ctor_set(x_38, 0, x_43); -x_45 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___closed__3; -if (lean_is_scalar(x_13)) { - x_46 = lean_alloc_ctor(7, 2, 0); -} else { - x_46 = x_13; - lean_ctor_set_tag(x_46, 7); -} -lean_ctor_set(x_46, 0, x_38); -lean_ctor_set(x_46, 1, x_45); -x_47 = l_Lean_throwError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo_spec__0___redArg(x_46, x_5, x_6, x_7, x_8, x_40); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -return x_47; -} -else -{ -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_dec(x_1); -x_48 = lean_ctor_get(x_42, 0); -lean_inc(x_48); -lean_dec_ref(x_42); -x_49 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___closed__1; -x_50 = l_Lean_MessageData_ofConstName(x_48, x_17); -lean_ctor_set_tag(x_38, 7); -lean_ctor_set(x_38, 1, x_50); -lean_ctor_set(x_38, 0, x_49); -x_51 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___closed__3; -if (lean_is_scalar(x_13)) { - x_52 = lean_alloc_ctor(7, 2, 0); -} else { - x_52 = x_13; - lean_ctor_set_tag(x_52, 7); -} -lean_ctor_set(x_52, 0, x_38); -lean_ctor_set(x_52, 1, x_51); -x_53 = l_Lean_throwError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo_spec__0___redArg(x_52, x_5, x_6, x_7, x_8, x_40); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -return x_53; -} -} -else -{ -lean_object* x_54; lean_object* x_55; -x_54 = lean_ctor_get(x_38, 1); -lean_inc(x_54); -lean_dec(x_38); -lean_inc(x_1); -x_55 = lean_private_to_user_name(x_1); -if (lean_obj_tag(x_55) == 0) -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_56 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__1; -x_57 = l_Lean_MessageData_ofConstName(x_1, x_17); -x_58 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_58, 0, x_56); -lean_ctor_set(x_58, 1, x_57); -x_59 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___closed__3; -if (lean_is_scalar(x_13)) { - x_60 = lean_alloc_ctor(7, 2, 0); -} else { - x_60 = x_13; - lean_ctor_set_tag(x_60, 7); -} -lean_ctor_set(x_60, 0, x_58); -lean_ctor_set(x_60, 1, x_59); -x_61 = l_Lean_throwError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo_spec__0___redArg(x_60, x_5, x_6, x_7, x_8, x_54); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -return x_61; -} -else -{ -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_dec(x_1); -x_62 = lean_ctor_get(x_55, 0); -lean_inc(x_62); -lean_dec_ref(x_55); -x_63 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___closed__1; -x_64 = l_Lean_MessageData_ofConstName(x_62, x_17); -x_65 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_65, 0, x_63); -lean_ctor_set(x_65, 1, x_64); -x_66 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__1___closed__3; -if (lean_is_scalar(x_13)) { - x_67 = lean_alloc_ctor(7, 2, 0); -} else { - x_67 = x_13; - lean_ctor_set_tag(x_67, 7); -} -lean_ctor_set(x_67, 0, x_65); -lean_ctor_set(x_67, 1, x_66); -x_68 = l_Lean_throwError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo_spec__0___redArg(x_67, x_5, x_6, x_7, x_8, x_54); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -return x_68; +lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_dec_ref(x_19); +x_24 = lean_box(x_20); +x_25 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__5___boxed), 11, 3); +lean_closure_set(x_25, 0, x_16); +lean_closure_set(x_25, 1, x_1); +lean_closure_set(x_25, 2, x_24); +x_26 = l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4___redArg(x_17, x_25, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_12); +return x_26; } } } -else -{ -lean_dec(x_13); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_1); -return x_38; -} -} -} -} -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_23; @@ -33466,7 +34286,7 @@ goto _start; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__6___redArg___lam__0(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_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__8___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; @@ -33474,11 +34294,11 @@ x_11 = lean_apply_9(x_1, x_5, x_2, x_3, x_4, x_6, x_7, x_8, x_9, x_10); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__6___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__8___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { lean_object* x_15; lean_object* x_16; -x_15 = lean_alloc_closure((void*)(l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__6___redArg___lam__0), 10, 4); +x_15 = lean_alloc_closure((void*)(l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__8___redArg___lam__0), 10, 4); lean_closure_set(x_15, 0, x_4); lean_closure_set(x_15, 1, x_7); lean_closure_set(x_15, 2, x_8); @@ -33530,15 +34350,15 @@ return x_24; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_16; -x_16 = l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__6___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_16 = l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__8___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); return x_16; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__7_spec__7___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__9_spec__9___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -33644,32 +34464,32 @@ return x_34; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__7_spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__9_spec__9(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; -x_6 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__7_spec__7___redArg(x_2, x_3, x_4, x_5); +x_6 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__9_spec__9___redArg(x_2, x_3, x_4, x_5); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__7___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__9___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__7_spec__7___redArg(x_1, x_4, x_2, x_3); +x_5 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__9_spec__9___redArg(x_1, x_4, x_2, x_3); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__7___redArg(x_2, x_3, x_4); +x_5 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__9___redArg(x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__9___redArg(size_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__11___redArg(size_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -33696,22 +34516,22 @@ x_16 = lean_usize_mul(x_12, x_15); x_17 = lean_usize_shift_right(x_11, x_16); x_18 = lean_nat_add(x_4, x_13); lean_dec(x_4); -x_19 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg(x_5, x_17, x_1, x_8, x_9); +x_19 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg(x_5, x_17, x_1, x_8, x_9); x_4 = x_18; x_5 = x_19; goto _start; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__9(lean_object* x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__11(lean_object* x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__9___redArg(x_2, x_3, x_4, x_6, x_7); +x_8 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__11___redArg(x_2, x_3, x_4, x_6, x_7); return x_8; } } -static size_t _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__0() { +static size_t _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__0() { _start: { size_t x_1; size_t x_2; size_t x_3; @@ -33721,17 +34541,17 @@ x_3 = lean_usize_shift_left(x_2, x_1); return x_3; } } -static size_t _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__1() { +static size_t _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__1() { _start: { size_t x_1; size_t x_2; size_t x_3; x_1 = 1; -x_2 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__0; +x_2 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__0; x_3 = lean_usize_sub(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__2() { +static lean_object* _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__2() { _start: { lean_object* x_1; @@ -33739,7 +34559,7 @@ x_1 = l_Lean_PersistentHashMap_mkEmptyEntries(lean_box(0), lean_box(0)); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_1) == 0) @@ -33749,7 +34569,7 @@ x_6 = lean_ctor_get(x_1, 0); lean_inc_ref(x_6); x_7 = 5; x_8 = 1; -x_9 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__1; +x_9 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__1; x_10 = lean_usize_land(x_2, x_9); x_11 = lean_usize_to_nat(x_10); x_12 = lean_array_get_size(x_6); @@ -33848,7 +34668,7 @@ lean_object* x_35; size_t x_36; size_t x_37; lean_object* x_38; x_35 = lean_ctor_get(x_15, 0); x_36 = lean_usize_shift_right(x_2, x_7); x_37 = lean_usize_add(x_3, x_8); -x_38 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg(x_35, x_36, x_37, x_4, x_5); +x_38 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg(x_35, x_36, x_37, x_4, x_5); lean_ctor_set(x_15, 0, x_38); x_18 = x_15; goto block_21; @@ -33861,7 +34681,7 @@ lean_inc(x_39); lean_dec(x_15); x_40 = lean_usize_shift_right(x_2, x_7); x_41 = lean_usize_add(x_3, x_8); -x_42 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg(x_39, x_40, x_41, x_4, x_5); +x_42 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg(x_39, x_40, x_41, x_4, x_5); x_43 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_43, 0, x_42); x_18 = x_43; @@ -33900,7 +34720,7 @@ x_45 = !lean_is_exclusive(x_1); if (x_45 == 0) { lean_object* x_46; uint8_t x_47; size_t x_54; uint8_t x_55; -x_46 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__7___redArg(x_1, x_4, x_5); +x_46 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__9___redArg(x_1, x_4, x_5); x_54 = 7; x_55 = lean_usize_dec_le(x_54, x_3); if (x_55 == 0) @@ -33929,8 +34749,8 @@ x_49 = lean_ctor_get(x_46, 1); lean_inc_ref(x_49); lean_dec_ref(x_46); x_50 = lean_unsigned_to_nat(0u); -x_51 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__2; -x_52 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__9___redArg(x_3, x_48, x_49, x_50, x_51); +x_51 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__2; +x_52 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__11___redArg(x_3, x_48, x_49, x_50, x_51); lean_dec_ref(x_49); lean_dec_ref(x_48); return x_52; @@ -33952,7 +34772,7 @@ lean_dec(x_1); x_61 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_61, 0, x_59); lean_ctor_set(x_61, 1, x_60); -x_62 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__7___redArg(x_61, x_4, x_5); +x_62 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__9___redArg(x_61, x_4, x_5); x_70 = 7; x_71 = lean_usize_dec_le(x_70, x_3); if (x_71 == 0) @@ -33981,8 +34801,8 @@ x_65 = lean_ctor_get(x_62, 1); lean_inc_ref(x_65); lean_dec_ref(x_62); x_66 = lean_unsigned_to_nat(0u); -x_67 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__2; -x_68 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__9___redArg(x_3, x_64, x_65, x_66, x_67); +x_67 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__2; +x_68 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__11___redArg(x_3, x_64, x_65, x_66, x_67); lean_dec_ref(x_65); lean_dec_ref(x_64); return x_68; @@ -33996,34 +34816,34 @@ return x_62; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg(x_2, x_3, x_4, x_5, x_6); +x_7 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg(x_2, x_3, x_4, x_5, x_6); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint64_t x_4; size_t x_5; size_t x_6; lean_object* x_7; x_4 = l_Lean_hashMVarId____x40_Lean_Expr___hyg_1869_(x_2); x_5 = lean_uint64_to_usize(x_4); x_6 = 1; -x_7 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg(x_1, x_5, x_6, x_2, x_3); +x_7 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg(x_1, x_5, x_6, x_2, x_3); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7___redArg(x_2, x_3, x_4); +x_5 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9___redArg(x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9___redArg(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; uint8_t x_9; @@ -34050,7 +34870,7 @@ if (x_14 == 0) { lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; x_15 = lean_ctor_get(x_8, 7); -x_16 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7___redArg(x_15, x_1, x_2); +x_16 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9___redArg(x_15, x_1, x_2); lean_ctor_set(x_8, 7, x_16); x_17 = lean_st_ref_set(x_4, x_7, x_10); x_18 = !lean_is_exclusive(x_17); @@ -34102,7 +34922,7 @@ lean_inc(x_26); lean_inc(x_25); lean_inc(x_24); lean_dec(x_8); -x_33 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7___redArg(x_31, x_1, x_2); +x_33 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9___redArg(x_31, x_1, x_2); x_34 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_34, 0, x_24); lean_ctor_set(x_34, 1, x_25); @@ -34183,7 +35003,7 @@ if (lean_is_exclusive(x_8)) { lean_dec_ref(x_8); x_53 = lean_box(0); } -x_54 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7___redArg(x_51, x_1, x_2); +x_54 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9___redArg(x_51, x_1, x_2); if (lean_is_scalar(x_53)) { x_55 = lean_alloc_ctor(0, 9, 0); } else { @@ -34286,7 +35106,7 @@ if (lean_is_exclusive(x_8)) { lean_dec_ref(x_8); x_77 = lean_box(0); } -x_78 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7___redArg(x_75, x_1, x_2); +x_78 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9___redArg(x_75, x_1, x_2); if (lean_is_scalar(x_77)) { x_79 = lean_alloc_ctor(0, 9, 0); } else { @@ -34337,15 +35157,15 @@ return x_86; } } } -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7(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_EXPORT lean_object* l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7___redArg(x_1, x_2, x_3, x_7, x_10); +x_11 = l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9___redArg(x_1, x_2, x_3, x_7, x_10); return x_11; } } -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__13___redArg(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; @@ -34453,15 +35273,15 @@ return x_31; } } } -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__13(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__13___redArg(x_1, x_2, x_3, x_4, x_11); +x_12 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg(x_1, x_2, x_3, x_4, x_11); return x_12; } } -LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__14(lean_object* x_1, size_t x_2, size_t x_3) { +LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__16(lean_object* x_1, size_t x_2, size_t x_3) { _start: { uint8_t x_4; @@ -34496,7 +35316,7 @@ return x_11; } } } -static lean_object* _init_l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg___closed__0() { +static lean_object* _init_l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__17___redArg___closed__0() { _start: { lean_object* x_1; @@ -34504,21 +35324,21 @@ x_1 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_instInhabit return x_1; } } -LEAN_EXPORT lean_object* l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg(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_EXPORT lean_object* l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__17___redArg(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_10; lean_object* x_11; lean_object* x_12; -x_10 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg___closed__0; +x_10 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__17___redArg___closed__0; x_11 = lean_panic_fn(x_10, x_1); x_12 = lean_apply_8(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_12; } } -LEAN_EXPORT lean_object* l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15(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_EXPORT lean_object* l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__17(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__17___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_11; } } @@ -34879,7 +35699,7 @@ lean_inc(x_23); lean_inc_ref(x_22); lean_inc(x_21); lean_inc_ref(x_20); -x_30 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__5(x_3, x_4, x_27, x_2, x_28, x_29, x_27, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26); +x_30 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7(x_3, x_4, x_27, x_2, x_28, x_29, x_27, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_object* x_35; @@ -34892,7 +35712,7 @@ x_33 = lean_ctor_get(x_31, 1); lean_inc(x_33); lean_dec(x_31); x_34 = 0; -x_35 = l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__6___redArg(x_5, x_6, x_10, x_7, x_8, x_34, x_33, x_20, x_21, x_22, x_23, x_24, x_25, x_32); +x_35 = l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__8___redArg(x_5, x_6, x_10, x_7, x_8, x_34, x_33, x_20, x_21, x_22, x_23, x_24, x_25, x_32); return x_35; } else @@ -34937,7 +35757,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean x_12 = lean_ctor_get(x_3, 6); lean_inc_ref(x_12); x_13 = l_Lean_Expr_mvarId_x21(x_1); -x_14 = l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7___redArg(x_13, x_12, x_4, x_8, x_11); +x_14 = l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9___redArg(x_13, x_12, x_4, x_8, x_11); x_15 = lean_ctor_get(x_14, 0); lean_inc(x_15); x_16 = lean_ctor_get(x_14, 1); @@ -35153,7 +35973,7 @@ if (lean_is_exclusive(x_27)) { x_32 = l_Lean_Meta_getStructureName(x_29, x_13, x_14, x_15, x_16, x_28); if (lean_obj_tag(x_32) == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; uint8_t x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_70; uint8_t x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_83; uint8_t x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; uint8_t x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; uint8_t x_93; lean_object* x_94; lean_object* x_95; uint8_t x_110; lean_object* x_111; lean_object* x_112; uint8_t x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; uint8_t x_123; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; uint8_t x_544; +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; uint8_t x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; uint8_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; uint8_t x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; uint8_t x_90; lean_object* x_91; lean_object* x_92; uint8_t x_93; lean_object* x_94; lean_object* x_95; uint8_t x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; uint8_t 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; uint8_t x_123; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; uint8_t x_544; x_33 = lean_ctor_get(x_32, 0); lean_inc(x_33); x_34 = lean_ctor_get(x_32, 1); @@ -35288,25 +36108,25 @@ lean_object* x_81; lean_inc(x_33); x_81 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_81, 0, x_33); -x_50 = x_71; -x_51 = x_70; +x_50 = x_70; +x_51 = x_71; x_52 = x_72; x_53 = x_81; x_54 = x_6; x_55 = x_7; -x_56 = x_74; +x_56 = x_79; x_57 = x_78; -x_58 = x_80; -x_59 = x_79; -x_60 = x_77; -x_61 = x_76; +x_58 = x_74; +x_59 = x_76; +x_60 = x_80; +x_61 = x_77; x_62 = x_75; x_63 = x_73; goto block_69; } block_109: { -if (x_88 == 0) +if (x_90 == 0) { if (x_93 == 0) { @@ -35317,8 +36137,8 @@ x_96 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_96, 0, x_29); x_97 = 0; x_98 = lean_box(0); -lean_inc_ref(x_92); -x_99 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_96, x_97, x_98, x_92, x_90, x_87, x_86, x_95); +lean_inc_ref(x_88); +x_99 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_96, x_97, x_98, x_88, x_92, x_89, x_87, x_95); if (lean_obj_tag(x_99) == 0) { lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; @@ -35336,19 +36156,19 @@ x_103 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_103, 0, x_33); x_104 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_104, 0, x_100); -x_50 = x_84; -x_51 = x_83; +x_50 = x_83; +x_51 = x_84; x_52 = x_85; x_53 = x_103; x_54 = x_104; x_55 = x_102; x_56 = x_94; -x_57 = x_89; -x_58 = x_91; -x_59 = x_92; -x_60 = x_90; -x_61 = x_87; -x_62 = x_86; +x_57 = x_91; +x_58 = x_86; +x_59 = x_88; +x_60 = x_92; +x_61 = x_89; +x_62 = x_87; x_63 = x_101; goto block_69; } @@ -35356,14 +36176,14 @@ else { uint8_t x_105; lean_dec_ref(x_94); -lean_dec_ref(x_92); -lean_dec(x_91); -lean_dec(x_90); +lean_dec(x_92); +lean_dec_ref(x_91); lean_dec_ref(x_89); -lean_dec_ref(x_87); +lean_dec_ref(x_88); +lean_dec(x_87); lean_dec(x_86); lean_dec_ref(x_85); -lean_dec(x_83); +lean_dec(x_84); lean_dec_ref(x_49); lean_dec(x_33); lean_dec(x_29); @@ -35399,13 +36219,13 @@ x_70 = x_83; x_71 = x_84; x_72 = x_85; x_73 = x_95; -x_74 = x_94; -x_75 = x_86; -x_76 = x_87; -x_77 = x_90; -x_78 = x_89; -x_79 = x_92; -x_80 = x_91; +x_74 = x_86; +x_75 = x_87; +x_76 = x_88; +x_77 = x_89; +x_78 = x_91; +x_79 = x_94; +x_80 = x_92; goto block_82; } } @@ -35415,13 +36235,13 @@ x_70 = x_83; x_71 = x_84; x_72 = x_85; x_73 = x_95; -x_74 = x_94; -x_75 = x_86; -x_76 = x_87; -x_77 = x_90; -x_78 = x_89; -x_79 = x_92; -x_80 = x_91; +x_74 = x_86; +x_75 = x_87; +x_76 = x_88; +x_77 = x_89; +x_78 = x_91; +x_79 = x_94; +x_80 = x_92; goto block_82; } } @@ -35429,25 +36249,25 @@ block_135: { lean_object* x_124; lean_object* x_125; uint8_t x_126; x_124 = lean_unsigned_to_nat(0u); -x_125 = lean_array_get_size(x_115); +x_125 = lean_array_get_size(x_121); x_126 = lean_nat_dec_lt(x_124, x_125); if (x_126 == 0) { lean_dec(x_125); -lean_dec_ref(x_115); -x_83 = x_111; -x_84 = x_110; +lean_dec_ref(x_121); +x_83 = x_110; +x_84 = x_111; x_85 = x_112; -x_86 = x_114; -x_87 = x_116; -x_88 = x_123; -x_89 = x_119; -x_90 = x_118; -x_91 = x_122; -x_92 = x_121; -x_93 = x_113; -x_94 = x_117; -x_95 = x_120; +x_86 = x_113; +x_87 = x_114; +x_88 = x_116; +x_89 = x_117; +x_90 = x_123; +x_91 = x_120; +x_92 = x_122; +x_93 = x_115; +x_94 = x_118; +x_95 = x_119; goto block_109; } else @@ -35455,20 +36275,20 @@ else if (x_126 == 0) { lean_dec(x_125); -lean_dec_ref(x_115); -x_83 = x_111; -x_84 = x_110; +lean_dec_ref(x_121); +x_83 = x_110; +x_84 = x_111; x_85 = x_112; -x_86 = x_114; -x_87 = x_116; -x_88 = x_123; -x_89 = x_119; -x_90 = x_118; -x_91 = x_122; -x_92 = x_121; -x_93 = x_113; -x_94 = x_117; -x_95 = x_120; +x_86 = x_113; +x_87 = x_114; +x_88 = x_116; +x_89 = x_117; +x_90 = x_123; +x_91 = x_120; +x_92 = x_122; +x_93 = x_115; +x_94 = x_118; +x_95 = x_119; goto block_109; } else @@ -35477,8 +36297,8 @@ size_t x_127; size_t x_128; lean_object* x_129; lean_object* x_130; lean_object* x_127 = 0; x_128 = lean_usize_of_nat(x_125); lean_dec(x_125); -x_129 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__13___redArg(x_115, x_127, x_128, x_117, x_120); -lean_dec_ref(x_115); +x_129 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg(x_121, x_127, x_128, x_118, x_119); +lean_dec_ref(x_121); x_130 = lean_ctor_get(x_129, 0); lean_inc(x_130); x_131 = lean_ctor_get(x_129, 1); @@ -35491,16 +36311,16 @@ lean_inc(x_133); lean_dec(x_130); x_134 = lean_unbox(x_132); lean_dec(x_132); -x_83 = x_111; -x_84 = x_110; +x_83 = x_110; +x_84 = x_111; x_85 = x_112; -x_86 = x_114; -x_87 = x_116; -x_88 = x_123; -x_89 = x_119; -x_90 = x_118; -x_91 = x_122; -x_92 = x_121; +x_86 = x_113; +x_87 = x_114; +x_88 = x_116; +x_89 = x_117; +x_90 = x_123; +x_91 = x_120; +x_92 = x_122; x_93 = x_134; x_94 = x_133; x_95 = x_131; @@ -35636,16 +36456,16 @@ lean_inc_ref(x_183); x_110 = x_182; x_111 = x_175; x_112 = x_183; -x_113 = x_182; +x_113 = x_138; x_114 = x_142; -x_115 = x_183; -x_116 = x_141; -x_117 = x_181; -x_118 = x_140; -x_119 = x_137; -x_120 = x_180; -x_121 = x_139; -x_122 = x_138; +x_115 = x_182; +x_116 = x_139; +x_117 = x_141; +x_118 = x_181; +x_119 = x_180; +x_120 = x_137; +x_121 = x_183; +x_122 = x_140; x_123 = x_182; goto block_135; } @@ -35665,16 +36485,16 @@ lean_inc_ref(x_183); x_110 = x_182; x_111 = x_175; x_112 = x_183; -x_113 = x_182; +x_113 = x_138; x_114 = x_142; -x_115 = x_183; -x_116 = x_141; -x_117 = x_181; -x_118 = x_140; -x_119 = x_137; -x_120 = x_180; -x_121 = x_139; -x_122 = x_138; +x_115 = x_182; +x_116 = x_139; +x_117 = x_141; +x_118 = x_181; +x_119 = x_180; +x_120 = x_137; +x_121 = x_183; +x_122 = x_140; x_123 = x_182; goto block_135; } @@ -35688,16 +36508,16 @@ lean_inc_ref(x_183); x_110 = x_182; x_111 = x_175; x_112 = x_183; -x_113 = x_182; +x_113 = x_138; x_114 = x_142; -x_115 = x_183; -x_116 = x_141; -x_117 = x_181; -x_118 = x_140; -x_119 = x_137; -x_120 = x_180; -x_121 = x_139; -x_122 = x_138; +x_115 = x_182; +x_116 = x_139; +x_117 = x_141; +x_118 = x_181; +x_119 = x_180; +x_120 = x_137; +x_121 = x_183; +x_122 = x_140; x_123 = x_182; goto block_135; } @@ -35707,22 +36527,22 @@ size_t x_189; size_t x_190; uint8_t x_191; x_189 = 0; x_190 = lean_usize_of_nat(x_187); lean_dec(x_187); -x_191 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__14(x_185, x_189, x_190); +x_191 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__16(x_185, x_189, x_190); lean_dec_ref(x_185); lean_inc_ref(x_183); x_110 = x_182; x_111 = x_175; x_112 = x_183; -x_113 = x_182; +x_113 = x_138; x_114 = x_142; -x_115 = x_183; -x_116 = x_141; -x_117 = x_181; -x_118 = x_140; -x_119 = x_137; -x_120 = x_180; -x_121 = x_139; -x_122 = x_138; +x_115 = x_182; +x_116 = x_139; +x_117 = x_141; +x_118 = x_181; +x_119 = x_180; +x_120 = x_137; +x_121 = x_183; +x_122 = x_140; x_123 = x_191; goto block_135; } @@ -35895,7 +36715,7 @@ lean_dec(x_31); lean_dec(x_9); lean_dec(x_4); x_218 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___closed__8; -x_219 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg(x_218, x_202, x_137, x_138, x_139, x_140, x_141, x_142, x_199); +x_219 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__17___redArg(x_218, x_202, x_137, x_138, x_139, x_140, x_141, x_142, x_199); return x_219; } } @@ -35979,7 +36799,7 @@ lean_dec(x_31); lean_dec(x_9); lean_dec(x_4); x_236 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___closed__8; -x_237 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg(x_236, x_220, x_137, x_138, x_139, x_140, x_141, x_142, x_199); +x_237 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__17___redArg(x_236, x_220, x_137, x_138, x_139, x_140, x_141, x_142, x_199); return x_237; } } @@ -36079,7 +36899,7 @@ lean_dec(x_31); lean_dec(x_9); lean_dec(x_4); x_257 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___closed__8; -x_258 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg(x_257, x_239, x_137, x_138, x_139, x_140, x_141, x_142, x_238); +x_258 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__17___redArg(x_257, x_239, x_137, x_138, x_139, x_140, x_141, x_142, x_238); return x_258; } } @@ -36193,16 +37013,16 @@ lean_inc_ref(x_290); x_110 = x_289; x_111 = x_282; x_112 = x_290; -x_113 = x_289; +x_113 = x_138; x_114 = x_142; -x_115 = x_290; -x_116 = x_141; -x_117 = x_288; -x_118 = x_140; -x_119 = x_137; -x_120 = x_287; -x_121 = x_139; -x_122 = x_138; +x_115 = x_289; +x_116 = x_139; +x_117 = x_141; +x_118 = x_288; +x_119 = x_287; +x_120 = x_137; +x_121 = x_290; +x_122 = x_140; x_123 = x_289; goto block_135; } @@ -36222,16 +37042,16 @@ lean_inc_ref(x_290); x_110 = x_289; x_111 = x_282; x_112 = x_290; -x_113 = x_289; +x_113 = x_138; x_114 = x_142; -x_115 = x_290; -x_116 = x_141; -x_117 = x_288; -x_118 = x_140; -x_119 = x_137; -x_120 = x_287; -x_121 = x_139; -x_122 = x_138; +x_115 = x_289; +x_116 = x_139; +x_117 = x_141; +x_118 = x_288; +x_119 = x_287; +x_120 = x_137; +x_121 = x_290; +x_122 = x_140; x_123 = x_289; goto block_135; } @@ -36245,16 +37065,16 @@ lean_inc_ref(x_290); x_110 = x_289; x_111 = x_282; x_112 = x_290; -x_113 = x_289; +x_113 = x_138; x_114 = x_142; -x_115 = x_290; -x_116 = x_141; -x_117 = x_288; -x_118 = x_140; -x_119 = x_137; -x_120 = x_287; -x_121 = x_139; -x_122 = x_138; +x_115 = x_289; +x_116 = x_139; +x_117 = x_141; +x_118 = x_288; +x_119 = x_287; +x_120 = x_137; +x_121 = x_290; +x_122 = x_140; x_123 = x_289; goto block_135; } @@ -36264,22 +37084,22 @@ size_t x_296; size_t x_297; uint8_t x_298; x_296 = 0; x_297 = lean_usize_of_nat(x_294); lean_dec(x_294); -x_298 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__14(x_292, x_296, x_297); +x_298 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__16(x_292, x_296, x_297); lean_dec_ref(x_292); lean_inc_ref(x_290); x_110 = x_289; x_111 = x_282; x_112 = x_290; -x_113 = x_289; +x_113 = x_138; x_114 = x_142; -x_115 = x_290; -x_116 = x_141; -x_117 = x_288; -x_118 = x_140; -x_119 = x_137; -x_120 = x_287; -x_121 = x_139; -x_122 = x_138; +x_115 = x_289; +x_116 = x_139; +x_117 = x_141; +x_118 = x_288; +x_119 = x_287; +x_120 = x_137; +x_121 = x_290; +x_122 = x_140; x_123 = x_298; goto block_135; } @@ -36471,7 +37291,7 @@ lean_dec(x_31); lean_dec(x_9); lean_dec(x_4); x_326 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___closed__8; -x_327 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg(x_326, x_307, x_137, x_138, x_139, x_140, x_141, x_142, x_305); +x_327 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__17___redArg(x_326, x_307, x_137, x_138, x_139, x_140, x_141, x_142, x_305); return x_327; } } @@ -36595,16 +37415,16 @@ lean_inc_ref(x_361); x_110 = x_360; x_111 = x_353; x_112 = x_361; -x_113 = x_360; +x_113 = x_138; x_114 = x_142; -x_115 = x_361; -x_116 = x_141; -x_117 = x_359; -x_118 = x_140; -x_119 = x_137; -x_120 = x_358; -x_121 = x_139; -x_122 = x_138; +x_115 = x_360; +x_116 = x_139; +x_117 = x_141; +x_118 = x_359; +x_119 = x_358; +x_120 = x_137; +x_121 = x_361; +x_122 = x_140; x_123 = x_360; goto block_135; } @@ -36624,16 +37444,16 @@ lean_inc_ref(x_361); x_110 = x_360; x_111 = x_353; x_112 = x_361; -x_113 = x_360; +x_113 = x_138; x_114 = x_142; -x_115 = x_361; -x_116 = x_141; -x_117 = x_359; -x_118 = x_140; -x_119 = x_137; -x_120 = x_358; -x_121 = x_139; -x_122 = x_138; +x_115 = x_360; +x_116 = x_139; +x_117 = x_141; +x_118 = x_359; +x_119 = x_358; +x_120 = x_137; +x_121 = x_361; +x_122 = x_140; x_123 = x_360; goto block_135; } @@ -36647,16 +37467,16 @@ lean_inc_ref(x_361); x_110 = x_360; x_111 = x_353; x_112 = x_361; -x_113 = x_360; +x_113 = x_138; x_114 = x_142; -x_115 = x_361; -x_116 = x_141; -x_117 = x_359; -x_118 = x_140; -x_119 = x_137; -x_120 = x_358; -x_121 = x_139; -x_122 = x_138; +x_115 = x_360; +x_116 = x_139; +x_117 = x_141; +x_118 = x_359; +x_119 = x_358; +x_120 = x_137; +x_121 = x_361; +x_122 = x_140; x_123 = x_360; goto block_135; } @@ -36666,22 +37486,22 @@ size_t x_367; size_t x_368; uint8_t x_369; x_367 = 0; x_368 = lean_usize_of_nat(x_365); lean_dec(x_365); -x_369 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__14(x_363, x_367, x_368); +x_369 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__16(x_363, x_367, x_368); lean_dec_ref(x_363); lean_inc_ref(x_361); x_110 = x_360; x_111 = x_353; x_112 = x_361; -x_113 = x_360; +x_113 = x_138; x_114 = x_142; -x_115 = x_361; -x_116 = x_141; -x_117 = x_359; -x_118 = x_140; -x_119 = x_137; -x_120 = x_358; -x_121 = x_139; -x_122 = x_138; +x_115 = x_360; +x_116 = x_139; +x_117 = x_141; +x_118 = x_359; +x_119 = x_358; +x_120 = x_137; +x_121 = x_361; +x_122 = x_140; x_123 = x_369; goto block_135; } @@ -36878,7 +37698,7 @@ lean_dec(x_31); lean_dec(x_9); lean_dec(x_4); x_398 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___closed__8; -x_399 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg(x_398, x_378, x_137, x_138, x_139, x_140, x_141, x_142, x_376); +x_399 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__17___redArg(x_398, x_378, x_137, x_138, x_139, x_140, x_141, x_142, x_376); return x_399; } } @@ -37854,7 +38674,7 @@ if (lean_is_exclusive(x_577)) { x_582 = l_Lean_Meta_getStructureName(x_579, x_13, x_14, x_15, x_16, x_578); if (lean_obj_tag(x_582) == 0) { -lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; uint8_t x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_620; uint8_t x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_633; uint8_t x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; uint8_t x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; uint8_t x_643; lean_object* x_644; lean_object* x_645; uint8_t x_660; lean_object* x_661; lean_object* x_662; uint8_t x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; uint8_t x_673; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; uint8_t x_822; +lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; uint8_t x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; uint8_t x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; uint8_t x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; uint8_t x_640; lean_object* x_641; lean_object* x_642; uint8_t x_643; lean_object* x_644; lean_object* x_645; uint8_t x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; uint8_t 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; uint8_t x_673; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; uint8_t x_822; x_583 = lean_ctor_get(x_582, 0); lean_inc(x_583); x_584 = lean_ctor_get(x_582, 1); @@ -37988,25 +38808,25 @@ lean_object* x_631; lean_inc(x_583); x_631 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_631, 0, x_583); -x_600 = x_621; -x_601 = x_620; +x_600 = x_620; +x_601 = x_621; x_602 = x_622; x_603 = x_631; x_604 = x_6; x_605 = x_7; -x_606 = x_624; +x_606 = x_629; x_607 = x_628; -x_608 = x_630; -x_609 = x_629; -x_610 = x_627; -x_611 = x_626; +x_608 = x_624; +x_609 = x_626; +x_610 = x_630; +x_611 = x_627; x_612 = x_625; x_613 = x_623; goto block_619; } block_659: { -if (x_638 == 0) +if (x_640 == 0) { if (x_643 == 0) { @@ -38017,8 +38837,8 @@ x_646 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_646, 0, x_579); x_647 = 0; x_648 = lean_box(0); -lean_inc_ref(x_642); -x_649 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_646, x_647, x_648, x_642, x_640, x_637, x_636, x_645); +lean_inc_ref(x_638); +x_649 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_646, x_647, x_648, x_638, x_642, x_639, x_637, x_645); if (lean_obj_tag(x_649) == 0) { lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; @@ -38036,19 +38856,19 @@ x_653 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_653, 0, x_583); x_654 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_654, 0, x_650); -x_600 = x_634; -x_601 = x_633; +x_600 = x_633; +x_601 = x_634; x_602 = x_635; x_603 = x_653; x_604 = x_654; x_605 = x_652; x_606 = x_644; -x_607 = x_639; -x_608 = x_641; -x_609 = x_642; -x_610 = x_640; -x_611 = x_637; -x_612 = x_636; +x_607 = x_641; +x_608 = x_636; +x_609 = x_638; +x_610 = x_642; +x_611 = x_639; +x_612 = x_637; x_613 = x_651; goto block_619; } @@ -38056,14 +38876,14 @@ else { lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_dec_ref(x_644); -lean_dec_ref(x_642); -lean_dec(x_641); -lean_dec(x_640); +lean_dec(x_642); +lean_dec_ref(x_641); lean_dec_ref(x_639); -lean_dec_ref(x_637); +lean_dec_ref(x_638); +lean_dec(x_637); lean_dec(x_636); lean_dec_ref(x_635); -lean_dec(x_633); +lean_dec(x_634); lean_dec_ref(x_599); lean_dec(x_583); lean_dec(x_579); @@ -38101,13 +38921,13 @@ x_620 = x_633; x_621 = x_634; x_622 = x_635; x_623 = x_645; -x_624 = x_644; -x_625 = x_636; -x_626 = x_637; -x_627 = x_640; -x_628 = x_639; -x_629 = x_642; -x_630 = x_641; +x_624 = x_636; +x_625 = x_637; +x_626 = x_638; +x_627 = x_639; +x_628 = x_641; +x_629 = x_644; +x_630 = x_642; goto block_632; } } @@ -38117,13 +38937,13 @@ x_620 = x_633; x_621 = x_634; x_622 = x_635; x_623 = x_645; -x_624 = x_644; -x_625 = x_636; -x_626 = x_637; -x_627 = x_640; -x_628 = x_639; -x_629 = x_642; -x_630 = x_641; +x_624 = x_636; +x_625 = x_637; +x_626 = x_638; +x_627 = x_639; +x_628 = x_641; +x_629 = x_644; +x_630 = x_642; goto block_632; } } @@ -38131,25 +38951,25 @@ block_685: { lean_object* x_674; lean_object* x_675; uint8_t x_676; x_674 = lean_unsigned_to_nat(0u); -x_675 = lean_array_get_size(x_665); +x_675 = lean_array_get_size(x_671); x_676 = lean_nat_dec_lt(x_674, x_675); if (x_676 == 0) { lean_dec(x_675); -lean_dec_ref(x_665); -x_633 = x_661; -x_634 = x_660; +lean_dec_ref(x_671); +x_633 = x_660; +x_634 = x_661; x_635 = x_662; -x_636 = x_664; -x_637 = x_666; -x_638 = x_673; -x_639 = x_669; -x_640 = x_668; -x_641 = x_672; -x_642 = x_671; -x_643 = x_663; -x_644 = x_667; -x_645 = x_670; +x_636 = x_663; +x_637 = x_664; +x_638 = x_666; +x_639 = x_667; +x_640 = x_673; +x_641 = x_670; +x_642 = x_672; +x_643 = x_665; +x_644 = x_668; +x_645 = x_669; goto block_659; } else @@ -38157,20 +38977,20 @@ else if (x_676 == 0) { lean_dec(x_675); -lean_dec_ref(x_665); -x_633 = x_661; -x_634 = x_660; +lean_dec_ref(x_671); +x_633 = x_660; +x_634 = x_661; x_635 = x_662; -x_636 = x_664; -x_637 = x_666; -x_638 = x_673; -x_639 = x_669; -x_640 = x_668; -x_641 = x_672; -x_642 = x_671; -x_643 = x_663; -x_644 = x_667; -x_645 = x_670; +x_636 = x_663; +x_637 = x_664; +x_638 = x_666; +x_639 = x_667; +x_640 = x_673; +x_641 = x_670; +x_642 = x_672; +x_643 = x_665; +x_644 = x_668; +x_645 = x_669; goto block_659; } else @@ -38179,8 +38999,8 @@ size_t x_677; size_t x_678; lean_object* x_679; lean_object* x_680; lean_object* x_677 = 0; x_678 = lean_usize_of_nat(x_675); lean_dec(x_675); -x_679 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__13___redArg(x_665, x_677, x_678, x_667, x_670); -lean_dec_ref(x_665); +x_679 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg(x_671, x_677, x_678, x_668, x_669); +lean_dec_ref(x_671); x_680 = lean_ctor_get(x_679, 0); lean_inc(x_680); x_681 = lean_ctor_get(x_679, 1); @@ -38193,16 +39013,16 @@ lean_inc(x_683); lean_dec(x_680); x_684 = lean_unbox(x_682); lean_dec(x_682); -x_633 = x_661; -x_634 = x_660; +x_633 = x_660; +x_634 = x_661; x_635 = x_662; -x_636 = x_664; -x_637 = x_666; -x_638 = x_673; -x_639 = x_669; -x_640 = x_668; -x_641 = x_672; -x_642 = x_671; +x_636 = x_663; +x_637 = x_664; +x_638 = x_666; +x_639 = x_667; +x_640 = x_673; +x_641 = x_670; +x_642 = x_672; x_643 = x_684; x_644 = x_683; x_645 = x_681; @@ -38344,16 +39164,16 @@ lean_inc_ref(x_731); x_660 = x_730; x_661 = x_723; x_662 = x_731; -x_663 = x_730; +x_663 = x_688; x_664 = x_692; -x_665 = x_731; -x_666 = x_691; -x_667 = x_729; -x_668 = x_690; -x_669 = x_687; -x_670 = x_728; -x_671 = x_689; -x_672 = x_688; +x_665 = x_730; +x_666 = x_689; +x_667 = x_691; +x_668 = x_729; +x_669 = x_728; +x_670 = x_687; +x_671 = x_731; +x_672 = x_690; x_673 = x_730; goto block_685; } @@ -38373,16 +39193,16 @@ lean_inc_ref(x_731); x_660 = x_730; x_661 = x_723; x_662 = x_731; -x_663 = x_730; +x_663 = x_688; x_664 = x_692; -x_665 = x_731; -x_666 = x_691; -x_667 = x_729; -x_668 = x_690; -x_669 = x_687; -x_670 = x_728; -x_671 = x_689; -x_672 = x_688; +x_665 = x_730; +x_666 = x_689; +x_667 = x_691; +x_668 = x_729; +x_669 = x_728; +x_670 = x_687; +x_671 = x_731; +x_672 = x_690; x_673 = x_730; goto block_685; } @@ -38396,16 +39216,16 @@ lean_inc_ref(x_731); x_660 = x_730; x_661 = x_723; x_662 = x_731; -x_663 = x_730; +x_663 = x_688; x_664 = x_692; -x_665 = x_731; -x_666 = x_691; -x_667 = x_729; -x_668 = x_690; -x_669 = x_687; -x_670 = x_728; -x_671 = x_689; -x_672 = x_688; +x_665 = x_730; +x_666 = x_689; +x_667 = x_691; +x_668 = x_729; +x_669 = x_728; +x_670 = x_687; +x_671 = x_731; +x_672 = x_690; x_673 = x_730; goto block_685; } @@ -38415,22 +39235,22 @@ size_t x_737; size_t x_738; uint8_t x_739; x_737 = 0; x_738 = lean_usize_of_nat(x_735); lean_dec(x_735); -x_739 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__14(x_733, x_737, x_738); +x_739 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__16(x_733, x_737, x_738); lean_dec_ref(x_733); lean_inc_ref(x_731); x_660 = x_730; x_661 = x_723; x_662 = x_731; -x_663 = x_730; +x_663 = x_688; x_664 = x_692; -x_665 = x_731; -x_666 = x_691; -x_667 = x_729; -x_668 = x_690; -x_669 = x_687; -x_670 = x_728; -x_671 = x_689; -x_672 = x_688; +x_665 = x_730; +x_666 = x_689; +x_667 = x_691; +x_668 = x_729; +x_669 = x_728; +x_670 = x_687; +x_671 = x_731; +x_672 = x_690; x_673 = x_739; goto block_685; } @@ -38633,7 +39453,7 @@ lean_dec(x_581); lean_dec(x_9); lean_dec(x_4); x_768 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___closed__8; -x_769 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg(x_768, x_748, x_687, x_688, x_689, x_690, x_691, x_692, x_746); +x_769 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__17___redArg(x_768, x_748, x_687, x_688, x_689, x_690, x_691, x_692, x_746); return x_769; } } @@ -39302,7 +40122,7 @@ lean_dec(x_4); lean_dec(x_2); lean_dec_ref(x_1); x_62 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructFields___redArg___closed__2; -x_63 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg(x_62, x_33, x_34, x_35, x_36, x_37, x_38, x_39, x_56); +x_63 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__17___redArg(x_62, x_33, x_34, x_35, x_36, x_37, x_38, x_39, x_56); return x_63; } else @@ -39537,7 +40357,7 @@ lean_dec(x_4); lean_dec(x_2); lean_dec_ref(x_1); x_123 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructFields___redArg___closed__2; -x_124 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg(x_123, x_94, x_95, x_96, x_97, x_98, x_99, x_100, x_117); +x_124 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__17___redArg(x_123, x_94, x_95, x_96, x_97, x_98, x_99, x_100, x_117); return x_124; } else @@ -39793,7 +40613,7 @@ lean_dec(x_4); lean_dec(x_2); lean_dec_ref(x_1); x_187 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructFields___redArg___closed__2; -x_188 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg(x_187, x_158, x_159, x_160, x_161, x_162, x_163, x_164, x_181); +x_188 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__17___redArg(x_187, x_158, x_159, x_160, x_161, x_162, x_163, x_164, x_181); return x_188; } else @@ -39901,7 +40721,7 @@ lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); x_212 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructFields___redArg___closed__5; -x_213 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg(x_212, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_16); +x_213 = l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__17___redArg(x_212, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_16); return x_213; } } @@ -39954,7 +40774,7 @@ _start: { 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; x_23 = l_Lean_Expr_mvarId_x21(x_1); -x_24 = l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7___redArg(x_23, x_14, x_15, x_19, x_22); +x_24 = l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9___redArg(x_23, x_14, x_15, x_19, x_22); x_25 = lean_ctor_get(x_24, 0); lean_inc(x_25); x_26 = lean_ctor_get(x_24, 1); @@ -40101,7 +40921,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_____private_Lean_Elab_St _start: { lean_object* x_14; lean_object* x_15; -x_14 = lean_alloc_closure((void*)(l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__6___redArg___lam__0), 10, 4); +x_14 = lean_alloc_closure((void*)(l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__8___redArg___lam__0), 10, 4); lean_closure_set(x_14, 0, x_4); lean_closure_set(x_14, 1, x_6); lean_closure_set(x_14, 2, x_7); @@ -40215,7 +41035,7 @@ x_21 = lean_ctor_get(x_17, 5); lean_dec(x_21); lean_inc(x_2); x_22 = l_Lean_addProtected(x_20, x_2); -x_23 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_23 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; lean_ctor_set(x_17, 5, x_23); lean_ctor_set(x_17, 0, x_22); x_24 = lean_st_ref_set(x_10, x_17, x_18); @@ -40234,7 +41054,7 @@ if (x_29 == 0) 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_30 = lean_ctor_get(x_27, 1); lean_dec(x_30); -x_31 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_31 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; lean_ctor_set(x_27, 1, x_31); x_32 = lean_st_ref_set(x_8, x_27, x_28); x_33 = lean_ctor_get(x_32, 1); @@ -40262,7 +41082,7 @@ lean_inc(x_38); lean_inc(x_37); lean_inc(x_36); lean_dec(x_27); -x_40 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_40 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; x_41 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_41, 0, x_36); lean_ctor_set(x_41, 1, x_40); @@ -40306,7 +41126,7 @@ lean_inc(x_46); lean_dec(x_17); lean_inc(x_2); x_54 = l_Lean_addProtected(x_46, x_2); -x_55 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_55 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; x_56 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_56, 0, x_54); lean_ctor_set(x_56, 1, x_47); @@ -40346,7 +41166,7 @@ if (lean_is_exclusive(x_60)) { lean_dec_ref(x_60); x_66 = lean_box(0); } -x_67 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_67 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_66)) { x_68 = lean_alloc_ctor(0, 5, 0); } else { @@ -40482,10 +41302,10 @@ lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean x_16 = lean_ctor_get(x_13, 0); x_17 = lean_ctor_get(x_13, 5); lean_dec(x_17); -x_18 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___lam__0___closed__0; +x_18 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___lam__0___closed__0; x_19 = l_String_removeLeadingSpaces(x_1); x_20 = l_Lean_MapDeclarationExtension_insert___redArg(x_18, x_16, x_2, x_19); -x_21 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_21 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; lean_ctor_set(x_13, 5, x_21); lean_ctor_set(x_13, 0, x_20); x_22 = lean_st_ref_set(x_10, x_13, x_14); @@ -40505,7 +41325,7 @@ lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint x_28 = lean_ctor_get(x_24, 1); x_29 = lean_ctor_get(x_26, 1); lean_dec(x_29); -x_30 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_30 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; lean_ctor_set(x_26, 1, x_30); x_31 = lean_st_ref_set(x_8, x_26, x_28); x_32 = !lean_is_exclusive(x_31); @@ -40548,7 +41368,7 @@ lean_inc(x_41); lean_inc(x_40); lean_inc(x_39); lean_dec(x_26); -x_43 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_43 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; x_44 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_44, 0, x_39); lean_ctor_set(x_44, 1, x_43); @@ -40606,7 +41426,7 @@ if (lean_is_exclusive(x_50)) { lean_dec_ref(x_50); x_56 = lean_box(0); } -x_57 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_57 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_56)) { x_58 = lean_alloc_ctor(0, 5, 0); } else { @@ -40662,10 +41482,10 @@ lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_dec(x_13); -x_73 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___lam__0___closed__0; +x_73 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___lam__0___closed__0; x_74 = l_String_removeLeadingSpaces(x_1); x_75 = l_Lean_MapDeclarationExtension_insert___redArg(x_73, x_65, x_2, x_74); -x_76 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_76 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; x_77 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_77, 0, x_75); lean_ctor_set(x_77, 1, x_66); @@ -40712,7 +41532,7 @@ if (lean_is_exclusive(x_81)) { lean_dec_ref(x_81); x_88 = lean_box(0); } -x_89 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_89 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_88)) { x_90 = lean_alloc_ctor(0, 5, 0); } else { @@ -40786,12 +41606,12 @@ if (x_18 == 0) lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; x_19 = lean_ctor_get(x_15, 0); lean_dec(x_19); -x_20 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___closed__0; +x_20 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___closed__0; x_21 = 1; x_22 = l_Lean_Name_toStringWithToken___at___Lean_Name_toString_spec__0(x_1, x_21); x_23 = lean_string_append(x_20, x_22); lean_dec_ref(x_22); -x_24 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___closed__1; +x_24 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___closed__1; x_25 = lean_string_append(x_23, x_24); lean_ctor_set_tag(x_15, 3); lean_ctor_set(x_15, 0, x_25); @@ -40803,12 +41623,12 @@ else { 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_dec(x_15); -x_28 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___closed__0; +x_28 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___closed__0; x_29 = 1; x_30 = l_Lean_Name_toStringWithToken___at___Lean_Name_toString_spec__0(x_1, x_29); x_31 = lean_string_append(x_28, x_30); lean_dec_ref(x_30); -x_32 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___closed__1; +x_32 = l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___closed__1; x_33 = lean_string_append(x_31, x_32); x_34 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_34, 0, x_33); @@ -40984,9 +41804,9 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean x_12 = lean_ctor_get(x_9, 0); x_13 = lean_ctor_get(x_9, 5); lean_dec(x_13); -x_14 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18___redArg___closed__0; +x_14 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20___redArg___closed__0; x_15 = l_Lean_MapDeclarationExtension_insert___redArg(x_14, x_12, x_1, x_2); -x_16 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_16 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; lean_ctor_set(x_9, 5, x_16); lean_ctor_set(x_9, 0, x_15); x_17 = lean_st_ref_set(x_5, x_9, x_10); @@ -41006,7 +41826,7 @@ lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint x_23 = lean_ctor_get(x_19, 1); x_24 = lean_ctor_get(x_21, 1); lean_dec(x_24); -x_25 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_25 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; lean_ctor_set(x_21, 1, x_25); x_26 = lean_st_ref_set(x_4, x_21, x_23); x_27 = !lean_is_exclusive(x_26); @@ -41049,7 +41869,7 @@ lean_inc(x_36); lean_inc(x_35); lean_inc(x_34); lean_dec(x_21); -x_38 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_38 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; x_39 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_39, 0, x_34); lean_ctor_set(x_39, 1, x_38); @@ -41107,7 +41927,7 @@ if (lean_is_exclusive(x_45)) { lean_dec_ref(x_45); x_51 = lean_box(0); } -x_52 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_52 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_51)) { x_53 = lean_alloc_ctor(0, 5, 0); } else { @@ -41163,9 +41983,9 @@ lean_inc(x_62); lean_inc(x_61); lean_inc(x_60); lean_dec(x_9); -x_68 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18___redArg___closed__0; +x_68 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20___redArg___closed__0; x_69 = l_Lean_MapDeclarationExtension_insert___redArg(x_68, x_60, x_1, x_2); -x_70 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_70 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; x_71 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_71, 0, x_69); lean_ctor_set(x_71, 1, x_61); @@ -41212,7 +42032,7 @@ if (lean_is_exclusive(x_75)) { lean_dec_ref(x_75); x_82 = lean_box(0); } -x_83 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_83 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_82)) { x_84 = lean_alloc_ctor(0, 5, 0); } else { @@ -41520,13 +42340,13 @@ lean_ctor_set(x_29, 3, x_5); lean_ctor_set(x_29, 4, x_24); lean_ctor_set(x_29, 5, x_25); lean_ctor_set(x_29, 6, x_10); -lean_ctor_set(x_29, 7, x_20); +lean_ctor_set(x_29, 7, x_21); lean_ctor_set(x_29, 8, x_26); lean_ctor_set(x_29, 9, x_27); lean_ctor_set(x_29, 10, x_28); lean_ctor_set(x_29, 11, x_26); lean_ctor_set_uint8(x_29, sizeof(void*)*12, x_6); -x_30 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo(x_29, x_19, x_12, x_13, x_14, x_15, x_16, x_17, x_21); +x_30 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo(x_29, x_19, x_12, x_13, x_14, x_15, x_16, x_17, x_20); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -41702,8 +42522,8 @@ x_63 = lean_ctor_get(x_16, 5); lean_inc(x_63); x_64 = lean_box(1); x_19 = x_11; -x_20 = x_61; -x_21 = x_62; +x_20 = x_62; +x_21 = x_61; x_22 = x_63; x_23 = x_64; goto block_60; @@ -41716,8 +42536,8 @@ x_65 = lean_ctor_get(x_16, 5); lean_inc(x_65); x_66 = lean_box(2); x_19 = x_11; -x_20 = x_61; -x_21 = x_62; +x_20 = x_62; +x_21 = x_61; x_22 = x_65; x_23 = x_66; goto block_60; @@ -42116,8 +42936,8 @@ lean_dec_ref(x_216); x_219 = lean_ctor_get(x_217, 1); lean_inc(x_219); lean_dec(x_217); -x_104 = x_183; -x_105 = x_179; +x_104 = x_179; +x_105 = x_183; x_106 = x_199; x_107 = x_219; x_108 = x_150; @@ -42274,8 +43094,8 @@ lean_dec_ref(x_248); x_251 = lean_ctor_get(x_249, 1); lean_inc(x_251); lean_dec(x_249); -x_104 = x_183; -x_105 = x_179; +x_104 = x_179; +x_105 = x_183; x_106 = x_199; x_107 = x_251; x_108 = x_150; @@ -42418,8 +43238,8 @@ else { lean_dec(x_180); lean_free_object(x_169); -x_104 = x_183; -x_105 = x_179; +x_104 = x_179; +x_105 = x_183; x_106 = x_191; x_107 = x_189; x_108 = x_150; @@ -42469,8 +43289,8 @@ lean_free_object(x_185); lean_free_object(x_184); lean_free_object(x_164); lean_free_object(x_159); -x_49 = x_183; -x_50 = x_274; +x_49 = x_274; +x_50 = x_183; x_51 = x_272; x_52 = x_150; x_53 = x_151; @@ -42513,8 +43333,8 @@ lean_dec_ref(x_284); x_287 = lean_ctor_get(x_285, 1); lean_inc(x_287); lean_dec(x_285); -x_49 = x_183; -x_50 = x_274; +x_49 = x_274; +x_50 = x_183; x_51 = x_287; x_52 = x_150; x_53 = x_151; @@ -42545,8 +43365,8 @@ if (x_292 == 0) lean_free_object(x_184); lean_free_object(x_164); lean_free_object(x_159); -x_49 = x_183; -x_50 = x_289; +x_49 = x_289; +x_50 = x_183; x_51 = x_288; x_52 = x_150; x_53 = x_151; @@ -42590,8 +43410,8 @@ lean_dec_ref(x_300); x_303 = lean_ctor_get(x_301, 1); lean_inc(x_303); lean_dec(x_301); -x_49 = x_183; -x_50 = x_289; +x_49 = x_289; +x_50 = x_183; x_51 = x_303; x_52 = x_150; x_53 = x_151; @@ -42633,8 +43453,8 @@ if (x_310 == 0) lean_dec(x_306); lean_free_object(x_164); lean_free_object(x_159); -x_49 = x_183; -x_50 = x_307; +x_49 = x_307; +x_50 = x_183; x_51 = x_305; x_52 = x_150; x_53 = x_151; @@ -42683,8 +43503,8 @@ lean_dec_ref(x_319); x_322 = lean_ctor_get(x_320, 1); lean_inc(x_322); lean_dec(x_320); -x_49 = x_183; -x_50 = x_307; +x_49 = x_307; +x_50 = x_183; x_51 = x_322; x_52 = x_150; x_53 = x_151; @@ -42844,8 +43664,8 @@ lean_dec_ref(x_362); x_365 = lean_ctor_get(x_363, 1); lean_inc(x_365); lean_dec(x_363); -x_104 = x_329; -x_105 = x_325; +x_104 = x_325; +x_105 = x_329; x_106 = x_345; x_107 = x_365; x_108 = x_150; @@ -42991,8 +43811,8 @@ return x_382; else { lean_dec(x_326); -x_104 = x_329; -x_105 = x_325; +x_104 = x_325; +x_105 = x_329; x_106 = x_337; x_107 = x_335; x_108 = x_150; @@ -43047,8 +43867,8 @@ lean_dec(x_386); lean_dec(x_384); lean_free_object(x_164); lean_free_object(x_159); -x_49 = x_329; -x_50 = x_387; +x_49 = x_387; +x_50 = x_329; x_51 = x_385; x_52 = x_150; x_53 = x_151; @@ -43102,8 +43922,8 @@ lean_dec_ref(x_399); x_402 = lean_ctor_get(x_400, 1); lean_inc(x_402); lean_dec(x_400); -x_49 = x_329; -x_50 = x_387; +x_49 = x_387; +x_50 = x_329; x_51 = x_402; x_52 = x_150; x_53 = x_151; @@ -43327,8 +44147,8 @@ lean_dec_ref(x_456); x_459 = lean_ctor_get(x_457, 1); lean_inc(x_459); lean_dec(x_457); -x_104 = x_423; -x_105 = x_418; +x_104 = x_418; +x_105 = x_423; x_106 = x_439; x_107 = x_459; x_108 = x_150; @@ -43481,8 +44301,8 @@ else { lean_dec(x_420); lean_dec(x_419); -x_104 = x_423; -x_105 = x_418; +x_104 = x_418; +x_105 = x_423; x_106 = x_431; x_107 = x_429; x_108 = x_150; @@ -43537,8 +44357,8 @@ if (x_484 == 0) lean_dec(x_480); lean_dec(x_478); lean_free_object(x_159); -x_49 = x_423; -x_50 = x_481; +x_49 = x_481; +x_50 = x_423; x_51 = x_479; x_52 = x_150; x_53 = x_151; @@ -43592,8 +44412,8 @@ lean_dec_ref(x_494); x_497 = lean_ctor_get(x_495, 1); lean_inc(x_497); lean_dec(x_495); -x_49 = x_423; -x_50 = x_481; +x_49 = x_481; +x_50 = x_423; x_51 = x_497; x_52 = x_150; x_53 = x_151; @@ -43838,8 +44658,8 @@ lean_dec_ref(x_558); x_561 = lean_ctor_get(x_559, 1); lean_inc(x_561); lean_dec(x_559); -x_104 = x_525; -x_105 = x_520; +x_104 = x_520; +x_105 = x_525; x_106 = x_541; x_107 = x_561; x_108 = x_150; @@ -43992,8 +44812,8 @@ else { lean_dec(x_522); lean_dec(x_521); -x_104 = x_525; -x_105 = x_520; +x_104 = x_520; +x_105 = x_525; x_106 = x_533; x_107 = x_531; x_108 = x_150; @@ -44048,8 +44868,8 @@ if (x_586 == 0) lean_dec(x_582); lean_dec(x_580); lean_dec(x_507); -x_49 = x_525; -x_50 = x_583; +x_49 = x_583; +x_50 = x_525; x_51 = x_581; x_52 = x_150; x_53 = x_151; @@ -44108,8 +44928,8 @@ lean_dec_ref(x_597); x_600 = lean_ctor_get(x_598, 1); lean_inc(x_600); lean_dec(x_598); -x_49 = x_525; -x_50 = x_583; +x_49 = x_583; +x_50 = x_525; x_51 = x_600; x_52 = x_150; x_53 = x_151; @@ -44374,8 +45194,8 @@ lean_dec_ref(x_664); x_667 = lean_ctor_get(x_665, 1); lean_inc(x_667); lean_dec(x_665); -x_104 = x_631; -x_105 = x_626; +x_104 = x_626; +x_105 = x_631; x_106 = x_647; x_107 = x_667; x_108 = x_150; @@ -44528,8 +45348,8 @@ else { lean_dec(x_628); lean_dec(x_627); -x_104 = x_631; -x_105 = x_626; +x_104 = x_626; +x_105 = x_631; x_106 = x_639; x_107 = x_637; x_108 = x_150; @@ -44585,8 +45405,8 @@ lean_dec(x_688); lean_dec(x_686); lean_dec(x_612); lean_dec(x_608); -x_49 = x_631; -x_50 = x_689; +x_49 = x_689; +x_50 = x_631; x_51 = x_687; x_52 = x_150; x_53 = x_151; @@ -44650,8 +45470,8 @@ lean_dec_ref(x_703); x_706 = lean_ctor_get(x_704, 1); lean_inc(x_706); lean_dec(x_704); -x_49 = x_631; -x_50 = x_689; +x_49 = x_689; +x_50 = x_631; x_51 = x_706; x_52 = x_150; x_53 = x_151; @@ -45011,8 +45831,8 @@ lean_dec_ref(x_801); x_804 = lean_ctor_get(x_802, 1); lean_inc(x_804); lean_dec(x_802); -x_104 = x_768; -x_105 = x_763; +x_104 = x_763; +x_105 = x_768; x_106 = x_784; x_107 = x_804; x_108 = x_732; @@ -45165,8 +45985,8 @@ else { lean_dec(x_765); lean_dec(x_764); -x_104 = x_768; -x_105 = x_763; +x_104 = x_763; +x_105 = x_768; x_106 = x_776; x_107 = x_774; x_108 = x_732; @@ -45222,8 +46042,8 @@ lean_dec(x_825); lean_dec(x_823); lean_dec(x_749); lean_dec(x_745); -x_49 = x_768; -x_50 = x_826; +x_49 = x_826; +x_50 = x_768; x_51 = x_824; x_52 = x_732; x_53 = x_733; @@ -45287,8 +46107,8 @@ lean_dec_ref(x_840); x_843 = lean_ctor_get(x_841, 1); lean_inc(x_843); lean_dec(x_841); -x_49 = x_768; -x_50 = x_826; +x_49 = x_826; +x_50 = x_768; x_51 = x_843; x_52 = x_732; x_53 = x_733; @@ -45456,9 +46276,9 @@ return x_47; block_103: { lean_object* x_59; lean_object* x_60; -x_59 = lean_ctor_get(x_50, 6); +x_59 = lean_ctor_get(x_49, 6); lean_inc_ref(x_59); -lean_dec_ref(x_50); +lean_dec_ref(x_49); lean_inc(x_57); lean_inc_ref(x_56); lean_inc(x_55); @@ -45478,8 +46298,8 @@ lean_inc_ref(x_56); lean_inc(x_55); lean_inc_ref(x_54); lean_inc(x_61); -lean_inc_ref(x_49); -x_63 = l_Lean_Meta_isExprDefEq(x_49, x_61, x_54, x_55, x_56, x_57, x_62); +lean_inc_ref(x_50); +x_63 = l_Lean_Meta_isExprDefEq(x_50, x_61, x_54, x_55, x_56, x_57, x_62); if (lean_obj_tag(x_63) == 0) { lean_object* x_64; uint8_t x_65; @@ -45500,7 +46320,7 @@ lean_inc(x_66); lean_dec_ref(x_63); x_67 = lean_box(0); x_68 = l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs_spec__3_spec__3___lam__1___closed__1; -x_69 = l_Lean_Meta_mkHasTypeButIsExpectedMsg___redArg(x_49, x_61, x_67, x_68, x_66); +x_69 = l_Lean_Meta_mkHasTypeButIsExpectedMsg___redArg(x_50, x_61, x_67, x_68, x_66); if (lean_obj_tag(x_69) == 0) { lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; uint8_t x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; uint8_t x_86; @@ -45594,7 +46414,7 @@ else lean_object* x_94; lean_dec(x_64); lean_dec(x_61); -lean_dec_ref(x_49); +lean_dec_ref(x_50); x_94 = lean_ctor_get(x_63, 1); lean_inc(x_94); lean_dec_ref(x_63); @@ -45622,7 +46442,7 @@ lean_dec_ref(x_54); lean_dec(x_53); lean_dec_ref(x_52); lean_dec_ref(x_51); -lean_dec_ref(x_49); +lean_dec_ref(x_50); lean_dec_ref(x_8); lean_dec(x_6); lean_dec_ref(x_5); @@ -45658,7 +46478,7 @@ lean_dec_ref(x_54); lean_dec(x_53); lean_dec_ref(x_52); lean_dec_ref(x_51); -lean_dec_ref(x_49); +lean_dec_ref(x_50); lean_dec_ref(x_8); lean_dec(x_6); lean_dec_ref(x_5); @@ -45712,7 +46532,7 @@ lean_inc(x_111); lean_inc_ref(x_110); lean_inc(x_109); lean_inc_ref(x_108); -x_120 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs(x_104, x_119, x_118, x_108, x_109, x_110, x_111, x_112, x_113, x_117); +x_120 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_reduceFieldProjs(x_105, x_119, x_118, x_108, x_109, x_110, x_111, x_112, x_113, x_117); if (lean_obj_tag(x_120) == 0) { lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; uint8_t x_126; lean_object* x_127; lean_object* x_128; uint8_t x_129; lean_object* x_130; @@ -45726,10 +46546,10 @@ lean_inc(x_123); x_124 = lean_ctor_get(x_121, 1); lean_inc(x_124); lean_dec(x_121); -x_125 = lean_ctor_get(x_105, 1); +x_125 = lean_ctor_get(x_104, 1); lean_inc(x_125); -x_126 = lean_ctor_get_uint8(x_105, sizeof(void*)*4); -lean_dec_ref(x_105); +x_126 = lean_ctor_get_uint8(x_104, sizeof(void*)*4); +lean_dec_ref(x_104); x_127 = lean_box(x_126); lean_inc(x_6); x_128 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStructField___redArg___lam__1___boxed), 18, 9); @@ -45756,7 +46576,7 @@ lean_dec_ref(x_110); lean_dec(x_109); lean_dec_ref(x_108); lean_dec(x_106); -lean_dec_ref(x_105); +lean_dec_ref(x_104); lean_dec_ref(x_8); lean_dec(x_6); lean_dec_ref(x_5); @@ -45976,12 +46796,23 @@ lean_dec_ref(x_3); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__0___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_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4_spec__4___redArg___boxed(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; +x_6 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4_spec__4___redArg(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4_spec__4___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: { lean_object* x_10; -x_10 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4_spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); +lean_dec_ref(x_7); lean_dec(x_6); lean_dec_ref(x_5); lean_dec(x_4); @@ -45989,6 +46820,30 @@ lean_dec_ref(x_3); return x_10; } } +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4___redArg___lam__0___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__4___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_4); +lean_dec(x_3); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_1); +x_12 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__0(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_9); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +return x_12; +} +} LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { @@ -46005,16 +46860,25 @@ x_14 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_ return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec_ref(x_4); return x_13; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__5___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; lean_object* x_13; +x_12 = lean_unbox(x_3); +x_13 = l_Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0___lam__5(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { size_t x_16; size_t x_17; lean_object* x_18; @@ -46022,57 +46886,57 @@ x_16 = lean_unbox_usize(x_5); lean_dec(x_5); x_17 = lean_unbox_usize(x_6); lean_dec(x_6); -x_18 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__5(x_1, x_2, x_3, x_4, x_16, x_17, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_18 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7(x_1, x_2, x_3, x_4, x_16, x_17, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec_ref(x_4); lean_dec_ref(x_2); return x_18; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__6___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__8___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { uint8_t x_15; uint8_t x_16; lean_object* x_17; x_15 = lean_unbox(x_5); x_16 = lean_unbox(x_6); -x_17 = l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__6___redArg(x_1, x_2, x_3, x_4, x_15, x_16, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_17 = l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__8___redArg(x_1, x_2, x_3, x_4, x_15, x_16, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { uint8_t x_16; uint8_t x_17; lean_object* x_18; x_16 = lean_unbox(x_6); x_17 = lean_unbox(x_7); -x_18 = l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__6(x_1, x_2, x_3, x_4, x_5, x_16, x_17, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_18 = l_Lean_Meta_withLetDecl___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__8(x_1, x_2, x_3, x_4, x_5, x_16, x_17, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); return x_18; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__9___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__11___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { size_t x_6; lean_object* x_7; x_6 = lean_unbox_usize(x_1); lean_dec(x_1); -x_7 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__9___redArg(x_6, x_2, x_3, x_4, x_5); +x_7 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__11___redArg(x_6, x_2, x_3, x_4, x_5); lean_dec_ref(x_3); lean_dec_ref(x_2); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__9___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_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__11___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: { size_t x_8; lean_object* x_9; x_8 = lean_unbox_usize(x_2); lean_dec(x_2); -x_9 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7_spec__9(x_1, x_8, x_3, x_4, x_5, x_6, x_7); +x_9 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9_spec__11(x_1, x_8, x_3, x_4, x_5, x_6, x_7); lean_dec_ref(x_4); lean_dec_ref(x_3); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { size_t x_6; size_t x_7; lean_object* x_8; @@ -46080,11 +46944,11 @@ x_6 = lean_unbox_usize(x_2); lean_dec(x_2); x_7 = lean_unbox_usize(x_3); lean_dec(x_3); -x_8 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg(x_1, x_6, x_7, x_4, x_5); +x_8 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg(x_1, x_6, x_7, x_4, x_5); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___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_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___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) { _start: { size_t x_7; size_t x_8; lean_object* x_9; @@ -46092,24 +46956,24 @@ x_7 = lean_unbox_usize(x_3); lean_dec(x_3); x_8 = lean_unbox_usize(x_4); lean_dec(x_4); -x_9 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7(x_1, x_2, x_7, x_8, x_5, x_6); +x_9 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9(x_1, x_2, x_7, x_8, x_5, x_6); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9___redArg___boxed(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; -x_6 = l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7___redArg(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9___redArg(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7___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_EXPORT lean_object* l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); @@ -46119,7 +46983,7 @@ lean_dec_ref(x_4); return x_11; } } -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__13___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { size_t x_6; size_t x_7; lean_object* x_8; @@ -46127,12 +46991,12 @@ x_6 = lean_unbox_usize(x_2); lean_dec(x_2); x_7 = lean_unbox_usize(x_3); lean_dec(x_3); -x_8 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__13___redArg(x_1, x_6, x_7, x_4, x_5); +x_8 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg(x_1, x_6, x_7, x_4, x_5); lean_dec_ref(x_1); return x_8; } } -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___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: { size_t x_12; size_t x_13; lean_object* x_14; @@ -46140,7 +47004,7 @@ x_12 = lean_unbox_usize(x_2); lean_dec(x_2); x_13 = lean_unbox_usize(x_3); lean_dec(x_3); -x_14 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__13(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); @@ -46151,7 +47015,7 @@ lean_dec_ref(x_1); return x_14; } } -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__14___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__16___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { size_t x_4; size_t x_5; uint8_t x_6; lean_object* x_7; @@ -46159,7 +47023,7 @@ x_4 = lean_unbox_usize(x_2); lean_dec(x_2); x_5 = lean_unbox_usize(x_3); lean_dec(x_3); -x_6 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__14(x_1, x_4, x_5); +x_6 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__16(x_1, x_4, x_5); lean_dec_ref(x_1); x_7 = lean_box(x_6); return x_7; @@ -47488,8 +48352,8 @@ lean_inc_ref(x_1); lean_inc(x_20); x_52 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go___redArg___lam__0___boxed), 20, 11); lean_closure_set(x_52, 0, x_20); -lean_closure_set(x_52, 1, x_37); -lean_closure_set(x_52, 2, x_38); +lean_closure_set(x_52, 1, x_38); +lean_closure_set(x_52, 2, x_37); lean_closure_set(x_52, 3, x_5); lean_closure_set(x_52, 4, x_1); lean_closure_set(x_52, 5, x_2); @@ -47498,7 +48362,7 @@ lean_closure_set(x_52, 7, x_4); lean_closure_set(x_52, 8, x_21); lean_closure_set(x_52, 9, x_50); lean_closure_set(x_52, 10, x_51); -x_53 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParent___redArg(x_1, x_20, x_47, x_48, x_34, x_52, x_42, x_39, x_45, x_41, x_46, x_40, x_43, x_44); +x_53 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParent___redArg(x_1, x_20, x_39, x_42, x_34, x_52, x_46, x_41, x_47, x_44, x_40, x_48, x_43, x_45); return x_53; } block_96: @@ -47506,25 +48370,25 @@ block_96: if (x_70 == 0) { lean_object* x_71; uint8_t x_72; -lean_dec(x_62); -x_71 = lean_array_get_size(x_56); -x_72 = lean_nat_dec_lt(x_63, x_71); +lean_dec(x_61); +x_71 = lean_array_get_size(x_55); +x_72 = lean_nat_dec_lt(x_62, x_71); if (x_72 == 0) { lean_dec(x_71); -lean_dec_ref(x_56); -x_37 = x_55; -x_38 = x_57; -x_39 = x_58; -x_40 = x_59; -x_41 = x_67; +lean_dec_ref(x_55); +x_37 = x_57; +x_38 = x_56; +x_39 = x_64; +x_40 = x_58; +x_41 = x_59; x_42 = x_60; -x_43 = x_68; -x_44 = x_69; -x_45 = x_61; -x_46 = x_64; -x_47 = x_65; -x_48 = x_66; +x_43 = x_65; +x_44 = x_66; +x_45 = x_67; +x_46 = x_68; +x_47 = x_63; +x_48 = x_69; x_49 = x_70; goto block_54; } @@ -47533,19 +48397,19 @@ else if (x_72 == 0) { lean_dec(x_71); -lean_dec_ref(x_56); -x_37 = x_55; -x_38 = x_57; -x_39 = x_58; -x_40 = x_59; -x_41 = x_67; +lean_dec_ref(x_55); +x_37 = x_57; +x_38 = x_56; +x_39 = x_64; +x_40 = x_58; +x_41 = x_59; x_42 = x_60; -x_43 = x_68; -x_44 = x_69; -x_45 = x_61; -x_46 = x_64; -x_47 = x_65; -x_48 = x_66; +x_43 = x_65; +x_44 = x_66; +x_45 = x_67; +x_46 = x_68; +x_47 = x_63; +x_48 = x_69; x_49 = x_70; goto block_54; } @@ -47555,34 +48419,34 @@ size_t x_73; size_t x_74; uint8_t x_75; x_73 = 0; x_74 = lean_usize_of_nat(x_71); lean_dec(x_71); -x_75 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go_spec__0(x_66, x_56, x_73, x_74); -lean_dec_ref(x_56); +x_75 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go_spec__0(x_60, x_55, x_73, x_74); +lean_dec_ref(x_55); if (x_75 == 0) { -x_37 = x_55; -x_38 = x_57; -x_39 = x_58; -x_40 = x_59; -x_41 = x_67; +x_37 = x_57; +x_38 = x_56; +x_39 = x_64; +x_40 = x_58; +x_41 = x_59; x_42 = x_60; -x_43 = x_68; -x_44 = x_69; -x_45 = x_61; -x_46 = x_64; -x_47 = x_65; -x_48 = x_66; +x_43 = x_65; +x_44 = x_66; +x_45 = x_67; +x_46 = x_68; +x_47 = x_63; +x_48 = x_69; x_49 = x_75; goto block_54; } else { lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; -lean_dec(x_65); -lean_dec(x_61); -lean_dec_ref(x_60); -lean_dec_ref(x_58); +lean_dec_ref(x_68); +lean_dec(x_64); +lean_dec(x_63); +lean_dec_ref(x_59); lean_dec(x_57); -lean_dec(x_55); +lean_dec(x_56); lean_dec(x_34); lean_dec(x_21); lean_dec(x_20); @@ -47592,7 +48456,7 @@ lean_dec_ref(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); x_76 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___lam__1___closed__1; -x_77 = l_Lean_MessageData_ofName(x_66); +x_77 = l_Lean_MessageData_ofName(x_60); x_78 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_78, 0, x_76); lean_ctor_set(x_78, 1, x_77); @@ -47604,11 +48468,11 @@ x_81 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct x_82 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_82, 0, x_80); lean_ctor_set(x_82, 1, x_81); -x_83 = l_Lean_throwError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo_spec__0___redArg(x_82, x_67, x_64, x_59, x_68, x_69); -lean_dec(x_68); -lean_dec_ref(x_59); -lean_dec(x_64); -lean_dec_ref(x_67); +x_83 = l_Lean_throwError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo_spec__0___redArg(x_82, x_66, x_58, x_69, x_65, x_67); +lean_dec(x_65); +lean_dec_ref(x_69); +lean_dec(x_58); +lean_dec_ref(x_66); return x_83; } } @@ -47617,16 +48481,16 @@ return x_83; else { lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; -lean_dec(x_66); -lean_dec(x_65); +lean_dec(x_64); +lean_dec(x_60); lean_dec(x_57); -lean_dec_ref(x_56); -lean_dec(x_55); +lean_dec(x_56); +lean_dec_ref(x_55); lean_dec(x_34); lean_dec(x_21); lean_dec(x_20); x_84 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go___redArg___closed__1; -x_85 = l_Lean_MessageData_ofConstName(x_62, x_30); +x_85 = l_Lean_MessageData_ofConstName(x_61, x_30); x_86 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_86, 0, x_84); lean_ctor_set(x_86, 1, x_85); @@ -47634,8 +48498,8 @@ x_87 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParent x_88 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_88, 0, x_86); lean_ctor_set(x_88, 1, x_87); -lean_inc_ref(x_59); -x_89 = l_Lean_logWarning___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__11(x_88, x_60, x_58, x_61, x_67, x_64, x_59, x_68, x_69); +lean_inc_ref(x_69); +x_89 = l_Lean_logWarning___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__11(x_88, x_68, x_59, x_63, x_66, x_58, x_69, x_65, x_67); x_90 = lean_ctor_get(x_89, 0); lean_inc(x_90); x_91 = lean_ctor_get(x_89, 1); @@ -47649,12 +48513,12 @@ x_94 = lean_nat_add(x_5, x_93); lean_dec(x_5); x_5 = x_94; x_6 = x_92; -x_7 = x_58; -x_8 = x_61; -x_9 = x_67; -x_10 = x_64; -x_11 = x_59; -x_12 = x_68; +x_7 = x_59; +x_8 = x_63; +x_9 = x_66; +x_10 = x_58; +x_11 = x_69; +x_12 = x_65; x_13 = x_91; goto _start; } @@ -47680,21 +48544,21 @@ if (x_114 == 0) lean_dec(x_113); lean_inc(x_110); lean_inc(x_105); -x_55 = x_105; -x_56 = x_111; +x_55 = x_111; +x_56 = x_105; x_57 = x_110; -x_58 = x_99; -x_59 = x_100; -x_60 = x_106; -x_61 = x_103; -x_62 = x_105; -x_63 = x_112; -x_64 = x_104; -x_65 = x_109; -x_66 = x_110; -x_67 = x_101; -x_68 = x_102; -x_69 = x_107; +x_58 = x_100; +x_59 = x_99; +x_60 = x_110; +x_61 = x_105; +x_62 = x_112; +x_63 = x_103; +x_64 = x_109; +x_65 = x_102; +x_66 = x_101; +x_67 = x_107; +x_68 = x_106; +x_69 = x_104; x_70 = x_98; goto block_96; } @@ -47705,21 +48569,21 @@ if (x_114 == 0) lean_dec(x_113); lean_inc(x_110); lean_inc(x_105); -x_55 = x_105; -x_56 = x_111; +x_55 = x_111; +x_56 = x_105; x_57 = x_110; -x_58 = x_99; -x_59 = x_100; -x_60 = x_106; -x_61 = x_103; -x_62 = x_105; -x_63 = x_112; -x_64 = x_104; -x_65 = x_109; -x_66 = x_110; -x_67 = x_101; -x_68 = x_102; -x_69 = x_107; +x_58 = x_100; +x_59 = x_99; +x_60 = x_110; +x_61 = x_105; +x_62 = x_112; +x_63 = x_103; +x_64 = x_109; +x_65 = x_102; +x_66 = x_101; +x_67 = x_107; +x_68 = x_106; +x_69 = x_104; x_70 = x_98; goto block_96; } @@ -47732,21 +48596,21 @@ lean_dec(x_113); x_117 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go_spec__1(x_105, x_111, x_115, x_116); lean_inc(x_110); lean_inc(x_105); -x_55 = x_105; -x_56 = x_111; +x_55 = x_111; +x_56 = x_105; x_57 = x_110; -x_58 = x_99; -x_59 = x_100; -x_60 = x_106; -x_61 = x_103; -x_62 = x_105; -x_63 = x_112; -x_64 = x_104; -x_65 = x_109; -x_66 = x_110; -x_67 = x_101; -x_68 = x_102; -x_69 = x_107; +x_58 = x_100; +x_59 = x_99; +x_60 = x_110; +x_61 = x_105; +x_62 = x_112; +x_63 = x_103; +x_64 = x_109; +x_65 = x_102; +x_66 = x_101; +x_67 = x_107; +x_68 = x_106; +x_69 = x_104; x_70 = x_117; goto block_96; } @@ -47754,21 +48618,21 @@ goto block_96; } block_137: { -lean_dec(x_123); +lean_dec(x_125); lean_dec_ref(x_119); if (x_127 == 0) { lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_dec(x_36); -x_128 = l_Lean_Exception_toMessageData(x_126); +x_128 = l_Lean_Exception_toMessageData(x_124); x_129 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go___redArg___closed__7; x_130 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_130, 0, x_128); lean_ctor_set(x_130, 1, x_129); -x_131 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg(x_22, x_130, x_121, x_125, x_120, x_122, x_124); +x_131 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg(x_22, x_130, x_123, x_121, x_126, x_122, x_120); lean_dec(x_122); -lean_dec(x_125); -lean_dec_ref(x_121); +lean_dec(x_121); +lean_dec_ref(x_123); lean_dec(x_22); x_132 = !lean_is_exclusive(x_131); if (x_132 == 0) @@ -47792,10 +48656,10 @@ return x_135; else { lean_object* x_136; -lean_dec(x_125); +lean_dec_ref(x_126); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); -lean_dec_ref(x_120); +lean_dec(x_121); lean_dec(x_22); if (lean_is_scalar(x_36)) { x_136 = lean_alloc_ctor(1, 2, 0); @@ -47803,8 +48667,8 @@ if (lean_is_scalar(x_36)) { x_136 = x_36; lean_ctor_set_tag(x_136, 1); } -lean_ctor_set(x_136, 0, x_126); -lean_ctor_set(x_136, 1, x_124); +lean_ctor_set(x_136, 0, x_124); +lean_ctor_set(x_136, 1, x_120); return x_136; } } @@ -47823,11 +48687,11 @@ x_148 = lean_ctor_get(x_146, 1); lean_inc(x_148); lean_dec_ref(x_146); x_99 = x_139; -x_100 = x_143; +x_100 = x_142; x_101 = x_141; x_102 = x_144; x_103 = x_140; -x_104 = x_142; +x_104 = x_143; x_105 = x_147; x_106 = x_138; x_107 = x_148; @@ -47857,26 +48721,26 @@ if (x_151 == 0) uint8_t x_152; x_152 = l_Lean_Exception_isRuntime(x_149); x_119 = x_139; -x_120 = x_143; -x_121 = x_141; +x_120 = x_150; +x_121 = x_142; x_122 = x_144; -x_123 = x_140; -x_124 = x_150; -x_125 = x_142; -x_126 = x_149; +x_123 = x_141; +x_124 = x_149; +x_125 = x_140; +x_126 = x_143; x_127 = x_152; goto block_137; } else { x_119 = x_139; -x_120 = x_143; -x_121 = x_141; +x_120 = x_150; +x_121 = x_142; x_122 = x_144; -x_123 = x_140; -x_124 = x_150; -x_125 = x_142; -x_126 = x_149; +x_123 = x_141; +x_124 = x_149; +x_125 = x_140; +x_126 = x_143; x_127 = x_151; goto block_137; } @@ -48234,8 +49098,8 @@ lean_inc_ref(x_1); lean_inc(x_20); x_231 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go___redArg___lam__0___boxed), 20, 11); lean_closure_set(x_231, 0, x_20); -lean_closure_set(x_231, 1, x_216); -lean_closure_set(x_231, 2, x_217); +lean_closure_set(x_231, 1, x_217); +lean_closure_set(x_231, 2, x_216); lean_closure_set(x_231, 3, x_5); lean_closure_set(x_231, 4, x_1); lean_closure_set(x_231, 5, x_2); @@ -48244,7 +49108,7 @@ lean_closure_set(x_231, 7, x_4); lean_closure_set(x_231, 8, x_21); lean_closure_set(x_231, 9, x_229); lean_closure_set(x_231, 10, x_230); -x_232 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParent___redArg(x_1, x_20, x_226, x_227, x_213, x_231, x_221, x_218, x_224, x_220, x_225, x_219, x_222, x_223); +x_232 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParent___redArg(x_1, x_20, x_218, x_221, x_213, x_231, x_225, x_220, x_226, x_223, x_219, x_227, x_222, x_224); return x_232; } block_275: @@ -48252,25 +49116,25 @@ block_275: if (x_249 == 0) { lean_object* x_250; uint8_t x_251; -lean_dec(x_241); -x_250 = lean_array_get_size(x_235); -x_251 = lean_nat_dec_lt(x_242, x_250); +lean_dec(x_240); +x_250 = lean_array_get_size(x_234); +x_251 = lean_nat_dec_lt(x_241, x_250); if (x_251 == 0) { lean_dec(x_250); -lean_dec_ref(x_235); -x_216 = x_234; -x_217 = x_236; -x_218 = x_237; -x_219 = x_238; -x_220 = x_246; +lean_dec_ref(x_234); +x_216 = x_236; +x_217 = x_235; +x_218 = x_243; +x_219 = x_237; +x_220 = x_238; x_221 = x_239; -x_222 = x_247; -x_223 = x_248; -x_224 = x_240; -x_225 = x_243; -x_226 = x_244; -x_227 = x_245; +x_222 = x_244; +x_223 = x_245; +x_224 = x_246; +x_225 = x_247; +x_226 = x_242; +x_227 = x_248; x_228 = x_249; goto block_233; } @@ -48279,19 +49143,19 @@ else if (x_251 == 0) { lean_dec(x_250); -lean_dec_ref(x_235); -x_216 = x_234; -x_217 = x_236; -x_218 = x_237; -x_219 = x_238; -x_220 = x_246; +lean_dec_ref(x_234); +x_216 = x_236; +x_217 = x_235; +x_218 = x_243; +x_219 = x_237; +x_220 = x_238; x_221 = x_239; -x_222 = x_247; -x_223 = x_248; -x_224 = x_240; -x_225 = x_243; -x_226 = x_244; -x_227 = x_245; +x_222 = x_244; +x_223 = x_245; +x_224 = x_246; +x_225 = x_247; +x_226 = x_242; +x_227 = x_248; x_228 = x_249; goto block_233; } @@ -48301,34 +49165,34 @@ size_t x_252; size_t x_253; uint8_t x_254; x_252 = 0; x_253 = lean_usize_of_nat(x_250); lean_dec(x_250); -x_254 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go_spec__0(x_245, x_235, x_252, x_253); -lean_dec_ref(x_235); +x_254 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go_spec__0(x_239, x_234, x_252, x_253); +lean_dec_ref(x_234); if (x_254 == 0) { -x_216 = x_234; -x_217 = x_236; -x_218 = x_237; -x_219 = x_238; -x_220 = x_246; +x_216 = x_236; +x_217 = x_235; +x_218 = x_243; +x_219 = x_237; +x_220 = x_238; x_221 = x_239; -x_222 = x_247; -x_223 = x_248; -x_224 = x_240; -x_225 = x_243; -x_226 = x_244; -x_227 = x_245; +x_222 = x_244; +x_223 = x_245; +x_224 = x_246; +x_225 = x_247; +x_226 = x_242; +x_227 = x_248; x_228 = x_254; goto block_233; } else { 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_dec(x_244); -lean_dec(x_240); -lean_dec_ref(x_239); -lean_dec_ref(x_237); +lean_dec_ref(x_247); +lean_dec(x_243); +lean_dec(x_242); +lean_dec_ref(x_238); lean_dec(x_236); -lean_dec(x_234); +lean_dec(x_235); lean_dec(x_213); lean_dec(x_21); lean_dec(x_20); @@ -48338,7 +49202,7 @@ lean_dec_ref(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); x_255 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___lam__1___closed__1; -x_256 = l_Lean_MessageData_ofName(x_245); +x_256 = l_Lean_MessageData_ofName(x_239); x_257 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_257, 0, x_255); lean_ctor_set(x_257, 1, x_256); @@ -48350,11 +49214,11 @@ x_260 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruc x_261 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_261, 0, x_259); lean_ctor_set(x_261, 1, x_260); -x_262 = l_Lean_throwError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo_spec__0___redArg(x_261, x_246, x_243, x_238, x_247, x_248); -lean_dec(x_247); -lean_dec_ref(x_238); -lean_dec(x_243); -lean_dec_ref(x_246); +x_262 = l_Lean_throwError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo_spec__0___redArg(x_261, x_245, x_237, x_248, x_244, x_246); +lean_dec(x_244); +lean_dec_ref(x_248); +lean_dec(x_237); +lean_dec_ref(x_245); return x_262; } } @@ -48363,16 +49227,16 @@ return x_262; else { lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; -lean_dec(x_245); -lean_dec(x_244); +lean_dec(x_243); +lean_dec(x_239); lean_dec(x_236); -lean_dec_ref(x_235); -lean_dec(x_234); +lean_dec(x_235); +lean_dec_ref(x_234); lean_dec(x_213); lean_dec(x_21); lean_dec(x_20); x_263 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go___redArg___closed__1; -x_264 = l_Lean_MessageData_ofConstName(x_241, x_209); +x_264 = l_Lean_MessageData_ofConstName(x_240, x_209); x_265 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_265, 0, x_263); lean_ctor_set(x_265, 1, x_264); @@ -48380,8 +49244,8 @@ x_266 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParen x_267 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_267, 0, x_265); lean_ctor_set(x_267, 1, x_266); -lean_inc_ref(x_238); -x_268 = l_Lean_logWarning___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__11(x_267, x_239, x_237, x_240, x_246, x_243, x_238, x_247, x_248); +lean_inc_ref(x_248); +x_268 = l_Lean_logWarning___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__11(x_267, x_247, x_238, x_242, x_245, x_237, x_248, x_244, x_246); x_269 = lean_ctor_get(x_268, 0); lean_inc(x_269); x_270 = lean_ctor_get(x_268, 1); @@ -48395,12 +49259,12 @@ x_273 = lean_nat_add(x_5, x_272); lean_dec(x_5); x_5 = x_273; x_6 = x_271; -x_7 = x_237; -x_8 = x_240; -x_9 = x_246; -x_10 = x_243; -x_11 = x_238; -x_12 = x_247; +x_7 = x_238; +x_8 = x_242; +x_9 = x_245; +x_10 = x_237; +x_11 = x_248; +x_12 = x_244; x_13 = x_270; goto _start; } @@ -48426,21 +49290,21 @@ if (x_293 == 0) lean_dec(x_292); lean_inc(x_289); lean_inc(x_284); -x_234 = x_284; -x_235 = x_290; +x_234 = x_290; +x_235 = x_284; x_236 = x_289; -x_237 = x_278; -x_238 = x_279; -x_239 = x_285; -x_240 = x_282; -x_241 = x_284; -x_242 = x_291; -x_243 = x_283; -x_244 = x_288; -x_245 = x_289; -x_246 = x_280; -x_247 = x_281; -x_248 = x_286; +x_237 = x_279; +x_238 = x_278; +x_239 = x_289; +x_240 = x_284; +x_241 = x_291; +x_242 = x_282; +x_243 = x_288; +x_244 = x_281; +x_245 = x_280; +x_246 = x_286; +x_247 = x_285; +x_248 = x_283; x_249 = x_277; goto block_275; } @@ -48451,21 +49315,21 @@ if (x_293 == 0) lean_dec(x_292); lean_inc(x_289); lean_inc(x_284); -x_234 = x_284; -x_235 = x_290; +x_234 = x_290; +x_235 = x_284; x_236 = x_289; -x_237 = x_278; -x_238 = x_279; -x_239 = x_285; -x_240 = x_282; -x_241 = x_284; -x_242 = x_291; -x_243 = x_283; -x_244 = x_288; -x_245 = x_289; -x_246 = x_280; -x_247 = x_281; -x_248 = x_286; +x_237 = x_279; +x_238 = x_278; +x_239 = x_289; +x_240 = x_284; +x_241 = x_291; +x_242 = x_282; +x_243 = x_288; +x_244 = x_281; +x_245 = x_280; +x_246 = x_286; +x_247 = x_285; +x_248 = x_283; x_249 = x_277; goto block_275; } @@ -48478,21 +49342,21 @@ lean_dec(x_292); x_296 = l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go_spec__1(x_284, x_290, x_294, x_295); lean_inc(x_289); lean_inc(x_284); -x_234 = x_284; -x_235 = x_290; +x_234 = x_290; +x_235 = x_284; x_236 = x_289; -x_237 = x_278; -x_238 = x_279; -x_239 = x_285; -x_240 = x_282; -x_241 = x_284; -x_242 = x_291; -x_243 = x_283; -x_244 = x_288; -x_245 = x_289; -x_246 = x_280; -x_247 = x_281; -x_248 = x_286; +x_237 = x_279; +x_238 = x_278; +x_239 = x_289; +x_240 = x_284; +x_241 = x_291; +x_242 = x_282; +x_243 = x_288; +x_244 = x_281; +x_245 = x_280; +x_246 = x_286; +x_247 = x_285; +x_248 = x_283; x_249 = x_296; goto block_275; } @@ -48500,21 +49364,21 @@ goto block_275; } block_316: { -lean_dec(x_302); +lean_dec(x_304); lean_dec_ref(x_298); if (x_306 == 0) { lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_dec(x_215); -x_307 = l_Lean_Exception_toMessageData(x_305); +x_307 = l_Lean_Exception_toMessageData(x_303); x_308 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents_go___redArg___closed__7; x_309 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_309, 0, x_307); lean_ctor_set(x_309, 1, x_308); -x_310 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg(x_22, x_309, x_300, x_304, x_299, x_301, x_303); +x_310 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_instantiateStructDefaultValueFn_x3f___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefaultValue_x3f_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___redArg(x_22, x_309, x_302, x_300, x_305, x_301, x_299); lean_dec(x_301); -lean_dec(x_304); -lean_dec_ref(x_300); +lean_dec(x_300); +lean_dec_ref(x_302); lean_dec(x_22); x_311 = lean_ctor_get(x_310, 0); lean_inc(x_311); @@ -48540,10 +49404,10 @@ return x_314; else { lean_object* x_315; -lean_dec(x_304); +lean_dec_ref(x_305); +lean_dec_ref(x_302); lean_dec(x_301); -lean_dec_ref(x_300); -lean_dec_ref(x_299); +lean_dec(x_300); lean_dec(x_22); if (lean_is_scalar(x_215)) { x_315 = lean_alloc_ctor(1, 2, 0); @@ -48551,8 +49415,8 @@ if (lean_is_scalar(x_215)) { x_315 = x_215; lean_ctor_set_tag(x_315, 1); } -lean_ctor_set(x_315, 0, x_305); -lean_ctor_set(x_315, 1, x_303); +lean_ctor_set(x_315, 0, x_303); +lean_ctor_set(x_315, 1, x_299); return x_315; } } @@ -48571,11 +49435,11 @@ x_327 = lean_ctor_get(x_325, 1); lean_inc(x_327); lean_dec_ref(x_325); x_278 = x_318; -x_279 = x_322; +x_279 = x_321; x_280 = x_320; x_281 = x_323; x_282 = x_319; -x_283 = x_321; +x_283 = x_322; x_284 = x_326; x_285 = x_317; x_286 = x_327; @@ -48605,26 +49469,26 @@ if (x_330 == 0) uint8_t x_331; x_331 = l_Lean_Exception_isRuntime(x_328); x_298 = x_318; -x_299 = x_322; -x_300 = x_320; +x_299 = x_329; +x_300 = x_321; x_301 = x_323; -x_302 = x_319; -x_303 = x_329; -x_304 = x_321; -x_305 = x_328; +x_302 = x_320; +x_303 = x_328; +x_304 = x_319; +x_305 = x_322; x_306 = x_331; goto block_316; } else { x_298 = x_318; -x_299 = x_322; -x_300 = x_320; +x_299 = x_329; +x_300 = x_321; x_301 = x_323; -x_302 = x_319; -x_303 = x_329; -x_304 = x_321; -x_305 = x_328; +x_302 = x_320; +x_303 = x_328; +x_304 = x_319; +x_305 = x_322; x_306 = x_330; goto block_316; } @@ -49417,7 +50281,7 @@ lean_inc_ref(x_4); lean_dec_ref(x_1); x_5 = lean_box(2); x_6 = 5; -x_7 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__1; +x_7 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__1; x_8 = lean_usize_land(x_2, x_7); x_9 = lean_usize_to_nat(x_8); x_10 = lean_array_get(x_5, x_4, x_9); @@ -50300,8 +51164,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_typelessBinder_x3f___closed__0; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__1; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__1; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_4 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; @@ -50320,8 +51184,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_typelessBinder_x3f___closed__2; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__1; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__1; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_4 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; @@ -50340,8 +51204,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_typelessBinder_x3f___closed__4; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__1; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__1; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_4 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; @@ -50360,8 +51224,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_typelessBinder_x3f___closed__6; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__1; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__1; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_4 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; @@ -51129,8 +51993,8 @@ x_47 = 1; x_48 = lean_usize_add(x_6, x_47); x_6 = x_48; x_7 = x_46; -x_8 = x_43; -x_15 = x_44; +x_8 = x_44; +x_15 = x_43; goto _start; } block_124: @@ -51187,8 +52051,8 @@ lean_object* x_83; x_83 = l_Std_DHashMap_Internal_Raw_u2080_expand___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__1___redArg(x_76); lean_ctor_set(x_51, 1, x_83); lean_ctor_set(x_51, 0, x_74); -x_43 = x_52; -x_44 = x_53; +x_43 = x_53; +x_44 = x_52; x_45 = x_51; goto block_50; } @@ -51196,8 +52060,8 @@ else { lean_ctor_set(x_51, 1, x_76); lean_ctor_set(x_51, 0, x_74); -x_43 = x_52; -x_44 = x_53; +x_43 = x_53; +x_44 = x_52; x_45 = x_51; goto block_50; } @@ -51210,8 +52074,8 @@ x_85 = lean_array_uset(x_56, x_71, x_84); x_86 = l_Std_DHashMap_Internal_AssocList_replace___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__4___redArg(x_35, x_58, x_72); x_87 = lean_array_uset(x_85, x_71, x_86); lean_ctor_set(x_51, 1, x_87); -x_43 = x_52; -x_44 = x_53; +x_43 = x_53; +x_44 = x_52; x_45 = x_51; goto block_50; } @@ -51270,8 +52134,8 @@ x_116 = l_Std_DHashMap_Internal_Raw_u2080_expand___at_____private_Lean_Elab_Stru x_117 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_117, 0, x_107); lean_ctor_set(x_117, 1, x_116); -x_43 = x_52; -x_44 = x_53; +x_43 = x_53; +x_44 = x_52; x_45 = x_117; goto block_50; } @@ -51281,8 +52145,8 @@ lean_object* x_118; x_118 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_118, 0, x_107); lean_ctor_set(x_118, 1, x_109); -x_43 = x_52; -x_44 = x_53; +x_43 = x_53; +x_44 = x_52; x_45 = x_118; goto block_50; } @@ -51297,8 +52161,8 @@ x_122 = lean_array_uset(x_120, x_104, x_121); x_123 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_123, 0, x_88); lean_ctor_set(x_123, 1, x_122); -x_43 = x_52; -x_44 = x_53; +x_43 = x_53; +x_44 = x_52; x_45 = x_123; goto block_50; } @@ -51434,8 +52298,8 @@ x_151 = 1; x_152 = lean_usize_add(x_6, x_151); x_6 = x_152; x_7 = x_150; -x_8 = x_147; -x_15 = x_148; +x_8 = x_148; +x_15 = x_147; goto _start; } block_195: @@ -51503,8 +52367,8 @@ if (lean_is_scalar(x_160)) { } lean_ctor_set(x_188, 0, x_178); lean_ctor_set(x_188, 1, x_187); -x_147 = x_156; -x_148 = x_157; +x_147 = x_157; +x_148 = x_156; x_149 = x_188; goto block_154; } @@ -51518,8 +52382,8 @@ if (lean_is_scalar(x_160)) { } lean_ctor_set(x_189, 0, x_178); lean_ctor_set(x_189, 1, x_180); -x_147 = x_156; -x_148 = x_157; +x_147 = x_157; +x_148 = x_156; x_149 = x_189; goto block_154; } @@ -51538,8 +52402,8 @@ if (lean_is_scalar(x_160)) { } lean_ctor_set(x_194, 0, x_158); lean_ctor_set(x_194, 1, x_193); -x_147 = x_156; -x_148 = x_157; +x_147 = x_157; +x_148 = x_156; x_149 = x_194; goto block_154; } @@ -51760,7 +52624,7 @@ lean_ctor_set(x_48, 0, x_21); lean_ctor_set(x_48, 1, x_47); x_49 = 1; x_50 = lean_usize_add(x_8, x_49); -x_51 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__7_spec__7___redArg(x_1, x_4, x_5, x_6, x_7, x_50, x_48, x_45, x_11, x_12, x_13, x_14, x_15, x_16, x_46); +x_51 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__7_spec__7___redArg(x_1, x_4, x_5, x_6, x_7, x_50, x_48, x_46, x_11, x_12, x_13, x_14, x_15, x_16, x_45); return x_51; } block_126: @@ -51817,8 +52681,8 @@ lean_object* x_85; x_85 = l_Std_DHashMap_Internal_Raw_u2080_expand___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__1___redArg(x_78); lean_ctor_set(x_53, 1, x_85); lean_ctor_set(x_53, 0, x_76); -x_45 = x_54; -x_46 = x_55; +x_45 = x_55; +x_46 = x_54; x_47 = x_53; goto block_52; } @@ -51826,8 +52690,8 @@ else { lean_ctor_set(x_53, 1, x_78); lean_ctor_set(x_53, 0, x_76); -x_45 = x_54; -x_46 = x_55; +x_45 = x_55; +x_46 = x_54; x_47 = x_53; goto block_52; } @@ -51840,8 +52704,8 @@ x_87 = lean_array_uset(x_58, x_73, x_86); x_88 = l_Std_DHashMap_Internal_AssocList_replace___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__4___redArg(x_37, x_60, x_74); x_89 = lean_array_uset(x_87, x_73, x_88); lean_ctor_set(x_53, 1, x_89); -x_45 = x_54; -x_46 = x_55; +x_45 = x_55; +x_46 = x_54; x_47 = x_53; goto block_52; } @@ -51900,8 +52764,8 @@ x_118 = l_Std_DHashMap_Internal_Raw_u2080_expand___at_____private_Lean_Elab_Stru x_119 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_119, 0, x_109); lean_ctor_set(x_119, 1, x_118); -x_45 = x_54; -x_46 = x_55; +x_45 = x_55; +x_46 = x_54; x_47 = x_119; goto block_52; } @@ -51911,8 +52775,8 @@ lean_object* x_120; x_120 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_120, 0, x_109); lean_ctor_set(x_120, 1, x_111); -x_45 = x_54; -x_46 = x_55; +x_45 = x_55; +x_46 = x_54; x_47 = x_120; goto block_52; } @@ -51927,8 +52791,8 @@ x_124 = lean_array_uset(x_122, x_106, x_123); x_125 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_125, 0, x_90); lean_ctor_set(x_125, 1, x_124); -x_45 = x_54; -x_46 = x_55; +x_45 = x_55; +x_46 = x_54; x_47 = x_125; goto block_52; } @@ -52062,7 +52926,7 @@ lean_ctor_set(x_152, 0, x_148); lean_ctor_set(x_152, 1, x_151); x_153 = 1; x_154 = lean_usize_add(x_8, x_153); -x_155 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__7_spec__7___redArg(x_1, x_4, x_5, x_6, x_7, x_154, x_152, x_149, x_11, x_12, x_13, x_14, x_15, x_16, x_150); +x_155 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__7_spec__7___redArg(x_1, x_4, x_5, x_6, x_7, x_154, x_152, x_150, x_11, x_12, x_13, x_14, x_15, x_16, x_149); return x_155; } block_197: @@ -52130,8 +52994,8 @@ if (lean_is_scalar(x_162)) { } lean_ctor_set(x_190, 0, x_180); lean_ctor_set(x_190, 1, x_189); -x_149 = x_158; -x_150 = x_159; +x_149 = x_159; +x_150 = x_158; x_151 = x_190; goto block_156; } @@ -52145,8 +53009,8 @@ if (lean_is_scalar(x_162)) { } lean_ctor_set(x_191, 0, x_180); lean_ctor_set(x_191, 1, x_182); -x_149 = x_158; -x_150 = x_159; +x_149 = x_159; +x_150 = x_158; x_151 = x_191; goto block_156; } @@ -52165,8 +53029,8 @@ if (lean_is_scalar(x_162)) { } lean_ctor_set(x_196, 0, x_160); lean_ctor_set(x_196, 1, x_195); -x_149 = x_158; -x_150 = x_159; +x_149 = x_159; +x_150 = x_158; x_151 = x_196; goto block_156; } @@ -55810,7 +56674,7 @@ x_21 = lean_ctor_get(x_17, 5); lean_dec(x_21); x_22 = 0; x_23 = l_Lean_Environment_setExporting(x_20, x_22); -x_24 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_24 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; lean_ctor_set(x_17, 5, x_24); lean_ctor_set(x_17, 0, x_23); x_25 = lean_st_ref_set(x_8, x_17, x_18); @@ -55829,7 +56693,7 @@ if (x_30 == 0) lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; x_31 = lean_ctor_get(x_28, 1); lean_dec(x_31); -x_32 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_32 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; lean_ctor_set(x_28, 1, x_32); x_33 = lean_st_ref_set(x_6, x_28, x_29); x_34 = lean_ctor_get(x_33, 1); @@ -55921,7 +56785,7 @@ lean_inc(x_54); lean_inc(x_53); lean_inc(x_52); lean_dec(x_28); -x_56 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_56 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; x_57 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_57, 0, x_52); lean_ctor_set(x_57, 1, x_56); @@ -56025,7 +56889,7 @@ lean_inc(x_75); lean_dec(x_17); x_83 = 0; x_84 = l_Lean_Environment_setExporting(x_75, x_83); -x_85 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_85 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; x_86 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_86, 0, x_84); lean_ctor_set(x_86, 1, x_76); @@ -56065,7 +56929,7 @@ if (lean_is_exclusive(x_90)) { lean_dec_ref(x_90); x_96 = lean_box(0); } -x_97 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_97 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_96)) { x_98 = lean_alloc_ctor(0, 5, 0); } else { @@ -56524,7 +57388,7 @@ x_22 = lean_ctor_get(x_18, 5); lean_dec(x_22); x_23 = 0; x_24 = l_Lean_Environment_setExporting(x_21, x_23); -x_25 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_25 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; lean_ctor_set(x_18, 5, x_25); lean_ctor_set(x_18, 0, x_24); x_26 = lean_st_ref_set(x_9, x_18, x_19); @@ -56543,7 +57407,7 @@ if (x_31 == 0) lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; x_32 = lean_ctor_get(x_29, 1); lean_dec(x_32); -x_33 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_33 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; lean_ctor_set(x_29, 1, x_33); x_34 = lean_st_ref_set(x_7, x_29, x_30); x_35 = lean_ctor_get(x_34, 1); @@ -56737,7 +57601,7 @@ lean_inc(x_75); lean_inc(x_74); lean_inc(x_73); lean_dec(x_29); -x_77 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_77 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; x_78 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_78, 0, x_73); lean_ctor_set(x_78, 1, x_77); @@ -56926,7 +57790,7 @@ lean_inc(x_111); lean_dec(x_18); x_119 = 0; x_120 = l_Lean_Environment_setExporting(x_111, x_119); -x_121 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_121 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; x_122 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_122, 0, x_120); lean_ctor_set(x_122, 1, x_112); @@ -56966,7 +57830,7 @@ if (lean_is_exclusive(x_126)) { lean_dec_ref(x_126); x_132 = lean_box(0); } -x_133 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_133 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_132)) { x_134 = lean_alloc_ctor(0, 5, 0); } else { @@ -60276,8 +61140,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__8; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__1; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__1; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_4 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; @@ -60296,8 +61160,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__10; -x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__1; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_2 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__1; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_4 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; @@ -60563,7 +61427,7 @@ return x_27; } else { -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; lean_object* x_42; lean_object* x_43; lean_object* x_44; 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_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_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; uint8_t x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; uint8_t x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; uint8_t x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; uint8_t x_724; +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; lean_object* x_42; lean_object* x_43; lean_object* x_44; 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_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_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; uint8_t x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; uint8_t x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; uint8_t x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; uint8_t x_724; x_28 = lean_array_fget(x_2, x_4); x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); @@ -61003,7 +61867,7 @@ x_49 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_49, 0, x_47); lean_ctor_set(x_49, 1, x_48); x_50 = 0; -x_51 = l_Lean_MessageData_ofConstName(x_39, x_50); +x_51 = l_Lean_MessageData_ofConstName(x_38, x_50); x_52 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_52, 0, x_49); lean_ctor_set(x_52, 1, x_51); @@ -61023,10 +61887,10 @@ x_59 = l_Lean_MessageData_note(x_58); x_60 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_60, 0, x_54); lean_ctor_set(x_60, 1, x_59); -x_61 = l_Lean_throwError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo_spec__0___redArg(x_60, x_41, x_38, x_43, x_40, x_42); -lean_dec(x_40); -lean_dec_ref(x_43); -lean_dec(x_38); +x_61 = l_Lean_throwError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo_spec__0___redArg(x_60, x_41, x_43, x_40, x_39, x_42); +lean_dec(x_39); +lean_dec_ref(x_40); +lean_dec(x_43); lean_dec_ref(x_41); return x_61; } @@ -61034,7 +61898,7 @@ block_75: { lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; x_70 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__5; -x_71 = l_Lean_MessageData_orList(x_67); +x_71 = l_Lean_MessageData_orList(x_63); x_72 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_72, 0, x_70); lean_ctor_set(x_72, 1, x_71); @@ -61042,12 +61906,12 @@ x_73 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePr x_74 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_74, 0, x_72); lean_ctor_set(x_74, 1, x_73); -x_38 = x_63; -x_39 = x_64; -x_40 = x_65; +x_38 = x_64; +x_39 = x_65; +x_40 = x_67; x_41 = x_66; -x_42 = x_69; -x_43 = x_68; +x_42 = x_68; +x_43 = x_69; x_44 = x_74; goto block_62; } @@ -61063,13 +61927,13 @@ x_86 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_ x_87 = lean_array_to_list(x_86); if (lean_obj_tag(x_87) == 0) { -x_63 = x_79; +x_63 = x_87; x_64 = x_76; x_65 = x_81; x_66 = x_78; -x_67 = x_87; -x_68 = x_80; -x_69 = x_82; +x_67 = x_80; +x_68 = x_82; +x_69 = x_79; goto block_75; } else @@ -61095,12 +61959,12 @@ x_93 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePr x_94 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_94, 0, x_87); lean_ctor_set(x_94, 1, x_93); -x_38 = x_79; -x_39 = x_76; -x_40 = x_81; +x_38 = x_76; +x_39 = x_81; +x_40 = x_80; x_41 = x_78; x_42 = x_82; -x_43 = x_80; +x_43 = x_79; x_44 = x_94; goto block_62; } @@ -61118,12 +61982,12 @@ x_98 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePr x_99 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_99, 0, x_97); lean_ctor_set(x_99, 1, x_98); -x_38 = x_79; -x_39 = x_76; -x_40 = x_81; +x_38 = x_76; +x_39 = x_81; +x_40 = x_80; x_41 = x_78; x_42 = x_82; -x_43 = x_80; +x_43 = x_79; x_44 = x_99; goto block_62; } @@ -61131,13 +61995,13 @@ goto block_62; else { lean_dec_ref(x_88); -x_63 = x_79; +x_63 = x_87; x_64 = x_76; x_65 = x_81; x_66 = x_78; -x_67 = x_87; -x_68 = x_80; -x_69 = x_82; +x_67 = x_80; +x_68 = x_82; +x_69 = x_79; goto block_75; } } @@ -61146,23 +62010,23 @@ block_135: { lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; x_121 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_121, 0, x_106); +lean_ctor_set(x_121, 0, x_110); x_122 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_122, 0, x_121); x_123 = lean_alloc_ctor(0, 12, 1); lean_ctor_set(x_123, 0, x_32); lean_ctor_set(x_123, 1, x_112); -lean_ctor_set(x_123, 2, x_102); -lean_ctor_set(x_123, 3, x_109); -lean_ctor_set(x_123, 4, x_108); -lean_ctor_set(x_123, 5, x_111); -lean_ctor_set(x_123, 6, x_110); -lean_ctor_set(x_123, 7, x_101); +lean_ctor_set(x_123, 2, x_103); +lean_ctor_set(x_123, 3, x_104); +lean_ctor_set(x_123, 4, x_106); +lean_ctor_set(x_123, 5, x_109); +lean_ctor_set(x_123, 6, x_108); +lean_ctor_set(x_123, 7, x_107); lean_ctor_set(x_123, 8, x_122); -lean_ctor_set(x_123, 9, x_103); -lean_ctor_set(x_123, 10, x_104); -lean_ctor_set(x_123, 11, x_107); -lean_ctor_set_uint8(x_123, sizeof(void*)*12, x_105); +lean_ctor_set(x_123, 9, x_105); +lean_ctor_set(x_123, 10, x_101); +lean_ctor_set(x_123, 11, x_102); +lean_ctor_set_uint8(x_123, sizeof(void*)*12, x_111); x_124 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_replaceFieldInfo___redArg(x_123, x_113, x_116, x_117, x_118, x_119, x_120); if (lean_obj_tag(x_124) == 0) { @@ -61304,17 +62168,17 @@ lean_dec_ref(x_168); x_171 = lean_ctor_get(x_169, 1); lean_inc(x_171); lean_dec(x_169); -x_101 = x_153; -x_102 = x_147; -x_103 = x_154; -x_104 = x_155; -x_105 = x_149; -x_106 = x_163; -x_107 = x_156; -x_108 = x_150; -x_109 = x_148; -x_110 = x_152; -x_111 = x_151; +x_101 = x_155; +x_102 = x_156; +x_103 = x_147; +x_104 = x_148; +x_105 = x_154; +x_106 = x_150; +x_107 = x_153; +x_108 = x_152; +x_109 = x_151; +x_110 = x_163; +x_111 = x_149; x_112 = x_146; x_113 = x_171; x_114 = x_139; @@ -61369,17 +62233,17 @@ lean_object* x_185; x_185 = lean_ctor_get(x_184, 1); lean_inc(x_185); lean_dec_ref(x_184); -x_101 = x_153; -x_102 = x_147; -x_103 = x_154; -x_104 = x_155; -x_105 = x_149; -x_106 = x_163; -x_107 = x_156; -x_108 = x_150; -x_109 = x_148; -x_110 = x_152; -x_111 = x_151; +x_101 = x_155; +x_102 = x_156; +x_103 = x_147; +x_104 = x_148; +x_105 = x_154; +x_106 = x_150; +x_107 = x_153; +x_108 = x_152; +x_109 = x_151; +x_110 = x_163; +x_111 = x_149; x_112 = x_146; x_113 = x_179; x_114 = x_139; @@ -61763,11 +62627,11 @@ goto block_206; block_282: { lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; uint8_t x_278; -lean_dec(x_266); -lean_dec_ref(x_265); -lean_dec_ref(x_264); +lean_dec_ref(x_266); +lean_dec(x_264); lean_dec_ref(x_263); lean_dec(x_261); +lean_dec_ref(x_260); x_269 = lean_box(0); x_270 = l_List_mapTR_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go_spec__1(x_268, x_269); x_271 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go___redArg___closed__16; @@ -61780,11 +62644,11 @@ x_275 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeleteP x_276 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_276, 0, x_274); lean_ctor_set(x_276, 1, x_275); -x_277 = l_Lean_throwError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo_spec__0___redArg(x_276, x_258, x_262, x_259, x_260, x_267); -lean_dec(x_260); -lean_dec_ref(x_259); -lean_dec(x_262); +x_277 = l_Lean_throwError___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addFieldInfo_spec__0___redArg(x_276, x_267, x_265, x_258, x_259, x_262); +lean_dec(x_259); lean_dec_ref(x_258); +lean_dec(x_265); +lean_dec_ref(x_267); x_278 = !lean_is_exclusive(x_277); if (x_278 == 0) { @@ -61861,16 +62725,16 @@ if (x_307 == 0) { lean_dec(x_306); lean_dec_ref(x_302); -x_258 = x_288; -x_259 = x_290; -x_260 = x_291; -x_261 = x_283; -x_262 = x_289; -x_263 = x_284; -x_264 = x_300; -x_265 = x_286; -x_266 = x_287; -x_267 = x_298; +x_258 = x_290; +x_259 = x_291; +x_260 = x_283; +x_261 = x_287; +x_262 = x_298; +x_263 = x_300; +x_264 = x_284; +x_265 = x_289; +x_266 = x_286; +x_267 = x_288; x_268 = x_305; goto block_282; } @@ -61882,16 +62746,16 @@ lean_dec(x_306); x_309 = 0; x_310 = l_Array_foldrMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields_go_spec__3(x_302, x_308, x_309, x_305); lean_dec_ref(x_302); -x_258 = x_288; -x_259 = x_290; -x_260 = x_291; -x_261 = x_283; -x_262 = x_289; -x_263 = x_284; -x_264 = x_300; -x_265 = x_286; -x_266 = x_287; -x_267 = x_298; +x_258 = x_290; +x_259 = x_291; +x_260 = x_283; +x_261 = x_287; +x_262 = x_298; +x_263 = x_300; +x_264 = x_284; +x_265 = x_289; +x_266 = x_286; +x_267 = x_288; x_268 = x_310; goto block_282; } @@ -61899,9 +62763,9 @@ goto block_282; else { lean_dec_ref(x_302); -x_207 = x_284; +x_207 = x_283; x_208 = x_300; -x_209 = x_283; +x_209 = x_284; x_210 = x_299; x_211 = x_286; x_212 = x_287; @@ -61922,8 +62786,8 @@ lean_dec(x_289); lean_dec_ref(x_288); lean_dec(x_287); lean_dec_ref(x_286); -lean_dec_ref(x_284); -lean_dec(x_283); +lean_dec(x_284); +lean_dec_ref(x_283); lean_dec(x_33); lean_dec(x_32); lean_dec(x_29); @@ -61962,7 +62826,7 @@ lean_inc(x_334); lean_inc_ref(x_333); lean_inc(x_332); lean_inc_ref(x_331); -x_338 = l_Lean_Elab_Term_declareTacticSyntax(x_318, x_337, x_329, x_330, x_331, x_332, x_333, x_334, x_335); +x_338 = l_Lean_Elab_Term_declareTacticSyntax(x_323, x_337, x_329, x_330, x_331, x_332, x_333, x_334, x_335); if (lean_obj_tag(x_338) == 0) { lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; @@ -61975,21 +62839,21 @@ x_342 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_342, 0, x_341); x_343 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_343, 0, x_342); -lean_inc(x_320); +lean_inc(x_325); x_344 = lean_alloc_ctor(0, 12, 1); lean_ctor_set(x_344, 0, x_32); -lean_ctor_set(x_344, 1, x_317); -lean_ctor_set(x_344, 2, x_316); -lean_ctor_set(x_344, 3, x_323); -lean_ctor_set(x_344, 4, x_324); -lean_ctor_set(x_344, 5, x_321); -lean_ctor_set(x_344, 6, x_326); +lean_ctor_set(x_344, 1, x_320); +lean_ctor_set(x_344, 2, x_317); +lean_ctor_set(x_344, 3, x_327); +lean_ctor_set(x_344, 4, x_319); +lean_ctor_set(x_344, 5, x_326); +lean_ctor_set(x_344, 6, x_316); lean_ctor_set(x_344, 7, x_322); lean_ctor_set(x_344, 8, x_343); -lean_ctor_set(x_344, 9, x_320); -lean_ctor_set(x_344, 10, x_327); -lean_ctor_set(x_344, 11, x_319); -lean_ctor_set_uint8(x_344, sizeof(void*)*12, x_325); +lean_ctor_set(x_344, 9, x_325); +lean_ctor_set(x_344, 10, x_321); +lean_ctor_set(x_344, 11, x_318); +lean_ctor_set_uint8(x_344, sizeof(void*)*12, x_324); x_345 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_replaceFieldInfo___redArg(x_344, x_328, x_331, x_332, x_333, x_334, x_339); if (lean_obj_tag(x_345) == 0) { @@ -62008,7 +62872,7 @@ lean_ctor_set(x_349, 0, x_29); x_350 = l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__2(x_349, x_348, x_329, x_330, x_331, x_332, x_333, x_334, x_347); x_351 = lean_ctor_get(x_350, 0); lean_inc(x_351); -if (lean_obj_tag(x_320) == 0) +if (lean_obj_tag(x_325) == 0) { lean_object* x_352; lean_object* x_353; lean_dec(x_29); @@ -62037,9 +62901,9 @@ lean_dec_ref(x_350); x_355 = lean_ctor_get(x_351, 1); lean_inc(x_355); lean_dec(x_351); -x_356 = lean_ctor_get(x_320, 0); +x_356 = lean_ctor_get(x_325, 0); lean_inc(x_356); -lean_dec_ref(x_320); +lean_dec_ref(x_325); lean_inc_ref(x_333); x_357 = l_Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__0_spec__0(x_356, x_355, x_329, x_330, x_331, x_332, x_333, x_334, x_354); if (lean_obj_tag(x_357) == 0) @@ -62160,7 +63024,7 @@ lean_dec(x_332); lean_dec_ref(x_331); lean_dec(x_330); lean_dec_ref(x_329); -lean_dec(x_320); +lean_dec(x_325); lean_dec(x_29); lean_dec(x_4); lean_dec_ref(x_3); @@ -62197,16 +63061,16 @@ lean_dec_ref(x_331); lean_dec(x_330); lean_dec_ref(x_329); lean_dec_ref(x_328); -lean_dec_ref(x_327); -lean_dec_ref(x_326); -lean_dec(x_324); -lean_dec(x_323); +lean_dec(x_327); +lean_dec(x_326); +lean_dec(x_325); lean_dec(x_322); -lean_dec(x_321); +lean_dec_ref(x_321); lean_dec(x_320); lean_dec(x_319); +lean_dec(x_318); lean_dec(x_317); -lean_dec(x_316); +lean_dec_ref(x_316); lean_dec(x_32); lean_dec(x_29); lean_dec(x_4); @@ -62245,17 +63109,17 @@ lean_dec(x_407); if (x_408 == 0) { lean_dec(x_35); -x_316 = x_387; +x_316 = x_385; x_317 = x_386; -x_318 = x_385; -x_319 = x_390; -x_320 = x_389; -x_321 = x_388; +x_318 = x_389; +x_319 = x_388; +x_320 = x_387; +x_321 = x_392; x_322 = x_391; -x_323 = x_392; -x_324 = x_394; -x_325 = x_393; -x_326 = x_395; +x_323 = x_390; +x_324 = x_393; +x_325 = x_395; +x_326 = x_394; x_327 = x_396; x_328 = x_397; x_329 = x_398; @@ -62273,17 +63137,17 @@ lean_object* x_409; lean_object* x_410; uint8_t x_411; lean_dec(x_399); lean_dec_ref(x_398); lean_dec_ref(x_397); -lean_dec_ref(x_396); -lean_dec_ref(x_395); +lean_dec(x_396); +lean_dec(x_395); lean_dec(x_394); -lean_dec(x_392); +lean_dec_ref(x_392); lean_dec(x_391); lean_dec(x_390); lean_dec(x_389); lean_dec(x_388); lean_dec(x_387); lean_dec(x_386); -lean_dec(x_385); +lean_dec_ref(x_385); lean_dec(x_32); lean_dec(x_31); lean_dec(x_29); @@ -63156,8 +64020,8 @@ lean_dec(x_425); x_582 = lean_ctor_get(x_578, 0); lean_inc(x_582); lean_dec_ref(x_578); -x_283 = x_582; -x_284 = x_522; +x_283 = x_522; +x_284 = x_582; x_285 = x_581; x_286 = x_417; x_287 = x_418; @@ -63481,18 +64345,18 @@ lean_dec(x_522); x_659 = lean_ctor_get(x_578, 0); lean_inc(x_659); lean_dec_ref(x_578); -x_385 = x_659; -x_386 = x_649; -x_387 = x_523; -x_388 = x_653; -x_389 = x_656; -x_390 = x_658; +x_385 = x_654; +x_386 = x_523; +x_387 = x_649; +x_388 = x_652; +x_389 = x_658; +x_390 = x_659; x_391 = x_655; -x_392 = x_650; +x_392 = x_657; x_393 = x_651; -x_394 = x_652; -x_395 = x_654; -x_396 = x_657; +x_394 = x_653; +x_395 = x_656; +x_396 = x_650; x_397 = x_648; x_398 = x_417; x_399 = x_418; @@ -64451,7 +65315,7 @@ x_6 = lean_ctor_get(x_1, 0); lean_inc_ref(x_6); x_7 = 5; x_8 = 1; -x_9 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__1; +x_9 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__1; x_10 = lean_usize_land(x_2, x_9); x_11 = lean_usize_to_nat(x_10); x_12 = lean_array_get_size(x_6); @@ -64631,7 +65495,7 @@ x_49 = lean_ctor_get(x_46, 1); lean_inc_ref(x_49); lean_dec_ref(x_46); x_50 = lean_unsigned_to_nat(0u); -x_51 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__2; +x_51 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__2; x_52 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__1_spec__1_spec__3___redArg(x_3, x_48, x_49, x_50, x_51); lean_dec_ref(x_49); lean_dec_ref(x_48); @@ -64683,7 +65547,7 @@ x_65 = lean_ctor_get(x_62, 1); lean_inc_ref(x_65); lean_dec_ref(x_62); x_66 = lean_unsigned_to_nat(0u); -x_67 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__2; +x_67 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__2; x_68 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__1_spec__1_spec__3___redArg(x_3, x_64, x_65, x_66, x_67); lean_dec_ref(x_65); lean_dec_ref(x_64); @@ -67034,8 +67898,8 @@ x_104 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_104, 0, x_103); lean_ctor_set(x_104, 1, x_100); x_11 = x_104; -x_12 = x_102; -x_13 = x_101; +x_12 = x_101; +x_13 = x_102; goto block_17; } block_181: @@ -67104,8 +67968,8 @@ lean_object* x_143; x_143 = l_Std_DHashMap_Internal_Raw_u2080_expand___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__1___redArg(x_136); lean_ctor_set(x_21, 1, x_143); lean_ctor_set(x_21, 0, x_134); -x_101 = x_111; -x_102 = x_107; +x_101 = x_107; +x_102 = x_111; x_103 = x_21; goto block_105; } @@ -67113,8 +67977,8 @@ else { lean_ctor_set(x_21, 1, x_136); lean_ctor_set(x_21, 0, x_134); -x_101 = x_111; -x_102 = x_107; +x_101 = x_107; +x_102 = x_111; x_103 = x_21; goto block_105; } @@ -67127,8 +67991,8 @@ x_145 = lean_array_uset(x_113, x_130, x_144); x_146 = l_Std_DHashMap_Internal_AssocList_replace___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_elabParamInfoUpdates_spec__4___redArg(x_67, x_114, x_131); x_147 = lean_array_uset(x_145, x_130, x_146); lean_ctor_set(x_21, 1, x_147); -x_101 = x_111; -x_102 = x_107; +x_101 = x_107; +x_102 = x_111; x_103 = x_21; goto block_105; } @@ -67180,8 +68044,8 @@ x_173 = l_Std_DHashMap_Internal_Raw_u2080_expand___at_____private_Lean_Elab_Stru x_174 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_174, 0, x_164); lean_ctor_set(x_174, 1, x_173); -x_101 = x_111; -x_102 = x_107; +x_101 = x_107; +x_102 = x_111; x_103 = x_174; goto block_105; } @@ -67191,8 +68055,8 @@ lean_object* x_175; x_175 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_175, 0, x_164); lean_ctor_set(x_175, 1, x_166); -x_101 = x_111; -x_102 = x_107; +x_101 = x_107; +x_102 = x_111; x_103 = x_175; goto block_105; } @@ -67207,8 +68071,8 @@ x_179 = lean_array_uset(x_177, x_160, x_178); x_180 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_180, 0, x_112); lean_ctor_set(x_180, 1, x_179); -x_101 = x_111; -x_102 = x_107; +x_101 = x_107; +x_102 = x_111; x_103 = x_180; goto block_105; } @@ -67268,16 +68132,16 @@ x_219 = lean_ctor_get(x_210, 1); lean_dec(x_219); x_220 = lean_ctor_get(x_210, 0); lean_dec(x_220); -lean_inc(x_213); lean_inc(x_211); +lean_inc(x_212); lean_ctor_set(x_210, 3, x_215); -lean_ctor_set(x_210, 2, x_212); -lean_ctor_set(x_210, 1, x_213); -lean_ctor_set(x_210, 0, x_211); +lean_ctor_set(x_210, 2, x_213); +lean_ctor_set(x_210, 1, x_211); +lean_ctor_set(x_210, 0, x_212); lean_ctor_set_uint8(x_210, sizeof(void*)*4, x_66); x_201 = x_210; -x_202 = x_211; -x_203 = x_213; +x_202 = x_212; +x_203 = x_211; goto block_208; } else @@ -67285,18 +68149,18 @@ else uint8_t x_221; lean_object* x_222; x_221 = lean_ctor_get_uint8(x_210, sizeof(void*)*4 + 1); lean_dec(x_210); -lean_inc(x_213); lean_inc(x_211); +lean_inc(x_212); x_222 = lean_alloc_ctor(0, 4, 2); -lean_ctor_set(x_222, 0, x_211); -lean_ctor_set(x_222, 1, x_213); -lean_ctor_set(x_222, 2, x_212); +lean_ctor_set(x_222, 0, x_212); +lean_ctor_set(x_222, 1, x_211); +lean_ctor_set(x_222, 2, x_213); lean_ctor_set(x_222, 3, x_215); lean_ctor_set_uint8(x_222, sizeof(void*)*4, x_66); lean_ctor_set_uint8(x_222, sizeof(void*)*4 + 1, x_221); x_201 = x_222; -x_202 = x_211; -x_203 = x_213; +x_202 = x_212; +x_203 = x_211; goto block_208; } } @@ -67305,18 +68169,18 @@ else uint8_t x_223; lean_object* x_224; x_223 = lean_ctor_get_uint8(x_210, sizeof(void*)*5 + 1); lean_dec_ref(x_210); -lean_inc(x_213); lean_inc(x_211); +lean_inc(x_212); x_224 = lean_alloc_ctor(0, 4, 2); -lean_ctor_set(x_224, 0, x_211); -lean_ctor_set(x_224, 1, x_213); -lean_ctor_set(x_224, 2, x_212); +lean_ctor_set(x_224, 0, x_212); +lean_ctor_set(x_224, 1, x_211); +lean_ctor_set(x_224, 2, x_213); lean_ctor_set(x_224, 3, x_215); lean_ctor_set_uint8(x_224, sizeof(void*)*4, x_66); lean_ctor_set_uint8(x_224, sizeof(void*)*4 + 1, x_223); x_201 = x_224; -x_202 = x_211; -x_203 = x_213; +x_202 = x_212; +x_203 = x_211; goto block_208; } } @@ -67326,8 +68190,8 @@ lean_object* x_229; x_229 = lean_ctor_get(x_210, 3); lean_inc_ref(x_229); x_211 = x_226; -x_212 = x_228; -x_213 = x_227; +x_212 = x_227; +x_213 = x_228; x_214 = x_229; goto block_225; } @@ -67336,8 +68200,8 @@ block_234: lean_object* x_233; x_233 = lean_ctor_get(x_210, 2); lean_inc(x_233); -x_226 = x_231; -x_227 = x_232; +x_226 = x_232; +x_227 = x_231; x_228 = x_233; goto block_230; } @@ -67387,13 +68251,13 @@ block_37: { lean_object* x_34; lean_object* x_35; lean_object* x_36; x_34 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_34, 0, x_28); -x_35 = l_Lean_PersistentArray_set___redArg(x_29, x_33, x_34); +lean_ctor_set(x_34, 0, x_31); +x_35 = l_Lean_PersistentArray_set___redArg(x_32, x_33, x_34); lean_dec(x_33); x_36 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_36, 0, x_31); +lean_ctor_set(x_36, 0, x_29); lean_ctor_set(x_36, 1, x_35); -lean_ctor_set(x_36, 2, x_32); +lean_ctor_set(x_36, 2, x_28); x_24 = x_30; x_25 = x_36; goto block_27; @@ -67401,14 +68265,14 @@ goto block_27; block_46: { lean_object* x_44; lean_object* x_45; -lean_inc_ref(x_39); -x_44 = l_Lean_PersistentHashMap_insert___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__1___redArg(x_38, x_43, x_39); -x_45 = lean_ctor_get(x_39, 0); +lean_inc_ref(x_41); +x_44 = l_Lean_PersistentHashMap_insert___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__1___redArg(x_40, x_43, x_41); +x_45 = lean_ctor_get(x_41, 0); lean_inc(x_45); -x_28 = x_39; -x_29 = x_40; -x_30 = x_41; -x_31 = x_44; +x_28 = x_38; +x_29 = x_44; +x_30 = x_39; +x_31 = x_41; x_32 = x_42; x_33 = x_45; goto block_37; @@ -67416,14 +68280,14 @@ goto block_37; block_58: { lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_55 = l_Lean_mkAppB(x_48, x_54, x_53); +x_55 = l_Lean_mkAppB(x_51, x_54, x_53); x_56 = l_Lean_LocalDecl_setType(x_50, x_55); x_57 = lean_ctor_get(x_56, 1); lean_inc(x_57); x_38 = x_47; -x_39 = x_56; +x_39 = x_48; x_40 = x_49; -x_41 = x_51; +x_41 = x_56; x_42 = x_52; x_43 = x_57; goto block_46; @@ -67534,12 +68398,12 @@ lean_ctor_set(x_87, 1, x_86); x_88 = l_Lean_Expr_const___override(x_85, x_87); x_89 = lean_ctor_get(x_84, 3); lean_inc_ref(x_89); -x_47 = x_80; -x_48 = x_88; -x_49 = x_81; +x_47 = x_82; +x_48 = x_79; +x_49 = x_80; x_50 = x_84; -x_51 = x_79; -x_52 = x_82; +x_51 = x_88; +x_52 = x_81; x_53 = x_73; x_54 = x_89; goto block_58; @@ -68154,44 +69018,44 @@ block_41: { lean_object* x_38; lean_object* x_39; lean_object* x_40; x_38 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_38, 0, x_35); -x_39 = l_Lean_PersistentArray_set___redArg(x_33, x_37, x_38); +lean_ctor_set(x_38, 0, x_32); +x_39 = l_Lean_PersistentArray_set___redArg(x_34, x_37, x_38); lean_dec(x_37); x_40 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_40, 0, x_32); +lean_ctor_set(x_40, 0, x_33); lean_ctor_set(x_40, 1, x_39); -lean_ctor_set(x_40, 2, x_34); -x_28 = x_36; +lean_ctor_set(x_40, 2, x_36); +x_28 = x_35; x_29 = x_40; goto block_31; } block_50: { lean_object* x_48; lean_object* x_49; -lean_inc_ref(x_45); -x_48 = l_Lean_PersistentHashMap_insert___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__1___redArg(x_43, x_47, x_45); -x_49 = lean_ctor_get(x_45, 0); +lean_inc_ref(x_42); +x_48 = l_Lean_PersistentHashMap_insert___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__1___redArg(x_43, x_47, x_42); +x_49 = lean_ctor_get(x_42, 0); lean_inc(x_49); -x_32 = x_48; -x_33 = x_42; +x_32 = x_42; +x_33 = x_48; x_34 = x_44; -x_35 = x_45; -x_36 = x_46; +x_35 = x_46; +x_36 = x_45; x_37 = x_49; goto block_41; } block_62: { lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_59 = l_Lean_mkAppB(x_55, x_58, x_51); -x_60 = l_Lean_LocalDecl_setType(x_56, x_59); +x_59 = l_Lean_mkAppB(x_51, x_58, x_53); +x_60 = l_Lean_LocalDecl_setType(x_57, x_59); x_61 = lean_ctor_get(x_60, 1); lean_inc(x_61); -x_42 = x_53; +x_42 = x_60; x_43 = x_52; x_44 = x_54; -x_45 = x_60; -x_46 = x_57; +x_45 = x_56; +x_46 = x_55; x_47 = x_61; goto block_50; } @@ -68301,13 +69165,13 @@ lean_ctor_set(x_91, 1, x_90); x_92 = l_Lean_Expr_const___override(x_89, x_91); x_93 = lean_ctor_get(x_88, 3); lean_inc_ref(x_93); -x_51 = x_77; +x_51 = x_92; x_52 = x_84; -x_53 = x_85; -x_54 = x_86; -x_55 = x_92; -x_56 = x_88; -x_57 = x_83; +x_53 = x_77; +x_54 = x_85; +x_55 = x_83; +x_56 = x_86; +x_57 = x_88; x_58 = x_93; goto block_62; } @@ -70345,13 +71209,13 @@ goto block_153; block_118: { 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; -x_45 = lean_st_ref_get(x_35, x_38); +x_45 = lean_st_ref_get(x_43, x_37); x_46 = lean_ctor_get(x_45, 0); lean_inc(x_46); x_47 = lean_ctor_get(x_45, 1); lean_inc(x_47); lean_dec_ref(x_45); -x_48 = lean_st_ref_take(x_35, x_47); +x_48 = lean_st_ref_take(x_43, x_47); x_49 = lean_ctor_get(x_48, 0); lean_inc(x_49); x_50 = lean_ctor_get(x_48, 1); @@ -70365,7 +71229,7 @@ x_52 = lean_ctor_get(x_49, 1); lean_dec(x_52); x_53 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___closed__5; lean_ctor_set(x_49, 1, x_53); -x_54 = lean_st_ref_set(x_35, x_49, x_50); +x_54 = lean_st_ref_set(x_43, x_49, x_50); x_55 = lean_ctor_get(x_54, 1); lean_inc(x_55); lean_dec_ref(x_54); @@ -70378,8 +71242,8 @@ x_59 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_ x_60 = 1; x_61 = 0; lean_inc_ref(x_36); -x_62 = l_Lean_LocalContext_mkForall(x_36, x_59, x_42, x_60, x_61); -lean_dec_ref(x_42); +x_62 = l_Lean_LocalContext_mkForall(x_36, x_59, x_40, x_60, x_61); +lean_dec_ref(x_40); lean_dec_ref(x_59); x_63 = lean_box(x_61); x_64 = lean_box(x_60); @@ -70392,7 +71256,7 @@ lean_closure_set(x_65, 4, x_64); lean_closure_set(x_65, 5, x_31); lean_closure_set(x_65, 6, x_62); x_66 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___closed__6; -x_67 = l_Lean_Meta_withLCtx___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor_spec__2___redArg(x_36, x_66, x_65, x_34, x_39, x_41, x_43, x_35, x_40, x_37, x_55); +x_67 = l_Lean_Meta_withLCtx___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor_spec__2___redArg(x_36, x_66, x_65, x_34, x_41, x_38, x_39, x_43, x_35, x_42, x_55); if (lean_obj_tag(x_67) == 0) { lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; uint8_t x_72; @@ -70481,7 +71345,7 @@ lean_ctor_set(x_89, 1, x_88); lean_ctor_set(x_89, 2, x_85); lean_ctor_set(x_89, 3, x_86); lean_ctor_set(x_89, 4, x_87); -x_90 = lean_st_ref_set(x_35, x_89, x_50); +x_90 = lean_st_ref_set(x_43, x_89, x_50); x_91 = lean_ctor_get(x_90, 1); lean_inc(x_91); lean_dec_ref(x_90); @@ -70494,8 +71358,8 @@ x_95 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_ x_96 = 1; x_97 = 0; lean_inc_ref(x_36); -x_98 = l_Lean_LocalContext_mkForall(x_36, x_95, x_42, x_96, x_97); -lean_dec_ref(x_42); +x_98 = l_Lean_LocalContext_mkForall(x_36, x_95, x_40, x_96, x_97); +lean_dec_ref(x_40); lean_dec_ref(x_95); x_99 = lean_box(x_97); x_100 = lean_box(x_96); @@ -70508,7 +71372,7 @@ lean_closure_set(x_101, 4, x_100); lean_closure_set(x_101, 5, x_31); lean_closure_set(x_101, 6, x_98); x_102 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___closed__6; -x_103 = l_Lean_Meta_withLCtx___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor_spec__2___redArg(x_36, x_102, x_101, x_34, x_39, x_41, x_43, x_35, x_40, x_37, x_91); +x_103 = l_Lean_Meta_withLCtx___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor_spec__2___redArg(x_36, x_102, x_101, x_34, x_41, x_38, x_39, x_43, x_35, x_42, x_91); if (lean_obj_tag(x_103) == 0) { lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; @@ -70627,15 +71491,15 @@ lean_inc(x_124); x_32 = x_124; x_33 = x_119; x_34 = x_137; -x_35 = x_124; +x_35 = x_125; x_36 = x_131; -x_37 = x_126; -x_38 = x_138; -x_39 = x_121; -x_40 = x_125; -x_41 = x_122; -x_42 = x_139; -x_43 = x_123; +x_37 = x_138; +x_38 = x_122; +x_39 = x_123; +x_40 = x_139; +x_41 = x_121; +x_42 = x_126; +x_43 = x_124; x_44 = x_143; goto block_118; } @@ -70651,15 +71515,15 @@ lean_inc(x_124); x_32 = x_124; x_33 = x_119; x_34 = x_137; -x_35 = x_124; +x_35 = x_125; x_36 = x_131; -x_37 = x_126; -x_38 = x_138; -x_39 = x_121; -x_40 = x_125; -x_41 = x_122; -x_42 = x_139; -x_43 = x_123; +x_37 = x_138; +x_38 = x_122; +x_39 = x_123; +x_40 = x_139; +x_41 = x_121; +x_42 = x_126; +x_43 = x_124; x_44 = x_143; goto block_118; } @@ -70675,15 +71539,15 @@ lean_inc(x_124); x_32 = x_124; x_33 = x_119; x_34 = x_137; -x_35 = x_124; +x_35 = x_125; x_36 = x_131; -x_37 = x_126; -x_38 = x_138; -x_39 = x_121; -x_40 = x_125; -x_41 = x_122; -x_42 = x_139; -x_43 = x_123; +x_37 = x_138; +x_38 = x_122; +x_39 = x_123; +x_40 = x_139; +x_41 = x_121; +x_42 = x_126; +x_43 = x_124; x_44 = x_148; goto block_118; } @@ -70981,13 +71845,13 @@ goto block_322; block_287: { lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; size_t x_262; size_t x_263; lean_object* x_264; uint8_t x_265; uint8_t x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_246 = lean_st_ref_get(x_236, x_239); +x_246 = lean_st_ref_get(x_244, x_238); x_247 = lean_ctor_get(x_246, 0); lean_inc(x_247); x_248 = lean_ctor_get(x_246, 1); lean_inc(x_248); lean_dec_ref(x_246); -x_249 = lean_st_ref_take(x_236, x_248); +x_249 = lean_st_ref_take(x_244, x_248); x_250 = lean_ctor_get(x_249, 0); lean_inc(x_250); x_251 = lean_ctor_get(x_249, 1); @@ -71023,7 +71887,7 @@ lean_ctor_set(x_258, 1, x_257); lean_ctor_set(x_258, 2, x_253); lean_ctor_set(x_258, 3, x_254); lean_ctor_set(x_258, 4, x_255); -x_259 = lean_st_ref_set(x_236, x_258, x_251); +x_259 = lean_st_ref_set(x_244, x_258, x_251); x_260 = lean_ctor_get(x_259, 1); lean_inc(x_260); lean_dec_ref(x_259); @@ -71036,8 +71900,8 @@ x_264 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab x_265 = 1; x_266 = 0; lean_inc_ref(x_237); -x_267 = l_Lean_LocalContext_mkForall(x_237, x_264, x_243, x_265, x_266); -lean_dec_ref(x_243); +x_267 = l_Lean_LocalContext_mkForall(x_237, x_264, x_241, x_265, x_266); +lean_dec_ref(x_241); lean_dec_ref(x_264); x_268 = lean_box(x_266); x_269 = lean_box(x_265); @@ -71050,7 +71914,7 @@ lean_closure_set(x_270, 4, x_269); lean_closure_set(x_270, 5, x_232); lean_closure_set(x_270, 6, x_267); x_271 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___closed__6; -x_272 = l_Lean_Meta_withLCtx___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor_spec__2___redArg(x_237, x_271, x_270, x_235, x_240, x_242, x_244, x_236, x_241, x_238, x_260); +x_272 = l_Lean_Meta_withLCtx___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor_spec__2___redArg(x_237, x_271, x_270, x_235, x_242, x_239, x_240, x_244, x_236, x_243, x_260); if (lean_obj_tag(x_272) == 0) { lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; @@ -71168,15 +72032,15 @@ lean_inc(x_293); x_233 = x_293; x_234 = x_288; x_235 = x_306; -x_236 = x_293; +x_236 = x_294; x_237 = x_300; -x_238 = x_295; -x_239 = x_307; -x_240 = x_290; -x_241 = x_294; -x_242 = x_291; -x_243 = x_308; -x_244 = x_292; +x_238 = x_307; +x_239 = x_291; +x_240 = x_292; +x_241 = x_308; +x_242 = x_290; +x_243 = x_295; +x_244 = x_293; x_245 = x_312; goto block_287; } @@ -71192,15 +72056,15 @@ lean_inc(x_293); x_233 = x_293; x_234 = x_288; x_235 = x_306; -x_236 = x_293; +x_236 = x_294; x_237 = x_300; -x_238 = x_295; -x_239 = x_307; -x_240 = x_290; -x_241 = x_294; -x_242 = x_291; -x_243 = x_308; -x_244 = x_292; +x_238 = x_307; +x_239 = x_291; +x_240 = x_292; +x_241 = x_308; +x_242 = x_290; +x_243 = x_295; +x_244 = x_293; x_245 = x_312; goto block_287; } @@ -71216,15 +72080,15 @@ lean_inc(x_293); x_233 = x_293; x_234 = x_288; x_235 = x_306; -x_236 = x_293; +x_236 = x_294; x_237 = x_300; -x_238 = x_295; -x_239 = x_307; -x_240 = x_290; -x_241 = x_294; -x_242 = x_291; -x_243 = x_308; -x_244 = x_292; +x_238 = x_307; +x_239 = x_291; +x_240 = x_292; +x_241 = x_308; +x_242 = x_290; +x_243 = x_295; +x_244 = x_293; x_245 = x_317; goto block_287; } @@ -71554,13 +72418,13 @@ goto block_473; block_438: { lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; size_t x_413; size_t x_414; lean_object* x_415; uint8_t x_416; uint8_t x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; -x_397 = lean_st_ref_get(x_387, x_390); +x_397 = lean_st_ref_get(x_395, x_389); x_398 = lean_ctor_get(x_397, 0); lean_inc(x_398); x_399 = lean_ctor_get(x_397, 1); lean_inc(x_399); lean_dec_ref(x_397); -x_400 = lean_st_ref_take(x_387, x_399); +x_400 = lean_st_ref_take(x_395, x_399); x_401 = lean_ctor_get(x_400, 0); lean_inc(x_401); x_402 = lean_ctor_get(x_400, 1); @@ -71596,7 +72460,7 @@ lean_ctor_set(x_409, 1, x_408); lean_ctor_set(x_409, 2, x_404); lean_ctor_set(x_409, 3, x_405); lean_ctor_set(x_409, 4, x_406); -x_410 = lean_st_ref_set(x_387, x_409, x_402); +x_410 = lean_st_ref_set(x_395, x_409, x_402); x_411 = lean_ctor_get(x_410, 1); lean_inc(x_411); lean_dec_ref(x_410); @@ -71609,8 +72473,8 @@ x_415 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab x_416 = 1; x_417 = 0; lean_inc_ref(x_388); -x_418 = l_Lean_LocalContext_mkForall(x_388, x_415, x_394, x_416, x_417); -lean_dec_ref(x_394); +x_418 = l_Lean_LocalContext_mkForall(x_388, x_415, x_392, x_416, x_417); +lean_dec_ref(x_392); lean_dec_ref(x_415); x_419 = lean_box(x_417); x_420 = lean_box(x_416); @@ -71623,7 +72487,7 @@ lean_closure_set(x_421, 4, x_420); lean_closure_set(x_421, 5, x_383); lean_closure_set(x_421, 6, x_418); x_422 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___closed__6; -x_423 = l_Lean_Meta_withLCtx___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor_spec__2___redArg(x_388, x_422, x_421, x_386, x_391, x_393, x_395, x_387, x_392, x_389, x_411); +x_423 = l_Lean_Meta_withLCtx___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor_spec__2___redArg(x_388, x_422, x_421, x_386, x_393, x_390, x_391, x_395, x_387, x_394, x_411); if (lean_obj_tag(x_423) == 0) { lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; @@ -71741,15 +72605,15 @@ lean_inc(x_444); x_384 = x_444; x_385 = x_439; x_386 = x_457; -x_387 = x_444; +x_387 = x_445; x_388 = x_451; -x_389 = x_446; -x_390 = x_458; -x_391 = x_441; -x_392 = x_445; -x_393 = x_442; -x_394 = x_459; -x_395 = x_443; +x_389 = x_458; +x_390 = x_442; +x_391 = x_443; +x_392 = x_459; +x_393 = x_441; +x_394 = x_446; +x_395 = x_444; x_396 = x_463; goto block_438; } @@ -71765,15 +72629,15 @@ lean_inc(x_444); x_384 = x_444; x_385 = x_439; x_386 = x_457; -x_387 = x_444; +x_387 = x_445; x_388 = x_451; -x_389 = x_446; -x_390 = x_458; -x_391 = x_441; -x_392 = x_445; -x_393 = x_442; -x_394 = x_459; -x_395 = x_443; +x_389 = x_458; +x_390 = x_442; +x_391 = x_443; +x_392 = x_459; +x_393 = x_441; +x_394 = x_446; +x_395 = x_444; x_396 = x_463; goto block_438; } @@ -71789,15 +72653,15 @@ lean_inc(x_444); x_384 = x_444; x_385 = x_439; x_386 = x_457; -x_387 = x_444; +x_387 = x_445; x_388 = x_451; -x_389 = x_446; -x_390 = x_458; -x_391 = x_441; -x_392 = x_445; -x_393 = x_442; -x_394 = x_459; -x_395 = x_443; +x_389 = x_458; +x_390 = x_442; +x_391 = x_443; +x_392 = x_459; +x_393 = x_441; +x_394 = x_446; +x_395 = x_444; x_396 = x_468; goto block_438; } @@ -72666,10 +73530,10 @@ if (x_56 == 0) { lean_dec(x_55); lean_dec_ref(x_54); -lean_dec_ref(x_52); -x_13 = x_53; -x_14 = x_51; -x_15 = x_50; +lean_dec_ref(x_53); +x_13 = x_52; +x_14 = x_50; +x_15 = x_51; goto block_34; } else @@ -72682,7 +73546,7 @@ lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); lean_inc_ref(x_4); -x_58 = l_Array_foldrMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtorExpr_spec__2(x_52, x_4, x_54, x_57, x_43, x_53, x_51, x_6, x_7, x_8, x_9, x_10, x_11, x_50); +x_58 = l_Array_foldrMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtorExpr_spec__2(x_53, x_4, x_54, x_57, x_43, x_52, x_50, x_6, x_7, x_8, x_9, x_10, x_11, x_51); lean_dec_ref(x_54); if (lean_obj_tag(x_58) == 0) { @@ -72751,10 +73615,10 @@ if (x_77 == 0) { lean_dec(x_64); lean_dec_ref(x_37); -x_50 = x_75; -x_51 = x_70; -x_52 = x_72; -x_53 = x_74; +x_50 = x_70; +x_51 = x_75; +x_52 = x_74; +x_53 = x_72; x_54 = x_76; goto block_63; } @@ -72766,10 +73630,10 @@ if (x_78 == 0) { lean_dec(x_64); lean_dec_ref(x_37); -x_50 = x_75; -x_51 = x_70; -x_52 = x_72; -x_53 = x_74; +x_50 = x_70; +x_51 = x_75; +x_52 = x_74; +x_53 = x_72; x_54 = x_76; goto block_63; } @@ -72780,10 +73644,10 @@ x_79 = lean_usize_of_nat(x_64); lean_dec(x_64); x_80 = l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtorExpr_spec__3(x_37, x_43, x_79, x_76); lean_dec_ref(x_37); -x_50 = x_75; -x_51 = x_70; -x_52 = x_72; -x_53 = x_74; +x_50 = x_70; +x_51 = x_75; +x_52 = x_74; +x_53 = x_72; x_54 = x_80; goto block_63; } @@ -74997,7 +75861,7 @@ else lean_object* x_27; lean_object* x_28; lean_object* x_29; x_27 = lean_ctor_get(x_2, 0); lean_inc_ref(x_11); -x_28 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17(x_25, x_27, x_23, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_28 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19(x_25, x_27, x_23, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_23); x_29 = lean_ctor_get(x_28, 1); lean_inc(x_29); @@ -75059,7 +75923,7 @@ else lean_object* x_27; lean_object* x_28; lean_object* x_29; x_27 = lean_ctor_get(x_2, 0); lean_inc_ref(x_11); -x_28 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17(x_25, x_27, x_23, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_28 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19(x_25, x_27, x_23, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_23); x_29 = lean_ctor_get(x_28, 1); lean_inc(x_29); @@ -75725,7 +76589,7 @@ lean_dec(x_21); lean_ctor_set(x_15, 1, x_13); lean_ctor_set(x_15, 0, x_1); x_22 = l_Lean_registerStructure(x_20, x_15); -x_23 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_23 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; lean_ctor_set(x_17, 5, x_23); lean_ctor_set(x_17, 0, x_22); x_24 = lean_st_ref_set(x_8, x_17, x_19); @@ -75744,7 +76608,7 @@ if (x_29 == 0) lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; x_30 = lean_ctor_get(x_27, 1); lean_dec(x_30); -x_31 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_31 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; lean_ctor_set(x_27, 1, x_31); x_32 = lean_st_ref_set(x_6, x_27, x_28); x_33 = !lean_is_exclusive(x_32); @@ -75782,7 +76646,7 @@ lean_inc(x_41); lean_inc(x_40); lean_inc(x_39); lean_dec(x_27); -x_43 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_43 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; x_44 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_44, 0, x_39); lean_ctor_set(x_44, 1, x_43); @@ -75835,7 +76699,7 @@ lean_dec(x_17); lean_ctor_set(x_15, 1, x_13); lean_ctor_set(x_15, 0, x_1); x_59 = l_Lean_registerStructure(x_51, x_15); -x_60 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_60 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; x_61 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_61, 0, x_59); lean_ctor_set(x_61, 1, x_52); @@ -75875,7 +76739,7 @@ if (lean_is_exclusive(x_65)) { lean_dec_ref(x_65); x_71 = lean_box(0); } -x_72 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_72 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_71)) { x_73 = lean_alloc_ctor(0, 5, 0); } else { @@ -75951,7 +76815,7 @@ x_90 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_90, 0, x_1); lean_ctor_set(x_90, 1, x_13); x_91 = l_Lean_registerStructure(x_81, x_90); -x_92 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_92 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; if (lean_is_scalar(x_89)) { x_93 = lean_alloc_ctor(0, 9, 0); } else { @@ -75995,7 +76859,7 @@ if (lean_is_exclusive(x_97)) { lean_dec_ref(x_97); x_103 = lean_box(0); } -x_104 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_104 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_103)) { x_105 = lean_alloc_ctor(0, 5, 0); } else { @@ -76738,7 +77602,7 @@ x_6 = lean_ctor_get(x_1, 0); lean_inc_ref(x_6); x_7 = 5; x_8 = 1; -x_9 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__1; +x_9 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__1; x_10 = lean_usize_land(x_2, x_9); x_11 = lean_usize_to_nat(x_10); x_12 = lean_array_get_size(x_6); @@ -76918,7 +77782,7 @@ x_49 = lean_ctor_get(x_46, 1); lean_inc_ref(x_49); lean_dec_ref(x_46); x_50 = lean_unsigned_to_nat(0u); -x_51 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__2; +x_51 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__2; x_52 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1_spec__2_spec__2_spec__2_spec__4___redArg(x_3, x_48, x_49, x_50, x_51); lean_dec_ref(x_49); lean_dec_ref(x_48); @@ -76970,7 +77834,7 @@ x_65 = lean_ctor_get(x_62, 1); lean_inc_ref(x_65); lean_dec_ref(x_62); x_66 = lean_unsigned_to_nat(0u); -x_67 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__2; +x_67 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__2; x_68 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at_____private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___Lean_computeStructureResolutionOrder___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__1_spec__2_spec__2_spec__2_spec__4___redArg(x_3, x_64, x_65, x_66, x_67); lean_dec_ref(x_65); lean_dec_ref(x_64); @@ -77054,7 +77918,7 @@ lean_closure_set(x_15, 1, x_2); x_16 = lean_box(0); x_17 = l_Lean_EnvExtension_modifyState___redArg(x_13, x_11, x_15, x_14, x_16); lean_dec(x_14); -x_18 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_18 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; lean_ctor_set(x_8, 5, x_18); lean_ctor_set(x_8, 0, x_17); x_19 = lean_st_ref_set(x_5, x_8, x_9); @@ -77074,7 +77938,7 @@ lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint x_25 = lean_ctor_get(x_21, 1); x_26 = lean_ctor_get(x_23, 1); lean_dec(x_26); -x_27 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_27 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; lean_ctor_set(x_23, 1, x_27); x_28 = lean_st_ref_set(x_4, x_23, x_25); x_29 = !lean_is_exclusive(x_28); @@ -77117,7 +77981,7 @@ lean_inc(x_38); lean_inc(x_37); lean_inc(x_36); lean_dec(x_23); -x_40 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_40 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; x_41 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_41, 0, x_36); lean_ctor_set(x_41, 1, x_40); @@ -77175,7 +78039,7 @@ if (lean_is_exclusive(x_47)) { lean_dec_ref(x_47); x_53 = lean_box(0); } -x_54 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_54 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_53)) { x_55 = lean_alloc_ctor(0, 5, 0); } else { @@ -77240,7 +78104,7 @@ lean_closure_set(x_72, 1, x_2); x_73 = lean_box(0); x_74 = l_Lean_EnvExtension_modifyState___redArg(x_70, x_62, x_72, x_71, x_73); lean_dec(x_71); -x_75 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_75 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; x_76 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_76, 0, x_74); lean_ctor_set(x_76, 1, x_63); @@ -77287,7 +78151,7 @@ if (lean_is_exclusive(x_80)) { lean_dec_ref(x_80); x_87 = lean_box(0); } -x_88 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_88 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_87)) { x_89 = lean_alloc_ctor(0, 5, 0); } else { @@ -77770,24 +78634,24 @@ return x_8; block_21: { uint8_t x_17; -x_17 = lean_nat_dec_lt(x_14, x_16); +x_17 = lean_nat_dec_lt(x_15, x_16); if (x_17 == 0) { lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); +lean_dec(x_15); +lean_dec_ref(x_14); x_9 = x_7; goto block_13; } else { size_t x_18; size_t x_19; uint8_t x_20; -x_18 = lean_usize_of_nat(x_14); -lean_dec(x_14); +x_18 = lean_usize_of_nat(x_15); +lean_dec(x_15); x_19 = lean_usize_of_nat(x_16); lean_dec(x_16); -x_20 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__10(x_1, x_15, x_18, x_19); -lean_dec_ref(x_15); +x_20 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__10(x_1, x_14, x_18, x_19); +lean_dec_ref(x_14); if (x_20 == 0) { x_9 = x_20; @@ -77828,16 +78692,16 @@ x_31 = lean_nat_dec_le(x_28, x_30); if (x_31 == 0) { lean_dec(x_28); -x_14 = x_27; -x_15 = x_26; +x_14 = x_26; +x_15 = x_27; x_16 = x_30; goto block_21; } else { lean_dec(x_30); -x_14 = x_27; -x_15 = x_26; +x_14 = x_26; +x_15 = x_27; x_16 = x_28; goto block_21; } @@ -78034,24 +78898,24 @@ return x_7; block_20: { uint8_t x_16; -x_16 = lean_nat_dec_lt(x_13, x_15); +x_16 = lean_nat_dec_lt(x_14, x_15); if (x_16 == 0) { lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); +lean_dec(x_14); +lean_dec_ref(x_13); x_8 = x_6; goto block_12; } else { size_t x_17; size_t x_18; uint8_t x_19; -x_17 = lean_usize_of_nat(x_13); -lean_dec(x_13); +x_17 = lean_usize_of_nat(x_14); +lean_dec(x_14); x_18 = lean_usize_of_nat(x_15); lean_dec(x_15); -x_19 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__10(x_1, x_14, x_17, x_18); -lean_dec_ref(x_14); +x_19 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__10(x_1, x_13, x_17, x_18); +lean_dec_ref(x_13); x_8 = x_19; goto block_12; } @@ -78084,16 +78948,16 @@ x_30 = lean_nat_dec_le(x_27, x_29); if (x_30 == 0) { lean_dec(x_27); -x_13 = x_26; -x_14 = x_25; +x_13 = x_25; +x_14 = x_26; x_15 = x_29; goto block_20; } else { lean_dec(x_29); -x_13 = x_26; -x_14 = x_25; +x_13 = x_25; +x_14 = x_26; x_15 = x_27; goto block_20; } @@ -78162,24 +79026,24 @@ return x_8; block_21: { uint8_t x_17; -x_17 = lean_nat_dec_lt(x_15, x_16); +x_17 = lean_nat_dec_lt(x_14, x_16); if (x_17 == 0) { lean_dec(x_16); -lean_dec(x_15); -lean_dec_ref(x_14); +lean_dec_ref(x_15); +lean_dec(x_14); x_9 = x_7; goto block_13; } else { size_t x_18; size_t x_19; uint8_t x_20; -x_18 = lean_usize_of_nat(x_15); -lean_dec(x_15); +x_18 = lean_usize_of_nat(x_14); +lean_dec(x_14); x_19 = lean_usize_of_nat(x_16); lean_dec(x_16); -x_20 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__10(x_1, x_14, x_18, x_19); -lean_dec_ref(x_14); +x_20 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__10(x_1, x_15, x_18, x_19); +lean_dec_ref(x_15); x_9 = x_20; goto block_13; } @@ -78212,16 +79076,16 @@ x_31 = lean_nat_dec_le(x_28, x_30); if (x_31 == 0) { lean_dec(x_28); -x_14 = x_26; -x_15 = x_27; +x_14 = x_27; +x_15 = x_26; x_16 = x_30; goto block_21; } else { lean_dec(x_30); -x_14 = x_26; -x_15 = x_27; +x_14 = x_27; +x_15 = x_26; x_16 = x_28; goto block_21; } @@ -78240,7 +79104,7 @@ return x_36; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__15_spec__15___redArg(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, uint8_t 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) { _start: { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_25; lean_object* x_26; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; uint8_t x_44; lean_object* x_45; lean_object* x_46; uint8_t x_55; lean_object* x_56; uint8_t x_59; uint8_t x_64; lean_object* x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_75; lean_object* x_76; uint8_t x_86; +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_25; lean_object* x_26; lean_object* x_35; uint8_t x_36; lean_object* x_37; lean_object* x_38; uint8_t x_44; lean_object* x_45; lean_object* x_46; uint8_t x_55; lean_object* x_56; uint8_t x_59; uint8_t x_64; lean_object* x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_75; lean_object* x_76; uint8_t x_86; lean_inc_ref(x_2); x_25 = lean_array_get(x_2, x_3, x_12); lean_inc(x_4); @@ -78327,7 +79191,7 @@ x_39 = lean_nat_dec_lt(x_35, x_38); if (x_39 == 0) { lean_dec(x_38); -lean_dec_ref(x_36); +lean_dec_ref(x_37); lean_dec(x_35); lean_dec(x_12); lean_dec(x_10); @@ -78346,8 +79210,8 @@ lean_dec(x_35); x_41 = lean_usize_of_nat(x_38); lean_dec(x_38); lean_inc(x_5); -x_42 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__11(x_26, x_8, x_5, x_37, x_36, x_40, x_41); -lean_dec_ref(x_36); +x_42 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__11(x_26, x_8, x_5, x_36, x_37, x_40, x_41); +lean_dec_ref(x_37); if (x_42 == 0) { lean_dec(x_12); @@ -78406,8 +79270,8 @@ if (x_53 == 0) { lean_dec(x_50); x_35 = x_49; -x_36 = x_48; -x_37 = x_44; +x_36 = x_44; +x_37 = x_48; x_38 = x_52; goto block_43; } @@ -78415,8 +79279,8 @@ else { lean_dec(x_52); x_35 = x_49; -x_36 = x_48; -x_37 = x_44; +x_36 = x_44; +x_37 = x_48; x_38 = x_50; goto block_43; } @@ -78580,7 +79444,7 @@ return x_29; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__15___redArg(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, uint8_t x_8, lean_object* x_9, lean_object* x_10, uint8_t x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22) { _start: { -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_33; lean_object* x_34; uint8_t x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_52; lean_object* x_53; lean_object* x_54; uint8_t x_63; lean_object* x_64; uint8_t x_67; uint8_t x_72; lean_object* x_74; lean_object* x_75; uint8_t x_76; lean_object* x_77; lean_object* x_83; lean_object* x_84; uint8_t x_94; +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_33; lean_object* x_34; lean_object* x_43; lean_object* x_44; uint8_t x_45; lean_object* x_46; uint8_t x_52; lean_object* x_53; lean_object* x_54; uint8_t x_63; lean_object* x_64; uint8_t x_67; uint8_t x_72; lean_object* x_74; uint8_t x_75; lean_object* x_76; lean_object* x_77; lean_object* x_83; lean_object* x_84; uint8_t x_94; lean_inc_ref(x_2); x_33 = lean_array_get(x_2, x_3, x_14); lean_inc(x_4); @@ -78666,8 +79530,8 @@ x_47 = lean_nat_dec_lt(x_44, x_46); if (x_47 == 0) { lean_dec(x_46); -lean_dec_ref(x_45); lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_14); lean_dec(x_10); lean_dec(x_9); @@ -78685,8 +79549,8 @@ lean_dec(x_44); x_49 = lean_usize_of_nat(x_46); lean_dec(x_46); lean_inc(x_5); -x_50 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__11(x_34, x_8, x_5, x_43, x_45, x_48, x_49); -lean_dec_ref(x_45); +x_50 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__11(x_34, x_8, x_5, x_45, x_43, x_48, x_49); +lean_dec_ref(x_43); if (x_50 == 0) { lean_dec(x_14); @@ -78744,18 +79608,18 @@ x_61 = lean_nat_dec_le(x_58, x_60); if (x_61 == 0) { lean_dec(x_58); -x_43 = x_52; +x_43 = x_56; x_44 = x_57; -x_45 = x_56; +x_45 = x_52; x_46 = x_60; goto block_51; } else { lean_dec(x_60); -x_43 = x_52; +x_43 = x_56; x_44 = x_57; -x_45 = x_56; +x_45 = x_52; x_46 = x_58; goto block_51; } @@ -78823,25 +79687,25 @@ goto block_71; block_82: { uint8_t x_78; -x_78 = lean_nat_dec_lt(x_74, x_77); +x_78 = lean_nat_dec_lt(x_76, x_77); if (x_78 == 0) { lean_dec(x_77); -lean_dec_ref(x_75); -lean_dec(x_74); -x_72 = x_76; +lean_dec(x_76); +lean_dec_ref(x_74); +x_72 = x_75; goto block_73; } else { size_t x_79; size_t x_80; uint8_t x_81; -x_79 = lean_usize_of_nat(x_74); -lean_dec(x_74); +x_79 = lean_usize_of_nat(x_76); +lean_dec(x_76); x_80 = lean_usize_of_nat(x_77); lean_dec(x_77); lean_inc(x_5); -x_81 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__13(x_34, x_8, x_5, x_75, x_79, x_80); -lean_dec_ref(x_75); +x_81 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__13(x_34, x_8, x_5, x_74, x_79, x_80); +lean_dec_ref(x_74); if (x_81 == 0) { x_72 = x_78; @@ -78889,18 +79753,18 @@ x_92 = lean_nat_dec_le(x_88, x_91); if (x_92 == 0) { lean_dec(x_88); -x_74 = x_87; -x_75 = x_86; -x_76 = x_89; +x_74 = x_86; +x_75 = x_89; +x_76 = x_87; x_77 = x_91; goto block_82; } else { lean_dec(x_91); -x_74 = x_87; -x_75 = x_86; -x_76 = x_89; +x_74 = x_86; +x_75 = x_89; +x_76 = x_87; x_77 = x_88; goto block_82; } @@ -81083,13 +81947,13 @@ goto block_51; block_63: { uint8_t x_62; -x_62 = lean_nat_dec_le(x_61, x_59); +x_62 = lean_nat_dec_le(x_61, x_58); if (x_62 == 0) { -lean_dec(x_59); +lean_dec(x_58); lean_inc(x_61); x_52 = x_61; -x_53 = x_58; +x_53 = x_59; x_54 = x_60; x_55 = x_61; goto block_57; @@ -81097,9 +81961,9 @@ goto block_57; else { x_52 = x_61; -x_53 = x_58; +x_53 = x_59; x_54 = x_60; -x_55 = x_59; +x_55 = x_58; goto block_57; } } @@ -81120,8 +81984,8 @@ x_72 = lean_nat_dec_le(x_1, x_71); if (x_72 == 0) { lean_inc(x_71); -x_58 = x_67; -x_59 = x_71; +x_58 = x_71; +x_59 = x_67; x_60 = x_68; x_61 = x_71; goto block_63; @@ -81129,8 +81993,8 @@ goto block_63; else { lean_inc(x_1); -x_58 = x_67; -x_59 = x_71; +x_58 = x_71; +x_59 = x_67; x_60 = x_68; x_61 = x_1; goto block_63; @@ -81320,13 +82184,13 @@ goto block_110; block_122: { uint8_t x_121; -x_121 = lean_nat_dec_le(x_120, x_118); +x_121 = lean_nat_dec_le(x_120, x_117); if (x_121 == 0) { -lean_dec(x_118); +lean_dec(x_117); lean_inc(x_120); x_111 = x_120; -x_112 = x_117; +x_112 = x_118; x_113 = x_119; x_114 = x_120; goto block_116; @@ -81334,9 +82198,9 @@ goto block_116; else { x_111 = x_120; -x_112 = x_117; +x_112 = x_118; x_113 = x_119; -x_114 = x_118; +x_114 = x_117; goto block_116; } } @@ -81357,8 +82221,8 @@ x_131 = lean_nat_dec_le(x_1, x_130); if (x_131 == 0) { lean_inc(x_130); -x_117 = x_126; -x_118 = x_130; +x_117 = x_130; +x_118 = x_126; x_119 = x_127; x_120 = x_130; goto block_122; @@ -81366,8 +82230,8 @@ goto block_122; else { lean_inc(x_1); -x_117 = x_126; -x_118 = x_130; +x_117 = x_130; +x_118 = x_126; x_119 = x_127; x_120 = x_1; goto block_122; @@ -81576,13 +82440,13 @@ goto block_172; block_184: { uint8_t x_183; -x_183 = lean_nat_dec_le(x_182, x_180); +x_183 = lean_nat_dec_le(x_182, x_179); if (x_183 == 0) { -lean_dec(x_180); +lean_dec(x_179); lean_inc(x_182); x_173 = x_182; -x_174 = x_179; +x_174 = x_180; x_175 = x_181; x_176 = x_182; goto block_178; @@ -81590,9 +82454,9 @@ goto block_178; else { x_173 = x_182; -x_174 = x_179; +x_174 = x_180; x_175 = x_181; -x_176 = x_180; +x_176 = x_179; goto block_178; } } @@ -81613,8 +82477,8 @@ x_193 = lean_nat_dec_le(x_1, x_192); if (x_193 == 0) { lean_inc(x_192); -x_179 = x_188; -x_180 = x_192; +x_179 = x_192; +x_180 = x_188; x_181 = x_189; x_182 = x_192; goto block_184; @@ -81622,8 +82486,8 @@ goto block_184; else { lean_inc(x_1); -x_179 = x_188; -x_180 = x_192; +x_179 = x_192; +x_180 = x_188; x_181 = x_189; x_182 = x_1; goto block_184; @@ -81859,8 +82723,8 @@ goto block_26; block_57: { lean_object* x_56; -lean_dec(x_53); -x_56 = l_Array_qsort_sort___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__31___redArg(x_52, x_54, x_55); +lean_dec(x_52); +x_56 = l_Array_qsort_sort___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__31___redArg(x_54, x_53, x_55); lean_dec(x_55); x_41 = x_56; goto block_51; @@ -81874,16 +82738,16 @@ if (x_62 == 0) lean_dec(x_59); lean_inc(x_61); x_52 = x_58; -x_53 = x_60; -x_54 = x_61; +x_53 = x_61; +x_54 = x_60; x_55 = x_61; goto block_57; } else { x_52 = x_58; -x_53 = x_60; -x_54 = x_61; +x_53 = x_61; +x_54 = x_60; x_55 = x_59; goto block_57; } @@ -81905,18 +82769,18 @@ x_72 = lean_nat_dec_le(x_1, x_71); if (x_72 == 0) { lean_inc(x_71); -x_58 = x_67; +x_58 = x_68; x_59 = x_71; -x_60 = x_68; +x_60 = x_67; x_61 = x_71; goto block_63; } else { lean_inc(x_1); -x_58 = x_67; +x_58 = x_68; x_59 = x_71; -x_60 = x_68; +x_60 = x_67; x_61 = x_1; goto block_63; } @@ -82096,8 +82960,8 @@ goto block_26; block_116: { lean_object* x_115; -lean_dec(x_112); -x_115 = l_Array_qsort_sort___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__31___redArg(x_111, x_113, x_114); +lean_dec(x_111); +x_115 = l_Array_qsort_sort___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__31___redArg(x_113, x_112, x_114); lean_dec(x_114); x_100 = x_115; goto block_110; @@ -82111,16 +82975,16 @@ if (x_121 == 0) lean_dec(x_118); lean_inc(x_120); x_111 = x_117; -x_112 = x_119; -x_113 = x_120; +x_112 = x_120; +x_113 = x_119; x_114 = x_120; goto block_116; } else { x_111 = x_117; -x_112 = x_119; -x_113 = x_120; +x_112 = x_120; +x_113 = x_119; x_114 = x_118; goto block_116; } @@ -82142,18 +83006,18 @@ x_131 = lean_nat_dec_le(x_1, x_130); if (x_131 == 0) { lean_inc(x_130); -x_117 = x_126; +x_117 = x_127; x_118 = x_130; -x_119 = x_127; +x_119 = x_126; x_120 = x_130; goto block_122; } else { lean_inc(x_1); -x_117 = x_126; +x_117 = x_127; x_118 = x_130; -x_119 = x_127; +x_119 = x_126; x_120 = x_1; goto block_122; } @@ -82352,8 +83216,8 @@ goto block_26; block_178: { lean_object* x_177; -lean_dec(x_174); -x_177 = l_Array_qsort_sort___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__31___redArg(x_173, x_175, x_176); +lean_dec(x_173); +x_177 = l_Array_qsort_sort___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__31___redArg(x_175, x_174, x_176); lean_dec(x_176); x_162 = x_177; goto block_172; @@ -82367,16 +83231,16 @@ if (x_183 == 0) lean_dec(x_180); lean_inc(x_182); x_173 = x_179; -x_174 = x_181; -x_175 = x_182; +x_174 = x_182; +x_175 = x_181; x_176 = x_182; goto block_178; } else { x_173 = x_179; -x_174 = x_181; -x_175 = x_182; +x_174 = x_182; +x_175 = x_181; x_176 = x_180; goto block_178; } @@ -82398,18 +83262,18 @@ x_193 = lean_nat_dec_le(x_1, x_192); if (x_193 == 0) { lean_inc(x_192); -x_179 = x_188; +x_179 = x_189; x_180 = x_192; -x_181 = x_189; +x_181 = x_188; x_182 = x_192; goto block_184; } else { lean_inc(x_1); -x_179 = x_188; +x_179 = x_189; x_180 = x_192; -x_181 = x_189; +x_181 = x_188; x_182 = x_1; goto block_184; } @@ -83711,7 +84575,7 @@ lean_ctor_set(x_56, 9, x_34); lean_ctor_set(x_56, 10, x_48); lean_ctor_set(x_56, 11, x_55); lean_ctor_set_uint8(x_56, sizeof(void*)*12, x_29); -x_57 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_replaceFieldInfo___redArg(x_56, x_54, x_50, x_52, x_53, x_51, x_49); +x_57 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_replaceFieldInfo___redArg(x_56, x_54, x_51, x_50, x_53, x_49, x_52); if (lean_obj_tag(x_57) == 0) { lean_object* x_58; lean_object* x_59; lean_object* x_60; @@ -83741,10 +84605,10 @@ x_69 = lean_nat_dec_lt(x_46, x_68); lean_dec(x_68); if (x_69 == 0) { -x_49 = x_67; -x_50 = x_63; -x_51 = x_66; -x_52 = x_64; +x_49 = x_66; +x_50 = x_64; +x_51 = x_63; +x_52 = x_67; x_53 = x_65; x_54 = x_62; x_55 = x_24; @@ -83759,10 +84623,10 @@ lean_inc(x_71); lean_dec_ref(x_70); x_72 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_72, 0, x_71); -x_49 = x_67; -x_50 = x_63; -x_51 = x_66; -x_52 = x_64; +x_49 = x_66; +x_50 = x_64; +x_51 = x_63; +x_52 = x_67; x_53 = x_65; x_54 = x_62; x_55 = x_72; @@ -83857,7 +84721,7 @@ lean_ctor_set(x_100, 9, x_34); lean_ctor_set(x_100, 10, x_92); lean_ctor_set(x_100, 11, x_99); lean_ctor_set_uint8(x_100, sizeof(void*)*12, x_29); -x_101 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_replaceFieldInfo___redArg(x_100, x_98, x_94, x_96, x_97, x_95, x_93); +x_101 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_replaceFieldInfo___redArg(x_100, x_98, x_95, x_94, x_97, x_93, x_96); if (lean_obj_tag(x_101) == 0) { lean_object* x_102; lean_object* x_103; lean_object* x_104; @@ -83887,10 +84751,10 @@ x_113 = lean_nat_dec_lt(x_90, x_112); lean_dec(x_112); if (x_113 == 0) { -x_93 = x_111; -x_94 = x_107; -x_95 = x_110; -x_96 = x_108; +x_93 = x_110; +x_94 = x_108; +x_95 = x_107; +x_96 = x_111; x_97 = x_109; x_98 = x_106; x_99 = x_24; @@ -83905,10 +84769,10 @@ lean_inc(x_115); lean_dec_ref(x_114); x_116 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_116, 0, x_115); -x_93 = x_111; -x_94 = x_107; -x_95 = x_110; -x_96 = x_108; +x_93 = x_110; +x_94 = x_108; +x_95 = x_107; +x_96 = x_111; x_97 = x_109; x_98 = x_106; x_99 = x_116; @@ -84020,7 +84884,7 @@ lean_ctor_set(x_147, 9, x_34); lean_ctor_set(x_147, 10, x_139); lean_ctor_set(x_147, 11, x_146); lean_ctor_set_uint8(x_147, sizeof(void*)*12, x_29); -x_148 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_replaceFieldInfo___redArg(x_147, x_145, x_141, x_143, x_144, x_142, x_140); +x_148 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_replaceFieldInfo___redArg(x_147, x_145, x_142, x_141, x_144, x_140, x_143); if (lean_obj_tag(x_148) == 0) { lean_object* x_149; lean_object* x_150; lean_object* x_151; @@ -84050,10 +84914,10 @@ x_160 = lean_nat_dec_lt(x_137, x_159); lean_dec(x_159); if (x_160 == 0) { -x_140 = x_158; -x_141 = x_154; -x_142 = x_157; -x_143 = x_155; +x_140 = x_157; +x_141 = x_155; +x_142 = x_154; +x_143 = x_158; x_144 = x_156; x_145 = x_153; x_146 = x_24; @@ -84068,10 +84932,10 @@ lean_inc(x_162); lean_dec_ref(x_161); x_163 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_163, 0, x_162); -x_140 = x_158; -x_141 = x_154; -x_142 = x_157; -x_143 = x_155; +x_140 = x_157; +x_141 = x_155; +x_142 = x_154; +x_143 = x_158; x_144 = x_156; x_145 = x_153; x_146 = x_163; @@ -84379,7 +85243,7 @@ lean_ctor_set(x_58, 9, x_36); lean_ctor_set(x_58, 10, x_50); lean_ctor_set(x_58, 11, x_57); lean_ctor_set_uint8(x_58, sizeof(void*)*12, x_31); -x_59 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_replaceFieldInfo___redArg(x_58, x_52, x_51, x_56, x_54, x_55, x_53); +x_59 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_replaceFieldInfo___redArg(x_58, x_53, x_56, x_55, x_54, x_51, x_52); if (lean_obj_tag(x_59) == 0) { lean_object* x_60; lean_object* x_61; lean_object* x_62; @@ -84409,12 +85273,12 @@ x_71 = lean_nat_dec_lt(x_48, x_70); lean_dec(x_70); if (x_71 == 0) { -x_51 = x_65; -x_52 = x_64; -x_53 = x_69; +x_51 = x_68; +x_52 = x_69; +x_53 = x_64; x_54 = x_67; -x_55 = x_68; -x_56 = x_66; +x_55 = x_66; +x_56 = x_65; x_57 = x_26; goto block_63; } @@ -84427,12 +85291,12 @@ lean_inc(x_73); lean_dec_ref(x_72); x_74 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_74, 0, x_73); -x_51 = x_65; -x_52 = x_64; -x_53 = x_69; +x_51 = x_68; +x_52 = x_69; +x_53 = x_64; x_54 = x_67; -x_55 = x_68; -x_56 = x_66; +x_55 = x_66; +x_56 = x_65; x_57 = x_74; goto block_63; } @@ -84525,7 +85389,7 @@ lean_ctor_set(x_102, 9, x_36); lean_ctor_set(x_102, 10, x_94); lean_ctor_set(x_102, 11, x_101); lean_ctor_set_uint8(x_102, sizeof(void*)*12, x_31); -x_103 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_replaceFieldInfo___redArg(x_102, x_96, x_95, x_100, x_98, x_99, x_97); +x_103 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_replaceFieldInfo___redArg(x_102, x_97, x_100, x_99, x_98, x_95, x_96); if (lean_obj_tag(x_103) == 0) { lean_object* x_104; lean_object* x_105; lean_object* x_106; @@ -84555,12 +85419,12 @@ x_115 = lean_nat_dec_lt(x_92, x_114); lean_dec(x_114); if (x_115 == 0) { -x_95 = x_109; -x_96 = x_108; -x_97 = x_113; +x_95 = x_112; +x_96 = x_113; +x_97 = x_108; x_98 = x_111; -x_99 = x_112; -x_100 = x_110; +x_99 = x_110; +x_100 = x_109; x_101 = x_26; goto block_107; } @@ -84573,12 +85437,12 @@ lean_inc(x_117); lean_dec_ref(x_116); x_118 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_118, 0, x_117); -x_95 = x_109; -x_96 = x_108; -x_97 = x_113; +x_95 = x_112; +x_96 = x_113; +x_97 = x_108; x_98 = x_111; -x_99 = x_112; -x_100 = x_110; +x_99 = x_110; +x_100 = x_109; x_101 = x_118; goto block_107; } @@ -84688,7 +85552,7 @@ lean_ctor_set(x_149, 9, x_36); lean_ctor_set(x_149, 10, x_141); lean_ctor_set(x_149, 11, x_148); lean_ctor_set_uint8(x_149, sizeof(void*)*12, x_31); -x_150 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_replaceFieldInfo___redArg(x_149, x_143, x_142, x_147, x_145, x_146, x_144); +x_150 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_replaceFieldInfo___redArg(x_149, x_144, x_147, x_146, x_145, x_142, x_143); if (lean_obj_tag(x_150) == 0) { lean_object* x_151; lean_object* x_152; lean_object* x_153; @@ -84718,12 +85582,12 @@ x_162 = lean_nat_dec_lt(x_139, x_161); lean_dec(x_161); if (x_162 == 0) { -x_142 = x_156; -x_143 = x_155; -x_144 = x_160; +x_142 = x_159; +x_143 = x_160; +x_144 = x_155; x_145 = x_158; -x_146 = x_159; -x_147 = x_157; +x_146 = x_157; +x_147 = x_156; x_148 = x_26; goto block_154; } @@ -84736,12 +85600,12 @@ lean_inc(x_164); lean_dec_ref(x_163); x_165 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_165, 0, x_164); -x_142 = x_156; -x_143 = x_155; -x_144 = x_160; +x_142 = x_159; +x_143 = x_160; +x_144 = x_155; x_145 = x_158; -x_146 = x_159; -x_147 = x_157; +x_146 = x_157; +x_147 = x_156; x_148 = x_165; goto block_154; } @@ -86173,9 +87037,9 @@ lean_dec_ref(x_6); x_39 = lean_ctor_get(x_28, 2); lean_inc(x_39); lean_dec(x_28); -x_16 = x_33; +x_16 = x_32; x_17 = x_36; -x_18 = x_32; +x_18 = x_33; x_19 = x_39; goto block_23; } @@ -86247,10 +87111,10 @@ block_23: { uint8_t x_20; lean_object* x_21; x_20 = 0; -x_21 = l_Lean_Expr_lam___override(x_19, x_18, x_17, x_20); +x_21 = l_Lean_Expr_lam___override(x_19, x_16, x_17, x_20); x_4 = x_15; x_6 = x_21; -x_12 = x_16; +x_12 = x_18; goto _start; } } @@ -87924,7 +88788,7 @@ x_13 = l_Lean_instantiateLCtxMVars___at_____private_Lean_Elab_Structure_0__Lean_ lean_dec_ref(x_12); if (lean_obj_tag(x_13) == 0) { -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; size_t x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_50; lean_object* x_59; uint8_t x_60; +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; size_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_50; lean_object* x_59; uint8_t x_60; x_14 = lean_ctor_get(x_13, 0); lean_inc(x_14); x_15 = lean_ctor_get(x_13, 1); @@ -87983,10 +88847,10 @@ lean_dec_ref(x_24); x_27 = lean_box(0); x_28 = lean_array_size(x_18); x_29 = lean_box_usize(x_28); -x_30 = lean_box_usize(x_20); +x_30 = lean_box_usize(x_21); x_31 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addDefaults___lam__0___boxed), 18, 10); lean_closure_set(x_31, 0, x_27); -lean_closure_set(x_31, 1, x_21); +lean_closure_set(x_31, 1, x_20); lean_closure_set(x_31, 2, x_23); lean_closure_set(x_31, 3, x_2); lean_closure_set(x_31, 4, x_3); @@ -88003,7 +88867,7 @@ else uint8_t x_33; lean_dec_ref(x_23); lean_dec_ref(x_22); -lean_dec_ref(x_21); +lean_dec_ref(x_20); lean_dec_ref(x_18); lean_dec(x_17); lean_dec(x_10); @@ -88042,38 +88906,38 @@ x_41 = lean_array_size(x_40); x_42 = 0; x_43 = l_Array_mapMUnsafe_map___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtorExpr_spec__1(x_41, x_42, x_40); x_44 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___closed__7; -x_45 = lean_nat_dec_lt(x_19, x_39); +x_45 = lean_nat_dec_lt(x_19, x_38); if (x_45 == 0) { -lean_dec(x_39); -x_20 = x_42; -x_21 = x_43; -x_22 = x_38; +lean_dec(x_38); +x_20 = x_43; +x_21 = x_42; +x_22 = x_39; x_23 = x_44; goto block_37; } else { uint8_t x_46; -x_46 = lean_nat_dec_le(x_39, x_39); +x_46 = lean_nat_dec_le(x_38, x_38); if (x_46 == 0) { -lean_dec(x_39); -x_20 = x_42; -x_21 = x_43; -x_22 = x_38; +lean_dec(x_38); +x_20 = x_43; +x_21 = x_42; +x_22 = x_39; x_23 = x_44; goto block_37; } else { size_t x_47; lean_object* x_48; -x_47 = lean_usize_of_nat(x_39); -lean_dec(x_39); +x_47 = lean_usize_of_nat(x_38); +lean_dec(x_38); x_48 = l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtorExpr_spec__3(x_18, x_42, x_47, x_44); -x_20 = x_42; -x_21 = x_43; -x_22 = x_38; +x_20 = x_43; +x_21 = x_42; +x_22 = x_39; x_23 = x_48; goto block_37; } @@ -88087,8 +88951,8 @@ x_52 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor___c x_53 = lean_nat_dec_lt(x_19, x_51); if (x_53 == 0) { -x_38 = x_50; -x_39 = x_51; +x_38 = x_51; +x_39 = x_50; x_40 = x_52; goto block_49; } @@ -88098,8 +88962,8 @@ uint8_t x_54; x_54 = lean_nat_dec_le(x_51, x_51); if (x_54 == 0) { -x_38 = x_50; -x_39 = x_51; +x_38 = x_51; +x_39 = x_50; x_40 = x_52; goto block_49; } @@ -88109,8 +88973,8 @@ size_t x_55; size_t x_56; lean_object* x_57; x_55 = 0; x_56 = lean_usize_of_nat(x_51); x_57 = l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkFlatCtorExpr_spec__4(x_18, x_55, x_56, x_52); -x_38 = x_50; -x_39 = x_51; +x_38 = x_51; +x_39 = x_50; x_40 = x_57; goto block_49; } @@ -88669,9 +89533,9 @@ lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean x_11 = lean_ctor_get(x_8, 0); x_12 = lean_ctor_get(x_8, 5); lean_dec(x_12); -x_13 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18___redArg___closed__0; +x_13 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20___redArg___closed__0; x_14 = l_Lean_MapDeclarationExtension_insert___redArg(x_13, x_11, x_1, x_2); -x_15 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_15 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; lean_ctor_set(x_8, 5, x_15); lean_ctor_set(x_8, 0, x_14); x_16 = lean_st_ref_set(x_4, x_8, x_9); @@ -88690,7 +89554,7 @@ if (x_21 == 0) lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; x_22 = lean_ctor_get(x_19, 1); lean_dec(x_22); -x_23 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_23 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; lean_ctor_set(x_19, 1, x_23); x_24 = lean_st_ref_set(x_3, x_19, x_20); x_25 = !lean_is_exclusive(x_24); @@ -88728,7 +89592,7 @@ lean_inc(x_33); lean_inc(x_32); lean_inc(x_31); lean_dec(x_19); -x_35 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_35 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; x_36 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); @@ -88777,9 +89641,9 @@ lean_inc(x_44); lean_inc(x_43); lean_inc(x_42); lean_dec(x_8); -x_50 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18___redArg___closed__0; +x_50 = l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20___redArg___closed__0; x_51 = l_Lean_MapDeclarationExtension_insert___redArg(x_50, x_42, x_1, x_2); -x_52 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_52 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; x_53 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_53, 0, x_51); lean_ctor_set(x_53, 1, x_43); @@ -88819,7 +89683,7 @@ if (lean_is_exclusive(x_57)) { lean_dec_ref(x_57); x_63 = lean_box(0); } -x_64 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_64 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_63)) { x_65 = lean_alloc_ctor(0, 5, 0); } else { @@ -88982,7 +89846,7 @@ lean_dec(x_11); x_12 = 0; x_13 = lean_box(0); x_14 = l___private_Lean_ReducibilityAttrs_0__Lean_setReducibilityStatusCore(x_10, x_1, x_2, x_12, x_13); -x_15 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_15 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; lean_ctor_set(x_7, 5, x_15); lean_ctor_set(x_7, 0, x_14); x_16 = lean_st_ref_set(x_4, x_7, x_8); @@ -89001,7 +89865,7 @@ if (x_21 == 0) lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; x_22 = lean_ctor_get(x_19, 1); lean_dec(x_22); -x_23 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_23 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; lean_ctor_set(x_19, 1, x_23); x_24 = lean_st_ref_set(x_3, x_19, x_20); x_25 = !lean_is_exclusive(x_24); @@ -89039,7 +89903,7 @@ lean_inc(x_33); lean_inc(x_32); lean_inc(x_31); lean_dec(x_19); -x_35 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_35 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; x_36 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); @@ -89091,7 +89955,7 @@ lean_dec(x_7); x_50 = 0; x_51 = lean_box(0); x_52 = l___private_Lean_ReducibilityAttrs_0__Lean_setReducibilityStatusCore(x_42, x_1, x_2, x_50, x_51); -x_53 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_53 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; x_54 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_54, 0, x_52); lean_ctor_set(x_54, 1, x_43); @@ -89131,7 +89995,7 @@ if (lean_is_exclusive(x_58)) { lean_dec_ref(x_58); x_64 = lean_box(0); } -x_65 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_65 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_64)) { x_66 = lean_alloc_ctor(0, 5, 0); } else { @@ -89194,7 +90058,7 @@ lean_inc_ref(x_6); x_13 = l_Lean_Meta_isProp(x_6, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_13) == 0) { -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; 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; lean_object* x_42; uint8_t x_43; uint8_t 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_64; lean_object* x_65; uint8_t x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint8_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; uint8_t x_91; lean_object* x_92; uint8_t x_93; lean_object* x_94; uint8_t x_95; uint8_t x_107; uint8_t x_108; uint8_t x_109; uint8_t x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_177; uint8_t x_178; uint8_t x_179; uint8_t x_205; +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; 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; lean_object* x_42; uint8_t x_43; lean_object* x_44; lean_object* x_45; uint8_t 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_64; lean_object* x_65; uint8_t x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; uint8_t x_73; lean_object* x_74; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; uint8_t x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; uint8_t x_95; lean_object* x_107; uint8_t x_108; uint8_t x_109; uint8_t x_110; uint8_t x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_177; uint8_t x_178; uint8_t x_179; uint8_t x_205; x_14 = lean_ctor_get(x_13, 0); lean_inc(x_14); x_15 = lean_ctor_get(x_13, 1); @@ -89254,8 +90118,8 @@ else { uint8_t x_212; x_212 = 3; -x_177 = x_24; -x_178 = x_211; +x_177 = x_211; +x_178 = x_24; x_179 = x_212; goto block_204; } @@ -89263,12 +90127,12 @@ goto block_204; block_41: { lean_object* x_34; uint8_t x_35; -lean_inc(x_27); -x_34 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCoercionToCopiedParent_spec__0(x_27, x_22, x_28, x_29, x_30, x_31, x_32, x_33); +lean_inc(x_25); +x_34 = l_Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCoercionToCopiedParent_spec__0(x_25, x_22, x_27, x_29, x_30, x_31, x_32, x_33); lean_dec(x_32); lean_dec(x_30); lean_dec_ref(x_29); -lean_dec(x_28); +lean_dec(x_27); lean_dec(x_22); x_35 = !lean_is_exclusive(x_34); if (x_35 == 0) @@ -89277,8 +90141,8 @@ lean_object* x_36; lean_object* x_37; x_36 = lean_ctor_get(x_34, 0); lean_dec(x_36); x_37 = lean_alloc_ctor(0, 2, 1); -lean_ctor_set(x_37, 0, x_25); -lean_ctor_set(x_37, 1, x_27); +lean_ctor_set(x_37, 0, x_28); +lean_ctor_set(x_37, 1, x_25); lean_ctor_set_uint8(x_37, sizeof(void*)*2, x_26); lean_ctor_set(x_34, 0, x_37); return x_34; @@ -89290,8 +90154,8 @@ x_38 = lean_ctor_get(x_34, 1); lean_inc(x_38); lean_dec(x_34); x_39 = lean_alloc_ctor(0, 2, 1); -lean_ctor_set(x_39, 0, x_25); -lean_ctor_set(x_39, 1, x_27); +lean_ctor_set(x_39, 0, x_28); +lean_ctor_set(x_39, 1, x_25); lean_ctor_set_uint8(x_39, sizeof(void*)*2, x_26); x_40 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_40, 0, x_39); @@ -89315,7 +90179,7 @@ lean_inc(x_53); x_54 = lean_ctor_get(x_52, 1); lean_inc(x_54); lean_dec_ref(x_52); -x_55 = l_Lean_BinderInfo_isInstImplicit(x_43); +x_55 = l_Lean_BinderInfo_isInstImplicit(x_46); if (x_55 == 0) { uint8_t x_56; @@ -89324,15 +90188,15 @@ lean_dec(x_53); if (x_56 == 0) { lean_object* x_57; lean_object* x_58; -lean_inc(x_45); -x_57 = l_Lean_setReducibleAttribute___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCoercionToCopiedParent_spec__3(x_45, x_47, x_48, x_49, x_50, x_54); +lean_inc(x_42); +x_57 = l_Lean_setReducibleAttribute___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCoercionToCopiedParent_spec__3(x_42, x_47, x_48, x_49, x_50, x_54); x_58 = lean_ctor_get(x_57, 1); lean_inc(x_58); lean_dec_ref(x_57); x_25 = x_42; -x_26 = x_44; -x_27 = x_45; -x_28 = x_46; +x_26 = x_43; +x_27 = x_44; +x_28 = x_45; x_29 = x_47; x_30 = x_48; x_31 = x_49; @@ -89343,9 +90207,9 @@ goto block_41; else { x_25 = x_42; -x_26 = x_44; -x_27 = x_45; -x_28 = x_46; +x_26 = x_43; +x_27 = x_44; +x_28 = x_45; x_29 = x_47; x_30 = x_48; x_31 = x_49; @@ -89358,9 +90222,9 @@ else { lean_dec(x_53); x_25 = x_42; -x_26 = x_44; -x_27 = x_45; -x_28 = x_46; +x_26 = x_43; +x_27 = x_44; +x_28 = x_45; x_29 = x_47; x_30 = x_48; x_31 = x_49; @@ -89376,8 +90240,8 @@ lean_dec(x_50); lean_dec_ref(x_49); lean_dec(x_48); lean_dec_ref(x_47); -lean_dec(x_46); lean_dec(x_45); +lean_dec(x_44); lean_dec(x_42); lean_dec(x_22); x_59 = !lean_is_exclusive(x_52); @@ -89403,9 +90267,9 @@ return x_62; block_81: { lean_object* x_75; -lean_inc(x_68); -lean_inc_ref(x_71); -x_75 = l_Lean_addDecl(x_74, x_71, x_68, x_73); +lean_inc(x_71); +lean_inc_ref(x_72); +x_75 = l_Lean_addDecl(x_74, x_72, x_71, x_65); if (lean_obj_tag(x_75) == 0) { lean_object* x_76; @@ -89414,25 +90278,25 @@ lean_inc(x_76); lean_dec_ref(x_75); x_42 = x_64; x_43 = x_66; -x_44 = x_70; -x_45 = x_69; -x_46 = x_72; -x_47 = x_67; -x_48 = x_65; -x_49 = x_71; -x_50 = x_68; +x_44 = x_69; +x_45 = x_70; +x_46 = x_73; +x_47 = x_68; +x_48 = x_67; +x_49 = x_72; +x_50 = x_71; x_51 = x_76; goto block_63; } else { uint8_t x_77; -lean_dec(x_72); -lean_dec_ref(x_71); +lean_dec_ref(x_72); +lean_dec(x_71); +lean_dec(x_70); lean_dec(x_69); -lean_dec(x_68); -lean_dec_ref(x_67); -lean_dec(x_65); +lean_dec_ref(x_68); +lean_dec(x_67); lean_dec(x_64); lean_dec(x_22); lean_dec_ref(x_6); @@ -89460,54 +90324,54 @@ block_106: { lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; x_96 = lean_box(0); -lean_inc(x_92); +lean_inc(x_87); if (lean_is_scalar(x_21)) { x_97 = lean_alloc_ctor(1, 2, 0); } else { x_97 = x_21; lean_ctor_set_tag(x_97, 1); } -lean_ctor_set(x_97, 0, x_92); +lean_ctor_set(x_97, 0, x_87); lean_ctor_set(x_97, 1, x_96); x_98 = lean_alloc_ctor(0, 4, 1); -lean_ctor_set(x_98, 0, x_89); -lean_ctor_set(x_98, 1, x_86); -lean_ctor_set(x_98, 2, x_82); +lean_ctor_set(x_98, 0, x_91); +lean_ctor_set(x_98, 1, x_84); +lean_ctor_set(x_98, 2, x_90); lean_ctor_set(x_98, 3, x_97); lean_ctor_set_uint8(x_98, sizeof(void*)*4, x_95); x_99 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_99, 0, x_98); -lean_inc(x_83); -lean_inc_ref(x_84); -x_100 = l_Lean_addAndCompile(x_99, x_84, x_83, x_85); +lean_inc(x_93); +lean_inc_ref(x_92); +x_100 = l_Lean_addAndCompile(x_99, x_92, x_93, x_88); if (lean_obj_tag(x_100) == 0) { lean_object* x_101; x_101 = lean_ctor_get(x_100, 1); lean_inc(x_101); lean_dec_ref(x_100); -x_42 = x_88; -x_43 = x_91; -x_44 = x_93; -x_45 = x_92; +x_42 = x_87; +x_43 = x_89; +x_44 = x_85; +x_45 = x_86; x_46 = x_94; -x_47 = x_90; -x_48 = x_87; -x_49 = x_84; -x_50 = x_83; +x_47 = x_83; +x_48 = x_82; +x_49 = x_92; +x_50 = x_93; x_51 = x_101; goto block_63; } else { uint8_t x_102; -lean_dec(x_94); -lean_dec(x_92); -lean_dec_ref(x_90); -lean_dec(x_88); +lean_dec(x_93); +lean_dec_ref(x_92); lean_dec(x_87); -lean_dec_ref(x_84); -lean_dec(x_83); +lean_dec(x_86); +lean_dec(x_85); +lean_dec_ref(x_83); +lean_dec(x_82); lean_dec(x_22); lean_dec_ref(x_6); x_102 = !lean_is_exclusive(x_100); @@ -89533,8 +90397,8 @@ return x_105; block_176: { lean_object* x_118; -x_118 = l_Lean_Meta_mkLambdaFVars(x_111, x_7, x_110, x_109, x_110, x_109, x_108, x_113, x_114, x_115, x_116, x_117); -lean_dec_ref(x_111); +x_118 = l_Lean_Meta_mkLambdaFVars(x_107, x_7, x_109, x_111, x_109, x_111, x_108, x_113, x_114, x_115, x_116, x_117); +lean_dec_ref(x_107); if (lean_obj_tag(x_118) == 0) { lean_object* x_119; lean_object* x_120; lean_object* x_121; @@ -89543,7 +90407,7 @@ lean_inc(x_119); x_120 = lean_ctor_get(x_118, 1); lean_inc(x_120); lean_dec_ref(x_118); -x_121 = l_Lean_Meta_mkLambdaFVars(x_2, x_119, x_110, x_109, x_110, x_109, x_108, x_113, x_114, x_115, x_116, x_120); +x_121 = l_Lean_Meta_mkLambdaFVars(x_2, x_119, x_109, x_111, x_109, x_111, x_108, x_113, x_114, x_115, x_116, x_120); if (lean_obj_tag(x_121) == 0) { lean_object* x_122; lean_object* x_123; lean_object* x_124; uint8_t x_125; @@ -89567,7 +90431,7 @@ x_130 = lean_ctor_get(x_5, 4); lean_inc(x_130); lean_dec_ref(x_5); x_131 = lean_array_get_size(x_2); -x_132 = l_Lean_Expr_inferImplicit(x_112, x_131, x_109); +x_132 = l_Lean_Expr_inferImplicit(x_112, x_131, x_111); lean_dec(x_131); lean_inc(x_130); if (lean_is_scalar(x_18)) { @@ -89591,19 +90455,19 @@ if (x_135 == 0) { uint8_t x_137; x_137 = 1; -x_82 = x_136; -x_83 = x_116; -x_84 = x_115; -x_85 = x_127; -x_86 = x_126; -x_87 = x_114; -x_88 = x_129; -x_89 = x_133; -x_90 = x_113; -x_91 = x_107; -x_92 = x_130; -x_93 = x_110; -x_94 = x_128; +x_82 = x_114; +x_83 = x_113; +x_84 = x_126; +x_85 = x_128; +x_86 = x_129; +x_87 = x_130; +x_88 = x_127; +x_89 = x_109; +x_90 = x_136; +x_91 = x_133; +x_92 = x_115; +x_93 = x_116; +x_94 = x_110; x_95 = x_137; goto block_106; } @@ -89611,19 +90475,19 @@ else { uint8_t x_138; x_138 = 0; -x_82 = x_136; -x_83 = x_116; -x_84 = x_115; -x_85 = x_127; -x_86 = x_126; -x_87 = x_114; -x_88 = x_129; -x_89 = x_133; -x_90 = x_113; -x_91 = x_107; -x_92 = x_130; -x_93 = x_110; -x_94 = x_128; +x_82 = x_114; +x_83 = x_113; +x_84 = x_126; +x_85 = x_128; +x_86 = x_129; +x_87 = x_130; +x_88 = x_127; +x_89 = x_109; +x_90 = x_136; +x_91 = x_133; +x_92 = x_115; +x_93 = x_116; +x_94 = x_110; x_95 = x_138; goto block_106; } @@ -89648,16 +90512,16 @@ lean_ctor_set(x_141, 1, x_126); lean_ctor_set(x_141, 2, x_124); x_142 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_142, 0, x_141); -x_64 = x_129; -x_65 = x_114; -x_66 = x_107; -x_67 = x_113; -x_68 = x_116; -x_69 = x_130; -x_70 = x_110; -x_71 = x_115; -x_72 = x_128; -x_73 = x_127; +x_64 = x_130; +x_65 = x_127; +x_66 = x_109; +x_67 = x_114; +x_68 = x_113; +x_69 = x_128; +x_70 = x_129; +x_71 = x_116; +x_72 = x_115; +x_73 = x_110; x_74 = x_142; goto block_81; } @@ -89673,19 +90537,19 @@ x_144 = lean_alloc_ctor(0, 3, 1); lean_ctor_set(x_144, 0, x_133); lean_ctor_set(x_144, 1, x_126); lean_ctor_set(x_144, 2, x_124); -lean_ctor_set_uint8(x_144, sizeof(void*)*3, x_109); +lean_ctor_set_uint8(x_144, sizeof(void*)*3, x_111); x_145 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_145, 0, x_144); -x_64 = x_129; -x_65 = x_114; -x_66 = x_107; -x_67 = x_113; -x_68 = x_116; -x_69 = x_130; -x_70 = x_110; -x_71 = x_115; -x_72 = x_128; -x_73 = x_127; +x_64 = x_130; +x_65 = x_127; +x_66 = x_109; +x_67 = x_114; +x_68 = x_113; +x_69 = x_128; +x_70 = x_129; +x_71 = x_116; +x_72 = x_115; +x_73 = x_110; x_74 = x_145; goto block_81; } @@ -89707,7 +90571,7 @@ x_150 = lean_ctor_get(x_5, 4); lean_inc(x_150); lean_dec_ref(x_5); x_151 = lean_array_get_size(x_2); -x_152 = l_Lean_Expr_inferImplicit(x_112, x_151, x_109); +x_152 = l_Lean_Expr_inferImplicit(x_112, x_151, x_111); lean_dec(x_151); lean_inc(x_150); if (lean_is_scalar(x_18)) { @@ -89730,19 +90594,19 @@ if (x_155 == 0) { uint8_t x_157; x_157 = 1; -x_82 = x_156; -x_83 = x_116; -x_84 = x_115; -x_85 = x_147; -x_86 = x_146; -x_87 = x_114; -x_88 = x_149; -x_89 = x_153; -x_90 = x_113; -x_91 = x_107; -x_92 = x_150; -x_93 = x_110; -x_94 = x_148; +x_82 = x_114; +x_83 = x_113; +x_84 = x_146; +x_85 = x_148; +x_86 = x_149; +x_87 = x_150; +x_88 = x_147; +x_89 = x_109; +x_90 = x_156; +x_91 = x_153; +x_92 = x_115; +x_93 = x_116; +x_94 = x_110; x_95 = x_157; goto block_106; } @@ -89750,19 +90614,19 @@ else { uint8_t x_158; x_158 = 0; -x_82 = x_156; -x_83 = x_116; -x_84 = x_115; -x_85 = x_147; -x_86 = x_146; -x_87 = x_114; -x_88 = x_149; -x_89 = x_153; -x_90 = x_113; -x_91 = x_107; -x_92 = x_150; -x_93 = x_110; -x_94 = x_148; +x_82 = x_114; +x_83 = x_113; +x_84 = x_146; +x_85 = x_148; +x_86 = x_149; +x_87 = x_150; +x_88 = x_147; +x_89 = x_109; +x_90 = x_156; +x_91 = x_153; +x_92 = x_115; +x_93 = x_116; +x_94 = x_110; x_95 = x_158; goto block_106; } @@ -89787,16 +90651,16 @@ lean_ctor_set(x_162, 1, x_146); lean_ctor_set(x_162, 2, x_161); x_163 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_163, 0, x_162); -x_64 = x_149; -x_65 = x_114; -x_66 = x_107; -x_67 = x_113; -x_68 = x_116; -x_69 = x_150; -x_70 = x_110; -x_71 = x_115; -x_72 = x_148; -x_73 = x_147; +x_64 = x_150; +x_65 = x_147; +x_66 = x_109; +x_67 = x_114; +x_68 = x_113; +x_69 = x_148; +x_70 = x_149; +x_71 = x_116; +x_72 = x_115; +x_73 = x_110; x_74 = x_163; goto block_81; } @@ -89812,19 +90676,19 @@ x_166 = lean_alloc_ctor(0, 3, 1); lean_ctor_set(x_166, 0, x_153); lean_ctor_set(x_166, 1, x_146); lean_ctor_set(x_166, 2, x_165); -lean_ctor_set_uint8(x_166, sizeof(void*)*3, x_109); +lean_ctor_set_uint8(x_166, sizeof(void*)*3, x_111); x_167 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_167, 0, x_166); -x_64 = x_149; -x_65 = x_114; -x_66 = x_107; -x_67 = x_113; -x_68 = x_116; -x_69 = x_150; -x_70 = x_110; -x_71 = x_115; -x_72 = x_148; -x_73 = x_147; +x_64 = x_150; +x_65 = x_147; +x_66 = x_109; +x_67 = x_114; +x_68 = x_113; +x_69 = x_148; +x_70 = x_149; +x_71 = x_116; +x_72 = x_115; +x_73 = x_110; x_74 = x_167; goto block_81; } @@ -89911,7 +90775,7 @@ x_181 = lean_array_push(x_180, x_4); x_182 = 0; x_183 = 1; lean_inc_ref(x_6); -x_184 = l_Lean_Meta_mkForallFVars(x_181, x_6, x_182, x_177, x_177, x_183, x_8, x_9, x_10, x_11, x_20); +x_184 = l_Lean_Meta_mkForallFVars(x_181, x_6, x_182, x_178, x_178, x_183, x_8, x_9, x_10, x_11, x_20); if (lean_obj_tag(x_184) == 0) { lean_object* x_185; lean_object* x_186; lean_object* x_187; @@ -89920,7 +90784,7 @@ lean_inc(x_185); x_186 = lean_ctor_get(x_184, 1); lean_inc(x_186); lean_dec_ref(x_184); -x_187 = l_Lean_Meta_mkForallFVars(x_2, x_185, x_182, x_177, x_177, x_183, x_8, x_9, x_10, x_11, x_186); +x_187 = l_Lean_Meta_mkForallFVars(x_2, x_185, x_182, x_178, x_178, x_183, x_8, x_9, x_10, x_11, x_186); if (lean_obj_tag(x_187) == 0) { lean_object* x_188; lean_object* x_189; lean_object* x_190; @@ -89930,7 +90794,7 @@ x_189 = lean_ctor_get(x_187, 1); lean_inc(x_189); lean_dec_ref(x_187); x_190 = l_Lean_instantiateMVars___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtorLCtx_spec__6___redArg(x_188, x_9, x_189); -if (x_178 == 0) +if (x_177 == 0) { lean_object* x_191; lean_object* x_192; x_191 = lean_ctor_get(x_190, 0); @@ -89938,11 +90802,11 @@ lean_inc(x_191); x_192 = lean_ctor_get(x_190, 1); lean_inc(x_192); lean_dec_ref(x_190); -x_107 = x_179; +x_107 = x_181; x_108 = x_183; -x_109 = x_177; -x_110 = x_182; -x_111 = x_181; +x_109 = x_182; +x_110 = x_179; +x_111 = x_178; x_112 = x_191; x_113 = x_8; x_114 = x_9; @@ -89960,11 +90824,11 @@ x_194 = lean_ctor_get(x_190, 1); lean_inc(x_194); lean_dec_ref(x_190); x_195 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_setSourceInstImplicit(x_193); -x_107 = x_179; +x_107 = x_181; x_108 = x_183; -x_109 = x_177; -x_110 = x_182; -x_111 = x_181; +x_109 = x_182; +x_110 = x_179; +x_111 = x_178; x_112 = x_195; x_113 = x_8; x_114 = x_9; @@ -90053,8 +90917,8 @@ block_208: uint8_t x_206; uint8_t x_207; x_206 = 1; x_207 = 0; -x_177 = x_206; -x_178 = x_205; +x_177 = x_205; +x_178 = x_206; x_179 = x_207; goto block_204; } @@ -92619,7 +93483,7 @@ return x_27; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__0_spec__1_spec__1_spec__1___redArg(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, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_14; lean_object* x_15; lean_object* x_22; lean_object* x_23; lean_object* x_31; uint8_t x_32; lean_object* x_33; lean_object* x_34; uint8_t x_40; lean_object* x_41; lean_object* x_42; uint8_t x_51; lean_object* x_52; uint8_t x_55; uint8_t x_60; lean_object* x_62; lean_object* x_63; uint8_t x_64; lean_object* x_65; lean_object* x_71; lean_object* x_72; uint8_t x_82; +lean_object* x_14; lean_object* x_15; lean_object* x_22; lean_object* x_23; uint8_t x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_40; lean_object* x_41; lean_object* x_42; uint8_t x_51; lean_object* x_52; uint8_t x_55; uint8_t x_60; lean_object* x_62; uint8_t x_63; lean_object* x_64; lean_object* x_65; lean_object* x_71; lean_object* x_72; uint8_t x_82; lean_inc_ref(x_2); x_22 = lean_array_get(x_2, x_3, x_12); lean_inc(x_4); @@ -92700,7 +93564,7 @@ if (x_35 == 0) { lean_dec(x_34); lean_dec(x_33); -lean_dec_ref(x_31); +lean_dec_ref(x_32); lean_dec(x_12); lean_dec(x_10); lean_dec(x_9); @@ -92718,8 +93582,8 @@ lean_dec(x_33); x_37 = lean_usize_of_nat(x_34); lean_dec(x_34); lean_inc(x_5); -x_38 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__11(x_23, x_8, x_5, x_32, x_31, x_36, x_37); -lean_dec_ref(x_31); +x_38 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__11(x_23, x_8, x_5, x_31, x_32, x_36, x_37); +lean_dec_ref(x_32); if (x_38 == 0) { lean_dec(x_12); @@ -92776,8 +93640,8 @@ x_49 = lean_nat_dec_le(x_46, x_48); if (x_49 == 0) { lean_dec(x_46); -x_31 = x_44; -x_32 = x_40; +x_31 = x_40; +x_32 = x_44; x_33 = x_45; x_34 = x_48; goto block_39; @@ -92785,8 +93649,8 @@ goto block_39; else { lean_dec(x_48); -x_31 = x_44; -x_32 = x_40; +x_31 = x_40; +x_32 = x_44; x_33 = x_45; x_34 = x_46; goto block_39; @@ -92854,25 +93718,25 @@ goto block_59; block_70: { uint8_t x_66; -x_66 = lean_nat_dec_lt(x_62, x_65); +x_66 = lean_nat_dec_lt(x_64, x_65); if (x_66 == 0) { lean_dec(x_65); -lean_dec_ref(x_63); -lean_dec(x_62); -x_60 = x_64; +lean_dec(x_64); +lean_dec_ref(x_62); +x_60 = x_63; goto block_61; } else { size_t x_67; size_t x_68; uint8_t x_69; -x_67 = lean_usize_of_nat(x_62); -lean_dec(x_62); +x_67 = lean_usize_of_nat(x_64); +lean_dec(x_64); x_68 = lean_usize_of_nat(x_65); lean_dec(x_65); lean_inc(x_5); -x_69 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__13(x_23, x_8, x_5, x_63, x_67, x_68); -lean_dec_ref(x_63); +x_69 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__13(x_23, x_8, x_5, x_62, x_67, x_68); +lean_dec_ref(x_62); if (x_69 == 0) { x_60 = x_66; @@ -92919,18 +93783,18 @@ x_80 = lean_nat_dec_le(x_76, x_79); if (x_80 == 0) { lean_dec(x_76); -x_62 = x_75; -x_63 = x_74; -x_64 = x_77; +x_62 = x_74; +x_63 = x_77; +x_64 = x_75; x_65 = x_79; goto block_70; } else { lean_dec(x_79); -x_62 = x_75; -x_63 = x_74; -x_64 = x_77; +x_62 = x_74; +x_63 = x_77; +x_64 = x_75; x_65 = x_76; goto block_70; } @@ -92949,7 +93813,7 @@ return x_28; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder_spec__0_spec__0_spec__1_spec__1___redArg(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, uint8_t x_8, lean_object* x_9, lean_object* x_10, uint8_t x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { _start: { -lean_object* x_22; lean_object* x_23; lean_object* x_30; lean_object* x_31; lean_object* x_39; uint8_t x_40; lean_object* x_41; lean_object* x_42; uint8_t x_48; lean_object* x_49; lean_object* x_50; uint8_t x_59; lean_object* x_60; uint8_t x_63; uint8_t x_68; lean_object* x_70; uint8_t x_71; lean_object* x_72; lean_object* x_73; lean_object* x_79; lean_object* x_80; uint8_t x_90; +lean_object* x_22; lean_object* x_23; lean_object* x_30; lean_object* x_31; uint8_t x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_48; lean_object* x_49; lean_object* x_50; uint8_t x_59; lean_object* x_60; uint8_t x_63; uint8_t x_68; lean_object* x_70; lean_object* x_71; uint8_t x_72; lean_object* x_73; lean_object* x_79; lean_object* x_80; uint8_t x_90; lean_inc_ref(x_2); x_30 = lean_array_get(x_2, x_3, x_14); lean_inc(x_4); @@ -93025,12 +93889,12 @@ return x_37; block_47: { uint8_t x_43; -x_43 = lean_nat_dec_lt(x_41, x_42); +x_43 = lean_nat_dec_lt(x_40, x_42); if (x_43 == 0) { lean_dec(x_42); -lean_dec(x_41); -lean_dec_ref(x_39); +lean_dec_ref(x_41); +lean_dec(x_40); lean_dec(x_14); lean_dec(x_10); lean_dec(x_9); @@ -93043,13 +93907,13 @@ goto block_38; else { size_t x_44; size_t x_45; uint8_t x_46; -x_44 = lean_usize_of_nat(x_41); -lean_dec(x_41); +x_44 = lean_usize_of_nat(x_40); +lean_dec(x_40); x_45 = lean_usize_of_nat(x_42); lean_dec(x_42); lean_inc(x_5); -x_46 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__11(x_31, x_8, x_5, x_40, x_39, x_44, x_45); -lean_dec_ref(x_39); +x_46 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__11(x_31, x_8, x_5, x_39, x_41, x_44, x_45); +lean_dec_ref(x_41); if (x_46 == 0) { lean_dec(x_14); @@ -93106,18 +93970,18 @@ x_57 = lean_nat_dec_le(x_54, x_56); if (x_57 == 0) { lean_dec(x_54); -x_39 = x_52; -x_40 = x_48; -x_41 = x_53; +x_39 = x_48; +x_40 = x_53; +x_41 = x_52; x_42 = x_56; goto block_47; } else { lean_dec(x_56); -x_39 = x_52; -x_40 = x_48; -x_41 = x_53; +x_39 = x_48; +x_40 = x_53; +x_41 = x_52; x_42 = x_54; goto block_47; } @@ -93184,20 +94048,20 @@ goto block_67; block_78: { uint8_t x_74; -x_74 = lean_nat_dec_lt(x_72, x_73); +x_74 = lean_nat_dec_lt(x_71, x_73); if (x_74 == 0) { lean_dec(x_73); -lean_dec(x_72); +lean_dec(x_71); lean_dec_ref(x_70); -x_68 = x_71; +x_68 = x_72; goto block_69; } else { size_t x_75; size_t x_76; uint8_t x_77; -x_75 = lean_usize_of_nat(x_72); -lean_dec(x_72); +x_75 = lean_usize_of_nat(x_71); +lean_dec(x_71); x_76 = lean_usize_of_nat(x_73); lean_dec(x_73); lean_inc(x_5); @@ -93250,8 +94114,8 @@ if (x_88 == 0) { lean_dec(x_84); x_70 = x_82; -x_71 = x_85; -x_72 = x_83; +x_71 = x_83; +x_72 = x_85; x_73 = x_87; goto block_78; } @@ -93259,8 +94123,8 @@ else { lean_dec(x_87); x_70 = x_82; -x_71 = x_85; -x_72 = x_83; +x_71 = x_83; +x_72 = x_85; x_73 = x_84; goto block_78; } @@ -94311,21 +95175,21 @@ goto block_40; block_50: { uint8_t x_49; -x_49 = lean_nat_dec_le(x_48, x_46); +x_49 = lean_nat_dec_le(x_48, x_47); if (x_49 == 0) { -lean_dec(x_46); +lean_dec(x_47); lean_inc(x_48); x_41 = x_48; -x_42 = x_47; +x_42 = x_46; x_43 = x_48; goto block_45; } else { x_41 = x_48; -x_42 = x_47; -x_43 = x_46; +x_42 = x_46; +x_43 = x_47; goto block_45; } } @@ -94347,16 +95211,16 @@ x_59 = lean_nat_dec_le(x_1, x_58); if (x_59 == 0) { lean_inc(x_58); -x_46 = x_58; -x_47 = x_54; +x_46 = x_54; +x_47 = x_58; x_48 = x_58; goto block_50; } else { lean_inc(x_1); -x_46 = x_58; -x_47 = x_54; +x_46 = x_54; +x_47 = x_58; x_48 = x_1; goto block_50; } @@ -94540,21 +95404,21 @@ goto block_96; block_106: { uint8_t x_105; -x_105 = lean_nat_dec_le(x_104, x_102); +x_105 = lean_nat_dec_le(x_104, x_103); if (x_105 == 0) { -lean_dec(x_102); +lean_dec(x_103); lean_inc(x_104); x_97 = x_104; -x_98 = x_103; +x_98 = x_102; x_99 = x_104; goto block_101; } else { x_97 = x_104; -x_98 = x_103; -x_99 = x_102; +x_98 = x_102; +x_99 = x_103; goto block_101; } } @@ -94576,16 +95440,16 @@ x_115 = lean_nat_dec_le(x_1, x_114); if (x_115 == 0) { lean_inc(x_114); -x_102 = x_114; -x_103 = x_110; +x_102 = x_110; +x_103 = x_114; x_104 = x_114; goto block_106; } else { lean_inc(x_1); -x_102 = x_114; -x_103 = x_110; +x_102 = x_110; +x_103 = x_114; x_104 = x_1; goto block_106; } @@ -94787,21 +95651,21 @@ goto block_155; block_165: { uint8_t x_164; -x_164 = lean_nat_dec_le(x_163, x_161); +x_164 = lean_nat_dec_le(x_163, x_162); if (x_164 == 0) { -lean_dec(x_161); +lean_dec(x_162); lean_inc(x_163); x_156 = x_163; -x_157 = x_162; +x_157 = x_161; x_158 = x_163; goto block_160; } else { x_156 = x_163; -x_157 = x_162; -x_158 = x_161; +x_157 = x_161; +x_158 = x_162; goto block_160; } } @@ -94823,16 +95687,16 @@ x_174 = lean_nat_dec_le(x_1, x_173); if (x_174 == 0) { lean_inc(x_173); -x_161 = x_173; -x_162 = x_169; +x_161 = x_169; +x_162 = x_173; x_163 = x_173; goto block_165; } else { lean_inc(x_1); -x_161 = x_173; -x_162 = x_169; +x_161 = x_169; +x_162 = x_173; x_163 = x_1; goto block_165; } @@ -95053,21 +95917,21 @@ goto block_40; block_50: { uint8_t x_49; -x_49 = lean_nat_dec_le(x_48, x_46); +x_49 = lean_nat_dec_le(x_48, x_47); if (x_49 == 0) { -lean_dec(x_46); +lean_dec(x_47); lean_inc(x_48); -x_41 = x_47; +x_41 = x_46; x_42 = x_48; x_43 = x_48; goto block_45; } else { -x_41 = x_47; +x_41 = x_46; x_42 = x_48; -x_43 = x_46; +x_43 = x_47; goto block_45; } } @@ -95089,16 +95953,16 @@ x_59 = lean_nat_dec_le(x_1, x_58); if (x_59 == 0) { lean_inc(x_58); -x_46 = x_58; -x_47 = x_54; +x_46 = x_54; +x_47 = x_58; x_48 = x_58; goto block_50; } else { lean_inc(x_1); -x_46 = x_58; -x_47 = x_54; +x_46 = x_54; +x_47 = x_58; x_48 = x_1; goto block_50; } @@ -95282,21 +96146,21 @@ goto block_96; block_106: { uint8_t x_105; -x_105 = lean_nat_dec_le(x_104, x_102); +x_105 = lean_nat_dec_le(x_104, x_103); if (x_105 == 0) { -lean_dec(x_102); +lean_dec(x_103); lean_inc(x_104); -x_97 = x_103; +x_97 = x_102; x_98 = x_104; x_99 = x_104; goto block_101; } else { -x_97 = x_103; +x_97 = x_102; x_98 = x_104; -x_99 = x_102; +x_99 = x_103; goto block_101; } } @@ -95318,16 +96182,16 @@ x_115 = lean_nat_dec_le(x_1, x_114); if (x_115 == 0) { lean_inc(x_114); -x_102 = x_114; -x_103 = x_110; +x_102 = x_110; +x_103 = x_114; x_104 = x_114; goto block_106; } else { lean_inc(x_1); -x_102 = x_114; -x_103 = x_110; +x_102 = x_110; +x_103 = x_114; x_104 = x_1; goto block_106; } @@ -95529,21 +96393,21 @@ goto block_155; block_165: { uint8_t x_164; -x_164 = lean_nat_dec_le(x_163, x_161); +x_164 = lean_nat_dec_le(x_163, x_162); if (x_164 == 0) { -lean_dec(x_161); +lean_dec(x_162); lean_inc(x_163); -x_156 = x_162; +x_156 = x_161; x_157 = x_163; x_158 = x_163; goto block_160; } else { -x_156 = x_162; +x_156 = x_161; x_157 = x_163; -x_158 = x_161; +x_158 = x_162; goto block_160; } } @@ -95565,16 +96429,16 @@ x_174 = lean_nat_dec_le(x_1, x_173); if (x_174 == 0) { lean_inc(x_173); -x_161 = x_173; -x_162 = x_169; +x_161 = x_169; +x_162 = x_173; x_163 = x_173; goto block_165; } else { lean_inc(x_1); -x_161 = x_173; -x_162 = x_169; +x_161 = x_169; +x_162 = x_173; x_163 = x_1; goto block_165; } @@ -95898,7 +96762,7 @@ lean_closure_set(x_14, 1, x_2); x_15 = lean_box(0); x_16 = l_Lean_EnvExtension_modifyState___redArg(x_12, x_10, x_14, x_13, x_15); lean_dec(x_13); -x_17 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_17 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; lean_ctor_set(x_7, 5, x_17); lean_ctor_set(x_7, 0, x_16); x_18 = lean_st_ref_set(x_4, x_7, x_8); @@ -95917,7 +96781,7 @@ if (x_23 == 0) lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; x_24 = lean_ctor_get(x_21, 1); lean_dec(x_24); -x_25 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_25 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; lean_ctor_set(x_21, 1, x_25); x_26 = lean_st_ref_set(x_3, x_21, x_22); x_27 = !lean_is_exclusive(x_26); @@ -95955,7 +96819,7 @@ lean_inc(x_35); lean_inc(x_34); lean_inc(x_33); lean_dec(x_21); -x_37 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_37 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; x_38 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_38, 0, x_33); lean_ctor_set(x_38, 1, x_37); @@ -96013,7 +96877,7 @@ lean_closure_set(x_54, 1, x_2); x_55 = lean_box(0); x_56 = l_Lean_EnvExtension_modifyState___redArg(x_52, x_44, x_54, x_53, x_55); lean_dec(x_53); -x_57 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_57 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; x_58 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_58, 0, x_56); lean_ctor_set(x_58, 1, x_45); @@ -96053,7 +96917,7 @@ if (lean_is_exclusive(x_62)) { lean_dec_ref(x_62); x_68 = lean_box(0); } -x_69 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_69 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_68)) { x_70 = lean_alloc_ctor(0, 5, 0); } else { @@ -96680,7 +97544,7 @@ _start: uint8_t x_9; uint8_t x_10; lean_object* x_11; x_9 = 1; x_10 = 0; -x_11 = l_Lean_log___at___Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__30_spec__30(x_1, x_9, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_11 = l_Lean_log___at___Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__32_spec__32(x_1, x_9, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_11; } } @@ -96925,7 +97789,7 @@ x_48 = lean_ctor_get(x_46, 1); lean_inc(x_48); lean_dec_ref(x_46); x_49 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__26____x40_Lean_Elab_Structure___hyg_4_; -x_50 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg(x_49, x_6, x_48); +x_50 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__22___redArg(x_49, x_6, x_48); x_51 = lean_ctor_get(x_50, 0); lean_inc(x_51); x_52 = lean_unbox(x_51); @@ -96977,7 +97841,7 @@ x_66 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePr lean_ctor_set_tag(x_50, 7); lean_ctor_set(x_50, 1, x_66); lean_ctor_set(x_50, 0, x_47); -x_67 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg(x_49, x_50, x_4, x_5, x_6, x_7, x_56); +x_67 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg(x_49, x_50, x_4, x_5, x_6, x_7, x_56); x_68 = lean_ctor_get(x_67, 1); lean_inc(x_68); lean_dec_ref(x_67); @@ -97011,7 +97875,7 @@ x_77 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePr lean_ctor_set_tag(x_50, 7); lean_ctor_set(x_50, 1, x_77); lean_ctor_set(x_50, 0, x_76); -x_78 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg(x_49, x_50, x_4, x_5, x_6, x_7, x_56); +x_78 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg(x_49, x_50, x_4, x_5, x_6, x_7, x_56); x_79 = lean_ctor_get(x_78, 1); lean_inc(x_79); lean_dec_ref(x_78); @@ -97061,7 +97925,7 @@ x_90 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePr x_91 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_91, 0, x_89); lean_ctor_set(x_91, 1, x_90); -x_92 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg(x_49, x_91, x_4, x_5, x_6, x_7, x_80); +x_92 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg(x_49, x_91, x_4, x_5, x_6, x_7, x_80); x_93 = lean_ctor_get(x_92, 1); lean_inc(x_93); lean_dec_ref(x_92); @@ -97683,7 +98547,7 @@ return x_25; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at___Lean_computeStructureResolutionOrder___at___Lean_getStructureResolutionOrder___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__0_spec__0_spec__0_spec__1_spec__1_spec__1___redArg(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, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_14; lean_object* x_15; lean_object* x_22; lean_object* x_23; uint8_t x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_40; lean_object* x_41; lean_object* x_42; uint8_t x_51; lean_object* x_52; uint8_t x_55; uint8_t x_60; uint8_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_71; lean_object* x_72; uint8_t x_82; +lean_object* x_14; lean_object* x_15; lean_object* x_22; lean_object* x_23; lean_object* x_31; lean_object* x_32; uint8_t x_33; lean_object* x_34; uint8_t x_40; lean_object* x_41; lean_object* x_42; uint8_t x_51; lean_object* x_52; uint8_t x_55; uint8_t x_60; uint8_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_71; lean_object* x_72; uint8_t x_82; lean_inc_ref(x_2); x_22 = lean_array_get(x_2, x_3, x_12); lean_inc(x_4); @@ -97759,12 +98623,12 @@ return x_29; block_39: { uint8_t x_35; -x_35 = lean_nat_dec_lt(x_32, x_34); +x_35 = lean_nat_dec_lt(x_31, x_34); if (x_35 == 0) { lean_dec(x_34); -lean_dec_ref(x_33); -lean_dec(x_32); +lean_dec_ref(x_32); +lean_dec(x_31); lean_dec(x_12); lean_dec(x_10); lean_dec(x_9); @@ -97777,13 +98641,13 @@ goto block_30; else { size_t x_36; size_t x_37; uint8_t x_38; -x_36 = lean_usize_of_nat(x_32); -lean_dec(x_32); +x_36 = lean_usize_of_nat(x_31); +lean_dec(x_31); x_37 = lean_usize_of_nat(x_34); lean_dec(x_34); lean_inc(x_5); -x_38 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__11(x_23, x_8, x_5, x_31, x_33, x_36, x_37); -lean_dec_ref(x_33); +x_38 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__11(x_23, x_8, x_5, x_33, x_32, x_36, x_37); +lean_dec_ref(x_32); if (x_38 == 0) { lean_dec(x_12); @@ -97840,18 +98704,18 @@ x_49 = lean_nat_dec_le(x_46, x_48); if (x_49 == 0) { lean_dec(x_46); -x_31 = x_40; -x_32 = x_45; -x_33 = x_44; +x_31 = x_45; +x_32 = x_44; +x_33 = x_40; x_34 = x_48; goto block_39; } else { lean_dec(x_48); -x_31 = x_40; -x_32 = x_45; -x_33 = x_44; +x_31 = x_45; +x_32 = x_44; +x_33 = x_40; x_34 = x_46; goto block_39; } @@ -98089,12 +98953,12 @@ return x_35; block_45: { uint8_t x_41; -x_41 = lean_nat_dec_lt(x_38, x_40); +x_41 = lean_nat_dec_lt(x_39, x_40); if (x_41 == 0) { lean_dec(x_40); -lean_dec_ref(x_39); -lean_dec(x_38); +lean_dec(x_39); +lean_dec_ref(x_38); lean_dec(x_14); lean_dec(x_10); lean_dec(x_9); @@ -98107,13 +98971,13 @@ goto block_36; else { size_t x_42; size_t x_43; uint8_t x_44; -x_42 = lean_usize_of_nat(x_38); -lean_dec(x_38); +x_42 = lean_usize_of_nat(x_39); +lean_dec(x_39); x_43 = lean_usize_of_nat(x_40); lean_dec(x_40); lean_inc(x_5); -x_44 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__11(x_29, x_8, x_5, x_37, x_39, x_42, x_43); -lean_dec_ref(x_39); +x_44 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__11(x_29, x_8, x_5, x_37, x_38, x_42, x_43); +lean_dec_ref(x_38); if (x_44 == 0) { lean_dec(x_14); @@ -98171,8 +99035,8 @@ if (x_55 == 0) { lean_dec(x_52); x_37 = x_46; -x_38 = x_51; -x_39 = x_50; +x_38 = x_50; +x_39 = x_51; x_40 = x_54; goto block_45; } @@ -98180,8 +99044,8 @@ else { lean_dec(x_54); x_37 = x_46; -x_38 = x_51; -x_39 = x_50; +x_38 = x_50; +x_39 = x_51; x_40 = x_52; goto block_45; } @@ -98248,25 +99112,25 @@ goto block_65; block_76: { uint8_t x_72; -x_72 = lean_nat_dec_lt(x_69, x_71); +x_72 = lean_nat_dec_lt(x_68, x_71); if (x_72 == 0) { lean_dec(x_71); -lean_dec(x_69); -lean_dec_ref(x_68); +lean_dec_ref(x_69); +lean_dec(x_68); x_66 = x_70; goto block_67; } else { size_t x_73; size_t x_74; uint8_t x_75; -x_73 = lean_usize_of_nat(x_69); -lean_dec(x_69); +x_73 = lean_usize_of_nat(x_68); +lean_dec(x_68); x_74 = lean_usize_of_nat(x_71); lean_dec(x_71); lean_inc(x_5); -x_75 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__13(x_29, x_8, x_5, x_68, x_73, x_74); -lean_dec_ref(x_68); +x_75 = l_Array_anyMUnsafe_any___at___Lean_mergeStructureResolutionOrders_selectParent___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__10_spec__13(x_29, x_8, x_5, x_69, x_73, x_74); +lean_dec_ref(x_69); if (x_75 == 0) { x_66 = x_72; @@ -98313,8 +99177,8 @@ x_86 = lean_nat_dec_le(x_82, x_85); if (x_86 == 0) { lean_dec(x_82); -x_68 = x_80; -x_69 = x_81; +x_68 = x_81; +x_69 = x_80; x_70 = x_83; x_71 = x_85; goto block_76; @@ -98322,8 +99186,8 @@ goto block_76; else { lean_dec(x_85); -x_68 = x_80; -x_69 = x_81; +x_68 = x_81; +x_69 = x_80; x_70 = x_83; x_71 = x_82; goto block_76; @@ -99329,7 +100193,7 @@ goto block_15; block_43: { lean_object* x_42; -x_42 = l_Array_qsort_sort___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__31___redArg(x_40, x_39, x_41); +x_42 = l_Array_qsort_sort___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__31___redArg(x_39, x_40, x_41); lean_dec(x_41); x_28 = x_42; goto block_38; @@ -99342,15 +100206,15 @@ if (x_47 == 0) { lean_dec(x_45); lean_inc(x_46); -x_39 = x_46; -x_40 = x_44; +x_39 = x_44; +x_40 = x_46; x_41 = x_46; goto block_43; } else { -x_39 = x_46; -x_40 = x_44; +x_39 = x_44; +x_40 = x_46; x_41 = x_45; goto block_43; } @@ -99552,7 +100416,7 @@ goto block_15; block_99: { lean_object* x_98; -x_98 = l_Array_qsort_sort___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__31___redArg(x_96, x_95, x_97); +x_98 = l_Array_qsort_sort___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__31___redArg(x_95, x_96, x_97); lean_dec(x_97); x_84 = x_98; goto block_94; @@ -99565,15 +100429,15 @@ if (x_103 == 0) { lean_dec(x_101); lean_inc(x_102); -x_95 = x_102; -x_96 = x_100; +x_95 = x_100; +x_96 = x_102; x_97 = x_102; goto block_99; } else { -x_95 = x_102; -x_96 = x_100; +x_95 = x_100; +x_96 = x_102; x_97 = x_101; goto block_99; } @@ -99793,7 +100657,7 @@ goto block_15; block_158: { lean_object* x_157; -x_157 = l_Array_qsort_sort___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__31___redArg(x_155, x_154, x_156); +x_157 = l_Array_qsort_sort___at___Lean_mergeStructureResolutionOrders___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults_spec__1_spec__31___redArg(x_154, x_155, x_156); lean_dec(x_156); x_143 = x_157; goto block_153; @@ -99806,15 +100670,15 @@ if (x_162 == 0) { lean_dec(x_160); lean_inc(x_161); -x_154 = x_161; -x_155 = x_159; +x_154 = x_159; +x_155 = x_161; x_156 = x_161; goto block_158; } else { -x_154 = x_161; -x_155 = x_159; +x_154 = x_159; +x_155 = x_161; x_156 = x_160; goto block_158; } @@ -100886,7 +101750,7 @@ lean_closure_set(x_14, 1, x_2); x_15 = lean_box(0); x_16 = l_Lean_EnvExtension_modifyState___redArg(x_12, x_10, x_14, x_13, x_15); lean_dec(x_13); -x_17 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_17 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; lean_ctor_set(x_7, 5, x_17); lean_ctor_set(x_7, 0, x_16); x_18 = lean_st_ref_set(x_4, x_7, x_8); @@ -100905,7 +101769,7 @@ if (x_23 == 0) lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; x_24 = lean_ctor_get(x_21, 1); lean_dec(x_24); -x_25 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_25 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; lean_ctor_set(x_21, 1, x_25); x_26 = lean_st_ref_set(x_3, x_21, x_22); x_27 = !lean_is_exclusive(x_26); @@ -100943,7 +101807,7 @@ lean_inc(x_35); lean_inc(x_34); lean_inc(x_33); lean_dec(x_21); -x_37 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_37 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; x_38 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_38, 0, x_33); lean_ctor_set(x_38, 1, x_37); @@ -101001,7 +101865,7 @@ lean_closure_set(x_54, 1, x_2); x_55 = lean_box(0); x_56 = l_Lean_EnvExtension_modifyState___redArg(x_52, x_44, x_54, x_53, x_55); lean_dec(x_53); -x_57 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_57 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; x_58 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_58, 0, x_56); lean_ctor_set(x_58, 1, x_45); @@ -101041,7 +101905,7 @@ if (lean_is_exclusive(x_62)) { lean_dec_ref(x_62); x_68 = lean_box(0); } -x_69 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_69 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_68)) { x_70 = lean_alloc_ctor(0, 5, 0); } else { @@ -101865,7 +102729,7 @@ goto _start; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances(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: { -size_t x_7; lean_object* x_8; lean_object* x_9; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_39; lean_object* x_40; uint8_t x_41; +lean_object* x_7; size_t x_8; lean_object* x_9; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_39; lean_object* x_40; uint8_t x_41; x_18 = lean_st_ref_get(x_5, x_6); x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); @@ -101913,7 +102777,7 @@ block_17: lean_object* x_10; size_t x_11; lean_object* x_12; x_10 = lean_box(0); x_11 = lean_array_size(x_9); -x_12 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__13(x_10, x_9, x_11, x_7, x_10, x_2, x_3, x_4, x_5, x_8); +x_12 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__13(x_10, x_9, x_11, x_8, x_10, x_2, x_3, x_4, x_5, x_7); lean_dec_ref(x_9); if (lean_obj_tag(x_12) == 0) { @@ -101971,8 +102835,8 @@ if (x_30 == 0) lean_dec(x_28); lean_dec(x_26); lean_dec_ref(x_22); -x_7 = x_24; -x_8 = x_27; +x_7 = x_27; +x_8 = x_24; x_9 = x_29; goto block_17; } @@ -101985,8 +102849,8 @@ if (x_31 == 0) lean_dec(x_28); lean_dec(x_26); lean_dec_ref(x_22); -x_7 = x_24; -x_8 = x_27; +x_7 = x_27; +x_8 = x_24; x_9 = x_29; goto block_17; } @@ -101998,8 +102862,8 @@ lean_dec(x_28); x_33 = l_Array_foldlMUnsafe_fold___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances_spec__17(x_26, x_21, x_22, x_24, x_32, x_29); lean_dec_ref(x_22); lean_dec(x_26); -x_7 = x_24; -x_8 = x_27; +x_7 = x_27; +x_8 = x_24; x_9 = x_33; goto block_17; } @@ -102678,7 +103542,7 @@ lean_object* x_5; lean_object* x_6; size_t x_7; size_t x_8; size_t x_9; lean_obj x_5 = lean_ctor_get(x_1, 0); x_6 = lean_box(2); x_7 = 5; -x_8 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__1; +x_8 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__1; x_9 = lean_usize_land(x_2, x_8); x_10 = lean_usize_to_nat(x_9); x_11 = lean_array_get(x_6, x_5, x_10); @@ -102739,7 +103603,7 @@ lean_inc(x_20); lean_dec(x_1); x_21 = lean_box(2); x_22 = 5; -x_23 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__1; +x_23 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__1; x_24 = lean_usize_land(x_2, x_23); x_25 = lean_usize_to_nat(x_24); x_26 = lean_array_get(x_21, x_20, x_25); @@ -102976,7 +103840,7 @@ lean_dec(x_38); lean_ctor_set(x_30, 3, x_2); x_39 = l_Lean_PersistentEnvExtension_addEntry___redArg(x_15, x_35, x_30, x_17, x_20); lean_dec(x_17); -x_40 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_40 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; lean_ctor_set(x_32, 5, x_40); lean_ctor_set(x_32, 0, x_39); x_41 = lean_st_ref_set(x_8, x_32, x_33); @@ -102995,7 +103859,7 @@ if (x_46 == 0) lean_object* x_47; lean_object* x_48; lean_object* x_49; uint8_t x_50; x_47 = lean_ctor_get(x_44, 1); lean_dec(x_47); -x_48 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_48 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; lean_ctor_set(x_44, 1, x_48); x_49 = lean_st_ref_set(x_6, x_44, x_45); x_50 = !lean_is_exclusive(x_49); @@ -103031,7 +103895,7 @@ lean_inc(x_56); lean_inc(x_55); lean_inc(x_54); lean_dec(x_44); -x_58 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_58 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; x_59 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_59, 0, x_54); lean_ctor_set(x_59, 1, x_58); @@ -103076,7 +103940,7 @@ lean_ctor_set(x_67, 2, x_66); lean_ctor_set(x_67, 3, x_2); x_68 = l_Lean_PersistentEnvExtension_addEntry___redArg(x_15, x_35, x_67, x_17, x_20); lean_dec(x_17); -x_69 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_69 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; lean_ctor_set(x_32, 5, x_69); lean_ctor_set(x_32, 0, x_68); x_70 = lean_st_ref_set(x_8, x_32, x_33); @@ -103108,7 +103972,7 @@ if (lean_is_exclusive(x_73)) { lean_dec_ref(x_73); x_79 = lean_box(0); } -x_80 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_80 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_79)) { x_81 = lean_alloc_ctor(0, 5, 0); } else { @@ -103187,7 +104051,7 @@ lean_ctor_set(x_98, 2, x_96); lean_ctor_set(x_98, 3, x_2); x_99 = l_Lean_PersistentEnvExtension_addEntry___redArg(x_15, x_86, x_98, x_17, x_20); lean_dec(x_17); -x_100 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_100 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; x_101 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_101, 0, x_99); lean_ctor_set(x_101, 1, x_87); @@ -103227,7 +104091,7 @@ if (lean_is_exclusive(x_105)) { lean_dec_ref(x_105); x_111 = lean_box(0); } -x_112 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_112 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_111)) { x_113 = lean_alloc_ctor(0, 5, 0); } else { @@ -103357,7 +104221,7 @@ lean_ctor_set(x_142, 2, x_140); lean_ctor_set(x_142, 3, x_2); x_143 = l_Lean_PersistentEnvExtension_addEntry___redArg(x_15, x_129, x_142, x_17, x_20); lean_dec(x_17); -x_144 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_144 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; if (lean_is_scalar(x_137)) { x_145 = lean_alloc_ctor(0, 9, 0); } else { @@ -103401,7 +104265,7 @@ if (lean_is_exclusive(x_149)) { lean_dec_ref(x_149); x_155 = lean_box(0); } -x_156 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_156 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_155)) { x_157 = lean_alloc_ctor(0, 5, 0); } else { @@ -103561,7 +104425,7 @@ lean_ctor_set(x_198, 2, x_196); lean_ctor_set(x_198, 3, x_2); x_199 = l_Lean_PersistentEnvExtension_addEntry___redArg(x_165, x_185, x_198, x_167, x_170); lean_dec(x_167); -x_200 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_200 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; if (lean_is_scalar(x_193)) { x_201 = lean_alloc_ctor(0, 9, 0); } else { @@ -103605,7 +104469,7 @@ if (lean_is_exclusive(x_205)) { lean_dec_ref(x_205); x_211 = lean_box(0); } -x_212 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7; +x_212 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7; if (lean_is_scalar(x_211)) { x_213 = lean_alloc_ctor(0, 5, 0); } else { @@ -105608,7 +106472,7 @@ x_62 = lean_ctor_get(x_59, 0); x_63 = lean_ctor_get(x_59, 5); lean_dec(x_63); x_64 = l_Lean_Kernel_enableDiag(x_62, x_34); -x_65 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_65 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; lean_ctor_set(x_59, 5, x_65); lean_ctor_set(x_59, 0, x_64); x_66 = lean_st_ref_set(x_14, x_59, x_60); @@ -105653,7 +106517,7 @@ lean_inc(x_69); lean_inc(x_68); lean_dec(x_59); x_76 = l_Lean_Kernel_enableDiag(x_68, x_34); -x_77 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_77 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; x_78 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_78, 0, x_76); lean_ctor_set(x_78, 1, x_69); @@ -105884,7 +106748,7 @@ x_67 = lean_ctor_get(x_64, 0); x_68 = lean_ctor_get(x_64, 5); lean_dec(x_68); x_69 = l_Lean_Kernel_enableDiag(x_67, x_37); -x_70 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_70 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; lean_ctor_set(x_64, 5, x_70); lean_ctor_set(x_64, 0, x_69); x_71 = lean_st_ref_set(x_15, x_64, x_65); @@ -105929,7 +106793,7 @@ lean_inc(x_74); lean_inc(x_73); lean_dec(x_64); x_81 = l_Lean_Kernel_enableDiag(x_73, x_37); -x_82 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_82 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; x_83 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_83, 0, x_81); lean_ctor_set(x_83, 1, x_74); @@ -106124,7 +106988,7 @@ x_58 = lean_ctor_get(x_55, 0); x_59 = lean_ctor_get(x_55, 5); lean_dec(x_59); x_60 = l_Lean_Kernel_enableDiag(x_58, x_33); -x_61 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_61 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; lean_ctor_set(x_55, 5, x_61); lean_ctor_set(x_55, 0, x_60); x_62 = lean_st_ref_set(x_11, x_55, x_56); @@ -106168,7 +107032,7 @@ lean_inc(x_65); lean_inc(x_64); lean_dec(x_55); x_72 = l_Lean_Kernel_enableDiag(x_64, x_33); -x_73 = l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2; +x_73 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2; x_74 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_74, 0, x_72); lean_ctor_set(x_74, 1, x_65); @@ -107805,7 +108669,7 @@ if (lean_is_exclusive(x_10)) { x_13 = lean_box(0); } x_21 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__2____x40_Lean_Elab_Structure___hyg_4_; -x_22 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__20___redArg(x_21, x_7, x_12); +x_22 = l_Lean_isTracingEnabledFor___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__22___redArg(x_21, x_7, x_12); x_23 = lean_ctor_get(x_22, 0); lean_inc(x_23); x_24 = lean_unbox(x_23); @@ -107849,7 +108713,7 @@ x_35 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePr x_36 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_36, 0, x_22); lean_ctor_set(x_36, 1, x_35); -x_37 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg(x_21, x_36, x_5, x_6, x_7, x_8, x_28); +x_37 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg(x_21, x_36, x_5, x_6, x_7, x_8, x_28); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -107880,7 +108744,7 @@ x_46 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkDeletePr x_47 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_47, 0, x_45); lean_ctor_set(x_47, 1, x_46); -x_48 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg(x_21, x_47, x_5, x_6, x_7, x_8, x_39); +x_48 = l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg(x_21, x_47, x_5, x_6, x_7, x_8, x_39); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -108320,7 +109184,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__1____x40_Lean_Elab_Structure___hyg_4_; x_2 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__13____x40_Lean_Elab_Structure___hyg_4_; -x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0; +x_3 = l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0; x_4 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5____x40_Lean_Elab_Structure___hyg_4_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; @@ -108649,6 +109513,22 @@ l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_El lean_mark_persistent(l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__13___closed__1); l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__13___closed__2 = _init_l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__13___closed__2(); lean_mark_persistent(l_Lean_Elab_pushInfoLeaf___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__13___closed__2); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__0 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__0(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__0); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__1 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__1(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__1); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__2); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__3 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__3(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__3); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__4 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__4(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__4); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__5 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__5(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__5); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__6 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__6(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__6); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__15_spec__15___redArg___closed__7); l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0___closed__0 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0___closed__0(); lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0___closed__0); l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0___closed__1 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__0___closed__1(); @@ -108675,141 +109555,125 @@ l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____pr lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__2); l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__3 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__3(); lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__3___closed__3); -l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___closed__0 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___closed__0(); -lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___closed__0); -l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___closed__1 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___closed__1(); -lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___closed__1); -l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__0 = _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__0(); -lean_mark_persistent(l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__0); -l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__1 = _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__1(); -lean_mark_persistent(l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__1); -l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2 = _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2(); -lean_mark_persistent(l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__2); -l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__3 = _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__3(); -lean_mark_persistent(l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__3); -l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__4 = _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__4(); -lean_mark_persistent(l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__4); -l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__5 = _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__5(); -lean_mark_persistent(l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__5); -l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__6 = _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__6(); -lean_mark_persistent(l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__6); -l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7 = _init_l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7(); -lean_mark_persistent(l_Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0___lam__0___closed__7); -l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18___redArg___closed__0 = _init_l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18___redArg___closed__0(); -lean_mark_persistent(l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__17_spec__18___redArg___closed__0); -l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__0 = _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__0(); -l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__1 = _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__1(); -lean_mark_persistent(l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__21___redArg___closed__1); -l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__0 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__0(); -lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__0); -l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__1 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__1(); -lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__1); -l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__2 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__2(); -lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__2); -l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__3 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__3(); -lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__3); -l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__4 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__4(); -lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__4); -l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__5 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__5(); -lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__5); -l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__6 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__6(); -lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__24___redArg___closed__6); -l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25___redArg___closed__0 = _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25___redArg___closed__0(); -lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25___redArg___closed__0); -l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25___redArg___closed__1 = _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25___redArg___closed__1(); -lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20_spec__20_spec__25___redArg___closed__1); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__0); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__1 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__1(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__1); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__2 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__2(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__2); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__3 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__3(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__0___closed__3); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__0 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__0(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__0); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__1 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__1(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__1); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__2 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__2(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__2); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__3 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__3(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___lam__1___closed__3); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__0 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__0(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__0); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__1 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__1(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__1); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__2 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__2(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__2); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__3 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__3(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__3); -l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__4 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__4(); -lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__20___closed__4); -l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__0 = _init_l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__0(); -lean_mark_persistent(l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__0); -l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__1 = _init_l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__1(); -lean_mark_persistent(l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__1); -l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__2 = _init_l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__2(); -lean_mark_persistent(l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__2); -l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__3 = _init_l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__3(); -lean_mark_persistent(l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___lam__0___closed__3); -l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___closed__0 = _init_l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___closed__0(); -lean_mark_persistent(l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28_spec__28_spec__28___redArg___closed__0); -l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28___closed__0 = _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28___closed__0(); -lean_mark_persistent(l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28___closed__0); -l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28___closed__1 = _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28___closed__1(); -lean_mark_persistent(l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20_spec__28___closed__1); -l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20___closed__0 = _init_l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20___closed__0(); -lean_mark_persistent(l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20_spec__20_spec__20___closed__0); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__0 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__0(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__0); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__1 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__1(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__1); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__2 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__2(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__2); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__3 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__3(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__3); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__4 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__4(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__4); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__5 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__5(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__5); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__6 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__6(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__6); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__7 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__7(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__7); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__8 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__8(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__8); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__9 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__9(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__9); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__10 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__10(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__10); -l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__11 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__11(); -lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__20___closed__11); -l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__39___closed__0 = _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__39___closed__0(); -lean_mark_persistent(l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__39___closed__0); -l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__39___closed__1 = _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__39___closed__1(); -lean_mark_persistent(l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37_spec__39___closed__1); -l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___lam__0___closed__0 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___lam__0___closed__0(); -lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___lam__0___closed__0); -l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___closed__0 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___closed__0(); -lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___closed__0); -l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___closed__1 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___closed__1(); -lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__37_spec__37___closed__1); -l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__0___closed__0 = _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__0___closed__0(); -lean_mark_persistent(l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__0___closed__0); -l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__0___closed__1 = _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__0___closed__1(); -lean_mark_persistent(l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__0___closed__1); -l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__1___closed__0 = _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__1___closed__0(); -lean_mark_persistent(l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__1___closed__0); -l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__1___closed__1 = _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__1___closed__1(); -lean_mark_persistent(l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__1___closed__1); -l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__2___closed__0 = _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__2___closed__0(); -lean_mark_persistent(l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__2___closed__0); -l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__2___closed__1 = _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__2___closed__1(); -lean_mark_persistent(l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___lam__2___closed__1); -l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___closed__0 = _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___closed__0(); -lean_mark_persistent(l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___closed__0); -l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___closed__1 = _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___closed__1(); -lean_mark_persistent(l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__42___closed__1); +l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__5___closed__0 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__5___closed__0(); +lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__5___closed__0); +l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__5___closed__1 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__5___closed__1(); +lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0___lam__5___closed__1); +l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20___redArg___closed__0 = _init_l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20___redArg___closed__0(); +lean_mark_persistent(l_Lean_addDeclarationRanges___at___Lean_Elab_addDeclarationRangesFromSyntax___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__19_spec__20___redArg___closed__0); +l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__0 = _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__0(); +l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__1 = _init_l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__1(); +lean_mark_persistent(l_Lean_addTrace___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__23___redArg___closed__1); +l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__0 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__0(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__0); +l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__1 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__1(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__1); +l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__2 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__2(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__2); +l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__3 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__3(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__3); +l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__4 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__4(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__4); +l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__5 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__5(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__5); +l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__6 = _init_l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__6(); +lean_mark_persistent(l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__26___redArg___closed__6); +l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27___redArg___closed__0 = _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27___redArg___closed__0(); +lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27___redArg___closed__0); +l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27___redArg___closed__1 = _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27___redArg___closed__1(); +lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at___Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22_spec__22_spec__27___redArg___closed__1); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__0); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__1 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__1(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__1); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__2 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__2(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__2); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__3 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__3(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__0___closed__3); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__0 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__0(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__0); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__1 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__1(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__1); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__2 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__2(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__2); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__3 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__3(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___lam__1___closed__3); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__0 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__0(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__0); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__1 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__1(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__1); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__2 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__2(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__2); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__3 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__3(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__3); +l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__4 = _init_l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__4(); +lean_mark_persistent(l_Lean_Elab_elabAttr___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__22___closed__4); +l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__0 = _init_l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__0(); +lean_mark_persistent(l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__0); +l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__1 = _init_l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__1(); +lean_mark_persistent(l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__1); +l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__2 = _init_l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__2(); +lean_mark_persistent(l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__2); +l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__3 = _init_l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__3(); +lean_mark_persistent(l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___lam__0___closed__3); +l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___closed__0 = _init_l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___closed__0(); +lean_mark_persistent(l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30_spec__30_spec__30___redArg___closed__0); +l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30___closed__0 = _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30___closed__0(); +lean_mark_persistent(l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30___closed__0); +l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30___closed__1 = _init_l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30___closed__1(); +lean_mark_persistent(l_Lean_Elab_logException___at___Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22_spec__30___closed__1); +l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22___closed__0 = _init_l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22___closed__0(); +lean_mark_persistent(l_Lean_Elab_elabAttrs___at___Lean_Elab_elabDeclAttrs___at___Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22_spec__22_spec__22___closed__0); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__0 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__0(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__0); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__1 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__1(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__1); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__2 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__2(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__2); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__3 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__3(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__3); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__4 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__4(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__4); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__5 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__5(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__5); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__6 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__6(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__6); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__7 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__7(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__7); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__8 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__8(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__8); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__9 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__9(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__9); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__10 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__10(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__10); +l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__11 = _init_l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__11(); +lean_mark_persistent(l_Lean_Elab_elabModifiers___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__22___closed__11); +l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__41___closed__0 = _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__41___closed__0(); +lean_mark_persistent(l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__41___closed__0); +l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__41___closed__1 = _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__41___closed__1(); +lean_mark_persistent(l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39_spec__41___closed__1); +l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___lam__0___closed__0 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___lam__0___closed__0(); +lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___lam__0___closed__0); +l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___closed__0 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___closed__0(); +lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___closed__0); +l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___closed__1 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___closed__1(); +lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__39_spec__39___closed__1); +l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__0___closed__0 = _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__0___closed__0(); +lean_mark_persistent(l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__0___closed__0); +l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__0___closed__1 = _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__0___closed__1(); +lean_mark_persistent(l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__0___closed__1); +l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__1___closed__0 = _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__1___closed__0(); +lean_mark_persistent(l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__1___closed__0); +l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__1___closed__1 = _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__1___closed__1(); +lean_mark_persistent(l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__1___closed__1); +l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__2___closed__0 = _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__2___closed__0(); +lean_mark_persistent(l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__2___closed__0); +l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__2___closed__1 = _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__2___closed__1(); +lean_mark_persistent(l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___lam__2___closed__1); +l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___closed__0 = _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___closed__0(); +lean_mark_persistent(l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___closed__0); +l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___closed__1 = _init_l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___closed__1(); +lean_mark_persistent(l_Lean_Elab_Command_checkValidCtorModifier___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__44___closed__1); l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor___lam__0___closed__0 = _init_l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor___lam__0___closed__0(); lean_mark_persistent(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor___lam__0___closed__0); l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor___closed__0 = _init_l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor___closed__0(); @@ -109090,12 +109954,12 @@ l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefault_x lean_mark_persistent(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefault_x3f___closed__4); l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefault_x3f___closed__5 = _init_l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefault_x3f___closed__5(); lean_mark_persistent(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_getFieldDefault_x3f___closed__5); -l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__0 = _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__0(); -l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__1 = _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__1(); -l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__2 = _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__2(); -lean_mark_persistent(l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__7_spec__7_spec__7___redArg___closed__2); -l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg___closed__0 = _init_l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg___closed__0(); -lean_mark_persistent(l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__15___redArg___closed__0); +l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__0 = _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__0(); +l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__1 = _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__1(); +l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__2 = _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__2(); +lean_mark_persistent(l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__9_spec__9_spec__9___redArg___closed__2); +l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__17___redArg___closed__0 = _init_l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__17___redArg___closed__0(); +lean_mark_persistent(l_panic___at_____private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct_spec__17___redArg___closed__0); l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___lam__0___closed__0 = _init_l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___lam__0___closed__0(); lean_mark_persistent(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___lam__0___closed__0); l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___lam__1___closed__0 = _init_l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withStruct___redArg___lam__1___closed__0(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/BVDecide/Frontend/BVDecide.c b/stage0/stdlib/Lean/Elab/Tactic/BVDecide/Frontend/BVDecide.c index 2c0043def6..60350ca20b 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/BVDecide/Frontend/BVDecide.c +++ b/stage0/stdlib/Lean/Elab/Tactic/BVDecide/Frontend/BVDecide.c @@ -19435,9 +19435,10 @@ return x_2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___lam__2(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; -x_3 = lean_array_fget(x_1, x_2); -return x_3; +lean_object* x_3; lean_object* x_4; +x_3 = lean_ctor_get(x_1, 0); +x_4 = lean_array_fget(x_3, x_2); +return x_4; } } static lean_object* _init_l_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___lam__1___closed__0() { @@ -19565,7 +19566,7 @@ x_24 = lean_array_get_size(x_22); x_25 = lean_nat_dec_eq(x_24, x_12); if (x_25 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); @@ -19573,65 +19574,62 @@ lean_dec_ref(x_4); x_26 = lean_unsigned_to_nat(1u); lean_inc(x_22); x_27 = l_Array_toSubarray___redArg(x_22, x_26, x_24); -x_28 = lean_ctor_get(x_27, 0); -lean_inc_ref(x_28); -x_29 = lean_ctor_get(x_27, 1); +x_28 = lean_ctor_get(x_27, 1); +lean_inc(x_28); +x_29 = lean_ctor_get(x_27, 2); lean_inc(x_29); -x_30 = lean_ctor_get(x_27, 2); -lean_inc(x_30); -lean_dec_ref(x_27); -x_31 = lean_array_fget(x_22, x_12); +x_30 = lean_array_fget(x_22, x_12); lean_dec(x_22); +x_31 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___lam__2___boxed), 2, 1); +lean_closure_set(x_31, 0, x_27); x_32 = l_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___lam__1___closed__4; -x_33 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___lam__2___boxed), 2, 1); -lean_closure_set(x_33, 0, x_28); -x_34 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_34, 0, x_29); -lean_ctor_set(x_19, 1, x_30); -lean_ctor_set(x_19, 0, x_34); -x_35 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__0; -x_36 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__1; -x_37 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__2; -x_38 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__3; -x_39 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__4; -x_40 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__5; -x_41 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__6; -x_42 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_42, 0, x_35); +x_33 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_33, 0, x_28); +lean_ctor_set(x_19, 1, x_29); +lean_ctor_set(x_19, 0, x_33); +x_34 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__0; +x_35 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__1; +x_36 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__2; +x_37 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__3; +x_38 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__4; +x_39 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__5; +x_40 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__6; +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_34); +lean_ctor_set(x_41, 1, x_35); +x_42 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_42, 0, x_41); lean_ctor_set(x_42, 1, x_36); -x_43 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_42, 2, x_37); +lean_ctor_set(x_42, 3, x_38); +lean_ctor_set(x_42, 4, x_39); +x_43 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_43, 0, x_42); -lean_ctor_set(x_43, 1, x_37); -lean_ctor_set(x_43, 2, x_38); -lean_ctor_set(x_43, 3, x_39); -lean_ctor_set(x_43, 4, x_40); -x_44 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_44, 1, x_41); -lean_inc_ref(x_44); -x_45 = l_Std_Iterators_Types_Attach_instIterator___redArg(x_44, x_32); -lean_inc_ref(x_44); -x_46 = l_Std_Iterators_Types_ULiftIterator_instIterator___redArg(x_1, x_45, x_44); -x_47 = l_Std_Iterators_instIteratorMap___redArg(x_44, x_46, x_2, x_33); -x_48 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Elab_Tactic_BVDecide_Frontend_reflectBV_spec__1___redArg(x_47, x_19, x_31); -x_49 = lean_ctor_get(x_48, 0); +lean_ctor_set(x_43, 1, x_40); +lean_inc_ref(x_43); +x_44 = l_Std_Iterators_Types_Attach_instIterator___redArg(x_43, x_32); +lean_inc_ref(x_43); +x_45 = l_Std_Iterators_Types_ULiftIterator_instIterator___redArg(x_1, x_44, x_43); +x_46 = l_Std_Iterators_instIteratorMap___redArg(x_43, x_45, x_2, x_31); +x_47 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Elab_Tactic_BVDecide_Frontend_reflectBV_spec__1___redArg(x_46, x_19, x_30); +x_48 = lean_ctor_get(x_47, 0); +lean_inc_ref(x_48); +x_49 = lean_ctor_get(x_47, 2); lean_inc_ref(x_49); -x_50 = lean_ctor_get(x_48, 2); -lean_inc_ref(x_50); -x_51 = l_Lean_ShareCommon_shareCommon___redArg(x_49); -x_52 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_BVDecide_Frontend_SatAtBVLogical_proveFalse), 8, 1); -lean_closure_set(x_52, 0, x_48); -x_53 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_53, 0, x_51); -lean_ctor_set(x_53, 1, x_52); -lean_ctor_set(x_53, 2, x_23); -lean_ctor_set(x_53, 3, x_50); -lean_ctor_set(x_17, 0, x_53); +x_50 = l_Lean_ShareCommon_shareCommon___redArg(x_48); +x_51 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_BVDecide_Frontend_SatAtBVLogical_proveFalse), 8, 1); +lean_closure_set(x_51, 0, x_47); +x_52 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_52, 0, x_50); +lean_ctor_set(x_52, 1, x_51); +lean_ctor_set(x_52, 2, x_23); +lean_ctor_set(x_52, 3, x_49); +lean_ctor_set(x_17, 0, x_52); return x_17; } else { -lean_object* x_54; lean_object* x_55; +lean_object* x_53; lean_object* x_54; lean_dec(x_24); lean_free_object(x_19); lean_dec(x_23); @@ -19639,258 +19637,252 @@ lean_dec(x_22); lean_free_object(x_17); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_54 = l_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___lam__1___closed__7; -x_55 = l_Lean_throwError___at___Lean_Elab_Tactic_BVDecide_Frontend_reflectBV_spec__2___redArg(x_54, x_4, x_5, x_6, x_7, x_21); +x_53 = l_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___lam__1___closed__7; +x_54 = l_Lean_throwError___at___Lean_Elab_Tactic_BVDecide_Frontend_reflectBV_spec__2___redArg(x_53, x_4, x_5, x_6, x_7, x_21); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); -return x_55; +return x_54; } } else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; -x_56 = lean_ctor_get(x_17, 1); -x_57 = lean_ctor_get(x_19, 0); -x_58 = lean_ctor_get(x_19, 1); -lean_inc(x_58); +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; +x_55 = lean_ctor_get(x_17, 1); +x_56 = lean_ctor_get(x_19, 0); +x_57 = lean_ctor_get(x_19, 1); lean_inc(x_57); +lean_inc(x_56); lean_dec(x_19); -x_59 = lean_array_get_size(x_57); -x_60 = lean_nat_dec_eq(x_59, x_12); -if (x_60 == 0) +x_58 = lean_array_get_size(x_56); +x_59 = lean_nat_dec_eq(x_58, x_12); +if (x_59 == 0) { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); -x_61 = lean_unsigned_to_nat(1u); -lean_inc(x_57); -x_62 = l_Array_toSubarray___redArg(x_57, x_61, x_59); -x_63 = lean_ctor_get(x_62, 0); -lean_inc_ref(x_63); -x_64 = lean_ctor_get(x_62, 1); -lean_inc(x_64); -x_65 = lean_ctor_get(x_62, 2); -lean_inc(x_65); -lean_dec_ref(x_62); -x_66 = lean_array_fget(x_57, x_12); -lean_dec(x_57); -x_67 = l_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___lam__1___closed__4; -x_68 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___lam__2___boxed), 2, 1); -lean_closure_set(x_68, 0, x_63); -x_69 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_69, 0, x_64); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_65); -x_71 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__0; -x_72 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__1; -x_73 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__2; -x_74 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__3; -x_75 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__4; -x_76 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__5; -x_77 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__6; +x_60 = lean_unsigned_to_nat(1u); +lean_inc(x_56); +x_61 = l_Array_toSubarray___redArg(x_56, x_60, x_58); +x_62 = lean_ctor_get(x_61, 1); +lean_inc(x_62); +x_63 = lean_ctor_get(x_61, 2); +lean_inc(x_63); +x_64 = lean_array_fget(x_56, x_12); +lean_dec(x_56); +x_65 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___lam__2___boxed), 2, 1); +lean_closure_set(x_65, 0, x_61); +x_66 = l_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___lam__1___closed__4; +x_67 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_67, 0, x_62); +x_68 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_68, 0, x_67); +lean_ctor_set(x_68, 1, x_63); +x_69 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__0; +x_70 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__1; +x_71 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__2; +x_72 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__3; +x_73 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__4; +x_74 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__5; +x_75 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__6; +x_76 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_76, 0, x_69); +lean_ctor_set(x_76, 1, x_70); +x_77 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_77, 0, x_76); +lean_ctor_set(x_77, 1, x_71); +lean_ctor_set(x_77, 2, x_72); +lean_ctor_set(x_77, 3, x_73); +lean_ctor_set(x_77, 4, x_74); x_78 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_78, 0, x_71); -lean_ctor_set(x_78, 1, x_72); -x_79 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_79, 0, x_78); -lean_ctor_set(x_79, 1, x_73); -lean_ctor_set(x_79, 2, x_74); -lean_ctor_set(x_79, 3, x_75); -lean_ctor_set(x_79, 4, x_76); -x_80 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_80, 0, x_79); -lean_ctor_set(x_80, 1, x_77); -lean_inc_ref(x_80); -x_81 = l_Std_Iterators_Types_Attach_instIterator___redArg(x_80, x_67); -lean_inc_ref(x_80); -x_82 = l_Std_Iterators_Types_ULiftIterator_instIterator___redArg(x_1, x_81, x_80); -x_83 = l_Std_Iterators_instIteratorMap___redArg(x_80, x_82, x_2, x_68); -x_84 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Elab_Tactic_BVDecide_Frontend_reflectBV_spec__1___redArg(x_83, x_70, x_66); -x_85 = lean_ctor_get(x_84, 0); -lean_inc_ref(x_85); -x_86 = lean_ctor_get(x_84, 2); -lean_inc_ref(x_86); -x_87 = l_Lean_ShareCommon_shareCommon___redArg(x_85); -x_88 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_BVDecide_Frontend_SatAtBVLogical_proveFalse), 8, 1); -lean_closure_set(x_88, 0, x_84); -x_89 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_89, 0, x_87); -lean_ctor_set(x_89, 1, x_88); -lean_ctor_set(x_89, 2, x_58); -lean_ctor_set(x_89, 3, x_86); -lean_ctor_set(x_17, 0, x_89); +lean_ctor_set(x_78, 0, x_77); +lean_ctor_set(x_78, 1, x_75); +lean_inc_ref(x_78); +x_79 = l_Std_Iterators_Types_Attach_instIterator___redArg(x_78, x_66); +lean_inc_ref(x_78); +x_80 = l_Std_Iterators_Types_ULiftIterator_instIterator___redArg(x_1, x_79, x_78); +x_81 = l_Std_Iterators_instIteratorMap___redArg(x_78, x_80, x_2, x_65); +x_82 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Elab_Tactic_BVDecide_Frontend_reflectBV_spec__1___redArg(x_81, x_68, x_64); +x_83 = lean_ctor_get(x_82, 0); +lean_inc_ref(x_83); +x_84 = lean_ctor_get(x_82, 2); +lean_inc_ref(x_84); +x_85 = l_Lean_ShareCommon_shareCommon___redArg(x_83); +x_86 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_BVDecide_Frontend_SatAtBVLogical_proveFalse), 8, 1); +lean_closure_set(x_86, 0, x_82); +x_87 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_87, 0, x_85); +lean_ctor_set(x_87, 1, x_86); +lean_ctor_set(x_87, 2, x_57); +lean_ctor_set(x_87, 3, x_84); +lean_ctor_set(x_17, 0, x_87); return x_17; } else { -lean_object* x_90; lean_object* x_91; -lean_dec(x_59); +lean_object* x_88; lean_object* x_89; lean_dec(x_58); lean_dec(x_57); +lean_dec(x_56); lean_free_object(x_17); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_90 = l_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___lam__1___closed__7; -x_91 = l_Lean_throwError___at___Lean_Elab_Tactic_BVDecide_Frontend_reflectBV_spec__2___redArg(x_90, x_4, x_5, x_6, x_7, x_56); +x_88 = l_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___lam__1___closed__7; +x_89 = l_Lean_throwError___at___Lean_Elab_Tactic_BVDecide_Frontend_reflectBV_spec__2___redArg(x_88, x_4, x_5, x_6, x_7, x_55); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); -return x_91; +return x_89; } } } else { -lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; uint8_t x_98; -x_92 = lean_ctor_get(x_17, 0); -x_93 = lean_ctor_get(x_17, 1); -lean_inc(x_93); -lean_inc(x_92); +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; uint8_t x_96; +x_90 = lean_ctor_get(x_17, 0); +x_91 = lean_ctor_get(x_17, 1); +lean_inc(x_91); +lean_inc(x_90); lean_dec(x_17); -x_94 = lean_ctor_get(x_92, 0); -lean_inc(x_94); -x_95 = lean_ctor_get(x_92, 1); -lean_inc(x_95); -if (lean_is_exclusive(x_92)) { - lean_ctor_release(x_92, 0); - lean_ctor_release(x_92, 1); - x_96 = x_92; +x_92 = lean_ctor_get(x_90, 0); +lean_inc(x_92); +x_93 = lean_ctor_get(x_90, 1); +lean_inc(x_93); +if (lean_is_exclusive(x_90)) { + lean_ctor_release(x_90, 0); + lean_ctor_release(x_90, 1); + x_94 = x_90; } else { - lean_dec_ref(x_92); - x_96 = lean_box(0); + lean_dec_ref(x_90); + x_94 = lean_box(0); } -x_97 = lean_array_get_size(x_94); -x_98 = lean_nat_dec_eq(x_97, x_12); -if (x_98 == 0) +x_95 = lean_array_get_size(x_92); +x_96 = lean_nat_dec_eq(x_95, x_12); +if (x_96 == 0) { -lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; +lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); -x_99 = lean_unsigned_to_nat(1u); -lean_inc(x_94); -x_100 = l_Array_toSubarray___redArg(x_94, x_99, x_97); -x_101 = lean_ctor_get(x_100, 0); -lean_inc_ref(x_101); -x_102 = lean_ctor_get(x_100, 1); -lean_inc(x_102); -x_103 = lean_ctor_get(x_100, 2); -lean_inc(x_103); -lean_dec_ref(x_100); -x_104 = lean_array_fget(x_94, x_12); -lean_dec(x_94); -x_105 = l_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___lam__1___closed__4; -x_106 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___lam__2___boxed), 2, 1); -lean_closure_set(x_106, 0, x_101); -x_107 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_107, 0, x_102); -if (lean_is_scalar(x_96)) { - x_108 = lean_alloc_ctor(0, 2, 0); +x_97 = lean_unsigned_to_nat(1u); +lean_inc(x_92); +x_98 = l_Array_toSubarray___redArg(x_92, x_97, x_95); +x_99 = lean_ctor_get(x_98, 1); +lean_inc(x_99); +x_100 = lean_ctor_get(x_98, 2); +lean_inc(x_100); +x_101 = lean_array_fget(x_92, x_12); +lean_dec(x_92); +x_102 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___lam__2___boxed), 2, 1); +lean_closure_set(x_102, 0, x_98); +x_103 = l_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___lam__1___closed__4; +x_104 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_104, 0, x_99); +if (lean_is_scalar(x_94)) { + x_105 = lean_alloc_ctor(0, 2, 0); } else { - x_108 = x_96; + x_105 = x_94; } -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_103); -x_109 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__0; -x_110 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__1; -x_111 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__2; -x_112 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__3; -x_113 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__4; -x_114 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__5; -x_115 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__6; -x_116 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_116, 0, x_109); -lean_ctor_set(x_116, 1, x_110); -x_117 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_117, 0, x_116); -lean_ctor_set(x_117, 1, x_111); -lean_ctor_set(x_117, 2, x_112); -lean_ctor_set(x_117, 3, x_113); -lean_ctor_set(x_117, 4, x_114); -x_118 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_118, 0, x_117); -lean_ctor_set(x_118, 1, x_115); -lean_inc_ref(x_118); -x_119 = l_Std_Iterators_Types_Attach_instIterator___redArg(x_118, x_105); -lean_inc_ref(x_118); -x_120 = l_Std_Iterators_Types_ULiftIterator_instIterator___redArg(x_1, x_119, x_118); -x_121 = l_Std_Iterators_instIteratorMap___redArg(x_118, x_120, x_2, x_106); -x_122 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Elab_Tactic_BVDecide_Frontend_reflectBV_spec__1___redArg(x_121, x_108, x_104); -x_123 = lean_ctor_get(x_122, 0); -lean_inc_ref(x_123); -x_124 = lean_ctor_get(x_122, 2); -lean_inc_ref(x_124); -x_125 = l_Lean_ShareCommon_shareCommon___redArg(x_123); -x_126 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_BVDecide_Frontend_SatAtBVLogical_proveFalse), 8, 1); -lean_closure_set(x_126, 0, x_122); -x_127 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_127, 0, x_125); -lean_ctor_set(x_127, 1, x_126); -lean_ctor_set(x_127, 2, x_95); -lean_ctor_set(x_127, 3, x_124); -x_128 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_128, 0, x_127); -lean_ctor_set(x_128, 1, x_93); -return x_128; +lean_ctor_set(x_105, 0, x_104); +lean_ctor_set(x_105, 1, x_100); +x_106 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__0; +x_107 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__1; +x_108 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__2; +x_109 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__3; +x_110 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__4; +x_111 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__5; +x_112 = l_panic___at___Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample_spec__0___closed__6; +x_113 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_113, 0, x_106); +lean_ctor_set(x_113, 1, x_107); +x_114 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_114, 0, x_113); +lean_ctor_set(x_114, 1, x_108); +lean_ctor_set(x_114, 2, x_109); +lean_ctor_set(x_114, 3, x_110); +lean_ctor_set(x_114, 4, x_111); +x_115 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_115, 0, x_114); +lean_ctor_set(x_115, 1, x_112); +lean_inc_ref(x_115); +x_116 = l_Std_Iterators_Types_Attach_instIterator___redArg(x_115, x_103); +lean_inc_ref(x_115); +x_117 = l_Std_Iterators_Types_ULiftIterator_instIterator___redArg(x_1, x_116, x_115); +x_118 = l_Std_Iterators_instIteratorMap___redArg(x_115, x_117, x_2, x_102); +x_119 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Elab_Tactic_BVDecide_Frontend_reflectBV_spec__1___redArg(x_118, x_105, x_101); +x_120 = lean_ctor_get(x_119, 0); +lean_inc_ref(x_120); +x_121 = lean_ctor_get(x_119, 2); +lean_inc_ref(x_121); +x_122 = l_Lean_ShareCommon_shareCommon___redArg(x_120); +x_123 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_BVDecide_Frontend_SatAtBVLogical_proveFalse), 8, 1); +lean_closure_set(x_123, 0, x_119); +x_124 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_124, 0, x_122); +lean_ctor_set(x_124, 1, x_123); +lean_ctor_set(x_124, 2, x_93); +lean_ctor_set(x_124, 3, x_121); +x_125 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_125, 0, x_124); +lean_ctor_set(x_125, 1, x_91); +return x_125; } else { -lean_object* x_129; lean_object* x_130; -lean_dec(x_97); -lean_dec(x_96); +lean_object* x_126; lean_object* x_127; lean_dec(x_95); lean_dec(x_94); +lean_dec(x_93); +lean_dec(x_92); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_129 = l_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___lam__1___closed__7; -x_130 = l_Lean_throwError___at___Lean_Elab_Tactic_BVDecide_Frontend_reflectBV_spec__2___redArg(x_129, x_4, x_5, x_6, x_7, x_93); +x_126 = l_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___lam__1___closed__7; +x_127 = l_Lean_throwError___at___Lean_Elab_Tactic_BVDecide_Frontend_reflectBV_spec__2___redArg(x_126, x_4, x_5, x_6, x_7, x_91); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); -return x_130; +return x_127; } } } else { -uint8_t x_131; +uint8_t x_128; lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_131 = !lean_is_exclusive(x_17); -if (x_131 == 0) +x_128 = !lean_is_exclusive(x_17); +if (x_128 == 0) { return x_17; } else { -lean_object* x_132; lean_object* x_133; lean_object* x_134; -x_132 = lean_ctor_get(x_17, 0); -x_133 = lean_ctor_get(x_17, 1); -lean_inc(x_133); -lean_inc(x_132); +lean_object* x_129; lean_object* x_130; lean_object* x_131; +x_129 = lean_ctor_get(x_17, 0); +x_130 = lean_ctor_get(x_17, 1); +lean_inc(x_130); +lean_inc(x_129); lean_dec(x_17); -x_134 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_134, 0, x_132); -lean_ctor_set(x_134, 1, x_133); -return x_134; +x_131 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_131, 0, x_129); +lean_ctor_set(x_131, 1, x_130); +return x_131; } } } else { -uint8_t x_135; +uint8_t x_132; lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); @@ -19898,23 +19890,23 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_135 = !lean_is_exclusive(x_9); -if (x_135 == 0) +x_132 = !lean_is_exclusive(x_9); +if (x_132 == 0) { return x_9; } else { -lean_object* x_136; lean_object* x_137; lean_object* x_138; -x_136 = lean_ctor_get(x_9, 0); -x_137 = lean_ctor_get(x_9, 1); -lean_inc(x_137); -lean_inc(x_136); +lean_object* x_133; lean_object* x_134; lean_object* x_135; +x_133 = lean_ctor_get(x_9, 0); +x_134 = lean_ctor_get(x_9, 1); +lean_inc(x_134); +lean_inc(x_133); lean_dec(x_9); -x_138 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_138, 0, x_136); -lean_ctor_set(x_138, 1, x_137); -return x_138; +x_135 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_135, 0, x_133); +lean_ctor_set(x_135, 1, x_134); +return x_135; } } } @@ -20723,7 +20715,7 @@ return x_15; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; double x_16; uint8_t x_17; double x_18; lean_object* x_19; lean_object* x_20; lean_object* x_29; lean_object* x_30; uint8_t x_31; double x_32; double x_33; lean_object* x_34; lean_object* x_35; lean_object* x_46; lean_object* x_47; uint8_t x_48; double x_49; double x_50; lean_object* x_51; lean_object* x_52; lean_object* x_61; lean_object* x_62; uint8_t x_63; lean_object* x_64; double x_65; lean_object* x_66; double x_67; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; double x_83; uint8_t x_84; lean_object* x_85; double x_86; lean_object* x_87; lean_object* x_88; uint8_t x_89; lean_object* x_128; lean_object* x_129; lean_object* x_130; uint8_t x_131; double x_132; double x_133; lean_object* x_134; lean_object* x_135; double x_136; lean_object* x_140; lean_object* x_141; lean_object* x_142; uint8_t x_143; lean_object* x_144; lean_object* x_145; lean_object* x_162; lean_object* x_163; uint8_t x_164; lean_object* x_165; double x_166; lean_object* x_167; double x_168; lean_object* x_169; uint8_t x_170; lean_object* x_209; lean_object* x_210; uint8_t x_211; lean_object* x_212; lean_object* x_213; double x_214; lean_object* x_215; double x_216; double x_217; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; lean_object* x_225; lean_object* x_226; uint8_t x_272; +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; double x_16; double x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; lean_object* x_29; lean_object* x_30; double x_31; double x_32; lean_object* x_33; uint8_t x_34; lean_object* x_35; lean_object* x_46; lean_object* x_47; double x_48; double x_49; uint8_t x_50; lean_object* x_51; lean_object* x_52; lean_object* x_61; lean_object* x_62; double x_63; double x_64; lean_object* x_65; lean_object* x_66; uint8_t x_67; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; double x_83; double x_84; lean_object* x_85; lean_object* x_86; uint8_t x_87; lean_object* x_88; uint8_t x_89; lean_object* x_128; lean_object* x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; uint8_t x_134; lean_object* x_135; double x_136; lean_object* x_140; lean_object* x_141; lean_object* x_142; uint8_t x_143; lean_object* x_144; lean_object* x_145; lean_object* x_162; lean_object* x_163; double x_164; lean_object* x_165; double x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; uint8_t x_170; lean_object* x_209; lean_object* x_210; lean_object* x_211; double x_212; double x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; double x_217; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; lean_object* x_225; lean_object* x_226; uint8_t x_272; x_12 = lean_ctor_get(x_9, 2); lean_inc(x_12); x_13 = lean_ctor_get(x_9, 5); @@ -20764,7 +20756,7 @@ goto block_271; } block_28: { -if (x_17 == 0) +if (x_18 == 0) { double x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; x_21 = l_Lean_withTraceNode___at___Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof_spec__0___redArg___closed__0; @@ -20789,7 +20781,7 @@ lean_object* x_25; lean_object* x_26; lean_object* x_27; x_25 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_25, 0, x_1); lean_ctor_set(x_25, 1, x_5); -lean_ctor_set_float(x_25, sizeof(void*)*2, x_18); +lean_ctor_set_float(x_25, sizeof(void*)*2, x_17); lean_ctor_set_float(x_25, sizeof(void*)*2 + 8, x_16); lean_ctor_set_uint8(x_25, sizeof(void*)*2 + 16, x_4); x_26 = lean_box(0); @@ -20810,7 +20802,7 @@ lean_inc_ref(x_9); lean_inc(x_8); lean_inc_ref(x_7); lean_inc(x_6); -x_36 = lean_apply_7(x_2, x_35, x_6, x_7, x_8, x_9, x_10, x_34); +x_36 = lean_apply_7(x_2, x_33, x_6, x_7, x_8, x_9, x_10, x_35); if (lean_obj_tag(x_36) == 0) { if (lean_obj_tag(x_36) == 0) @@ -20825,7 +20817,7 @@ x_14 = x_29; x_15 = x_30; x_16 = x_32; x_17 = x_31; -x_18 = x_33; +x_18 = x_34; x_19 = x_37; x_20 = x_38; goto block_28; @@ -20875,7 +20867,7 @@ x_14 = x_29; x_15 = x_30; x_16 = x_32; x_17 = x_31; -x_18 = x_33; +x_18 = x_34; x_19 = x_44; x_20 = x_43; goto block_28; @@ -20883,7 +20875,7 @@ goto block_28; } block_60: { -if (x_48 == 0) +if (x_50 == 0) { double x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; x_53 = l_Lean_withTraceNode___at___Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof_spec__0___redArg___closed__0; @@ -20908,8 +20900,8 @@ lean_object* x_57; lean_object* x_58; lean_object* x_59; x_57 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_57, 0, x_1); lean_ctor_set(x_57, 1, x_5); -lean_ctor_set_float(x_57, sizeof(void*)*2, x_49); -lean_ctor_set_float(x_57, sizeof(void*)*2 + 8, x_50); +lean_ctor_set_float(x_57, sizeof(void*)*2, x_48); +lean_ctor_set_float(x_57, sizeof(void*)*2 + 8, x_49); lean_ctor_set_uint8(x_57, sizeof(void*)*2 + 16, x_4); x_58 = lean_box(0); x_59 = l_Lean_withTraceNode___at___Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection_spec__0___redArg___lam__0(x_46, x_13, x_51, x_47, x_57, x_58, x_6, x_7, x_8, x_9, x_10, x_52); @@ -20929,7 +20921,7 @@ lean_inc_ref(x_9); lean_inc(x_8); lean_inc_ref(x_7); lean_inc(x_6); -x_68 = lean_apply_7(x_2, x_66, x_6, x_7, x_8, x_9, x_10, x_64); +x_68 = lean_apply_7(x_2, x_66, x_6, x_7, x_8, x_9, x_10, x_65); if (lean_obj_tag(x_68) == 0) { if (lean_obj_tag(x_68) == 0) @@ -20943,7 +20935,7 @@ lean_dec_ref(x_68); x_46 = x_61; x_47 = x_62; x_48 = x_63; -x_49 = x_65; +x_49 = x_64; x_50 = x_67; x_51 = x_69; x_52 = x_70; @@ -20993,7 +20985,7 @@ x_76 = l_Lean_withTraceNode___at___Lean_Elab_Tactic_BVDecide_Frontend_LratCert_t x_46 = x_61; x_47 = x_62; x_48 = x_63; -x_49 = x_65; +x_49 = x_64; x_50 = x_67; x_51 = x_76; x_52 = x_75; @@ -21020,7 +21012,7 @@ lean_dec(x_6); lean_dec_ref(x_5); lean_dec_ref(x_2); lean_dec(x_1); -x_91 = lean_st_ref_take(x_10, x_87); +x_91 = lean_st_ref_take(x_10, x_88); x_92 = lean_ctor_get(x_91, 0); lean_inc(x_92); x_93 = lean_ctor_get(x_92, 4); @@ -21047,8 +21039,8 @@ lean_dec(x_10); x_101 = lean_ctor_get(x_100, 1); lean_inc(x_101); lean_dec_ref(x_100); -x_102 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection_spec__0_spec__3___redArg(x_88, x_101); -lean_dec_ref(x_88); +x_102 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection_spec__0_spec__3___redArg(x_86, x_101); +lean_dec_ref(x_86); return x_102; } else @@ -21069,8 +21061,8 @@ lean_dec(x_10); x_108 = lean_ctor_get(x_107, 1); lean_inc(x_108); lean_dec_ref(x_107); -x_109 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection_spec__0_spec__3___redArg(x_88, x_108); -lean_dec_ref(x_88); +x_109 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection_spec__0_spec__3___redArg(x_86, x_108); +lean_dec_ref(x_86); return x_109; } } @@ -21128,8 +21120,8 @@ lean_dec(x_10); x_125 = lean_ctor_get(x_124, 1); lean_inc(x_125); lean_dec_ref(x_124); -x_126 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection_spec__0_spec__3___redArg(x_88, x_125); -lean_dec_ref(x_88); +x_126 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection_spec__0_spec__3___redArg(x_86, x_125); +lean_dec_ref(x_86); return x_126; } } @@ -21162,13 +21154,13 @@ goto block_45; block_139: { double x_137; uint8_t x_138; -x_137 = lean_float_sub(x_132, x_133); +x_137 = lean_float_sub(x_131, x_130); x_138 = lean_float_decLt(x_136, x_137); x_81 = x_128; x_82 = x_129; -x_83 = x_132; -x_84 = x_131; -x_85 = x_130; +x_83 = x_131; +x_84 = x_130; +x_85 = x_132; x_86 = x_133; x_87 = x_134; x_88 = x_135; @@ -21195,11 +21187,11 @@ lean_inc_ref(x_144); x_81 = x_140; x_82 = x_144; x_83 = x_150; -x_84 = x_152; +x_84 = x_149; x_85 = x_142; -x_86 = x_149; -x_87 = x_148; -x_88 = x_144; +x_86 = x_144; +x_87 = x_152; +x_88 = x_148; x_89 = x_152; goto block_127; } @@ -21217,12 +21209,12 @@ x_157 = lean_float_div(x_155, x_156); lean_inc_ref(x_144); x_128 = x_140; x_129 = x_144; -x_130 = x_142; -x_131 = x_152; -x_132 = x_150; -x_133 = x_149; -x_134 = x_148; -x_135 = x_144; +x_130 = x_149; +x_131 = x_150; +x_132 = x_142; +x_133 = x_144; +x_134 = x_152; +x_135 = x_148; x_136 = x_157; goto block_139; } @@ -21236,12 +21228,12 @@ x_160 = lean_float_of_nat(x_159); lean_inc_ref(x_144); x_128 = x_140; x_129 = x_144; -x_130 = x_142; -x_131 = x_152; -x_132 = x_150; -x_133 = x_149; -x_134 = x_148; -x_135 = x_144; +x_130 = x_149; +x_131 = x_150; +x_132 = x_142; +x_133 = x_144; +x_134 = x_152; +x_135 = x_148; x_136 = x_160; goto block_139; } @@ -21386,8 +21378,8 @@ lean_dec_ref(x_165); x_61 = x_162; x_62 = x_163; x_63 = x_164; -x_64 = x_167; -x_65 = x_166; +x_64 = x_166; +x_65 = x_167; x_66 = x_169; x_67 = x_168; goto block_77; @@ -21399,8 +21391,8 @@ lean_dec_ref(x_165); x_61 = x_162; x_62 = x_163; x_63 = x_164; -x_64 = x_167; -x_65 = x_166; +x_64 = x_166; +x_65 = x_167; x_66 = x_169; x_67 = x_168; goto block_77; @@ -21409,14 +21401,14 @@ goto block_77; block_220: { double x_218; uint8_t x_219; -x_218 = lean_float_sub(x_216, x_214); +x_218 = lean_float_sub(x_213, x_212); x_219 = lean_float_decLt(x_217, x_218); x_162 = x_209; x_163 = x_210; -x_164 = x_211; -x_165 = x_212; -x_166 = x_214; -x_167 = x_213; +x_164 = x_212; +x_165 = x_211; +x_166 = x_213; +x_167 = x_214; x_168 = x_216; x_169 = x_215; x_170 = x_219; @@ -21444,11 +21436,11 @@ lean_dec(x_12); lean_inc_ref(x_225); x_162 = x_221; x_163 = x_225; -x_164 = x_236; +x_164 = x_232; x_165 = x_223; -x_166 = x_232; +x_166 = x_234; x_167 = x_229; -x_168 = x_234; +x_168 = x_236; x_169 = x_225; x_170 = x_236; goto block_208; @@ -21467,12 +21459,12 @@ x_241 = lean_float_div(x_239, x_240); lean_inc_ref(x_225); x_209 = x_221; x_210 = x_225; -x_211 = x_236; -x_212 = x_223; -x_213 = x_229; -x_214 = x_232; +x_211 = x_223; +x_212 = x_232; +x_213 = x_234; +x_214 = x_229; x_215 = x_225; -x_216 = x_234; +x_216 = x_236; x_217 = x_241; goto block_220; } @@ -21486,12 +21478,12 @@ x_244 = lean_float_of_nat(x_243); lean_inc_ref(x_225); x_209 = x_221; x_210 = x_225; -x_211 = x_236; -x_212 = x_223; -x_213 = x_229; -x_214 = x_232; +x_211 = x_223; +x_212 = x_232; +x_213 = x_234; +x_214 = x_229; x_215 = x_225; -x_216 = x_234; +x_216 = x_236; x_217 = x_244; goto block_220; } @@ -23327,13 +23319,13 @@ x_24 = lean_box(0); x_25 = l_List_mapTR_loop___at___Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection_spec__5(x_23, x_24); x_26 = l_Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample___closed__8; x_27 = l_List_forIn_x27_loop___at___Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection_spec__6___redArg(x_25, x_26); -lean_inc(x_21); -lean_inc_ref(x_19); lean_inc(x_20); lean_inc_ref(x_22); +lean_inc(x_19); +lean_inc_ref(x_21); lean_inc(x_15); lean_inc(x_7); -x_28 = lean_apply_8(x_6, x_7, x_15, x_27, x_22, x_20, x_19, x_21, x_18); +x_28 = lean_apply_8(x_6, x_7, x_15, x_27, x_21, x_19, x_22, x_20, x_17); if (lean_obj_tag(x_28) == 0) { lean_object* x_29; @@ -23343,10 +23335,10 @@ if (lean_obj_tag(x_29) == 0) { uint8_t x_30; lean_dec_ref(x_22); -lean_dec(x_21); +lean_dec_ref(x_21); lean_dec(x_20); -lean_dec_ref(x_19); -lean_dec(x_17); +lean_dec(x_19); +lean_dec(x_18); lean_dec(x_15); lean_dec(x_7); x_30 = !lean_is_exclusive(x_28); @@ -23418,8 +23410,8 @@ lean_dec(x_41); x_45 = lean_ctor_get(x_15, 1); lean_inc_ref(x_45); lean_dec(x_15); -lean_inc(x_20); -x_46 = lean_apply_7(x_45, x_43, x_17, x_22, x_20, x_19, x_21, x_42); +lean_inc(x_19); +x_46 = lean_apply_7(x_45, x_43, x_18, x_21, x_19, x_22, x_20, x_42); if (lean_obj_tag(x_46) == 0) { lean_object* x_47; lean_object* x_48; lean_object* x_49; uint8_t x_50; @@ -23428,8 +23420,8 @@ lean_inc(x_47); x_48 = lean_ctor_get(x_46, 1); lean_inc(x_48); lean_dec_ref(x_46); -x_49 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection_spec__7___redArg(x_7, x_47, x_20, x_48); -lean_dec(x_20); +x_49 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection_spec__7___redArg(x_7, x_47, x_19, x_48); +lean_dec(x_19); x_50 = !lean_is_exclusive(x_49); if (x_50 == 0) { @@ -23458,7 +23450,7 @@ else uint8_t x_54; lean_dec_ref(x_44); lean_free_object(x_29); -lean_dec(x_20); +lean_dec(x_19); lean_dec(x_7); x_54 = !lean_is_exclusive(x_46); if (x_54 == 0) @@ -23497,8 +23489,8 @@ lean_dec(x_58); x_62 = lean_ctor_get(x_15, 1); lean_inc_ref(x_62); lean_dec(x_15); -lean_inc(x_20); -x_63 = lean_apply_7(x_62, x_60, x_17, x_22, x_20, x_19, x_21, x_59); +lean_inc(x_19); +x_63 = lean_apply_7(x_62, x_60, x_18, x_21, x_19, x_22, x_20, x_59); if (lean_obj_tag(x_63) == 0) { 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; @@ -23507,8 +23499,8 @@ lean_inc(x_64); x_65 = lean_ctor_get(x_63, 1); lean_inc(x_65); lean_dec_ref(x_63); -x_66 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection_spec__7___redArg(x_7, x_64, x_20, x_65); -lean_dec(x_20); +x_66 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection_spec__7___redArg(x_7, x_64, x_19, x_65); +lean_dec(x_19); x_67 = lean_ctor_get(x_66, 1); lean_inc(x_67); if (lean_is_exclusive(x_66)) { @@ -23534,7 +23526,7 @@ else { lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_dec_ref(x_61); -lean_dec(x_20); +lean_dec(x_19); lean_dec(x_7); x_71 = lean_ctor_get(x_63, 0); lean_inc(x_71); @@ -23564,10 +23556,10 @@ else { uint8_t x_75; lean_dec_ref(x_22); -lean_dec(x_21); +lean_dec_ref(x_21); lean_dec(x_20); -lean_dec_ref(x_19); -lean_dec(x_17); +lean_dec(x_19); +lean_dec(x_18); lean_dec(x_15); lean_dec(x_7); x_75 = !lean_is_exclusive(x_28); @@ -23613,12 +23605,12 @@ if (x_94 == 0) { lean_dec(x_92); lean_dec_ref(x_90); -x_17 = x_80; -x_18 = x_89; -x_19 = x_83; -x_20 = x_82; -x_21 = x_84; -x_22 = x_81; +x_17 = x_89; +x_18 = x_80; +x_19 = x_82; +x_20 = x_84; +x_21 = x_81; +x_22 = x_83; x_23 = x_91; goto block_79; } @@ -23630,12 +23622,12 @@ lean_dec(x_92); x_96 = 0; x_97 = l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection_spec__14(x_90, x_95, x_96, x_91); lean_dec_ref(x_90); -x_17 = x_80; -x_18 = x_89; -x_19 = x_83; -x_20 = x_82; -x_21 = x_84; -x_22 = x_81; +x_17 = x_89; +x_18 = x_80; +x_19 = x_82; +x_20 = x_84; +x_21 = x_81; +x_22 = x_83; x_23 = x_97; goto block_79; } diff --git a/stage0/stdlib/Lean/Elab/Tactic/Do/LetElim.c b/stage0/stdlib/Lean/Elab/Tactic/Do/LetElim.c index 7ebf9aaccf..d4f11b98a0 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Do/LetElim.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Do/LetElim.c @@ -2709,7 +2709,7 @@ lean_inc_ref(x_5); x_11 = l_Lean_Elab_Tactic_Do_countUses(x_2, x_5, 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; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_31; size_t x_32; uint8_t x_33; size_t x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_53; lean_object* x_54; lean_object* x_55; +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_31; lean_object* x_32; size_t x_33; lean_object* x_34; size_t x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_53; lean_object* x_54; lean_object* x_55; x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); x_13 = lean_ctor_get(x_11, 1); @@ -2804,7 +2804,7 @@ block_30: lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; x_22 = lean_box(0); x_23 = l_Lean_Elab_Tactic_Do_countUsesDecl___closed__1; -x_24 = l_Lean_Elab_Tactic_Do_Uses_toNat(x_19); +x_24 = l_Lean_Elab_Tactic_Do_Uses_toNat(x_18); x_25 = l_Lean_KVMap_setNat(x_22, x_23, x_24); x_26 = l_Lean_Elab_Tactic_Do_addMData(x_25, x_15); if (lean_is_scalar(x_17)) { @@ -2812,7 +2812,7 @@ if (lean_is_scalar(x_17)) { } else { x_27 = x_17; } -lean_ctor_set(x_27, 0, x_20); +lean_ctor_set(x_27, 0, x_19); lean_ctor_set(x_27, 1, x_21); x_28 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_28, 0, x_26); @@ -2823,7 +2823,7 @@ if (lean_is_scalar(x_14)) { x_29 = x_14; } lean_ctor_set(x_29, 0, x_28); -lean_ctor_set(x_29, 1, x_18); +lean_ctor_set(x_29, 1, x_20); return x_29; } block_52: @@ -2832,8 +2832,8 @@ lean_object* x_39; size_t x_40; size_t x_41; size_t x_42; lean_object* x_43; uin x_39 = lean_array_get_size(x_38); x_40 = lean_usize_of_nat(x_39); lean_dec(x_39); -x_41 = lean_usize_sub(x_40, x_32); -x_42 = lean_usize_land(x_34, x_41); +x_41 = lean_usize_sub(x_40, x_33); +x_42 = lean_usize_land(x_35, x_41); x_43 = lean_array_uget(x_38, x_42); x_44 = l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Elab_Tactic_Do_FVarUses_add_spec__0___redArg(x_1, x_43); if (x_44 == 0) @@ -2842,8 +2842,8 @@ lean_dec(x_43); lean_dec_ref(x_38); lean_dec(x_37); x_18 = x_31; -x_19 = x_33; -x_20 = x_35; +x_19 = x_32; +x_20 = x_34; x_21 = x_36; goto block_30; } @@ -2862,8 +2862,8 @@ x_51 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_51, 0, x_48); lean_ctor_set(x_51, 1, x_50); x_18 = x_31; -x_19 = x_33; -x_20 = x_35; +x_19 = x_32; +x_20 = x_34; x_21 = x_51; goto block_30; } @@ -2912,11 +2912,11 @@ x_80 = lean_ctor_get(x_78, 1); lean_inc_ref(x_80); x_81 = lean_unbox(x_74); lean_dec(x_74); -x_31 = x_55; -x_32 = x_69; -x_33 = x_81; -x_34 = x_67; -x_35 = x_53; +x_31 = x_81; +x_32 = x_53; +x_33 = x_69; +x_34 = x_55; +x_35 = x_67; x_36 = x_78; x_37 = x_79; x_38 = x_80; @@ -2929,11 +2929,11 @@ lean_dec_ref(x_54); lean_dec(x_16); x_82 = lean_unbox(x_74); lean_dec(x_74); -x_31 = x_55; -x_32 = x_69; -x_33 = x_82; -x_34 = x_67; -x_35 = x_53; +x_31 = x_82; +x_32 = x_53; +x_33 = x_69; +x_34 = x_55; +x_35 = x_67; x_36 = x_4; x_37 = x_56; x_38 = x_57; @@ -3625,896 +3625,900 @@ return x_32; } else { -lean_object* x_33; uint8_t x_34; lean_object* x_35; lean_object* x_36; uint64_t x_37; uint64_t x_38; uint64_t x_39; uint64_t x_40; uint64_t x_41; uint64_t x_42; uint64_t x_43; size_t x_44; size_t x_45; size_t x_46; lean_object* x_47; uint8_t x_48; +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_39; uint64_t x_40; uint64_t x_41; uint64_t x_42; uint64_t x_43; uint64_t x_44; uint64_t x_45; uint64_t x_46; size_t x_47; size_t x_48; size_t x_49; lean_object* x_50; uint8_t x_51; +x_33 = lean_unsigned_to_nat(1u); +x_34 = lean_nat_sub(x_17, x_33); lean_dec(x_17); -x_33 = lean_array_fget(x_2, x_16); +x_35 = lean_nat_sub(x_34, x_16); lean_dec(x_16); +lean_dec(x_34); +x_36 = lean_array_fget(x_2, x_35); +lean_dec(x_35); lean_dec_ref(x_2); -x_34 = 1; -x_35 = lean_box(0); -x_36 = l_Lean_Elab_Tactic_Do_countUsesDecl___closed__5; -x_37 = l_Lean_hashFVarId____x40_Lean_Expr___hyg_1560_(x_33); -x_38 = 32; -x_39 = lean_uint64_shift_right(x_37, x_38); -x_40 = lean_uint64_xor(x_37, x_39); -x_41 = 16; +x_37 = 1; +x_38 = lean_box(0); +x_39 = l_Lean_Elab_Tactic_Do_countUsesDecl___closed__5; +x_40 = l_Lean_hashFVarId____x40_Lean_Expr___hyg_1560_(x_36); +x_41 = 32; x_42 = lean_uint64_shift_right(x_40, x_41); x_43 = lean_uint64_xor(x_40, x_42); -x_44 = lean_uint64_to_usize(x_43); -x_45 = l_Lean_Elab_Tactic_Do_countUses___closed__8; -x_46 = lean_usize_land(x_44, x_45); -x_47 = lean_array_uget(x_36, x_46); -x_48 = l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Elab_Tactic_Do_FVarUses_add_spec__0___redArg(x_33, x_47); -if (x_48 == 0) +x_44 = 16; +x_45 = lean_uint64_shift_right(x_43, x_44); +x_46 = lean_uint64_xor(x_43, x_45); +x_47 = lean_uint64_to_usize(x_46); +x_48 = l_Lean_Elab_Tactic_Do_countUses___closed__8; +x_49 = lean_usize_land(x_47, x_48); +x_50 = lean_array_uget(x_39, x_49); +x_51 = l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Elab_Tactic_Do_FVarUses_add_spec__0___redArg(x_36, x_50); +if (x_51 == 0) { -lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55; -x_49 = lean_unsigned_to_nat(1u); -x_50 = lean_box(x_34); -x_51 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_51, 0, x_33); -lean_ctor_set(x_51, 1, x_50); -lean_ctor_set(x_51, 2, x_47); -x_52 = lean_array_uset(x_36, x_46, x_51); -x_53 = l_Lean_Elab_Tactic_Do_countUses___closed__10; -x_54 = lean_array_get_size(x_52); -x_55 = lean_nat_dec_le(x_53, x_54); -lean_dec(x_54); -if (x_55 == 0) +lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; uint8_t x_57; +x_52 = lean_box(x_37); +x_53 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_53, 0, x_36); +lean_ctor_set(x_53, 1, x_52); +lean_ctor_set(x_53, 2, x_50); +x_54 = lean_array_uset(x_39, x_49, x_53); +x_55 = l_Lean_Elab_Tactic_Do_countUses___closed__10; +x_56 = lean_array_get_size(x_54); +x_57 = lean_nat_dec_le(x_55, x_56); +lean_dec(x_56); +if (x_57 == 0) { -lean_object* x_56; lean_object* x_57; -x_56 = l_Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Elab_Tactic_Do_FVarUses_add_spec__1___redArg(x_52); -x_57 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_57, 0, x_49); -lean_ctor_set(x_57, 1, x_56); -x_8 = x_57; +lean_object* x_58; lean_object* x_59; +x_58 = l_Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Elab_Tactic_Do_FVarUses_add_spec__1___redArg(x_54); +x_59 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_59, 0, x_33); +lean_ctor_set(x_59, 1, x_58); +x_8 = x_59; goto block_11; } else { -lean_object* x_58; -x_58 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_58, 0, x_49); -lean_ctor_set(x_58, 1, x_52); -x_8 = x_58; +lean_object* x_60; +x_60 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_60, 0, x_33); +lean_ctor_set(x_60, 1, x_54); +x_8 = x_60; goto block_11; } } else { -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_59 = lean_unsigned_to_nat(0u); -x_60 = lean_array_uset(x_36, x_46, x_35); -x_61 = lean_box(x_34); -x_62 = l_Std_DHashMap_Internal_AssocList_replace___at___Lean_Elab_Tactic_Do_countUses_spec__2___redArg(x_33, x_61, x_47); -x_63 = lean_array_uset(x_60, x_46, x_62); -x_64 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_64, 0, x_59); -lean_ctor_set(x_64, 1, x_63); -x_8 = x_64; +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_61 = lean_unsigned_to_nat(0u); +x_62 = lean_array_uset(x_39, x_49, x_38); +x_63 = lean_box(x_37); +x_64 = l_Std_DHashMap_Internal_AssocList_replace___at___Lean_Elab_Tactic_Do_countUses_spec__2___redArg(x_36, x_63, x_50); +x_65 = lean_array_uset(x_62, x_49, x_64); +x_66 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_66, 0, x_61); +lean_ctor_set(x_66, 1, x_65); +x_8 = x_66; goto block_11; } } } case 1: { -lean_object* x_65; uint8_t x_66; lean_object* x_67; lean_object* x_68; uint64_t x_69; uint64_t x_70; uint64_t x_71; uint64_t x_72; uint64_t x_73; uint64_t x_74; uint64_t x_75; size_t x_76; size_t x_77; size_t x_78; lean_object* x_79; uint8_t x_80; +lean_object* x_67; uint8_t x_68; lean_object* x_69; lean_object* x_70; uint64_t x_71; uint64_t x_72; uint64_t x_73; uint64_t x_74; uint64_t x_75; uint64_t x_76; uint64_t x_77; size_t x_78; size_t x_79; size_t x_80; lean_object* x_81; uint8_t x_82; lean_dec_ref(x_2); -x_65 = lean_ctor_get(x_1, 0); -lean_inc(x_65); -x_66 = 1; -x_67 = lean_box(0); -x_68 = l_Lean_Elab_Tactic_Do_countUsesDecl___closed__5; -x_69 = l_Lean_hashFVarId____x40_Lean_Expr___hyg_1560_(x_65); -x_70 = 32; -x_71 = lean_uint64_shift_right(x_69, x_70); -x_72 = lean_uint64_xor(x_69, x_71); -x_73 = 16; -x_74 = lean_uint64_shift_right(x_72, x_73); -x_75 = lean_uint64_xor(x_72, x_74); -x_76 = lean_uint64_to_usize(x_75); -x_77 = l_Lean_Elab_Tactic_Do_countUses___closed__8; -x_78 = lean_usize_land(x_76, x_77); -x_79 = lean_array_uget(x_68, x_78); -x_80 = l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Elab_Tactic_Do_FVarUses_add_spec__0___redArg(x_65, x_79); -if (x_80 == 0) +x_67 = lean_ctor_get(x_1, 0); +lean_inc(x_67); +x_68 = 1; +x_69 = lean_box(0); +x_70 = l_Lean_Elab_Tactic_Do_countUsesDecl___closed__5; +x_71 = l_Lean_hashFVarId____x40_Lean_Expr___hyg_1560_(x_67); +x_72 = 32; +x_73 = lean_uint64_shift_right(x_71, x_72); +x_74 = lean_uint64_xor(x_71, x_73); +x_75 = 16; +x_76 = lean_uint64_shift_right(x_74, x_75); +x_77 = lean_uint64_xor(x_74, x_76); +x_78 = lean_uint64_to_usize(x_77); +x_79 = l_Lean_Elab_Tactic_Do_countUses___closed__8; +x_80 = lean_usize_land(x_78, x_79); +x_81 = lean_array_uget(x_70, x_80); +x_82 = l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Elab_Tactic_Do_FVarUses_add_spec__0___redArg(x_67, x_81); +if (x_82 == 0) { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; uint8_t x_87; -x_81 = lean_unsigned_to_nat(1u); -x_82 = lean_box(x_66); -x_83 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_83, 0, x_65); -lean_ctor_set(x_83, 1, x_82); -lean_ctor_set(x_83, 2, x_79); -x_84 = lean_array_uset(x_68, x_78, x_83); -x_85 = l_Lean_Elab_Tactic_Do_countUses___closed__10; -x_86 = lean_array_get_size(x_84); -x_87 = lean_nat_dec_le(x_85, x_86); -lean_dec(x_86); -if (x_87 == 0) +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; uint8_t x_89; +x_83 = lean_unsigned_to_nat(1u); +x_84 = lean_box(x_68); +x_85 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_85, 0, x_67); +lean_ctor_set(x_85, 1, x_84); +lean_ctor_set(x_85, 2, x_81); +x_86 = lean_array_uset(x_70, x_80, x_85); +x_87 = l_Lean_Elab_Tactic_Do_countUses___closed__10; +x_88 = lean_array_get_size(x_86); +x_89 = lean_nat_dec_le(x_87, x_88); +lean_dec(x_88); +if (x_89 == 0) { -lean_object* x_88; lean_object* x_89; -x_88 = l_Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Elab_Tactic_Do_FVarUses_add_spec__1___redArg(x_84); -x_89 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_89, 0, x_81); -lean_ctor_set(x_89, 1, x_88); -x_12 = x_89; +lean_object* x_90; lean_object* x_91; +x_90 = l_Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Elab_Tactic_Do_FVarUses_add_spec__1___redArg(x_86); +x_91 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_91, 0, x_83); +lean_ctor_set(x_91, 1, x_90); +x_12 = x_91; goto block_15; } else { -lean_object* x_90; -x_90 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_90, 0, x_81); -lean_ctor_set(x_90, 1, x_84); -x_12 = x_90; +lean_object* x_92; +x_92 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_92, 0, x_83); +lean_ctor_set(x_92, 1, x_86); +x_12 = x_92; goto block_15; } } else { -lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; -x_91 = lean_unsigned_to_nat(0u); -x_92 = lean_array_uset(x_68, x_78, x_67); -x_93 = lean_box(x_66); -x_94 = l_Std_DHashMap_Internal_AssocList_replace___at___Lean_Elab_Tactic_Do_countUses_spec__2___redArg(x_65, x_93, x_79); -x_95 = lean_array_uset(x_92, x_78, x_94); -x_96 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_96, 0, x_91); -lean_ctor_set(x_96, 1, x_95); -x_12 = x_96; +lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; +x_93 = lean_unsigned_to_nat(0u); +x_94 = lean_array_uset(x_70, x_80, x_69); +x_95 = lean_box(x_68); +x_96 = l_Std_DHashMap_Internal_AssocList_replace___at___Lean_Elab_Tactic_Do_countUses_spec__2___redArg(x_67, x_95, x_81); +x_97 = lean_array_uset(x_94, x_80, x_96); +x_98 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_98, 0, x_93); +lean_ctor_set(x_98, 1, x_97); +x_12 = x_98; goto block_15; } } case 5: { -lean_object* x_97; lean_object* x_98; lean_object* x_99; -x_97 = lean_ctor_get(x_1, 0); -lean_inc_ref(x_97); -x_98 = lean_ctor_get(x_1, 1); -lean_inc_ref(x_98); +lean_object* x_99; lean_object* x_100; lean_object* x_101; +x_99 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_99); +x_100 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_100); lean_dec_ref(x_1); lean_inc_ref(x_2); -x_99 = l_Lean_Elab_Tactic_Do_countUses(x_97, x_2, x_3, x_4, x_5, x_6, x_7); -if (lean_obj_tag(x_99) == 0) +x_101 = l_Lean_Elab_Tactic_Do_countUses(x_99, x_2, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_101) == 0) { -lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; -x_100 = lean_ctor_get(x_99, 0); -lean_inc(x_100); -x_101 = lean_ctor_get(x_99, 1); -lean_inc(x_101); -lean_dec_ref(x_99); -x_102 = lean_ctor_get(x_100, 0); +lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; +x_102 = lean_ctor_get(x_101, 0); lean_inc(x_102); -x_103 = lean_ctor_get(x_100, 1); +x_103 = lean_ctor_get(x_101, 1); lean_inc(x_103); -lean_dec(x_100); -x_104 = l_Lean_Elab_Tactic_Do_countUses(x_98, x_2, x_3, x_4, x_5, x_6, x_101); -if (lean_obj_tag(x_104) == 0) +lean_dec_ref(x_101); +x_104 = lean_ctor_get(x_102, 0); +lean_inc(x_104); +x_105 = lean_ctor_get(x_102, 1); +lean_inc(x_105); +lean_dec(x_102); +x_106 = l_Lean_Elab_Tactic_Do_countUses(x_100, x_2, x_3, x_4, x_5, x_6, x_103); +if (lean_obj_tag(x_106) == 0) { -uint8_t x_105; -x_105 = !lean_is_exclusive(x_104); -if (x_105 == 0) -{ -lean_object* x_106; uint8_t x_107; -x_106 = lean_ctor_get(x_104, 0); +uint8_t x_107; x_107 = !lean_is_exclusive(x_106); if (x_107 == 0) { -lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; +lean_object* x_108; uint8_t x_109; x_108 = lean_ctor_get(x_106, 0); -x_109 = lean_ctor_get(x_106, 1); -x_110 = l_Lean_Expr_app___override(x_102, x_108); -x_111 = l_Lean_Elab_Tactic_Do_FVarUses_add(x_103, x_109); -lean_dec(x_103); -lean_ctor_set(x_106, 1, x_111); -lean_ctor_set(x_106, 0, x_110); -return x_104; +x_109 = !lean_is_exclusive(x_108); +if (x_109 == 0) +{ +lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; +x_110 = lean_ctor_get(x_108, 0); +x_111 = lean_ctor_get(x_108, 1); +x_112 = l_Lean_Expr_app___override(x_104, x_110); +x_113 = l_Lean_Elab_Tactic_Do_FVarUses_add(x_105, x_111); +lean_dec(x_105); +lean_ctor_set(x_108, 1, x_113); +lean_ctor_set(x_108, 0, x_112); +return x_106; } else { -lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; -x_112 = lean_ctor_get(x_106, 0); -x_113 = lean_ctor_get(x_106, 1); -lean_inc(x_113); -lean_inc(x_112); -lean_dec(x_106); -x_114 = l_Lean_Expr_app___override(x_102, x_112); -x_115 = l_Lean_Elab_Tactic_Do_FVarUses_add(x_103, x_113); -lean_dec(x_103); -x_116 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_116, 0, x_114); -lean_ctor_set(x_116, 1, x_115); -lean_ctor_set(x_104, 0, x_116); -return x_104; +lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; +x_114 = lean_ctor_get(x_108, 0); +x_115 = lean_ctor_get(x_108, 1); +lean_inc(x_115); +lean_inc(x_114); +lean_dec(x_108); +x_116 = l_Lean_Expr_app___override(x_104, x_114); +x_117 = l_Lean_Elab_Tactic_Do_FVarUses_add(x_105, x_115); +lean_dec(x_105); +x_118 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_118, 0, x_116); +lean_ctor_set(x_118, 1, x_117); +lean_ctor_set(x_106, 0, x_118); +return x_106; } } else { -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; -x_117 = lean_ctor_get(x_104, 0); -x_118 = lean_ctor_get(x_104, 1); -lean_inc(x_118); -lean_inc(x_117); -lean_dec(x_104); -x_119 = lean_ctor_get(x_117, 0); -lean_inc(x_119); -x_120 = lean_ctor_get(x_117, 1); +lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; +x_119 = lean_ctor_get(x_106, 0); +x_120 = lean_ctor_get(x_106, 1); lean_inc(x_120); -if (lean_is_exclusive(x_117)) { - lean_ctor_release(x_117, 0); - lean_ctor_release(x_117, 1); - x_121 = x_117; +lean_inc(x_119); +lean_dec(x_106); +x_121 = lean_ctor_get(x_119, 0); +lean_inc(x_121); +x_122 = lean_ctor_get(x_119, 1); +lean_inc(x_122); +if (lean_is_exclusive(x_119)) { + lean_ctor_release(x_119, 0); + lean_ctor_release(x_119, 1); + x_123 = x_119; } else { - lean_dec_ref(x_117); - x_121 = lean_box(0); + lean_dec_ref(x_119); + x_123 = lean_box(0); } -x_122 = l_Lean_Expr_app___override(x_102, x_119); -x_123 = l_Lean_Elab_Tactic_Do_FVarUses_add(x_103, x_120); -lean_dec(x_103); -if (lean_is_scalar(x_121)) { - x_124 = lean_alloc_ctor(0, 2, 0); +x_124 = l_Lean_Expr_app___override(x_104, x_121); +x_125 = l_Lean_Elab_Tactic_Do_FVarUses_add(x_105, x_122); +lean_dec(x_105); +if (lean_is_scalar(x_123)) { + x_126 = lean_alloc_ctor(0, 2, 0); } else { - x_124 = x_121; + x_126 = x_123; } -lean_ctor_set(x_124, 0, x_122); -lean_ctor_set(x_124, 1, x_123); -x_125 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_125, 0, x_124); -lean_ctor_set(x_125, 1, x_118); -return x_125; +lean_ctor_set(x_126, 0, x_124); +lean_ctor_set(x_126, 1, x_125); +x_127 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_127, 0, x_126); +lean_ctor_set(x_127, 1, x_120); +return x_127; } } else { -lean_dec(x_103); -lean_dec(x_102); -return x_104; +lean_dec(x_105); +lean_dec(x_104); +return x_106; } } else { -lean_dec_ref(x_98); +lean_dec_ref(x_100); lean_dec_ref(x_2); -return x_99; +return x_101; } } case 6: { -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; -x_126 = lean_ctor_get(x_1, 0); -lean_inc(x_126); -x_127 = lean_ctor_get(x_1, 1); -lean_inc_ref(x_127); -x_128 = lean_ctor_get(x_1, 2); -lean_inc_ref(x_128); -x_129 = lean_ctor_get_uint8(x_1, sizeof(void*)*3 + 8); +lean_object* x_128; lean_object* x_129; lean_object* x_130; uint8_t x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; +x_128 = lean_ctor_get(x_1, 0); +lean_inc(x_128); +x_129 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_129); +x_130 = lean_ctor_get(x_1, 2); +lean_inc_ref(x_130); +x_131 = lean_ctor_get_uint8(x_1, sizeof(void*)*3 + 8); lean_dec_ref(x_1); -x_130 = l_Lean_mkFreshFVarId___at___Lean_Elab_Tactic_Do_countUses_spec__3(x_3, x_4, x_5, x_6, x_7); -x_131 = lean_ctor_get(x_130, 0); -lean_inc(x_131); -x_132 = lean_ctor_get(x_130, 1); -lean_inc(x_132); -lean_dec_ref(x_130); -lean_inc_ref(x_2); -x_133 = l_Lean_Elab_Tactic_Do_countUses(x_127, x_2, x_3, x_4, x_5, x_6, x_132); -if (lean_obj_tag(x_133) == 0) -{ -lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; -x_134 = lean_ctor_get(x_133, 0); +x_132 = l_Lean_mkFreshFVarId___at___Lean_Elab_Tactic_Do_countUses_spec__3(x_3, x_4, x_5, x_6, x_7); +x_133 = lean_ctor_get(x_132, 0); +lean_inc(x_133); +x_134 = lean_ctor_get(x_132, 1); lean_inc(x_134); -x_135 = lean_ctor_get(x_133, 1); -lean_inc(x_135); -lean_dec_ref(x_133); -x_136 = lean_ctor_get(x_134, 0); +lean_dec_ref(x_132); +lean_inc_ref(x_2); +x_135 = l_Lean_Elab_Tactic_Do_countUses(x_129, x_2, x_3, x_4, x_5, x_6, x_134); +if (lean_obj_tag(x_135) == 0) +{ +lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; +x_136 = lean_ctor_get(x_135, 0); lean_inc(x_136); -x_137 = lean_ctor_get(x_134, 1); +x_137 = lean_ctor_get(x_135, 1); lean_inc(x_137); -lean_dec(x_134); -lean_inc(x_131); -x_138 = lean_array_push(x_2, x_131); -x_139 = l_Lean_Elab_Tactic_Do_countUses(x_128, x_138, x_3, x_4, x_5, x_6, x_135); -if (lean_obj_tag(x_139) == 0) -{ -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_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; uint64_t x_155; uint64_t x_156; uint64_t x_157; uint64_t x_158; uint64_t x_159; uint64_t x_160; uint64_t x_161; size_t x_162; size_t x_163; size_t x_164; size_t x_165; size_t x_166; lean_object* x_167; uint8_t x_168; -x_140 = lean_ctor_get(x_139, 0); -lean_inc(x_140); -x_141 = lean_ctor_get(x_139, 1); -lean_inc(x_141); -if (lean_is_exclusive(x_139)) { - lean_ctor_release(x_139, 0); - lean_ctor_release(x_139, 1); - x_142 = x_139; -} else { - lean_dec_ref(x_139); - x_142 = lean_box(0); -} -x_143 = lean_ctor_get(x_140, 0); -lean_inc(x_143); -x_144 = lean_ctor_get(x_140, 1); -lean_inc(x_144); -if (lean_is_exclusive(x_140)) { - lean_ctor_release(x_140, 0); - lean_ctor_release(x_140, 1); - x_145 = x_140; -} else { - lean_dec_ref(x_140); - x_145 = lean_box(0); -} -x_151 = l_Lean_Elab_Tactic_Do_FVarUses_add(x_137, x_144); -lean_dec(x_137); -x_152 = lean_ctor_get(x_151, 0); -lean_inc(x_152); -x_153 = lean_ctor_get(x_151, 1); -lean_inc_ref(x_153); -x_154 = lean_array_get_size(x_153); -x_155 = l_Lean_hashFVarId____x40_Lean_Expr___hyg_1560_(x_131); -x_156 = 32; -x_157 = lean_uint64_shift_right(x_155, x_156); -x_158 = lean_uint64_xor(x_155, x_157); -x_159 = 16; -x_160 = lean_uint64_shift_right(x_158, x_159); -x_161 = lean_uint64_xor(x_158, x_160); -x_162 = lean_uint64_to_usize(x_161); -x_163 = lean_usize_of_nat(x_154); -lean_dec(x_154); -x_164 = 1; -x_165 = lean_usize_sub(x_163, x_164); -x_166 = lean_usize_land(x_162, x_165); -x_167 = lean_array_uget(x_153, x_166); -x_168 = l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Elab_Tactic_Do_FVarUses_add_spec__0___redArg(x_131, x_167); -if (x_168 == 0) -{ -lean_dec(x_167); -lean_dec_ref(x_153); -lean_dec(x_152); -lean_dec(x_131); -x_146 = x_151; -goto block_150; -} -else -{ -uint8_t x_169; -x_169 = !lean_is_exclusive(x_151); -if (x_169 == 0) -{ -lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; -x_170 = lean_ctor_get(x_151, 1); -lean_dec(x_170); -x_171 = lean_ctor_get(x_151, 0); -lean_dec(x_171); -x_172 = lean_box(0); -x_173 = lean_array_uset(x_153, x_166, x_172); -x_174 = lean_unsigned_to_nat(1u); -x_175 = lean_nat_sub(x_152, x_174); -lean_dec(x_152); -x_176 = l_Std_DHashMap_Internal_AssocList_erase___at___Lean_Elab_Tactic_Do_countUsesDecl_spec__1___redArg(x_131, x_167); -lean_dec(x_131); -x_177 = lean_array_uset(x_173, x_166, x_176); -lean_ctor_set(x_151, 1, x_177); -lean_ctor_set(x_151, 0, x_175); -x_146 = x_151; -goto block_150; -} -else -{ -lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; -lean_dec(x_151); -x_178 = lean_box(0); -x_179 = lean_array_uset(x_153, x_166, x_178); -x_180 = lean_unsigned_to_nat(1u); -x_181 = lean_nat_sub(x_152, x_180); -lean_dec(x_152); -x_182 = l_Std_DHashMap_Internal_AssocList_erase___at___Lean_Elab_Tactic_Do_countUsesDecl_spec__1___redArg(x_131, x_167); -lean_dec(x_131); -x_183 = lean_array_uset(x_179, x_166, x_182); -x_184 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_184, 0, x_181); -lean_ctor_set(x_184, 1, x_183); -x_146 = x_184; -goto block_150; -} -} -block_150: -{ -lean_object* x_147; lean_object* x_148; lean_object* x_149; -x_147 = l_Lean_Expr_lam___override(x_126, x_136, x_143, x_129); -if (lean_is_scalar(x_145)) { - x_148 = lean_alloc_ctor(0, 2, 0); -} else { - x_148 = x_145; -} -lean_ctor_set(x_148, 0, x_147); -lean_ctor_set(x_148, 1, x_146); -if (lean_is_scalar(x_142)) { - x_149 = lean_alloc_ctor(0, 2, 0); -} else { - x_149 = x_142; -} -lean_ctor_set(x_149, 0, x_148); -lean_ctor_set(x_149, 1, x_141); -return x_149; -} -} -else -{ -lean_dec(x_137); +lean_dec_ref(x_135); +x_138 = lean_ctor_get(x_136, 0); +lean_inc(x_138); +x_139 = lean_ctor_get(x_136, 1); +lean_inc(x_139); lean_dec(x_136); -lean_dec(x_131); -lean_dec(x_126); -return x_139; +lean_inc(x_133); +x_140 = lean_array_push(x_2, x_133); +x_141 = l_Lean_Elab_Tactic_Do_countUses(x_130, x_140, x_3, x_4, x_5, x_6, x_137); +if (lean_obj_tag(x_141) == 0) +{ +lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; uint64_t x_157; uint64_t x_158; uint64_t x_159; uint64_t x_160; uint64_t x_161; uint64_t x_162; uint64_t x_163; size_t x_164; size_t x_165; size_t x_166; size_t x_167; size_t x_168; lean_object* x_169; uint8_t x_170; +x_142 = lean_ctor_get(x_141, 0); +lean_inc(x_142); +x_143 = lean_ctor_get(x_141, 1); +lean_inc(x_143); +if (lean_is_exclusive(x_141)) { + lean_ctor_release(x_141, 0); + lean_ctor_release(x_141, 1); + x_144 = x_141; +} else { + lean_dec_ref(x_141); + x_144 = lean_box(0); +} +x_145 = lean_ctor_get(x_142, 0); +lean_inc(x_145); +x_146 = lean_ctor_get(x_142, 1); +lean_inc(x_146); +if (lean_is_exclusive(x_142)) { + lean_ctor_release(x_142, 0); + lean_ctor_release(x_142, 1); + x_147 = x_142; +} else { + lean_dec_ref(x_142); + x_147 = lean_box(0); +} +x_153 = l_Lean_Elab_Tactic_Do_FVarUses_add(x_139, x_146); +lean_dec(x_139); +x_154 = lean_ctor_get(x_153, 0); +lean_inc(x_154); +x_155 = lean_ctor_get(x_153, 1); +lean_inc_ref(x_155); +x_156 = lean_array_get_size(x_155); +x_157 = l_Lean_hashFVarId____x40_Lean_Expr___hyg_1560_(x_133); +x_158 = 32; +x_159 = lean_uint64_shift_right(x_157, x_158); +x_160 = lean_uint64_xor(x_157, x_159); +x_161 = 16; +x_162 = lean_uint64_shift_right(x_160, x_161); +x_163 = lean_uint64_xor(x_160, x_162); +x_164 = lean_uint64_to_usize(x_163); +x_165 = lean_usize_of_nat(x_156); +lean_dec(x_156); +x_166 = 1; +x_167 = lean_usize_sub(x_165, x_166); +x_168 = lean_usize_land(x_164, x_167); +x_169 = lean_array_uget(x_155, x_168); +x_170 = l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Elab_Tactic_Do_FVarUses_add_spec__0___redArg(x_133, x_169); +if (x_170 == 0) +{ +lean_dec(x_169); +lean_dec_ref(x_155); +lean_dec(x_154); +lean_dec(x_133); +x_148 = x_153; +goto block_152; +} +else +{ +uint8_t x_171; +x_171 = !lean_is_exclusive(x_153); +if (x_171 == 0) +{ +lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; +x_172 = lean_ctor_get(x_153, 1); +lean_dec(x_172); +x_173 = lean_ctor_get(x_153, 0); +lean_dec(x_173); +x_174 = lean_box(0); +x_175 = lean_array_uset(x_155, x_168, x_174); +x_176 = lean_unsigned_to_nat(1u); +x_177 = lean_nat_sub(x_154, x_176); +lean_dec(x_154); +x_178 = l_Std_DHashMap_Internal_AssocList_erase___at___Lean_Elab_Tactic_Do_countUsesDecl_spec__1___redArg(x_133, x_169); +lean_dec(x_133); +x_179 = lean_array_uset(x_175, x_168, x_178); +lean_ctor_set(x_153, 1, x_179); +lean_ctor_set(x_153, 0, x_177); +x_148 = x_153; +goto block_152; +} +else +{ +lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; +lean_dec(x_153); +x_180 = lean_box(0); +x_181 = lean_array_uset(x_155, x_168, x_180); +x_182 = lean_unsigned_to_nat(1u); +x_183 = lean_nat_sub(x_154, x_182); +lean_dec(x_154); +x_184 = l_Std_DHashMap_Internal_AssocList_erase___at___Lean_Elab_Tactic_Do_countUsesDecl_spec__1___redArg(x_133, x_169); +lean_dec(x_133); +x_185 = lean_array_uset(x_181, x_168, x_184); +x_186 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_186, 0, x_183); +lean_ctor_set(x_186, 1, x_185); +x_148 = x_186; +goto block_152; +} +} +block_152: +{ +lean_object* x_149; lean_object* x_150; lean_object* x_151; +x_149 = l_Lean_Expr_lam___override(x_128, x_138, x_145, x_131); +if (lean_is_scalar(x_147)) { + x_150 = lean_alloc_ctor(0, 2, 0); +} else { + x_150 = x_147; +} +lean_ctor_set(x_150, 0, x_149); +lean_ctor_set(x_150, 1, x_148); +if (lean_is_scalar(x_144)) { + x_151 = lean_alloc_ctor(0, 2, 0); +} else { + x_151 = x_144; +} +lean_ctor_set(x_151, 0, x_150); +lean_ctor_set(x_151, 1, x_143); +return x_151; } } else { -lean_dec(x_131); -lean_dec_ref(x_128); -lean_dec(x_126); +lean_dec(x_139); +lean_dec(x_138); +lean_dec(x_133); +lean_dec(x_128); +return x_141; +} +} +else +{ +lean_dec(x_133); +lean_dec_ref(x_130); +lean_dec(x_128); lean_dec_ref(x_2); -return x_133; +return x_135; } } case 7: { -lean_object* x_185; lean_object* x_186; lean_object* x_187; uint8_t x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; -x_185 = lean_ctor_get(x_1, 0); -lean_inc(x_185); -x_186 = lean_ctor_get(x_1, 1); -lean_inc_ref(x_186); -x_187 = lean_ctor_get(x_1, 2); -lean_inc_ref(x_187); -x_188 = lean_ctor_get_uint8(x_1, sizeof(void*)*3 + 8); +lean_object* x_187; lean_object* x_188; lean_object* x_189; uint8_t x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; +x_187 = lean_ctor_get(x_1, 0); +lean_inc(x_187); +x_188 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_188); +x_189 = lean_ctor_get(x_1, 2); +lean_inc_ref(x_189); +x_190 = lean_ctor_get_uint8(x_1, sizeof(void*)*3 + 8); lean_dec_ref(x_1); -x_189 = l_Lean_mkFreshFVarId___at___Lean_Elab_Tactic_Do_countUses_spec__3(x_3, x_4, x_5, x_6, x_7); -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_ref(x_189); -lean_inc_ref(x_2); -x_192 = l_Lean_Elab_Tactic_Do_countUses(x_186, x_2, x_3, x_4, x_5, x_6, x_191); -if (lean_obj_tag(x_192) == 0) -{ -lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; -x_193 = lean_ctor_get(x_192, 0); +x_191 = l_Lean_mkFreshFVarId___at___Lean_Elab_Tactic_Do_countUses_spec__3(x_3, x_4, x_5, x_6, x_7); +x_192 = lean_ctor_get(x_191, 0); +lean_inc(x_192); +x_193 = lean_ctor_get(x_191, 1); lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); -lean_inc(x_194); -lean_dec_ref(x_192); -x_195 = lean_ctor_get(x_193, 0); +lean_dec_ref(x_191); +lean_inc_ref(x_2); +x_194 = l_Lean_Elab_Tactic_Do_countUses(x_188, x_2, x_3, x_4, x_5, x_6, x_193); +if (lean_obj_tag(x_194) == 0) +{ +lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; +x_195 = lean_ctor_get(x_194, 0); lean_inc(x_195); -x_196 = lean_ctor_get(x_193, 1); +x_196 = lean_ctor_get(x_194, 1); lean_inc(x_196); -lean_dec(x_193); -lean_inc(x_190); -x_197 = lean_array_push(x_2, x_190); -x_198 = l_Lean_Elab_Tactic_Do_countUses(x_187, x_197, x_3, x_4, x_5, x_6, x_194); -if (lean_obj_tag(x_198) == 0) -{ -lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; uint64_t x_214; uint64_t x_215; uint64_t x_216; uint64_t x_217; uint64_t x_218; uint64_t x_219; uint64_t x_220; size_t x_221; size_t x_222; size_t x_223; size_t x_224; size_t x_225; lean_object* x_226; uint8_t x_227; -x_199 = lean_ctor_get(x_198, 0); -lean_inc(x_199); -x_200 = lean_ctor_get(x_198, 1); -lean_inc(x_200); -if (lean_is_exclusive(x_198)) { - lean_ctor_release(x_198, 0); - lean_ctor_release(x_198, 1); - x_201 = x_198; -} else { - lean_dec_ref(x_198); - x_201 = lean_box(0); -} -x_202 = lean_ctor_get(x_199, 0); -lean_inc(x_202); -x_203 = lean_ctor_get(x_199, 1); -lean_inc(x_203); -if (lean_is_exclusive(x_199)) { - lean_ctor_release(x_199, 0); - lean_ctor_release(x_199, 1); - x_204 = x_199; -} else { - lean_dec_ref(x_199); - x_204 = lean_box(0); -} -x_210 = l_Lean_Elab_Tactic_Do_FVarUses_add(x_196, x_203); -lean_dec(x_196); -x_211 = lean_ctor_get(x_210, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_210, 1); -lean_inc_ref(x_212); -x_213 = lean_array_get_size(x_212); -x_214 = l_Lean_hashFVarId____x40_Lean_Expr___hyg_1560_(x_190); -x_215 = 32; -x_216 = lean_uint64_shift_right(x_214, x_215); -x_217 = lean_uint64_xor(x_214, x_216); -x_218 = 16; -x_219 = lean_uint64_shift_right(x_217, x_218); -x_220 = lean_uint64_xor(x_217, x_219); -x_221 = lean_uint64_to_usize(x_220); -x_222 = lean_usize_of_nat(x_213); -lean_dec(x_213); -x_223 = 1; -x_224 = lean_usize_sub(x_222, x_223); -x_225 = lean_usize_land(x_221, x_224); -x_226 = lean_array_uget(x_212, x_225); -x_227 = l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Elab_Tactic_Do_FVarUses_add_spec__0___redArg(x_190, x_226); -if (x_227 == 0) -{ -lean_dec(x_226); -lean_dec_ref(x_212); -lean_dec(x_211); -lean_dec(x_190); -x_205 = x_210; -goto block_209; -} -else -{ -uint8_t x_228; -x_228 = !lean_is_exclusive(x_210); -if (x_228 == 0) -{ -lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; -x_229 = lean_ctor_get(x_210, 1); -lean_dec(x_229); -x_230 = lean_ctor_get(x_210, 0); -lean_dec(x_230); -x_231 = lean_box(0); -x_232 = lean_array_uset(x_212, x_225, x_231); -x_233 = lean_unsigned_to_nat(1u); -x_234 = lean_nat_sub(x_211, x_233); -lean_dec(x_211); -x_235 = l_Std_DHashMap_Internal_AssocList_erase___at___Lean_Elab_Tactic_Do_countUsesDecl_spec__1___redArg(x_190, x_226); -lean_dec(x_190); -x_236 = lean_array_uset(x_232, x_225, x_235); -lean_ctor_set(x_210, 1, x_236); -lean_ctor_set(x_210, 0, x_234); -x_205 = x_210; -goto block_209; -} -else -{ -lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; -lean_dec(x_210); -x_237 = lean_box(0); -x_238 = lean_array_uset(x_212, x_225, x_237); -x_239 = lean_unsigned_to_nat(1u); -x_240 = lean_nat_sub(x_211, x_239); -lean_dec(x_211); -x_241 = l_Std_DHashMap_Internal_AssocList_erase___at___Lean_Elab_Tactic_Do_countUsesDecl_spec__1___redArg(x_190, x_226); -lean_dec(x_190); -x_242 = lean_array_uset(x_238, x_225, x_241); -x_243 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_243, 0, x_240); -lean_ctor_set(x_243, 1, x_242); -x_205 = x_243; -goto block_209; -} -} -block_209: -{ -lean_object* x_206; lean_object* x_207; lean_object* x_208; -x_206 = l_Lean_Expr_forallE___override(x_185, x_195, x_202, x_188); -if (lean_is_scalar(x_204)) { - x_207 = lean_alloc_ctor(0, 2, 0); -} else { - x_207 = x_204; -} -lean_ctor_set(x_207, 0, x_206); -lean_ctor_set(x_207, 1, x_205); -if (lean_is_scalar(x_201)) { - x_208 = lean_alloc_ctor(0, 2, 0); -} else { - x_208 = x_201; -} -lean_ctor_set(x_208, 0, x_207); -lean_ctor_set(x_208, 1, x_200); -return x_208; -} -} -else -{ -lean_dec(x_196); +lean_dec_ref(x_194); +x_197 = lean_ctor_get(x_195, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_195, 1); +lean_inc(x_198); lean_dec(x_195); -lean_dec(x_190); -lean_dec(x_185); -return x_198; +lean_inc(x_192); +x_199 = lean_array_push(x_2, x_192); +x_200 = l_Lean_Elab_Tactic_Do_countUses(x_189, x_199, x_3, x_4, x_5, x_6, x_196); +if (lean_obj_tag(x_200) == 0) +{ +lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; uint64_t x_216; uint64_t x_217; uint64_t x_218; uint64_t x_219; uint64_t x_220; uint64_t x_221; uint64_t x_222; size_t x_223; size_t x_224; size_t x_225; size_t x_226; size_t x_227; lean_object* x_228; uint8_t x_229; +x_201 = lean_ctor_get(x_200, 0); +lean_inc(x_201); +x_202 = lean_ctor_get(x_200, 1); +lean_inc(x_202); +if (lean_is_exclusive(x_200)) { + lean_ctor_release(x_200, 0); + lean_ctor_release(x_200, 1); + x_203 = x_200; +} else { + lean_dec_ref(x_200); + x_203 = lean_box(0); +} +x_204 = lean_ctor_get(x_201, 0); +lean_inc(x_204); +x_205 = lean_ctor_get(x_201, 1); +lean_inc(x_205); +if (lean_is_exclusive(x_201)) { + lean_ctor_release(x_201, 0); + lean_ctor_release(x_201, 1); + x_206 = x_201; +} else { + lean_dec_ref(x_201); + x_206 = lean_box(0); +} +x_212 = l_Lean_Elab_Tactic_Do_FVarUses_add(x_198, x_205); +lean_dec(x_198); +x_213 = lean_ctor_get(x_212, 0); +lean_inc(x_213); +x_214 = lean_ctor_get(x_212, 1); +lean_inc_ref(x_214); +x_215 = lean_array_get_size(x_214); +x_216 = l_Lean_hashFVarId____x40_Lean_Expr___hyg_1560_(x_192); +x_217 = 32; +x_218 = lean_uint64_shift_right(x_216, x_217); +x_219 = lean_uint64_xor(x_216, x_218); +x_220 = 16; +x_221 = lean_uint64_shift_right(x_219, x_220); +x_222 = lean_uint64_xor(x_219, x_221); +x_223 = lean_uint64_to_usize(x_222); +x_224 = lean_usize_of_nat(x_215); +lean_dec(x_215); +x_225 = 1; +x_226 = lean_usize_sub(x_224, x_225); +x_227 = lean_usize_land(x_223, x_226); +x_228 = lean_array_uget(x_214, x_227); +x_229 = l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Elab_Tactic_Do_FVarUses_add_spec__0___redArg(x_192, x_228); +if (x_229 == 0) +{ +lean_dec(x_228); +lean_dec_ref(x_214); +lean_dec(x_213); +lean_dec(x_192); +x_207 = x_212; +goto block_211; +} +else +{ +uint8_t x_230; +x_230 = !lean_is_exclusive(x_212); +if (x_230 == 0) +{ +lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; +x_231 = lean_ctor_get(x_212, 1); +lean_dec(x_231); +x_232 = lean_ctor_get(x_212, 0); +lean_dec(x_232); +x_233 = lean_box(0); +x_234 = lean_array_uset(x_214, x_227, x_233); +x_235 = lean_unsigned_to_nat(1u); +x_236 = lean_nat_sub(x_213, x_235); +lean_dec(x_213); +x_237 = l_Std_DHashMap_Internal_AssocList_erase___at___Lean_Elab_Tactic_Do_countUsesDecl_spec__1___redArg(x_192, x_228); +lean_dec(x_192); +x_238 = lean_array_uset(x_234, x_227, x_237); +lean_ctor_set(x_212, 1, x_238); +lean_ctor_set(x_212, 0, x_236); +x_207 = x_212; +goto block_211; +} +else +{ +lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; +lean_dec(x_212); +x_239 = lean_box(0); +x_240 = lean_array_uset(x_214, x_227, x_239); +x_241 = lean_unsigned_to_nat(1u); +x_242 = lean_nat_sub(x_213, x_241); +lean_dec(x_213); +x_243 = l_Std_DHashMap_Internal_AssocList_erase___at___Lean_Elab_Tactic_Do_countUsesDecl_spec__1___redArg(x_192, x_228); +lean_dec(x_192); +x_244 = lean_array_uset(x_240, x_227, x_243); +x_245 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_245, 0, x_242); +lean_ctor_set(x_245, 1, x_244); +x_207 = x_245; +goto block_211; +} +} +block_211: +{ +lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_208 = l_Lean_Expr_forallE___override(x_187, x_197, x_204, x_190); +if (lean_is_scalar(x_206)) { + x_209 = lean_alloc_ctor(0, 2, 0); +} else { + x_209 = x_206; +} +lean_ctor_set(x_209, 0, x_208); +lean_ctor_set(x_209, 1, x_207); +if (lean_is_scalar(x_203)) { + x_210 = lean_alloc_ctor(0, 2, 0); +} else { + x_210 = x_203; +} +lean_ctor_set(x_210, 0, x_209); +lean_ctor_set(x_210, 1, x_202); +return x_210; } } else { -lean_dec(x_190); -lean_dec_ref(x_187); -lean_dec(x_185); +lean_dec(x_198); +lean_dec(x_197); +lean_dec(x_192); +lean_dec(x_187); +return x_200; +} +} +else +{ +lean_dec(x_192); +lean_dec_ref(x_189); +lean_dec(x_187); lean_dec_ref(x_2); -return x_192; +return x_194; } } case 8: { -lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; uint8_t x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; -x_244 = lean_ctor_get(x_1, 0); -lean_inc(x_244); -x_245 = lean_ctor_get(x_1, 1); -lean_inc_ref(x_245); -x_246 = lean_ctor_get(x_1, 2); -lean_inc_ref(x_246); -x_247 = lean_ctor_get(x_1, 3); +lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; uint8_t x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; +x_246 = lean_ctor_get(x_1, 0); +lean_inc(x_246); +x_247 = lean_ctor_get(x_1, 1); lean_inc_ref(x_247); -x_248 = lean_ctor_get_uint8(x_1, sizeof(void*)*4 + 8); +x_248 = lean_ctor_get(x_1, 2); +lean_inc_ref(x_248); +x_249 = lean_ctor_get(x_1, 3); +lean_inc_ref(x_249); +x_250 = lean_ctor_get_uint8(x_1, sizeof(void*)*4 + 8); lean_dec_ref(x_1); -x_249 = l_Lean_mkFreshFVarId___at___Lean_Elab_Tactic_Do_countUses_spec__3(x_3, x_4, x_5, x_6, x_7); -x_250 = lean_ctor_get(x_249, 0); -lean_inc(x_250); -x_251 = lean_ctor_get(x_249, 1); -lean_inc(x_251); -lean_dec_ref(x_249); -lean_inc(x_250); +x_251 = l_Lean_mkFreshFVarId___at___Lean_Elab_Tactic_Do_countUses_spec__3(x_3, x_4, x_5, x_6, x_7); +x_252 = lean_ctor_get(x_251, 0); +lean_inc(x_252); +x_253 = lean_ctor_get(x_251, 1); +lean_inc(x_253); +lean_dec_ref(x_251); +lean_inc(x_252); lean_inc_ref(x_2); -x_252 = lean_array_push(x_2, x_250); -x_253 = l_Lean_Elab_Tactic_Do_countUses(x_247, x_252, x_3, x_4, x_5, x_6, x_251); -if (lean_obj_tag(x_253) == 0) +x_254 = lean_array_push(x_2, x_252); +x_255 = l_Lean_Elab_Tactic_Do_countUses(x_249, x_254, x_3, x_4, x_5, x_6, x_253); +if (lean_obj_tag(x_255) == 0) { -lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; -x_254 = lean_ctor_get(x_253, 0); -lean_inc(x_254); -x_255 = lean_ctor_get(x_253, 1); -lean_inc(x_255); -lean_dec_ref(x_253); -x_256 = lean_ctor_get(x_254, 0); +lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; +x_256 = lean_ctor_get(x_255, 0); lean_inc(x_256); -x_257 = lean_ctor_get(x_254, 1); +x_257 = lean_ctor_get(x_255, 1); lean_inc(x_257); -lean_dec(x_254); -x_258 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_258, 0, x_246); -x_259 = l_Lean_Elab_Tactic_Do_countUsesDecl(x_250, x_245, x_258, x_257, x_2, x_3, x_4, x_5, x_6, x_255); -lean_dec(x_250); -if (lean_obj_tag(x_259) == 0) +lean_dec_ref(x_255); +x_258 = lean_ctor_get(x_256, 0); +lean_inc(x_258); +x_259 = lean_ctor_get(x_256, 1); +lean_inc(x_259); +lean_dec(x_256); +x_260 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_260, 0, x_248); +x_261 = l_Lean_Elab_Tactic_Do_countUsesDecl(x_252, x_247, x_260, x_259, x_2, x_3, x_4, x_5, x_6, x_257); +lean_dec(x_252); +if (lean_obj_tag(x_261) == 0) { -lean_object* x_260; lean_object* x_261; lean_object* x_262; -x_260 = lean_ctor_get(x_259, 0); -lean_inc(x_260); -x_261 = lean_ctor_get(x_260, 1); -lean_inc(x_261); +lean_object* x_262; lean_object* x_263; lean_object* x_264; x_262 = lean_ctor_get(x_261, 0); lean_inc(x_262); -if (lean_obj_tag(x_262) == 0) -{ -lean_object* x_263; lean_object* x_264; lean_object* x_265; -lean_dec(x_261); -lean_dec(x_260); -lean_dec(x_256); -lean_dec(x_244); -x_263 = lean_ctor_get(x_259, 1); +x_263 = lean_ctor_get(x_262, 1); lean_inc(x_263); -lean_dec_ref(x_259); -x_264 = l_Lean_Elab_Tactic_Do_countUses___closed__12; -x_265 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_countUses_spec__0___redArg(x_264, x_3, x_4, x_5, x_6, x_263); -return x_265; +x_264 = lean_ctor_get(x_263, 0); +lean_inc(x_264); +if (lean_obj_tag(x_264) == 0) +{ +lean_object* x_265; lean_object* x_266; lean_object* x_267; +lean_dec(x_263); +lean_dec(x_262); +lean_dec(x_258); +lean_dec(x_246); +x_265 = lean_ctor_get(x_261, 1); +lean_inc(x_265); +lean_dec_ref(x_261); +x_266 = l_Lean_Elab_Tactic_Do_countUses___closed__12; +x_267 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_countUses_spec__0___redArg(x_266, x_3, x_4, x_5, x_6, x_265); +return x_267; } else { -uint8_t x_266; -x_266 = !lean_is_exclusive(x_259); -if (x_266 == 0) +uint8_t x_268; +x_268 = !lean_is_exclusive(x_261); +if (x_268 == 0) { -lean_object* x_267; lean_object* x_268; uint8_t x_269; -x_267 = lean_ctor_get(x_259, 0); -lean_dec(x_267); -x_268 = lean_ctor_get(x_260, 0); -lean_inc(x_268); -lean_dec(x_260); -x_269 = !lean_is_exclusive(x_261); -if (x_269 == 0) +lean_object* x_269; lean_object* x_270; uint8_t x_271; +x_269 = lean_ctor_get(x_261, 0); +lean_dec(x_269); +x_270 = lean_ctor_get(x_262, 0); +lean_inc(x_270); +lean_dec(x_262); +x_271 = !lean_is_exclusive(x_263); +if (x_271 == 0) { -lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_270 = lean_ctor_get(x_261, 0); -lean_dec(x_270); -x_271 = lean_ctor_get(x_262, 0); -lean_inc(x_271); -lean_dec_ref(x_262); -x_272 = l_Lean_Expr_letE___override(x_244, x_268, x_271, x_256, x_248); -lean_ctor_set(x_261, 0, x_272); -lean_ctor_set(x_259, 0, x_261); -return x_259; -} -else -{ -lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; -x_273 = lean_ctor_get(x_261, 1); +lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_272 = lean_ctor_get(x_263, 0); +lean_dec(x_272); +x_273 = lean_ctor_get(x_264, 0); lean_inc(x_273); -lean_dec(x_261); -x_274 = lean_ctor_get(x_262, 0); -lean_inc(x_274); -lean_dec_ref(x_262); -x_275 = l_Lean_Expr_letE___override(x_244, x_268, x_274, x_256, x_248); -x_276 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_276, 0, x_275); -lean_ctor_set(x_276, 1, x_273); -lean_ctor_set(x_259, 0, x_276); -return x_259; +lean_dec_ref(x_264); +x_274 = l_Lean_Expr_letE___override(x_246, x_270, x_273, x_258, x_250); +lean_ctor_set(x_263, 0, x_274); +lean_ctor_set(x_261, 0, x_263); +return x_261; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_263, 1); +lean_inc(x_275); +lean_dec(x_263); +x_276 = lean_ctor_get(x_264, 0); +lean_inc(x_276); +lean_dec_ref(x_264); +x_277 = l_Lean_Expr_letE___override(x_246, x_270, x_276, x_258, x_250); +x_278 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_278, 0, x_277); +lean_ctor_set(x_278, 1, x_275); +lean_ctor_set(x_261, 0, x_278); +return x_261; } } else { -lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; -x_277 = lean_ctor_get(x_259, 1); -lean_inc(x_277); -lean_dec(x_259); -x_278 = lean_ctor_get(x_260, 0); -lean_inc(x_278); -lean_dec(x_260); +lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; x_279 = lean_ctor_get(x_261, 1); lean_inc(x_279); -if (lean_is_exclusive(x_261)) { - lean_ctor_release(x_261, 0); - lean_ctor_release(x_261, 1); - x_280 = x_261; -} else { - lean_dec_ref(x_261); - x_280 = lean_box(0); -} -x_281 = lean_ctor_get(x_262, 0); +lean_dec(x_261); +x_280 = lean_ctor_get(x_262, 0); +lean_inc(x_280); +lean_dec(x_262); +x_281 = lean_ctor_get(x_263, 1); lean_inc(x_281); -lean_dec_ref(x_262); -x_282 = l_Lean_Expr_letE___override(x_244, x_278, x_281, x_256, x_248); -if (lean_is_scalar(x_280)) { - x_283 = lean_alloc_ctor(0, 2, 0); +if (lean_is_exclusive(x_263)) { + lean_ctor_release(x_263, 0); + lean_ctor_release(x_263, 1); + x_282 = x_263; } else { - x_283 = x_280; + lean_dec_ref(x_263); + x_282 = lean_box(0); } -lean_ctor_set(x_283, 0, x_282); -lean_ctor_set(x_283, 1, x_279); -x_284 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_284, 0, x_283); -lean_ctor_set(x_284, 1, x_277); -return x_284; +x_283 = lean_ctor_get(x_264, 0); +lean_inc(x_283); +lean_dec_ref(x_264); +x_284 = l_Lean_Expr_letE___override(x_246, x_280, x_283, x_258, x_250); +if (lean_is_scalar(x_282)) { + x_285 = lean_alloc_ctor(0, 2, 0); +} else { + x_285 = x_282; +} +lean_ctor_set(x_285, 0, x_284); +lean_ctor_set(x_285, 1, x_281); +x_286 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_286, 0, x_285); +lean_ctor_set(x_286, 1, x_279); +return x_286; } } } else { -uint8_t x_285; -lean_dec(x_256); -lean_dec(x_244); -x_285 = !lean_is_exclusive(x_259); -if (x_285 == 0) +uint8_t x_287; +lean_dec(x_258); +lean_dec(x_246); +x_287 = !lean_is_exclusive(x_261); +if (x_287 == 0) { -return x_259; +return x_261; } else { -lean_object* x_286; lean_object* x_287; lean_object* x_288; -x_286 = lean_ctor_get(x_259, 0); -x_287 = lean_ctor_get(x_259, 1); -lean_inc(x_287); -lean_inc(x_286); -lean_dec(x_259); -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; +lean_object* x_288; lean_object* x_289; lean_object* x_290; +x_288 = lean_ctor_get(x_261, 0); +x_289 = lean_ctor_get(x_261, 1); +lean_inc(x_289); +lean_inc(x_288); +lean_dec(x_261); +x_290 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_290, 0, x_288); +lean_ctor_set(x_290, 1, x_289); +return x_290; } } } else { -lean_dec(x_250); -lean_dec_ref(x_246); -lean_dec_ref(x_245); -lean_dec(x_244); +lean_dec(x_252); +lean_dec_ref(x_248); +lean_dec_ref(x_247); +lean_dec(x_246); lean_dec_ref(x_2); -return x_253; +return x_255; } } case 10: { -lean_object* x_289; lean_object* x_290; lean_object* x_291; -x_289 = lean_ctor_get(x_1, 0); -lean_inc(x_289); -x_290 = lean_ctor_get(x_1, 1); -lean_inc_ref(x_290); +lean_object* x_291; lean_object* x_292; lean_object* x_293; +x_291 = lean_ctor_get(x_1, 0); +lean_inc(x_291); +x_292 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_292); lean_dec_ref(x_1); -x_291 = l_Lean_Elab_Tactic_Do_countUses(x_290, x_2, x_3, x_4, x_5, x_6, x_7); -if (lean_obj_tag(x_291) == 0) +x_293 = l_Lean_Elab_Tactic_Do_countUses(x_292, x_2, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_293) == 0) { -uint8_t x_292; -x_292 = !lean_is_exclusive(x_291); -if (x_292 == 0) +uint8_t x_294; +x_294 = !lean_is_exclusive(x_293); +if (x_294 == 0) { -lean_object* x_293; lean_object* x_294; lean_object* x_295; -x_293 = lean_ctor_get(x_291, 0); -x_294 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_countUses___lam__0), 2, 1); -lean_closure_set(x_294, 0, x_289); -x_295 = l_Lean_Elab_Tactic_Do_over1Of2___redArg(x_294, x_293); -lean_ctor_set(x_291, 0, x_295); -return x_291; +lean_object* x_295; lean_object* x_296; lean_object* x_297; +x_295 = lean_ctor_get(x_293, 0); +x_296 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_countUses___lam__0), 2, 1); +lean_closure_set(x_296, 0, x_291); +x_297 = l_Lean_Elab_Tactic_Do_over1Of2___redArg(x_296, x_295); +lean_ctor_set(x_293, 0, x_297); +return x_293; +} +else +{ +lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; +x_298 = lean_ctor_get(x_293, 0); +x_299 = lean_ctor_get(x_293, 1); +lean_inc(x_299); +lean_inc(x_298); +lean_dec(x_293); +x_300 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_countUses___lam__0), 2, 1); +lean_closure_set(x_300, 0, x_291); +x_301 = l_Lean_Elab_Tactic_Do_over1Of2___redArg(x_300, x_298); +x_302 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_302, 0, x_301); +lean_ctor_set(x_302, 1, x_299); +return x_302; +} } else { -lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; -x_296 = lean_ctor_get(x_291, 0); -x_297 = lean_ctor_get(x_291, 1); -lean_inc(x_297); -lean_inc(x_296); lean_dec(x_291); -x_298 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_countUses___lam__0), 2, 1); -lean_closure_set(x_298, 0, x_289); -x_299 = l_Lean_Elab_Tactic_Do_over1Of2___redArg(x_298, x_296); -x_300 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_300, 0, x_299); -lean_ctor_set(x_300, 1, x_297); -return x_300; -} -} -else -{ -lean_dec(x_289); -return x_291; +return x_293; } } case 11: { -lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; -x_301 = lean_ctor_get(x_1, 0); -lean_inc(x_301); -x_302 = lean_ctor_get(x_1, 1); -lean_inc(x_302); -x_303 = lean_ctor_get(x_1, 2); -lean_inc_ref(x_303); +lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_ctor_get(x_1, 0); +lean_inc(x_303); +x_304 = lean_ctor_get(x_1, 1); +lean_inc(x_304); +x_305 = lean_ctor_get(x_1, 2); +lean_inc_ref(x_305); lean_dec_ref(x_1); -x_304 = l_Lean_Elab_Tactic_Do_countUses(x_303, x_2, x_3, x_4, x_5, x_6, x_7); -if (lean_obj_tag(x_304) == 0) +x_306 = l_Lean_Elab_Tactic_Do_countUses(x_305, x_2, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_305; -x_305 = !lean_is_exclusive(x_304); -if (x_305 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_306; lean_object* x_307; lean_object* x_308; -x_306 = lean_ctor_get(x_304, 0); -x_307 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_countUses___lam__1), 3, 2); -lean_closure_set(x_307, 0, x_301); -lean_closure_set(x_307, 1, x_302); -x_308 = l_Lean_Elab_Tactic_Do_over1Of2___redArg(x_307, x_306); -lean_ctor_set(x_304, 0, x_308); -return x_304; +lean_object* x_308; lean_object* x_309; lean_object* x_310; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_countUses___lam__1), 3, 2); +lean_closure_set(x_309, 0, x_303); +lean_closure_set(x_309, 1, x_304); +x_310 = l_Lean_Elab_Tactic_Do_over1Of2___redArg(x_309, x_308); +lean_ctor_set(x_306, 0, x_310); +return x_306; +} +else +{ +lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; +x_311 = lean_ctor_get(x_306, 0); +x_312 = lean_ctor_get(x_306, 1); +lean_inc(x_312); +lean_inc(x_311); +lean_dec(x_306); +x_313 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_countUses___lam__1), 3, 2); +lean_closure_set(x_313, 0, x_303); +lean_closure_set(x_313, 1, x_304); +x_314 = l_Lean_Elab_Tactic_Do_over1Of2___redArg(x_313, x_311); +x_315 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_315, 0, x_314); +lean_ctor_set(x_315, 1, x_312); +return x_315; +} } else { -lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; -x_309 = lean_ctor_get(x_304, 0); -x_310 = lean_ctor_get(x_304, 1); -lean_inc(x_310); -lean_inc(x_309); lean_dec(x_304); -x_311 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_countUses___lam__1), 3, 2); -lean_closure_set(x_311, 0, x_301); -lean_closure_set(x_311, 1, x_302); -x_312 = l_Lean_Elab_Tactic_Do_over1Of2___redArg(x_311, x_309); -x_313 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_313, 0, x_312); -lean_ctor_set(x_313, 1, x_310); -return x_313; -} -} -else -{ -lean_dec(x_302); -lean_dec(x_301); -return x_304; +lean_dec(x_303); +return x_306; } } default: { -lean_object* x_314; lean_object* x_315; lean_object* x_316; +lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_dec_ref(x_2); -x_314 = l_Lean_Elab_Tactic_Do_countUsesDecl___closed__6; -x_315 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_315, 0, x_1); -lean_ctor_set(x_315, 1, x_314); -x_316 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_316, 0, x_315); -lean_ctor_set(x_316, 1, x_7); -return x_316; +x_316 = l_Lean_Elab_Tactic_Do_countUsesDecl___closed__6; +x_317 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_317, 0, x_1); +lean_ctor_set(x_317, 1, x_316); +x_318 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_318, 0, x_317); +lean_ctor_set(x_318, 1, x_7); +return x_318; } } block_11: diff --git a/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Cases.c b/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Cases.c index 3c1f9c3222..f8ebc6da96 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Cases.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Cases.c @@ -50,6 +50,7 @@ lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMCases_spec__9_spec__9___redArg(lean_object*, lean_object*, lean_object*); size_t lean_uint64_to_usize(uint64_t); uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___Lean_Elab_Tactic_Do_ProofMode_elabMCases_spec__1___redArg___lam__2(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_initFn___closed__7____x40_Lean_Elab_Tactic_Do_ProofMode_Cases___hyg_6_; extern lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; @@ -154,7 +155,6 @@ lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); lean_object* l_Lean_Meta_synthInstance(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_ProofMode_Cases_0__Lean_Elab_Tactic_Do_ProofMode_elabMCases___regBuiltin_Lean_Elab_Tactic_Do_ProofMode_elabMCases__1___closed__1; -lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_focusHypWithInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mCasesExists___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -220,6 +220,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mCasesCore___redArg___l LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMCases_spec__9_spec__9_spec__9_spec__9_spec__9___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at___Lean_Elab_Tactic_Do_ProofMode_elabMCases_spec__1_spec__7___redArg(lean_object*, lean_object*); lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_initFn___closed__3____x40_Lean_Elab_Tactic_Do_ProofMode_Cases___hyg_6_; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_synthIsAnd___closed__0; lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); @@ -287,7 +288,6 @@ lean_object* lean_array_get_size(lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mCasesCore___redArg___lam__2___closed__0; static lean_object* l___private_Lean_Elab_Tactic_Do_ProofMode_Cases_0__Lean_Elab_Tactic_Do_ProofMode_elabMCases___regBuiltin_Lean_Elab_Tactic_Do_ProofMode_elabMCases__1___closed__0; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_initFn___closed__9____x40_Lean_Elab_Tactic_Do_ProofMode_Cases___hyg_6_; -lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mCasesCore___redArg___closed__15; lean_object* l_Lean_Meta_mkLambdaFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1338,7 +1338,7 @@ lean_inc_ref(x_6); lean_inc_ref(x_5); lean_inc_ref(x_3); lean_inc(x_1); -x_12 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(x_1, x_3, x_5, x_6); +x_12 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_1, x_3, x_5, x_6); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -1395,7 +1395,7 @@ lean_inc_ref(x_3); x_34 = l_Lean_mkApp7(x_33, x_3, x_14, x_5, x_6, x_4, x_15, x_20); lean_inc_ref(x_3); lean_inc(x_1); -x_35 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_3, x_5, x_6); +x_35 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_3, x_5, x_6); x_36 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_36, 0, x_1); lean_ctor_set(x_36, 1, x_3); @@ -1430,7 +1430,7 @@ lean_inc_ref(x_3); x_43 = l_Lean_mkApp7(x_42, x_3, x_14, x_5, x_6, x_4, x_15, x_20); lean_inc_ref(x_3); lean_inc(x_1); -x_44 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_3, x_5, x_6); +x_44 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_3, x_5, x_6); x_45 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_45, 0, x_1); lean_ctor_set(x_45, 1, x_3); @@ -1483,7 +1483,7 @@ lean_inc_ref(x_3); x_60 = l_Lean_mkApp7(x_59, x_3, x_14, x_5, x_6, x_4, x_15, x_20); lean_inc_ref(x_3); lean_inc(x_1); -x_61 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_3, x_5, x_6); +x_61 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_3, x_5, x_6); x_62 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_62, 0, x_1); lean_ctor_set(x_62, 1, x_3); @@ -1609,7 +1609,7 @@ lean_inc_ref(x_3); x_91 = l_Lean_mkApp7(x_90, x_3, x_70, x_5, x_6, x_4, x_71, x_76); lean_inc_ref(x_3); lean_inc(x_1); -x_92 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_3, x_5, x_6); +x_92 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_3, x_5, x_6); x_93 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_93, 0, x_1); lean_ctor_set(x_93, 1, x_3); @@ -2204,7 +2204,7 @@ lean_inc(x_39); lean_inc_ref(x_9); x_59 = l_Lean_mkApp6(x_58, x_9, x_1, x_39, x_10, x_52, x_50); lean_inc(x_51); -x_60 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_51, x_9, x_39, x_11); +x_60 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_51, x_9, x_39, x_11); lean_ctor_set(x_33, 2, x_60); lean_ctor_set(x_36, 1, x_59); lean_ctor_set(x_36, 0, x_33); @@ -2241,7 +2241,7 @@ lean_inc(x_39); lean_inc_ref(x_9); x_70 = l_Lean_mkApp6(x_69, x_9, x_1, x_39, x_10, x_64, x_61); lean_inc(x_62); -x_71 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_62, x_9, x_39, x_11); +x_71 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_62, x_9, x_39, x_11); x_72 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_72, 0, x_62); lean_ctor_set(x_72, 1, x_63); @@ -2296,7 +2296,7 @@ lean_inc(x_39); lean_inc_ref(x_9); x_84 = l_Lean_mkApp6(x_83, x_9, x_1, x_39, x_10, x_77, x_73); lean_inc(x_75); -x_85 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_75, x_9, x_39, x_11); +x_85 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_75, x_9, x_39, x_11); if (lean_is_scalar(x_78)) { x_86 = lean_alloc_ctor(0, 4, 0); } else { @@ -2476,7 +2476,7 @@ lean_inc(x_96); lean_inc_ref(x_9); x_116 = l_Lean_mkApp6(x_115, x_9, x_1, x_96, x_10, x_109, x_104); lean_inc(x_107); -x_117 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_107, x_9, x_96, x_11); +x_117 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_107, x_9, x_96, x_11); if (lean_is_scalar(x_110)) { x_118 = lean_alloc_ctor(0, 4, 0); } else { @@ -2727,7 +2727,7 @@ lean_inc(x_138); lean_inc_ref(x_9); x_159 = l_Lean_mkApp6(x_158, x_9, x_1, x_138, x_10, x_152, x_147); lean_inc(x_150); -x_160 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_150, x_9, x_138, x_11); +x_160 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_150, x_9, x_138, x_11); if (lean_is_scalar(x_153)) { x_161 = lean_alloc_ctor(0, 4, 0); } else { @@ -2994,7 +2994,7 @@ lean_inc(x_184); lean_inc_ref(x_9); x_206 = l_Lean_mkApp6(x_205, x_9, x_1, x_184, x_10, x_198, x_193); lean_inc(x_196); -x_207 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_196, x_9, x_184, x_11); +x_207 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_196, x_9, x_184, x_11); if (lean_is_scalar(x_199)) { x_208 = lean_alloc_ctor(0, 4, 0); } else { @@ -3280,7 +3280,7 @@ lean_inc(x_233); lean_inc_ref(x_9); x_256 = l_Lean_mkApp6(x_255, x_9, x_1, x_233, x_10, x_247, x_242); lean_inc(x_245); -x_257 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_245, x_9, x_233, x_11); +x_257 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_245, x_9, x_233, x_11); if (lean_is_scalar(x_248)) { x_258 = lean_alloc_ctor(0, 4, 0); } else { @@ -3993,7 +3993,7 @@ lean_inc_ref(x_5); lean_inc_ref(x_3); lean_inc_ref(x_2); lean_inc(x_1); -x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(x_1, x_2, x_3, x_5); +x_11 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_1, x_2, x_3, x_5); x_12 = !lean_is_exclusive(x_11); if (x_12 == 0) { @@ -4073,8 +4073,8 @@ x_37 = l_Lean_mkApp8(x_36, x_2, x_29, x_3, x_5, x_13, x_32, x_14, x_24); lean_inc(x_29); lean_inc_ref(x_2); lean_inc(x_1); -x_38 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_29, x_3); -x_39 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_38, x_5); +x_38 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_29, x_3); +x_39 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_38, x_5); lean_ctor_set(x_23, 2, x_39); lean_ctor_set(x_27, 1, x_29); lean_ctor_set(x_27, 0, x_20); @@ -4109,8 +4109,8 @@ x_46 = l_Lean_mkApp8(x_45, x_2, x_29, x_3, x_5, x_13, x_42, x_14, x_24); lean_inc(x_29); lean_inc_ref(x_2); lean_inc(x_1); -x_47 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_29, x_3); -x_48 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_47, x_5); +x_47 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_29, x_3); +x_48 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_47, x_5); x_49 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_49, 0, x_40); lean_ctor_set(x_49, 1, x_41); @@ -4163,8 +4163,8 @@ x_58 = l_Lean_mkApp8(x_57, x_2, x_50, x_3, x_5, x_13, x_53, x_14, x_24); lean_inc(x_50); lean_inc_ref(x_2); lean_inc(x_1); -x_59 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_50, x_3); -x_60 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_59, x_5); +x_59 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_50, x_3); +x_60 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_59, x_5); if (lean_is_scalar(x_54)) { x_61 = lean_alloc_ctor(0, 4, 0); } else { @@ -4234,8 +4234,8 @@ x_74 = l_Lean_mkApp8(x_73, x_2, x_65, x_3, x_5, x_13, x_69, x_14, x_24); lean_inc(x_65); lean_inc_ref(x_2); lean_inc(x_1); -x_75 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_65, x_3); -x_76 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_75, x_5); +x_75 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_65, x_3); +x_76 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_75, x_5); if (lean_is_scalar(x_70)) { x_77 = lean_alloc_ctor(0, 4, 0); } else { @@ -4367,8 +4367,8 @@ x_99 = l_Lean_mkApp8(x_98, x_2, x_90, x_3, x_5, x_13, x_94, x_14, x_85); lean_inc(x_90); lean_inc_ref(x_2); lean_inc(x_1); -x_100 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_90, x_3); -x_101 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_100, x_5); +x_100 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_90, x_3); +x_101 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_100, x_5); if (lean_is_scalar(x_95)) { x_102 = lean_alloc_ctor(0, 4, 0); } else { @@ -4517,8 +4517,8 @@ x_127 = l_Lean_mkApp8(x_126, x_2, x_118, x_3, x_5, x_13, x_122, x_14, x_112); lean_inc(x_118); lean_inc_ref(x_2); lean_inc(x_1); -x_128 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_118, x_3); -x_129 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_128, x_5); +x_128 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_118, x_3); +x_129 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_128, x_5); if (lean_is_scalar(x_123)) { x_130 = lean_alloc_ctor(0, 4, 0); } else { @@ -4734,8 +4734,8 @@ x_168 = l_Lean_mkApp8(x_167, x_2, x_158, x_3, x_5, x_143, x_162, x_144, x_152); lean_inc(x_158); lean_inc_ref(x_2); lean_inc(x_1); -x_169 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_158, x_3); -x_170 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_169, x_5); +x_169 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_158, x_3); +x_170 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_169, x_5); if (lean_is_scalar(x_163)) { x_171 = lean_alloc_ctor(0, 4, 0); } else { @@ -4938,8 +4938,8 @@ lean_inc_ref(x_2); x_33 = l_Lean_mkApp6(x_32, x_2, x_22, x_6, x_5, x_27, x_24); lean_inc_ref(x_2); lean_inc(x_1); -x_34 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_22, x_5); -x_35 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_34, x_6); +x_34 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_22, x_5); +x_35 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_34, x_6); lean_ctor_set(x_19, 2, x_35); lean_ctor_set(x_18, 1, x_33); return x_14; @@ -4969,8 +4969,8 @@ lean_inc_ref(x_2); x_43 = l_Lean_mkApp6(x_42, x_2, x_22, x_6, x_5, x_38, x_24); lean_inc_ref(x_2); lean_inc(x_1); -x_44 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_22, x_5); -x_45 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_44, x_6); +x_44 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_22, x_5); +x_45 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_44, x_6); x_46 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_46, 0, x_36); lean_ctor_set(x_46, 1, x_37); @@ -5018,8 +5018,8 @@ lean_inc_ref(x_2); x_56 = l_Lean_mkApp6(x_55, x_2, x_22, x_6, x_5, x_50, x_47); lean_inc_ref(x_2); lean_inc(x_1); -x_57 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_22, x_5); -x_58 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_57, x_6); +x_57 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_22, x_5); +x_58 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_57, x_6); if (lean_is_scalar(x_51)) { x_59 = lean_alloc_ctor(0, 4, 0); } else { @@ -5085,8 +5085,8 @@ lean_inc_ref(x_2); x_73 = l_Lean_mkApp6(x_72, x_2, x_62, x_6, x_5, x_67, x_63); lean_inc_ref(x_2); lean_inc(x_1); -x_74 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_62, x_5); -x_75 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_74, x_6); +x_74 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_62, x_5); +x_75 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_74, x_6); if (lean_is_scalar(x_68)) { x_76 = lean_alloc_ctor(0, 4, 0); } else { @@ -5173,8 +5173,8 @@ lean_inc_ref(x_2); x_95 = l_Lean_mkApp6(x_94, x_2, x_84, x_6, x_5, x_89, x_85); lean_inc_ref(x_2); lean_inc(x_1); -x_96 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_84, x_5); -x_97 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_96, x_6); +x_96 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_84, x_5); +x_97 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_96, x_6); if (lean_is_scalar(x_90)) { x_98 = lean_alloc_ctor(0, 4, 0); } else { @@ -6234,7 +6234,7 @@ lean_inc_ref(x_3); lean_inc(x_70); lean_inc_ref(x_2); x_78 = l_Lean_mkApp5(x_77, x_2, x_70, x_3, x_73, x_65); -x_79 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_70, x_3); +x_79 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_70, x_3); lean_ctor_set(x_64, 2, x_79); lean_ctor_set(x_68, 1, x_78); lean_ctor_set(x_68, 0, x_64); @@ -6265,7 +6265,7 @@ lean_inc_ref(x_3); lean_inc(x_70); lean_inc_ref(x_2); x_86 = l_Lean_mkApp5(x_85, x_2, x_70, x_3, x_82, x_65); -x_87 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_70, x_3); +x_87 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_70, x_3); x_88 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_88, 0, x_80); lean_ctor_set(x_88, 1, x_81); @@ -6313,7 +6313,7 @@ lean_inc_ref(x_3); lean_inc(x_89); lean_inc_ref(x_2); x_97 = l_Lean_mkApp5(x_96, x_2, x_89, x_3, x_92, x_65); -x_98 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_89, x_3); +x_98 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_89, x_3); if (lean_is_scalar(x_93)) { x_99 = lean_alloc_ctor(0, 4, 0); } else { @@ -6378,7 +6378,7 @@ lean_inc_ref(x_3); lean_inc(x_103); lean_inc_ref(x_2); x_112 = l_Lean_mkApp5(x_111, x_2, x_103, x_3, x_107, x_65); -x_113 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_103, x_3); +x_113 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_103, x_3); if (lean_is_scalar(x_108)) { x_114 = lean_alloc_ctor(0, 4, 0); } else { @@ -6501,7 +6501,7 @@ lean_inc_ref(x_3); lean_inc(x_127); lean_inc_ref(x_2); x_136 = l_Lean_mkApp5(x_135, x_2, x_127, x_3, x_131, x_122); -x_137 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_127, x_3); +x_137 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_127, x_3); if (lean_is_scalar(x_132)) { x_138 = lean_alloc_ctor(0, 4, 0); } else { @@ -6640,7 +6640,7 @@ lean_inc_ref(x_3); lean_inc(x_154); lean_inc_ref(x_2); x_164 = l_Lean_mkApp5(x_163, x_2, x_154, x_3, x_158, x_148); -x_165 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_154, x_3); +x_165 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_154, x_3); if (lean_is_scalar(x_159)) { x_166 = lean_alloc_ctor(0, 4, 0); } else { @@ -6935,7 +6935,7 @@ lean_inc_ref(x_3); lean_inc(x_222); lean_inc_ref(x_2); x_231 = l_Lean_mkApp8(x_230, x_2, x_222, x_206, x_207, x_3, x_226, x_208, x_223); -x_232 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_222, x_3); +x_232 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_222, x_3); lean_ctor_set(x_217, 2, x_232); lean_ctor_set(x_216, 1, x_231); lean_ctor_set(x_215, 1, x_216); @@ -6963,7 +6963,7 @@ lean_inc_ref(x_3); lean_inc(x_222); lean_inc_ref(x_2); x_239 = l_Lean_mkApp8(x_238, x_2, x_222, x_206, x_207, x_3, x_235, x_208, x_223); -x_240 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_222, x_3); +x_240 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_222, x_3); x_241 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_241, 0, x_233); lean_ctor_set(x_241, 1, x_234); @@ -7010,7 +7010,7 @@ lean_inc_ref(x_3); lean_inc(x_242); lean_inc_ref(x_2); x_251 = l_Lean_mkApp8(x_250, x_2, x_242, x_206, x_207, x_3, x_246, x_208, x_243); -x_252 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_242, x_3); +x_252 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_242, x_3); if (lean_is_scalar(x_247)) { x_253 = lean_alloc_ctor(0, 4, 0); } else { @@ -7073,7 +7073,7 @@ lean_inc_ref(x_3); lean_inc(x_256); lean_inc_ref(x_2); x_266 = l_Lean_mkApp8(x_265, x_2, x_256, x_206, x_207, x_3, x_261, x_208, x_257); -x_267 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_256, x_3); +x_267 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_256, x_3); if (lean_is_scalar(x_262)) { x_268 = lean_alloc_ctor(0, 4, 0); } else { @@ -7152,7 +7152,7 @@ lean_inc_ref(x_3); lean_inc(x_273); lean_inc_ref(x_2); x_284 = l_Lean_mkApp8(x_283, x_2, x_273, x_206, x_207, x_3, x_279, x_208, x_275); -x_285 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_273, x_3); +x_285 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_273, x_3); if (lean_is_scalar(x_280)) { x_286 = lean_alloc_ctor(0, 4, 0); } else { @@ -7292,7 +7292,7 @@ lean_inc_ref(x_3); lean_inc(x_302); lean_inc_ref(x_2); x_314 = l_Lean_mkApp8(x_313, x_2, x_302, x_206, x_207, x_3, x_308, x_208, x_304); -x_315 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_302, x_3); +x_315 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_302, x_3); if (lean_is_scalar(x_309)) { x_316 = lean_alloc_ctor(0, 4, 0); } else { @@ -7604,7 +7604,7 @@ lean_inc_ref(x_3); lean_inc(x_366); lean_inc_ref(x_2); x_378 = l_Lean_mkApp8(x_377, x_2, x_366, x_353, x_354, x_3, x_372, x_355, x_368); -x_379 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_366, x_3); +x_379 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_366, x_3); if (lean_is_scalar(x_373)) { x_380 = lean_alloc_ctor(0, 4, 0); } else { @@ -7921,7 +7921,7 @@ lean_inc_ref(x_421); x_449 = l_Lean_mkApp3(x_448, x_421, x_422, x_429); lean_inc(x_442); lean_inc_ref(x_421); -x_450 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_421, x_442, x_449); +x_450 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_421, x_442, x_449); lean_inc_ref(x_445); lean_ctor_set(x_427, 2, x_450); x_451 = l_Lean_Elab_Tactic_Do_ProofMode_mCasesCore___redArg___closed__17; @@ -7956,7 +7956,7 @@ lean_inc_ref(x_421); x_459 = l_Lean_mkApp3(x_458, x_421, x_422, x_429); lean_inc(x_442); lean_inc_ref(x_421); -x_460 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_421, x_442, x_459); +x_460 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_421, x_442, x_459); lean_inc_ref(x_456); x_461 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_461, 0, x_454); @@ -8008,7 +8008,7 @@ lean_inc_ref(x_421); x_472 = l_Lean_mkApp3(x_471, x_421, x_422, x_429); lean_inc(x_465); lean_inc_ref(x_421); -x_473 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_421, x_465, x_472); +x_473 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_421, x_465, x_472); lean_inc_ref(x_468); if (lean_is_scalar(x_469)) { x_474 = lean_alloc_ctor(0, 4, 0); @@ -8077,7 +8077,7 @@ lean_inc_ref(x_421); x_489 = l_Lean_mkApp3(x_488, x_421, x_422, x_429); lean_inc(x_481); lean_inc_ref(x_421); -x_490 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_421, x_481, x_489); +x_490 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_421, x_481, x_489); lean_inc_ref(x_485); if (lean_is_scalar(x_486)) { x_491 = lean_alloc_ctor(0, 4, 0); @@ -8204,7 +8204,7 @@ lean_inc_ref(x_421); x_514 = l_Lean_mkApp3(x_513, x_421, x_422, x_429); lean_inc(x_506); lean_inc_ref(x_421); -x_515 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_421, x_506, x_514); +x_515 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_421, x_506, x_514); lean_inc_ref(x_510); if (lean_is_scalar(x_511)) { x_516 = lean_alloc_ctor(0, 4, 0); @@ -8482,7 +8482,7 @@ lean_inc_ref(x_541); x_570 = l_Lean_mkApp3(x_569, x_541, x_542, x_549); lean_inc(x_561); lean_inc_ref(x_541); -x_571 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_541, x_561, x_570); +x_571 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_541, x_561, x_570); lean_inc_ref(x_565); if (lean_is_scalar(x_566)) { x_572 = lean_alloc_ctor(0, 4, 0); @@ -8811,7 +8811,7 @@ lean_inc_ref(x_603); x_633 = l_Lean_mkApp3(x_632, x_603, x_604, x_611); lean_inc(x_624); lean_inc_ref(x_603); -x_634 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_603, x_624, x_633); +x_634 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_603, x_624, x_633); lean_inc_ref(x_628); if (lean_is_scalar(x_629)) { x_635 = lean_alloc_ctor(0, 4, 0); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Focus.c b/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Focus.c index 5037b354d5..ad30c502ca 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Focus.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Focus.c @@ -25,6 +25,7 @@ static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_focusHyp___closed__0; lean_object* l_Lean_mkApp8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_instInhabitedFocusResult; +lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_parseHyp_x3f(lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_focusHyp___closed__2; @@ -49,7 +50,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_FocusResult_restGoal___ static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_focusHyp___closed__11; lean_object* lean_st_ref_get(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_focusHypWithInfo___closed__4; -lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_focusHypWithInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_focusHyp___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_focusHyp___boxed(lean_object*, lean_object*); @@ -65,6 +65,7 @@ lean_object* l_Lean_Name_mkStr6(lean_object*, lean_object*, lean_object*, lean_o LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_FocusResult_refl(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_parseEmptyHyp_x3f(lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_MGoal_focusHypWithInfo_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_focusHyp___closed__6; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_focusHypWithInfo___closed__2; lean_object* lean_panic_fn(lean_object*, lean_object*); @@ -75,7 +76,6 @@ lean_object* l_Lean_Name_mkStr1(lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_FocusResult_rewriteHyps___closed__0; lean_object* lean_string_append(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_focusHyp___closed__13; -lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_FocusResult_rewriteHyps___closed__1; lean_object* lean_expr_dbg_to_string(lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_instInhabitedFocusResult___closed__2; @@ -374,7 +374,7 @@ lean_inc(x_24); lean_inc_ref(x_31); lean_inc(x_22); lean_inc(x_21); -x_33 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(x_21, x_22, x_31, x_24); +x_33 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_21, x_22, x_31, x_24); x_34 = !lean_is_exclusive(x_33); if (x_34 == 0) { @@ -430,7 +430,7 @@ lean_inc(x_24); lean_inc_ref(x_49); lean_inc(x_22); lean_inc(x_21); -x_51 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(x_21, x_22, x_49, x_24); +x_51 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_21, x_22, x_49, x_24); x_52 = lean_ctor_get(x_51, 0); lean_inc(x_52); x_53 = lean_ctor_get(x_51, 1); @@ -490,7 +490,7 @@ lean_inc(x_24); lean_inc_ref(x_63); lean_inc(x_22); lean_inc(x_21); -x_66 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(x_21, x_22, x_63, x_24); +x_66 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_21, x_22, x_63, x_24); x_67 = lean_ctor_get(x_66, 0); lean_inc(x_67); x_68 = lean_ctor_get(x_66, 1); @@ -559,7 +559,7 @@ lean_inc_ref(x_81); lean_inc(x_23); lean_inc(x_22); lean_inc(x_21); -x_83 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(x_21, x_22, x_23, x_81); +x_83 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_21, x_22, x_23, x_81); x_84 = !lean_is_exclusive(x_83); if (x_84 == 0) { @@ -615,7 +615,7 @@ lean_inc_ref(x_99); lean_inc(x_23); lean_inc(x_22); lean_inc(x_21); -x_101 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(x_21, x_22, x_23, x_99); +x_101 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_21, x_22, x_23, x_99); x_102 = lean_ctor_get(x_101, 0); lean_inc(x_102); x_103 = lean_ctor_get(x_101, 1); @@ -675,7 +675,7 @@ lean_inc_ref(x_113); lean_inc(x_23); lean_inc(x_22); lean_inc(x_21); -x_116 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(x_21, x_22, x_23, x_113); +x_116 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_21, x_22, x_23, x_113); x_117 = lean_ctor_get(x_116, 0); lean_inc(x_117); x_118 = lean_ctor_get(x_116, 1); @@ -943,7 +943,7 @@ x_8 = l_Lean_Expr_const___override(x_5, x_7); lean_inc_ref(x_4); lean_inc_ref(x_3); lean_inc_ref(x_2); -x_9 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_3, x_4); +x_9 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_3, x_4); x_10 = l_Lean_mkAppB(x_8, x_2, x_9); x_11 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_11, 0, x_4); @@ -1016,7 +1016,7 @@ lean_inc_ref(x_8); lean_dec_ref(x_1); lean_inc_ref(x_5); lean_inc(x_4); -x_9 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_4, x_5, x_8, x_7); +x_9 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_4, x_5, x_8, x_7); lean_ctor_set(x_2, 2, x_9); return x_2; } @@ -1037,7 +1037,7 @@ lean_inc_ref(x_14); lean_dec_ref(x_1); lean_inc_ref(x_11); lean_inc(x_10); -x_15 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_10, x_11, x_14, x_13); +x_15 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_10, x_11, x_14, x_13); x_16 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_16, 0, x_10); lean_ctor_set(x_16, 1, x_11); @@ -1097,7 +1097,7 @@ lean_ctor_set(x_13, 0, x_4); lean_ctor_set(x_13, 1, x_12); x_14 = l_Lean_Expr_const___override(x_11, x_13); lean_inc_ref(x_5); -x_15 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_4, x_5, x_9, x_8); +x_15 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_4, x_5, x_9, x_8); x_16 = l_Lean_mkApp6(x_14, x_5, x_6, x_15, x_7, x_10, x_3); return x_16; } diff --git a/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Frame.c b/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Frame.c index 4cdfe232de..09c650c315 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Frame.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Frame.c @@ -13,14 +13,14 @@ #ifdef __cplusplus extern "C" { #endif -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg___lam__0___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__7_spec__7_spec__7___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4_spec__4___redArg(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___private_Lean_Elab_Tactic_Do_ProofMode_Frame_0__Lean_Elab_Tactic_Do_ProofMode_elabMFrame___regBuiltin_Lean_Elab_Tactic_Do_ProofMode_elabMFrame__1___closed__0; lean_object* lean_mk_empty_array_with_capacity(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__2___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___lam__0(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_shift_right(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__13___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -31,7 +31,7 @@ LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_t LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__10___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__7_spec__7_spec__7___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_le(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -44,6 +44,7 @@ LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_t LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; lean_object* l_Lean_Expr_sort___override(lean_object*); +lean_object* l_Lean_Meta_trySynthInstance(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLambdaFVars___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_array_push(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_parseHyp_x3f(lean_object*); @@ -83,7 +84,7 @@ lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4_spec__4_spec__4___redArg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_ProofMode_Frame_0__Lean_Elab_Tactic_Do_ProofMode_elabMFrame___regBuiltin_Lean_Elab_Tactic_Do_ProofMode_elabMFrame__1___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getMainGoal___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__7_spec__7(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___closed__0; @@ -99,21 +100,20 @@ lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withMVarContextImp(lean_ob lean_object* l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_parseAnd_x3f(lean_object*); lean_object* l_Lean_Meta_mkFreshExprMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_replaceMainGoal___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__0(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_Do_ProofMode_mkAnd_x21(lean_object*, lean_object*, lean_object*, lean_object*); static size_t l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__7_spec__7_spec__7___redArg___closed__1; static lean_object* l___private_Lean_Elab_Tactic_Do_ProofMode_Frame_0__Lean_Elab_Tactic_Do_ProofMode_elabMFrame___regBuiltin_Lean_Elab_Tactic_Do_ProofMode_elabMFrame__1___closed__4; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__3___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_ProofMode_Frame_0__Lean_Elab_Tactic_Do_ProofMode_elabMFrame___regBuiltin_Lean_Elab_Tactic_Do_ProofMode_elabMFrame__1___closed__6; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___closed__0; LEAN_EXPORT lean_object* l_panic___at___Lean_Elab_Tactic_Do_ProofMode_transferHypNames_label_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_elabMFrame___redArg___lam__0___closed__1; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__10___closed__0; -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg___closed__0; uint8_t lean_name_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_elabMFrame___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -123,7 +123,7 @@ lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(lean_o LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4_spec__4_spec__4(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_ProofMode_Frame_0__Lean_Elab_Tactic_Do_ProofMode_elabMFrame___regBuiltin_Lean_Elab_Tactic_Do_ProofMode_elabMFrame__1___closed__3; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__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*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__3(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__13(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_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__7___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); @@ -144,14 +144,14 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__7_spec__7_spec__7_spec__9___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkCollisionNode___redArg(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l_Lean_Meta_synthInstance_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__7_spec__7_spec__7_spec__7___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__0(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg(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_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___closed__1; lean_object* l_Lean_PersistentHashMap_mkEmptyEntries(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__7___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__7_spec__7_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -171,7 +171,7 @@ size_t lean_usize_add(size_t, size_t); lean_object* l_mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_transferHypNames_label___closed__3; lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr1(lean_object*); size_t lean_usize_shift_left(size_t, size_t); lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); @@ -195,7 +195,7 @@ static size_t l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_i lean_object* lean_nat_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Loop_forIn_loop___at___Lean_Elab_Tactic_Do_ProofMode_transferHypNames_label_spec__1___closed__0; -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___lam__0___boxed(lean_object**); lean_object* l_Lean_Expr_mvarId_x21(lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_parseMGoal_x3f(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_elabMFrame___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -205,7 +205,6 @@ static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_elabMFrame___redArg___lam__0 static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_elabMFrame___redArg___lam__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_elabMFrame___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_land(size_t, size_t); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg___lam__0(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_Do_ProofMode_mFrameCore___redArg___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_transferHypNames_collectHyps(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_elabMFrame___redArg___lam__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*); @@ -1406,7 +1405,7 @@ if (x_47 == 0) { lean_object* x_48; lean_object* x_49; x_48 = lean_ctor_get(x_46, 1); -x_49 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_35, x_36, x_43, x_48); +x_49 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_35, x_36, x_43, x_48); lean_ctor_set(x_46, 1, x_49); return x_44; } @@ -1418,7 +1417,7 @@ x_51 = lean_ctor_get(x_46, 1); lean_inc(x_51); lean_inc(x_50); lean_dec(x_46); -x_52 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_35, x_36, x_43, x_51); +x_52 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_35, x_36, x_43, x_51); x_53 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_53, 0, x_50); lean_ctor_set(x_53, 1, x_52); @@ -1446,7 +1445,7 @@ if (lean_is_exclusive(x_54)) { lean_dec_ref(x_54); x_58 = lean_box(0); } -x_59 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_35, x_36, x_43, x_57); +x_59 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_35, x_36, x_43, x_57); if (lean_is_scalar(x_58)) { x_60 = lean_alloc_ctor(0, 2, 0); } else { @@ -1668,7 +1667,7 @@ if (lean_is_exclusive(x_96)) { lean_dec_ref(x_96); x_101 = lean_box(0); } -x_102 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_86, x_87, x_94, x_100); +x_102 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_86, x_87, x_94, x_100); if (lean_is_scalar(x_101)) { x_103 = lean_alloc_ctor(0, 2, 0); } else { @@ -1860,20 +1859,17 @@ x_1 = lean_mk_string_unchecked("frame", 5, 5); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_15 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__1___closed__0; -x_16 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__1___closed__1; -x_17 = l_Lean_Name_mkStr6(x_1, x_2, x_3, x_4, x_15, x_16); -x_18 = l_Lean_Expr_const___override(x_17, x_5); -x_19 = l_Lean_mkApp7(x_18, x_6, x_7, x_8, x_9, x_10, x_11, x_14); -x_20 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_20, 0, x_12); -lean_ctor_set(x_20, 1, x_19); -x_21 = lean_apply_2(x_13, lean_box(0), x_20); -return x_21; +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_14 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__1___closed__0; +x_15 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__1___closed__1; +x_16 = l_Lean_Name_mkStr6(x_1, x_2, x_3, x_4, x_14, x_15); +x_17 = l_Lean_Expr_const___override(x_16, x_5); +x_18 = l_Lean_mkApp7(x_17, x_6, x_7, x_8, x_9, x_10, x_11, x_13); +x_19 = lean_apply_2(x_12, lean_box(0), x_18); +return x_19; } } static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__2___closed__0() { @@ -1885,79 +1881,48 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, uint8_t x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; uint8_t 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; -x_18 = lean_ctor_get(x_17, 0); -lean_inc(x_18); -x_19 = lean_ctor_get(x_17, 1); -lean_inc(x_19); -lean_dec_ref(x_17); -x_20 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__1), 14, 13); -lean_closure_set(x_20, 0, x_1); -lean_closure_set(x_20, 1, x_2); -lean_closure_set(x_20, 2, x_3); -lean_closure_set(x_20, 3, x_4); -lean_closure_set(x_20, 4, x_5); -lean_closure_set(x_20, 5, x_6); -lean_closure_set(x_20, 6, x_7); -lean_closure_set(x_20, 7, x_8); -lean_closure_set(x_20, 8, x_9); -lean_closure_set(x_20, 9, x_10); -lean_closure_set(x_20, 10, x_11); -lean_closure_set(x_20, 11, x_18); -lean_closure_set(x_20, 12, x_12); -x_21 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__2___closed__0; -x_22 = lean_array_push(x_21, x_13); -x_23 = 1; -x_24 = 1; -x_25 = lean_box(x_14); -x_26 = lean_box(x_23); -x_27 = lean_box(x_14); -x_28 = lean_box(x_23); -x_29 = lean_box(x_24); -x_30 = lean_alloc_closure((void*)(l_Lean_Meta_mkLambdaFVars___boxed), 12, 7); -lean_closure_set(x_30, 0, x_22); -lean_closure_set(x_30, 1, x_19); -lean_closure_set(x_30, 2, x_25); -lean_closure_set(x_30, 3, x_26); -lean_closure_set(x_30, 4, x_27); -lean_closure_set(x_30, 5, x_28); -lean_closure_set(x_30, 6, x_29); -x_31 = lean_apply_2(x_15, lean_box(0), x_30); -x_32 = lean_apply_4(x_16, lean_box(0), lean_box(0), x_31, x_20); -return x_32; +lean_object* x_7; lean_object* x_8; uint8_t x_9; uint8_t x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_7 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__2___closed__0; +x_8 = lean_array_push(x_7, x_1); +x_9 = 1; +x_10 = 1; +x_11 = lean_box(x_2); +x_12 = lean_box(x_9); +x_13 = lean_box(x_2); +x_14 = lean_box(x_9); +x_15 = lean_box(x_10); +x_16 = lean_alloc_closure((void*)(l_Lean_Meta_mkLambdaFVars___boxed), 12, 7); +lean_closure_set(x_16, 0, x_8); +lean_closure_set(x_16, 1, x_6); +lean_closure_set(x_16, 2, x_11); +lean_closure_set(x_16, 3, x_12); +lean_closure_set(x_16, 4, x_13); +lean_closure_set(x_16, 5, x_14); +lean_closure_set(x_16, 6, x_15); +x_17 = lean_apply_2(x_3, lean_box(0), x_16); +x_18 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_17, x_5); +return x_18; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, uint8_t x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__3(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, lean_object* x_8) { _start: { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_19 = lean_box(x_13); -lean_inc_ref(x_15); -lean_inc_ref(x_18); -lean_inc_ref(x_10); -x_20 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__2___boxed), 17, 16); -lean_closure_set(x_20, 0, x_1); -lean_closure_set(x_20, 1, x_2); -lean_closure_set(x_20, 2, x_3); -lean_closure_set(x_20, 3, x_4); -lean_closure_set(x_20, 4, x_5); -lean_closure_set(x_20, 5, x_6); -lean_closure_set(x_20, 6, x_7); -lean_closure_set(x_20, 7, x_8); -lean_closure_set(x_20, 8, x_9); -lean_closure_set(x_20, 9, x_10); -lean_closure_set(x_20, 10, x_11); -lean_closure_set(x_20, 11, x_12); -lean_closure_set(x_20, 12, x_18); -lean_closure_set(x_20, 13, x_19); -lean_closure_set(x_20, 14, x_14); -lean_closure_set(x_20, 15, x_15); -x_21 = lean_apply_3(x_16, x_10, x_18, x_17); -x_22 = lean_apply_4(x_15, lean_box(0), lean_box(0), x_21, x_20); -return x_22; +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_9 = lean_box(x_1); +lean_inc_ref(x_3); +lean_inc_ref(x_8); +x_10 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__2___boxed), 6, 5); +lean_closure_set(x_10, 0, x_8); +lean_closure_set(x_10, 1, x_9); +lean_closure_set(x_10, 2, x_2); +lean_closure_set(x_10, 3, x_3); +lean_closure_set(x_10, 4, x_4); +x_11 = lean_apply_3(x_5, x_6, x_8, x_7); +x_12 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_11, x_10); +return x_12; } } LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { @@ -1979,48 +1944,52 @@ return x_7; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, uint8_t 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) { _start: { -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_inc_ref(x_3); +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_inc_ref(x_9); +lean_inc_ref(x_8); lean_inc_ref(x_19); -lean_inc_ref(x_2); -x_20 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_20, 0, x_1); -lean_ctor_set(x_20, 1, x_2); -lean_ctor_set(x_20, 2, x_19); -lean_ctor_set(x_20, 3, x_3); -x_21 = lean_box(x_13); +lean_inc_ref(x_6); +x_20 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__1), 13, 12); +lean_closure_set(x_20, 0, x_1); +lean_closure_set(x_20, 1, x_2); +lean_closure_set(x_20, 2, x_3); +lean_closure_set(x_20, 3, x_4); +lean_closure_set(x_20, 4, x_5); +lean_closure_set(x_20, 5, x_6); +lean_closure_set(x_20, 6, x_7); +lean_closure_set(x_20, 7, x_19); +lean_closure_set(x_20, 8, x_8); +lean_closure_set(x_20, 9, x_9); +lean_closure_set(x_20, 10, x_10); +lean_closure_set(x_20, 11, x_11); +x_21 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_21, 0, x_12); +lean_ctor_set(x_21, 1, x_6); +lean_ctor_set(x_21, 2, x_19); +lean_ctor_set(x_21, 3, x_8); +x_22 = lean_box(x_13); +lean_inc_ref(x_9); lean_inc_ref(x_15); lean_inc_ref(x_14); -lean_inc_ref(x_10); -x_22 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__3___boxed), 18, 17); -lean_closure_set(x_22, 0, x_4); -lean_closure_set(x_22, 1, x_5); -lean_closure_set(x_22, 2, x_6); -lean_closure_set(x_22, 3, x_7); -lean_closure_set(x_22, 4, x_8); -lean_closure_set(x_22, 5, x_2); -lean_closure_set(x_22, 6, x_9); -lean_closure_set(x_22, 7, x_19); -lean_closure_set(x_22, 8, x_3); -lean_closure_set(x_22, 9, x_10); -lean_closure_set(x_22, 10, x_11); -lean_closure_set(x_22, 11, x_12); -lean_closure_set(x_22, 12, x_21); -lean_closure_set(x_22, 13, x_14); -lean_closure_set(x_22, 14, x_15); -lean_closure_set(x_22, 15, x_16); -lean_closure_set(x_22, 16, x_20); -x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__4), 5, 4); -lean_closure_set(x_23, 0, x_17); -lean_closure_set(x_23, 1, x_18); -lean_closure_set(x_23, 2, x_10); -lean_closure_set(x_23, 3, x_22); -x_24 = l_Lean_Loop_forIn_loop___at___Lean_Elab_Tactic_Do_ProofMode_transferHypNames_label_spec__1___closed__1; -x_25 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__5___boxed), 6, 1); -lean_closure_set(x_25, 0, x_24); -x_26 = lean_apply_2(x_14, lean_box(0), x_25); -x_27 = lean_apply_4(x_15, lean_box(0), lean_box(0), x_26, x_23); -return x_27; +x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__3___boxed), 8, 7); +lean_closure_set(x_23, 0, x_22); +lean_closure_set(x_23, 1, x_14); +lean_closure_set(x_23, 2, x_15); +lean_closure_set(x_23, 3, x_20); +lean_closure_set(x_23, 4, x_16); +lean_closure_set(x_23, 5, x_9); +lean_closure_set(x_23, 6, x_21); +x_24 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__4), 5, 4); +lean_closure_set(x_24, 0, x_17); +lean_closure_set(x_24, 1, x_18); +lean_closure_set(x_24, 2, x_9); +lean_closure_set(x_24, 3, x_23); +x_25 = l_Lean_Loop_forIn_loop___at___Lean_Elab_Tactic_Do_ProofMode_transferHypNames_label_spec__1___closed__1; +x_26 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__5___boxed), 6, 1); +lean_closure_set(x_26, 0, x_25); +x_27 = lean_apply_2(x_14, lean_box(0), x_26); +x_28 = lean_apply_4(x_15, lean_box(0), lean_box(0), x_27, x_24); +return x_28; } } LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { @@ -2046,8 +2015,8 @@ lean_dec(x_19); x_22 = lean_box(x_21); lean_inc_ref(x_14); lean_inc_ref(x_13); -lean_inc_ref(x_12); -lean_inc_ref(x_9); +lean_inc_ref(x_11); +lean_inc_ref(x_7); x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__6___boxed), 19, 18); lean_closure_set(x_23, 0, x_1); lean_closure_set(x_23, 1, x_2); @@ -2069,13 +2038,13 @@ lean_closure_set(x_23, 16, x_16); lean_closure_set(x_23, 17, x_17); lean_inc_ref(x_14); x_24 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__7___boxed), 6, 5); -lean_closure_set(x_24, 0, x_9); +lean_closure_set(x_24, 0, x_7); lean_closure_set(x_24, 1, x_18); lean_closure_set(x_24, 2, x_13); lean_closure_set(x_24, 3, x_14); lean_closure_set(x_24, 4, x_23); x_25 = lean_box(0); -x_26 = lean_apply_2(x_12, lean_box(0), x_25); +x_26 = lean_apply_2(x_11, lean_box(0), x_25); x_27 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_26, x_24); return x_27; } @@ -2087,18 +2056,18 @@ lean_dec_ref(x_17); lean_dec_ref(x_16); lean_dec_ref(x_15); lean_dec_ref(x_13); -lean_dec_ref(x_12); +lean_dec(x_12); lean_dec_ref(x_11); lean_dec_ref(x_10); lean_dec_ref(x_9); -lean_dec(x_8); +lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_5); +lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); -lean_dec(x_1); +lean_dec_ref(x_1); x_28 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_19, x_20); return x_28; } @@ -2124,67 +2093,68 @@ return x_2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { _start: { -if (lean_obj_tag(x_21) == 0) +if (lean_obj_tag(x_21) == 1) { +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; +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +lean_dec_ref(x_21); +lean_inc_ref(x_13); +lean_inc_ref(x_12); +lean_inc_ref(x_9); +x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__8___boxed), 21, 20); +lean_closure_set(x_23, 0, x_1); +lean_closure_set(x_23, 1, x_2); +lean_closure_set(x_23, 2, x_3); +lean_closure_set(x_23, 3, x_4); +lean_closure_set(x_23, 4, x_5); +lean_closure_set(x_23, 5, x_6); +lean_closure_set(x_23, 6, x_7); +lean_closure_set(x_23, 7, x_8); +lean_closure_set(x_23, 8, x_9); +lean_closure_set(x_23, 9, x_22); +lean_closure_set(x_23, 10, x_10); +lean_closure_set(x_23, 11, x_11); +lean_closure_set(x_23, 12, x_12); +lean_closure_set(x_23, 13, x_13); +lean_closure_set(x_23, 14, x_14); +lean_closure_set(x_23, 15, x_15); +lean_closure_set(x_23, 16, x_16); +lean_closure_set(x_23, 17, x_17); +lean_closure_set(x_23, 18, x_18); +lean_closure_set(x_23, 19, x_19); +x_24 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__9___closed__1; +x_25 = l_Lean_Expr_const___override(x_24, x_20); +x_26 = lean_alloc_closure((void*)(l_Lean_Meta_isDefEq), 7, 2); +lean_closure_set(x_26, 0, x_25); +lean_closure_set(x_26, 1, x_9); +x_27 = lean_apply_2(x_12, lean_box(0), x_26); +x_28 = lean_apply_4(x_13, lean_box(0), lean_box(0), x_27, x_23); +return x_28; +} +else +{ +lean_dec(x_21); lean_dec(x_20); lean_dec_ref(x_19); -lean_dec_ref(x_18); lean_dec_ref(x_17); lean_dec_ref(x_16); lean_dec_ref(x_15); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); -lean_dec_ref(x_11); +lean_dec(x_11); lean_dec_ref(x_10); -lean_dec(x_9); +lean_dec_ref(x_9); lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_5); +lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); -lean_dec(x_2); -return x_1; -} -else -{ -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; -x_22 = lean_ctor_get(x_21, 0); -lean_inc(x_22); -lean_dec_ref(x_21); -lean_inc_ref(x_14); -lean_inc_ref(x_13); -lean_inc_ref(x_11); -x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__8___boxed), 21, 20); -lean_closure_set(x_23, 0, x_2); -lean_closure_set(x_23, 1, x_3); -lean_closure_set(x_23, 2, x_4); -lean_closure_set(x_23, 3, x_5); -lean_closure_set(x_23, 4, x_6); -lean_closure_set(x_23, 5, x_7); -lean_closure_set(x_23, 6, x_8); -lean_closure_set(x_23, 7, x_9); -lean_closure_set(x_23, 8, x_10); -lean_closure_set(x_23, 9, x_11); -lean_closure_set(x_23, 10, x_22); -lean_closure_set(x_23, 11, x_12); -lean_closure_set(x_23, 12, x_13); -lean_closure_set(x_23, 13, x_14); -lean_closure_set(x_23, 14, x_15); -lean_closure_set(x_23, 15, x_16); -lean_closure_set(x_23, 16, x_17); -lean_closure_set(x_23, 17, x_18); -lean_closure_set(x_23, 18, x_1); -lean_closure_set(x_23, 19, x_19); -x_24 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__9___closed__1; -x_25 = l_Lean_Expr_const___override(x_24, x_20); -x_26 = lean_alloc_closure((void*)(l_Lean_Meta_isDefEq), 7, 2); -lean_closure_set(x_26, 0, x_25); -lean_closure_set(x_26, 1, x_11); -x_27 = lean_apply_2(x_13, lean_box(0), x_26); -x_28 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_27, x_23); -return x_28; +lean_dec_ref(x_2); +lean_dec_ref(x_1); +return x_18; } } } @@ -2210,24 +2180,24 @@ _start: lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; x_20 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__10___closed__0; lean_inc_ref(x_19); -lean_inc_ref(x_13); lean_inc_ref(x_12); -lean_inc_ref(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); +lean_inc_ref(x_11); +lean_inc_ref(x_8); lean_inc_ref(x_6); lean_inc_ref(x_5); +lean_inc(x_4); lean_inc_ref(x_3); +lean_inc_ref(x_2); +lean_inc_ref(x_1); x_21 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__9___boxed), 21, 20); lean_closure_set(x_21, 0, x_1); lean_closure_set(x_21, 1, x_2); lean_closure_set(x_21, 2, x_3); -lean_closure_set(x_21, 3, x_4); -lean_closure_set(x_21, 4, x_5); -lean_closure_set(x_21, 5, x_6); -lean_closure_set(x_21, 6, x_7); -lean_closure_set(x_21, 7, x_20); +lean_closure_set(x_21, 3, x_20); +lean_closure_set(x_21, 4, x_4); +lean_closure_set(x_21, 5, x_5); +lean_closure_set(x_21, 6, x_6); +lean_closure_set(x_21, 7, x_7); lean_closure_set(x_21, 8, x_8); lean_closure_set(x_21, 9, x_9); lean_closure_set(x_21, 10, x_10); @@ -2236,20 +2206,20 @@ lean_closure_set(x_21, 12, x_12); lean_closure_set(x_21, 13, x_13); lean_closure_set(x_21, 14, x_14); lean_closure_set(x_21, 15, x_15); -lean_closure_set(x_21, 16, x_16); -lean_closure_set(x_21, 17, x_19); +lean_closure_set(x_21, 16, x_19); +lean_closure_set(x_21, 17, x_16); lean_closure_set(x_21, 18, x_17); lean_closure_set(x_21, 19, x_18); x_22 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__10___closed__1; -x_23 = l_Lean_Name_mkStr5(x_5, x_6, x_7, x_20, x_22); -x_24 = l_Lean_Expr_const___override(x_23, x_8); -x_25 = l_Lean_mkApp4(x_24, x_3, x_9, x_19, x_10); +x_23 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_20, x_22); +x_24 = l_Lean_Expr_const___override(x_23, x_4); +x_25 = l_Lean_mkApp4(x_24, x_5, x_6, x_19, x_8); x_26 = lean_box(0); -x_27 = lean_alloc_closure((void*)(l_Lean_Meta_synthInstance_x3f), 7, 2); +x_27 = lean_alloc_closure((void*)(l_Lean_Meta_trySynthInstance), 7, 2); lean_closure_set(x_27, 0, x_25); lean_closure_set(x_27, 1, x_26); -x_28 = lean_apply_2(x_12, lean_box(0), x_27); -x_29 = lean_apply_4(x_13, lean_box(0), lean_box(0), x_28, x_21); +x_28 = lean_apply_2(x_11, lean_box(0), x_27); +x_29 = lean_apply_4(x_12, lean_box(0), lean_box(0), x_28, x_21); return x_29; } } @@ -2301,21 +2271,21 @@ lean_inc(x_1); x_21 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_21, 0, x_1); lean_ctor_set(x_21, 1, x_20); -lean_inc_ref(x_8); lean_inc_ref(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_2); lean_inc_ref(x_21); -lean_inc_ref(x_3); x_22 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__10___boxed), 19, 18); -lean_closure_set(x_22, 0, x_2); -lean_closure_set(x_22, 1, x_1); -lean_closure_set(x_22, 2, x_3); -lean_closure_set(x_22, 3, x_4); -lean_closure_set(x_22, 4, x_16); -lean_closure_set(x_22, 5, x_17); -lean_closure_set(x_22, 6, x_18); -lean_closure_set(x_22, 7, x_21); +lean_closure_set(x_22, 0, x_16); +lean_closure_set(x_22, 1, x_17); +lean_closure_set(x_22, 2, x_18); +lean_closure_set(x_22, 3, x_21); +lean_closure_set(x_22, 4, x_2); +lean_closure_set(x_22, 5, x_3); +lean_closure_set(x_22, 6, x_4); +lean_closure_set(x_22, 7, x_15); lean_closure_set(x_22, 8, x_5); -lean_closure_set(x_22, 9, x_15); +lean_closure_set(x_22, 9, x_1); lean_closure_set(x_22, 10, x_6); lean_closure_set(x_22, 11, x_7); lean_closure_set(x_22, 12, x_8); @@ -2325,7 +2295,7 @@ lean_closure_set(x_22, 15, x_11); lean_closure_set(x_22, 16, x_12); lean_closure_set(x_22, 17, x_20); x_23 = l_Lean_Expr_const___override(x_19, x_21); -x_24 = l_Lean_Expr_app___override(x_23, x_3); +x_24 = l_Lean_Expr_app___override(x_23, x_2); x_25 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_25, 0, x_24); x_26 = lean_box(x_13); @@ -2333,8 +2303,8 @@ x_27 = lean_alloc_closure((void*)(l_Lean_Meta_mkFreshExprMVar___boxed), 8, 3); lean_closure_set(x_27, 0, x_25); lean_closure_set(x_27, 1, x_26); lean_closure_set(x_27, 2, x_14); -x_28 = lean_apply_2(x_7, lean_box(0), x_27); -x_29 = lean_apply_4(x_8, lean_box(0), lean_box(0), x_28, x_22); +x_28 = lean_apply_2(x_6, lean_box(0), x_27); +x_29 = lean_apply_4(x_7, lean_box(0), lean_box(0), x_28, x_22); return x_29; } } @@ -2404,16 +2374,16 @@ x_19 = lean_box(x_14); lean_inc_ref(x_12); x_20 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11___boxed), 15, 14); lean_closure_set(x_20, 0, x_8); -lean_closure_set(x_20, 1, x_5); -lean_closure_set(x_20, 2, x_9); +lean_closure_set(x_20, 1, x_9); +lean_closure_set(x_20, 2, x_10); lean_closure_set(x_20, 3, x_11); -lean_closure_set(x_20, 4, x_10); -lean_closure_set(x_20, 5, x_13); -lean_closure_set(x_20, 6, x_3); -lean_closure_set(x_20, 7, x_12); -lean_closure_set(x_20, 8, x_6); -lean_closure_set(x_20, 9, x_2); -lean_closure_set(x_20, 10, x_1); +lean_closure_set(x_20, 4, x_13); +lean_closure_set(x_20, 5, x_3); +lean_closure_set(x_20, 6, x_12); +lean_closure_set(x_20, 7, x_6); +lean_closure_set(x_20, 8, x_2); +lean_closure_set(x_20, 9, x_1); +lean_closure_set(x_20, 10, x_5); lean_closure_set(x_20, 11, x_18); lean_closure_set(x_20, 12, x_19); lean_closure_set(x_20, 13, x_15); @@ -2421,65 +2391,30 @@ x_21 = lean_apply_4(x_12, lean_box(0), lean_box(0), x_17, x_20); return x_21; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore(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_9; -x_9 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg(x_3, x_4, x_5, x_6, x_7, x_8); -return x_9; +lean_object* x_8; +x_8 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg(x_2, x_3, x_4, x_5, x_6, x_7); +return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__2___boxed(lean_object** _args) { -lean_object* x_1 = _args[0]; -lean_object* x_2 = _args[1]; -lean_object* x_3 = _args[2]; -lean_object* x_4 = _args[3]; -lean_object* x_5 = _args[4]; -lean_object* x_6 = _args[5]; -lean_object* x_7 = _args[6]; -lean_object* x_8 = _args[7]; -lean_object* x_9 = _args[8]; -lean_object* x_10 = _args[9]; -lean_object* x_11 = _args[10]; -lean_object* x_12 = _args[11]; -lean_object* x_13 = _args[12]; -lean_object* x_14 = _args[13]; -lean_object* x_15 = _args[14]; -lean_object* x_16 = _args[15]; -lean_object* x_17 = _args[16]; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__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) { _start: { -uint8_t x_18; lean_object* x_19; -x_18 = lean_unbox(x_14); -x_19 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_18, x_15, x_16, x_17); -return x_19; +uint8_t x_7; lean_object* x_8; +x_7 = lean_unbox(x_2); +x_8 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__2(x_1, x_7, x_3, x_4, x_5, x_6); +return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__3___boxed(lean_object** _args) { -lean_object* x_1 = _args[0]; -lean_object* x_2 = _args[1]; -lean_object* x_3 = _args[2]; -lean_object* x_4 = _args[3]; -lean_object* x_5 = _args[4]; -lean_object* x_6 = _args[5]; -lean_object* x_7 = _args[6]; -lean_object* x_8 = _args[7]; -lean_object* x_9 = _args[8]; -lean_object* x_10 = _args[9]; -lean_object* x_11 = _args[10]; -lean_object* x_12 = _args[11]; -lean_object* x_13 = _args[12]; -lean_object* x_14 = _args[13]; -lean_object* x_15 = _args[14]; -lean_object* x_16 = _args[15]; -lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -uint8_t x_19; lean_object* x_20; -x_19 = lean_unbox(x_13); -x_20 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_19, x_14, x_15, x_16, x_17, x_18); -return x_20; +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_1); +x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__3(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; } } LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__5___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) { @@ -2646,12 +2581,12 @@ x_8 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg(x_1, x_2, x_3, x_4, x_ return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame(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_8; -x_8 = l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___redArg(x_3, x_4, x_5, x_6, x_7); -return x_8; +lean_object* x_7; +x_7 = l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___redArg(x_2, x_3, x_4, x_5, x_6); +return x_7; } } LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { @@ -3061,7 +2996,7 @@ x_14 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mFrameCor return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24) { _start: { lean_object* x_25; @@ -3074,70 +3009,59 @@ lean_inc_ref(x_2); x_25 = lean_apply_12(x_1, x_2, x_15, x_3, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24); if (lean_obj_tag(x_25) == 0) { -lean_object* x_26; lean_object* x_27; uint8_t x_28; +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; uint8_t x_31; lean_object* x_32; x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); x_27 = lean_ctor_get(x_25, 1); lean_inc(x_27); lean_dec_ref(x_25); -x_28 = !lean_is_exclusive(x_26); -if (x_28 == 0) -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; uint8_t x_34; lean_object* x_35; -x_29 = lean_ctor_get(x_26, 0); -x_30 = lean_ctor_get(x_26, 1); -x_31 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__2___closed__0; -x_32 = lean_array_push(x_31, x_15); -x_33 = 1; -x_34 = 1; -x_35 = l_Lean_Meta_mkLambdaFVars(x_32, x_30, x_4, x_33, x_4, x_33, x_34, x_20, x_21, x_22, x_23, x_27); +x_28 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__2___closed__0; +x_29 = lean_array_push(x_28, x_15); +x_30 = 1; +x_31 = 1; +x_32 = l_Lean_Meta_mkLambdaFVars(x_29, x_26, x_4, x_30, x_4, x_30, x_31, x_20, x_21, x_22, x_23, x_27); lean_dec(x_23); lean_dec_ref(x_22); lean_dec(x_21); lean_dec_ref(x_20); -lean_dec_ref(x_32); -if (lean_obj_tag(x_35) == 0) +lean_dec_ref(x_29); +if (lean_obj_tag(x_32) == 0) { -uint8_t x_36; -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) +uint8_t x_33; +x_33 = !lean_is_exclusive(x_32); +if (x_33 == 0) { -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_37 = lean_ctor_get(x_35, 0); -x_38 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__1___closed__0; -x_39 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__1___closed__1; -x_40 = l_Lean_Name_mkStr6(x_5, x_6, x_7, x_8, x_38, x_39); -x_41 = l_Lean_Expr_const___override(x_40, x_9); -x_42 = l_Lean_mkApp7(x_41, x_10, x_11, x_12, x_13, x_2, x_14, x_37); -lean_ctor_set(x_26, 1, x_42); -lean_ctor_set(x_35, 0, x_26); -return x_35; +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_34 = lean_ctor_get(x_32, 0); +x_35 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__1___closed__0; +x_36 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__1___closed__1; +x_37 = l_Lean_Name_mkStr6(x_5, x_6, x_7, x_8, x_35, x_36); +x_38 = l_Lean_Expr_const___override(x_37, x_9); +x_39 = l_Lean_mkApp7(x_38, x_10, x_11, x_12, x_13, x_2, x_14, x_34); +lean_ctor_set(x_32, 0, x_39); +return x_32; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_43 = lean_ctor_get(x_35, 0); -x_44 = lean_ctor_get(x_35, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_35); -x_45 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__1___closed__0; -x_46 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__1___closed__1; -x_47 = l_Lean_Name_mkStr6(x_5, x_6, x_7, x_8, x_45, x_46); -x_48 = l_Lean_Expr_const___override(x_47, x_9); -x_49 = l_Lean_mkApp7(x_48, x_10, x_11, x_12, x_13, x_2, x_14, x_43); -lean_ctor_set(x_26, 1, x_49); -x_50 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_50, 0, x_26); -lean_ctor_set(x_50, 1, x_44); -return x_50; +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_40 = lean_ctor_get(x_32, 0); +x_41 = lean_ctor_get(x_32, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_32); +x_42 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__1___closed__0; +x_43 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__1___closed__1; +x_44 = l_Lean_Name_mkStr6(x_5, x_6, x_7, x_8, x_42, x_43); +x_45 = l_Lean_Expr_const___override(x_44, x_9); +x_46 = l_Lean_mkApp7(x_45, x_10, x_11, x_12, x_13, x_2, x_14, x_40); +x_47 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_47, 1, x_41); +return x_47; } } else { -uint8_t x_51; -lean_free_object(x_26); -lean_dec(x_29); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -3149,112 +3073,7 @@ lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_2); -x_51 = !lean_is_exclusive(x_35); -if (x_51 == 0) -{ -return x_35; -} -else -{ -lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_52 = lean_ctor_get(x_35, 0); -x_53 = lean_ctor_get(x_35, 1); -lean_inc(x_53); -lean_inc(x_52); -lean_dec(x_35); -x_54 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_53); -return x_54; -} -} -} -else -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; uint8_t x_60; lean_object* x_61; -x_55 = lean_ctor_get(x_26, 0); -x_56 = lean_ctor_get(x_26, 1); -lean_inc(x_56); -lean_inc(x_55); -lean_dec(x_26); -x_57 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__2___closed__0; -x_58 = lean_array_push(x_57, x_15); -x_59 = 1; -x_60 = 1; -x_61 = l_Lean_Meta_mkLambdaFVars(x_58, x_56, x_4, x_59, x_4, x_59, x_60, x_20, x_21, x_22, x_23, x_27); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec(x_21); -lean_dec_ref(x_20); -lean_dec_ref(x_58); -if (lean_obj_tag(x_61) == 0) -{ -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; -x_62 = lean_ctor_get(x_61, 0); -lean_inc(x_62); -x_63 = lean_ctor_get(x_61, 1); -lean_inc(x_63); -if (lean_is_exclusive(x_61)) { - lean_ctor_release(x_61, 0); - lean_ctor_release(x_61, 1); - x_64 = x_61; -} else { - lean_dec_ref(x_61); - x_64 = lean_box(0); -} -x_65 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__1___closed__0; -x_66 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__1___closed__1; -x_67 = l_Lean_Name_mkStr6(x_5, x_6, x_7, x_8, x_65, x_66); -x_68 = l_Lean_Expr_const___override(x_67, x_9); -x_69 = l_Lean_mkApp7(x_68, x_10, x_11, x_12, x_13, x_2, x_14, x_62); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_55); -lean_ctor_set(x_70, 1, x_69); -if (lean_is_scalar(x_64)) { - x_71 = lean_alloc_ctor(0, 2, 0); -} else { - x_71 = x_64; -} -lean_ctor_set(x_71, 0, x_70); -lean_ctor_set(x_71, 1, x_63); -return x_71; -} -else -{ -lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -lean_dec(x_55); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_2); -x_72 = lean_ctor_get(x_61, 0); -lean_inc(x_72); -x_73 = lean_ctor_get(x_61, 1); -lean_inc(x_73); -if (lean_is_exclusive(x_61)) { - lean_ctor_release(x_61, 0); - lean_ctor_release(x_61, 1); - x_74 = x_61; -} else { - lean_dec_ref(x_61); - x_74 = lean_box(0); -} -if (lean_is_scalar(x_74)) { - x_75 = lean_alloc_ctor(1, 2, 0); -} else { - x_75 = x_74; -} -lean_ctor_set(x_75, 0, x_72); -lean_ctor_set(x_75, 1, x_73); -return x_75; -} +return x_32; } } else @@ -3279,7 +3098,7 @@ return x_25; } } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___closed__0() { _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; @@ -3292,7 +3111,7 @@ x_6 = l_Lean_Name_mkStr5(x_5, x_4, x_3, x_2, x_1); return x_6; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3302,7 +3121,7 @@ x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { uint8_t x_13; @@ -3321,29 +3140,30 @@ lean_inc_ref(x_8); x_21 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_18, x_19, x_20, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_21) == 0) { -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_22 = lean_ctor_get(x_21, 0); -lean_inc(x_22); -x_23 = lean_ctor_get(x_21, 1); -lean_inc(x_23); -lean_dec_ref(x_21); -x_24 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11___closed__0; -x_25 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11___closed__1; -x_26 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11___closed__2; -x_27 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11___closed__3; -x_28 = lean_box(0); +uint8_t x_22; +x_22 = !lean_is_exclusive(x_21); +if (x_22 == 0) +{ +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; +x_23 = lean_ctor_get(x_21, 0); +x_24 = lean_ctor_get(x_21, 1); +x_25 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11___closed__0; +x_26 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11___closed__1; +x_27 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11___closed__2; +x_28 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11___closed__3; +x_29 = lean_box(0); lean_inc(x_14); -x_29 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_29, 0, x_14); -lean_ctor_set(x_29, 1, x_28); -lean_inc_ref(x_29); -x_30 = l_Lean_Expr_const___override(x_27, x_29); +lean_ctor_set_tag(x_21, 1); +lean_ctor_set(x_21, 1, x_29); +lean_ctor_set(x_21, 0, x_14); +lean_inc_ref(x_21); +x_30 = l_Lean_Expr_const___override(x_28, x_21); lean_inc_ref(x_15); x_31 = l_Lean_Expr_app___override(x_30, x_15); x_32 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_32, 0, x_31); lean_inc_ref(x_8); -x_33 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_32, x_19, x_20, x_8, x_9, x_10, x_11, x_23); +x_33 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_32, x_19, x_20, x_8, x_9, x_10, x_11, x_24); if (lean_obj_tag(x_33) == 0) { 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; @@ -3353,127 +3173,109 @@ x_35 = lean_ctor_get(x_33, 1); lean_inc(x_35); lean_dec_ref(x_33); x_36 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__10___closed__0; -x_37 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg___closed__0; -lean_inc_ref(x_29); -x_38 = l_Lean_Expr_const___override(x_37, x_29); -lean_inc(x_22); +x_37 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___closed__0; +lean_inc_ref(x_21); +x_38 = l_Lean_Expr_const___override(x_37, x_21); +lean_inc(x_23); lean_inc(x_34); lean_inc_ref(x_16); lean_inc_ref(x_15); -x_39 = l_Lean_mkApp4(x_38, x_15, x_16, x_34, x_22); +x_39 = l_Lean_mkApp4(x_38, x_15, x_16, x_34, x_23); x_40 = lean_box(0); lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); -x_41 = l_Lean_Meta_synthInstance_x3f(x_39, x_40, x_8, x_9, x_10, x_11, x_35); +x_41 = l_Lean_Meta_trySynthInstance(x_39, x_40, x_8, x_9, x_10, x_11, x_35); if (lean_obj_tag(x_41) == 0) { lean_object* x_42; x_42 = lean_ctor_get(x_41, 0); lean_inc(x_42); -if (lean_obj_tag(x_42) == 0) +if (lean_obj_tag(x_42) == 1) { -lean_object* x_43; lean_object* x_44; -lean_dec(x_34); -lean_dec_ref(x_29); -lean_dec(x_22); -lean_free_object(x_1); -lean_dec_ref(x_17); -lean_dec_ref(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_3); +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; x_43 = lean_ctor_get(x_41, 1); lean_inc(x_43); lean_dec_ref(x_41); -x_44 = lean_apply_9(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_43); -return x_44; -} -else -{ -lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_45 = lean_ctor_get(x_41, 1); -lean_inc(x_45); -lean_dec_ref(x_41); -x_46 = lean_ctor_get(x_42, 0); -lean_inc(x_46); +x_44 = lean_ctor_get(x_42, 0); +lean_inc(x_44); lean_dec_ref(x_42); -x_47 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg___closed__1; +x_45 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___closed__1; lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); -lean_inc(x_22); -x_48 = l_Lean_Meta_isExprDefEq(x_47, x_22, x_8, x_9, x_10, x_11, x_45); -if (lean_obj_tag(x_48) == 0) +lean_inc(x_23); +x_46 = l_Lean_Meta_isExprDefEq(x_45, x_23, x_8, x_9, x_10, x_11, x_43); +if (lean_obj_tag(x_46) == 0) { -lean_object* x_49; uint8_t x_50; -x_49 = lean_ctor_get(x_48, 0); -lean_inc(x_49); -x_50 = lean_unbox(x_49); -if (x_50 == 0) +lean_object* x_47; uint8_t x_48; +x_47 = lean_ctor_get(x_46, 0); +lean_inc(x_47); +x_48 = lean_unbox(x_47); +if (x_48 == 0) { -lean_object* x_51; lean_object* x_52; +lean_object* x_49; lean_object* x_50; lean_dec_ref(x_2); -x_51 = lean_ctor_get(x_48, 1); -lean_inc(x_51); -lean_dec_ref(x_48); +x_49 = lean_ctor_get(x_46, 1); +lean_inc(x_49); +lean_dec_ref(x_46); lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); lean_inc_ref(x_16); -x_52 = l_Lean_Elab_Tactic_Do_ProofMode_transferHypNames(x_16, x_34, x_8, x_9, x_10, x_11, x_51); -if (lean_obj_tag(x_52) == 0) +x_50 = l_Lean_Elab_Tactic_Do_ProofMode_transferHypNames(x_16, x_34, x_8, x_9, x_10, x_11, x_49); +if (lean_obj_tag(x_50) == 0) { -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); -lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -lean_dec_ref(x_52); -x_55 = l_Lean_Loop_forIn_loop___at___Lean_Elab_Tactic_Do_ProofMode_transferHypNames_label_spec__1___closed__1; -x_56 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_55, x_10, x_11, x_54); -if (lean_obj_tag(x_56) == 0) +lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_51 = lean_ctor_get(x_50, 0); +lean_inc(x_51); +x_52 = lean_ctor_get(x_50, 1); +lean_inc(x_52); +lean_dec_ref(x_50); +x_53 = l_Lean_Loop_forIn_loop___at___Lean_Elab_Tactic_Do_ProofMode_transferHypNames_label_spec__1___closed__1; +x_54 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_53, x_10, x_11, x_52); +if (lean_obj_tag(x_54) == 0) { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_56, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_56, 1); -lean_inc(x_58); -lean_dec_ref(x_56); +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +lean_dec_ref(x_54); lean_inc_ref(x_17); -lean_inc(x_53); +lean_inc(x_51); lean_inc_ref(x_15); -lean_ctor_set(x_1, 2, x_53); -lean_inc(x_22); -x_59 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg___lam__0___boxed), 24, 14); -lean_closure_set(x_59, 0, x_3); -lean_closure_set(x_59, 1, x_22); -lean_closure_set(x_59, 2, x_1); -lean_closure_set(x_59, 3, x_49); -lean_closure_set(x_59, 4, x_24); -lean_closure_set(x_59, 5, x_25); -lean_closure_set(x_59, 6, x_26); -lean_closure_set(x_59, 7, x_36); -lean_closure_set(x_59, 8, x_29); -lean_closure_set(x_59, 9, x_15); -lean_closure_set(x_59, 10, x_16); -lean_closure_set(x_59, 11, x_53); -lean_closure_set(x_59, 12, x_17); -lean_closure_set(x_59, 13, x_46); -x_60 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4_spec__4___redArg(x_57, x_22, x_59, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_58); -return x_60; +lean_ctor_set(x_1, 2, x_51); +lean_inc(x_23); +x_57 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___lam__0___boxed), 24, 14); +lean_closure_set(x_57, 0, x_3); +lean_closure_set(x_57, 1, x_23); +lean_closure_set(x_57, 2, x_1); +lean_closure_set(x_57, 3, x_47); +lean_closure_set(x_57, 4, x_25); +lean_closure_set(x_57, 5, x_26); +lean_closure_set(x_57, 6, x_27); +lean_closure_set(x_57, 7, x_36); +lean_closure_set(x_57, 8, x_21); +lean_closure_set(x_57, 9, x_15); +lean_closure_set(x_57, 10, x_16); +lean_closure_set(x_57, 11, x_51); +lean_closure_set(x_57, 12, x_17); +lean_closure_set(x_57, 13, x_44); +x_58 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4_spec__4___redArg(x_55, x_23, x_57, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_56); +return x_58; } else { -uint8_t x_61; -lean_dec(x_53); -lean_dec(x_49); -lean_dec(x_46); -lean_dec_ref(x_29); -lean_dec(x_22); +uint8_t x_59; +lean_dec(x_51); +lean_dec(x_47); +lean_dec(x_44); +lean_dec_ref(x_21); +lean_dec(x_23); lean_free_object(x_1); lean_dec_ref(x_17); lean_dec_ref(x_16); @@ -3488,33 +3290,77 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); -x_61 = !lean_is_exclusive(x_56); -if (x_61 == 0) +x_59 = !lean_is_exclusive(x_54); +if (x_59 == 0) { -return x_56; +return x_54; } else { -lean_object* x_62; lean_object* x_63; lean_object* x_64; -x_62 = lean_ctor_get(x_56, 0); -x_63 = lean_ctor_get(x_56, 1); -lean_inc(x_63); -lean_inc(x_62); -lean_dec(x_56); -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; +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = lean_ctor_get(x_54, 0); +x_61 = lean_ctor_get(x_54, 1); +lean_inc(x_61); +lean_inc(x_60); +lean_dec(x_54); +x_62 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_62, 0, x_60); +lean_ctor_set(x_62, 1, x_61); +return x_62; } } } else { +lean_dec(x_47); +lean_dec(x_44); +lean_dec_ref(x_21); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +return x_50; +} +} +else +{ +lean_object* x_63; lean_object* x_64; +lean_dec(x_47); +lean_dec(x_44); +lean_dec(x_34); +lean_dec_ref(x_21); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_3); +x_63 = lean_ctor_get(x_46, 1); +lean_inc(x_63); +lean_dec_ref(x_46); +x_64 = lean_apply_9(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_63); +return x_64; +} +} +else +{ uint8_t x_65; -lean_dec(x_49); -lean_dec(x_46); -lean_dec_ref(x_29); -lean_dec(x_22); +lean_dec(x_44); +lean_dec(x_34); +lean_dec_ref(x_21); +lean_dec(x_23); lean_free_object(x_1); lean_dec_ref(x_17); lean_dec_ref(x_16); @@ -3529,19 +3375,20 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); -x_65 = !lean_is_exclusive(x_52); +lean_dec_ref(x_2); +x_65 = !lean_is_exclusive(x_46); if (x_65 == 0) { -return x_52; +return x_46; } else { lean_object* x_66; lean_object* x_67; lean_object* x_68; -x_66 = lean_ctor_get(x_52, 0); -x_67 = lean_ctor_get(x_52, 1); +x_66 = lean_ctor_get(x_46, 0); +x_67 = lean_ctor_get(x_46, 1); lean_inc(x_67); lean_inc(x_66); -lean_dec(x_52); +lean_dec(x_46); x_68 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_68, 0, x_66); lean_ctor_set(x_68, 1, x_67); @@ -3552,20 +3399,19 @@ return x_68; else { lean_object* x_69; lean_object* x_70; -lean_dec(x_49); -lean_dec(x_46); +lean_dec(x_42); lean_dec(x_34); -lean_dec_ref(x_29); -lean_dec(x_22); +lean_dec_ref(x_21); +lean_dec(x_23); lean_free_object(x_1); lean_dec_ref(x_17); lean_dec_ref(x_16); lean_dec_ref(x_15); lean_dec(x_14); lean_dec_ref(x_3); -x_69 = lean_ctor_get(x_48, 1); +x_69 = lean_ctor_get(x_41, 1); lean_inc(x_69); -lean_dec_ref(x_48); +lean_dec_ref(x_41); x_70 = lean_apply_9(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_69); return x_70; } @@ -3573,10 +3419,9 @@ return x_70; else { uint8_t x_71; -lean_dec(x_46); lean_dec(x_34); -lean_dec_ref(x_29); -lean_dec(x_22); +lean_dec_ref(x_21); +lean_dec(x_23); lean_free_object(x_1); lean_dec_ref(x_17); lean_dec_ref(x_16); @@ -3592,19 +3437,19 @@ lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); -x_71 = !lean_is_exclusive(x_48); +x_71 = !lean_is_exclusive(x_41); if (x_71 == 0) { -return x_48; +return x_41; } else { lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_48, 0); -x_73 = lean_ctor_get(x_48, 1); +x_72 = lean_ctor_get(x_41, 0); +x_73 = lean_ctor_get(x_41, 1); lean_inc(x_73); lean_inc(x_72); -lean_dec(x_48); +lean_dec(x_41); x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_72); lean_ctor_set(x_74, 1, x_73); @@ -3612,13 +3457,10 @@ return x_74; } } } -} else { -uint8_t x_75; -lean_dec(x_34); -lean_dec_ref(x_29); -lean_dec(x_22); +lean_dec_ref(x_21); +lean_dec(x_23); lean_free_object(x_1); lean_dec_ref(x_17); lean_dec_ref(x_16); @@ -3634,69 +3476,233 @@ lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); -x_75 = !lean_is_exclusive(x_41); -if (x_75 == 0) -{ -return x_41; -} -else -{ -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_41, 0); -x_77 = lean_ctor_get(x_41, 1); -lean_inc(x_77); -lean_inc(x_76); -lean_dec(x_41); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; -} -} -} -else -{ -uint8_t x_79; -lean_dec_ref(x_29); -lean_dec(x_22); -lean_free_object(x_1); -lean_dec_ref(x_17); -lean_dec_ref(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_79 = !lean_is_exclusive(x_33); -if (x_79 == 0) -{ return x_33; } +} else { -lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_80 = lean_ctor_get(x_33, 0); -x_81 = lean_ctor_get(x_33, 1); -lean_inc(x_81); -lean_inc(x_80); -lean_dec(x_33); +lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_75 = lean_ctor_get(x_21, 0); +x_76 = lean_ctor_get(x_21, 1); +lean_inc(x_76); +lean_inc(x_75); +lean_dec(x_21); +x_77 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11___closed__0; +x_78 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11___closed__1; +x_79 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11___closed__2; +x_80 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11___closed__3; +x_81 = lean_box(0); +lean_inc(x_14); x_82 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 0, x_14); lean_ctor_set(x_82, 1, x_81); -return x_82; +lean_inc_ref(x_82); +x_83 = l_Lean_Expr_const___override(x_80, x_82); +lean_inc_ref(x_15); +x_84 = l_Lean_Expr_app___override(x_83, x_15); +x_85 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_85, 0, x_84); +lean_inc_ref(x_8); +x_86 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_85, x_19, x_20, x_8, x_9, x_10, x_11, x_76); +if (lean_obj_tag(x_86) == 0) +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; +x_87 = lean_ctor_get(x_86, 0); +lean_inc(x_87); +x_88 = lean_ctor_get(x_86, 1); +lean_inc(x_88); +lean_dec_ref(x_86); +x_89 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__10___closed__0; +x_90 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___closed__0; +lean_inc_ref(x_82); +x_91 = l_Lean_Expr_const___override(x_90, x_82); +lean_inc(x_75); +lean_inc(x_87); +lean_inc_ref(x_16); +lean_inc_ref(x_15); +x_92 = l_Lean_mkApp4(x_91, x_15, x_16, x_87, x_75); +x_93 = lean_box(0); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_94 = l_Lean_Meta_trySynthInstance(x_92, x_93, x_8, x_9, x_10, x_11, x_88); +if (lean_obj_tag(x_94) == 0) +{ +lean_object* x_95; +x_95 = lean_ctor_get(x_94, 0); +lean_inc(x_95); +if (lean_obj_tag(x_95) == 1) +{ +lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; +x_96 = lean_ctor_get(x_94, 1); +lean_inc(x_96); +lean_dec_ref(x_94); +x_97 = lean_ctor_get(x_95, 0); +lean_inc(x_97); +lean_dec_ref(x_95); +x_98 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___closed__1; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_75); +x_99 = l_Lean_Meta_isExprDefEq(x_98, x_75, x_8, x_9, x_10, x_11, x_96); +if (lean_obj_tag(x_99) == 0) +{ +lean_object* x_100; uint8_t x_101; +x_100 = lean_ctor_get(x_99, 0); +lean_inc(x_100); +x_101 = lean_unbox(x_100); +if (x_101 == 0) +{ +lean_object* x_102; lean_object* x_103; +lean_dec_ref(x_2); +x_102 = lean_ctor_get(x_99, 1); +lean_inc(x_102); +lean_dec_ref(x_99); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_16); +x_103 = l_Lean_Elab_Tactic_Do_ProofMode_transferHypNames(x_16, x_87, x_8, x_9, x_10, x_11, x_102); +if (lean_obj_tag(x_103) == 0) +{ +lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; +x_104 = lean_ctor_get(x_103, 0); +lean_inc(x_104); +x_105 = lean_ctor_get(x_103, 1); +lean_inc(x_105); +lean_dec_ref(x_103); +x_106 = l_Lean_Loop_forIn_loop___at___Lean_Elab_Tactic_Do_ProofMode_transferHypNames_label_spec__1___closed__1; +x_107 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_106, x_10, x_11, x_105); +if (lean_obj_tag(x_107) == 0) +{ +lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; +x_108 = lean_ctor_get(x_107, 0); +lean_inc(x_108); +x_109 = lean_ctor_get(x_107, 1); +lean_inc(x_109); +lean_dec_ref(x_107); +lean_inc_ref(x_17); +lean_inc(x_104); +lean_inc_ref(x_15); +lean_ctor_set(x_1, 2, x_104); +lean_inc(x_75); +x_110 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___lam__0___boxed), 24, 14); +lean_closure_set(x_110, 0, x_3); +lean_closure_set(x_110, 1, x_75); +lean_closure_set(x_110, 2, x_1); +lean_closure_set(x_110, 3, x_100); +lean_closure_set(x_110, 4, x_77); +lean_closure_set(x_110, 5, x_78); +lean_closure_set(x_110, 6, x_79); +lean_closure_set(x_110, 7, x_89); +lean_closure_set(x_110, 8, x_82); +lean_closure_set(x_110, 9, x_15); +lean_closure_set(x_110, 10, x_16); +lean_closure_set(x_110, 11, x_104); +lean_closure_set(x_110, 12, x_17); +lean_closure_set(x_110, 13, x_97); +x_111 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4_spec__4___redArg(x_108, x_75, x_110, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_109); +return x_111; } +else +{ +lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; +lean_dec(x_104); +lean_dec(x_100); +lean_dec(x_97); +lean_dec_ref(x_82); +lean_dec(x_75); +lean_free_object(x_1); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_112 = lean_ctor_get(x_107, 0); +lean_inc(x_112); +x_113 = lean_ctor_get(x_107, 1); +lean_inc(x_113); +if (lean_is_exclusive(x_107)) { + lean_ctor_release(x_107, 0); + lean_ctor_release(x_107, 1); + x_114 = x_107; +} else { + lean_dec_ref(x_107); + x_114 = lean_box(0); +} +if (lean_is_scalar(x_114)) { + x_115 = lean_alloc_ctor(1, 2, 0); +} else { + x_115 = x_114; +} +lean_ctor_set(x_115, 0, x_112); +lean_ctor_set(x_115, 1, x_113); +return x_115; } } else { -uint8_t x_83; +lean_dec(x_100); +lean_dec(x_97); +lean_dec_ref(x_82); +lean_dec(x_75); +lean_free_object(x_1); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +return x_103; +} +} +else +{ +lean_object* x_116; lean_object* x_117; +lean_dec(x_100); +lean_dec(x_97); +lean_dec(x_87); +lean_dec_ref(x_82); +lean_dec(x_75); +lean_free_object(x_1); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_3); +x_116 = lean_ctor_get(x_99, 1); +lean_inc(x_116); +lean_dec_ref(x_99); +x_117 = lean_apply_9(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_116); +return x_117; +} +} +else +{ +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; +lean_dec(x_97); +lean_dec(x_87); +lean_dec_ref(x_82); +lean_dec(x_75); lean_free_object(x_1); lean_dec_ref(x_17); lean_dec_ref(x_16); @@ -3712,247 +3718,308 @@ lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); -x_83 = !lean_is_exclusive(x_21); -if (x_83 == 0) -{ -return x_21; +x_118 = lean_ctor_get(x_99, 0); +lean_inc(x_118); +x_119 = lean_ctor_get(x_99, 1); +lean_inc(x_119); +if (lean_is_exclusive(x_99)) { + lean_ctor_release(x_99, 0); + lean_ctor_release(x_99, 1); + x_120 = x_99; +} else { + lean_dec_ref(x_99); + x_120 = lean_box(0); +} +if (lean_is_scalar(x_120)) { + x_121 = lean_alloc_ctor(1, 2, 0); +} else { + x_121 = x_120; +} +lean_ctor_set(x_121, 0, x_118); +lean_ctor_set(x_121, 1, x_119); +return x_121; +} } else { -lean_object* x_84; lean_object* x_85; lean_object* x_86; -x_84 = lean_ctor_get(x_21, 0); -x_85 = lean_ctor_get(x_21, 1); -lean_inc(x_85); -lean_inc(x_84); -lean_dec(x_21); -x_86 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_86, 0, x_84); -lean_ctor_set(x_86, 1, x_85); +lean_object* x_122; lean_object* x_123; +lean_dec(x_95); +lean_dec(x_87); +lean_dec_ref(x_82); +lean_dec(x_75); +lean_free_object(x_1); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_3); +x_122 = lean_ctor_get(x_94, 1); +lean_inc(x_122); +lean_dec_ref(x_94); +x_123 = lean_apply_9(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_122); +return x_123; +} +} +else +{ +lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; +lean_dec(x_87); +lean_dec_ref(x_82); +lean_dec(x_75); +lean_free_object(x_1); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_124 = lean_ctor_get(x_94, 0); +lean_inc(x_124); +x_125 = lean_ctor_get(x_94, 1); +lean_inc(x_125); +if (lean_is_exclusive(x_94)) { + lean_ctor_release(x_94, 0); + lean_ctor_release(x_94, 1); + x_126 = x_94; +} else { + lean_dec_ref(x_94); + x_126 = lean_box(0); +} +if (lean_is_scalar(x_126)) { + x_127 = lean_alloc_ctor(1, 2, 0); +} else { + x_127 = x_126; +} +lean_ctor_set(x_127, 0, x_124); +lean_ctor_set(x_127, 1, x_125); +return x_127; +} +} +else +{ +lean_dec_ref(x_82); +lean_dec(x_75); +lean_free_object(x_1); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); return x_86; } } } else { -lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; uint8_t x_92; lean_object* x_93; lean_object* x_94; -x_87 = lean_ctor_get(x_1, 0); -x_88 = lean_ctor_get(x_1, 1); -x_89 = lean_ctor_get(x_1, 2); -x_90 = lean_ctor_get(x_1, 3); -lean_inc(x_90); -lean_inc(x_89); -lean_inc(x_88); -lean_inc(x_87); -lean_dec(x_1); -x_91 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___closed__1; -x_92 = 0; -x_93 = lean_box(0); -lean_inc_ref(x_8); -x_94 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_91, x_92, x_93, x_8, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_94) == 0) -{ -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_94, 0); -lean_inc(x_95); -x_96 = lean_ctor_get(x_94, 1); -lean_inc(x_96); -lean_dec_ref(x_94); -x_97 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11___closed__0; -x_98 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11___closed__1; -x_99 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11___closed__2; -x_100 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11___closed__3; -x_101 = lean_box(0); -lean_inc(x_87); -x_102 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_102, 0, x_87); -lean_ctor_set(x_102, 1, x_101); -lean_inc_ref(x_102); -x_103 = l_Lean_Expr_const___override(x_100, x_102); -lean_inc_ref(x_88); -x_104 = l_Lean_Expr_app___override(x_103, x_88); -x_105 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_105, 0, x_104); -lean_inc_ref(x_8); -x_106 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_105, x_92, x_93, x_8, x_9, x_10, x_11, x_96); -if (lean_obj_tag(x_106) == 0) -{ -lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; -x_107 = lean_ctor_get(x_106, 0); -lean_inc(x_107); -x_108 = lean_ctor_get(x_106, 1); -lean_inc(x_108); -lean_dec_ref(x_106); -x_109 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__10___closed__0; -x_110 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg___closed__0; -lean_inc_ref(x_102); -x_111 = l_Lean_Expr_const___override(x_110, x_102); -lean_inc(x_95); -lean_inc(x_107); -lean_inc_ref(x_89); -lean_inc_ref(x_88); -x_112 = l_Lean_mkApp4(x_111, x_88, x_89, x_107, x_95); -x_113 = lean_box(0); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -x_114 = l_Lean_Meta_synthInstance_x3f(x_112, x_113, x_8, x_9, x_10, x_11, x_108); -if (lean_obj_tag(x_114) == 0) -{ -lean_object* x_115; -x_115 = lean_ctor_get(x_114, 0); -lean_inc(x_115); -if (lean_obj_tag(x_115) == 0) -{ -lean_object* x_116; lean_object* x_117; -lean_dec(x_107); -lean_dec_ref(x_102); -lean_dec(x_95); -lean_dec_ref(x_90); -lean_dec_ref(x_89); -lean_dec_ref(x_88); -lean_dec(x_87); +lean_free_object(x_1); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); lean_dec_ref(x_3); -x_116 = lean_ctor_get(x_114, 1); -lean_inc(x_116); -lean_dec_ref(x_114); -x_117 = lean_apply_9(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_116); -return x_117; +lean_dec_ref(x_2); +return x_21; +} } else { -lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; -x_118 = lean_ctor_get(x_114, 1); -lean_inc(x_118); -lean_dec_ref(x_114); -x_119 = lean_ctor_get(x_115, 0); -lean_inc(x_119); -lean_dec_ref(x_115); -x_120 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg___closed__1; -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_95); -x_121 = l_Lean_Meta_isExprDefEq(x_120, x_95, x_8, x_9, x_10, x_11, x_118); -if (lean_obj_tag(x_121) == 0) -{ -lean_object* x_122; uint8_t x_123; -x_122 = lean_ctor_get(x_121, 0); -lean_inc(x_122); -x_123 = lean_unbox(x_122); -if (x_123 == 0) -{ -lean_object* x_124; lean_object* x_125; -lean_dec_ref(x_2); -x_124 = lean_ctor_get(x_121, 1); -lean_inc(x_124); -lean_dec_ref(x_121); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_89); -x_125 = l_Lean_Elab_Tactic_Do_ProofMode_transferHypNames(x_89, x_107, x_8, x_9, x_10, x_11, x_124); -if (lean_obj_tag(x_125) == 0) -{ -lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; -x_126 = lean_ctor_get(x_125, 0); -lean_inc(x_126); -x_127 = lean_ctor_get(x_125, 1); -lean_inc(x_127); -lean_dec_ref(x_125); -x_128 = l_Lean_Loop_forIn_loop___at___Lean_Elab_Tactic_Do_ProofMode_transferHypNames_label_spec__1___closed__1; -x_129 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_128, x_10, x_11, x_127); -if (lean_obj_tag(x_129) == 0) -{ -lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; -x_130 = lean_ctor_get(x_129, 0); -lean_inc(x_130); -x_131 = lean_ctor_get(x_129, 1); +lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; uint8_t x_133; lean_object* x_134; lean_object* x_135; +x_128 = lean_ctor_get(x_1, 0); +x_129 = lean_ctor_get(x_1, 1); +x_130 = lean_ctor_get(x_1, 2); +x_131 = lean_ctor_get(x_1, 3); lean_inc(x_131); -lean_dec_ref(x_129); -lean_inc_ref(x_90); -lean_inc(x_126); -lean_inc_ref(x_88); -x_132 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_132, 0, x_87); -lean_ctor_set(x_132, 1, x_88); -lean_ctor_set(x_132, 2, x_126); -lean_ctor_set(x_132, 3, x_90); -lean_inc(x_95); -x_133 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg___lam__0___boxed), 24, 14); -lean_closure_set(x_133, 0, x_3); -lean_closure_set(x_133, 1, x_95); -lean_closure_set(x_133, 2, x_132); -lean_closure_set(x_133, 3, x_122); -lean_closure_set(x_133, 4, x_97); -lean_closure_set(x_133, 5, x_98); -lean_closure_set(x_133, 6, x_99); -lean_closure_set(x_133, 7, x_109); -lean_closure_set(x_133, 8, x_102); -lean_closure_set(x_133, 9, x_88); -lean_closure_set(x_133, 10, x_89); -lean_closure_set(x_133, 11, x_126); -lean_closure_set(x_133, 12, x_90); -lean_closure_set(x_133, 13, x_119); -x_134 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4_spec__4___redArg(x_130, x_95, x_133, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_131); -return x_134; -} -else +lean_inc(x_130); +lean_inc(x_129); +lean_inc(x_128); +lean_dec(x_1); +x_132 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___closed__1; +x_133 = 0; +x_134 = lean_box(0); +lean_inc_ref(x_8); +x_135 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_132, x_133, x_134, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_135) == 0) { -lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; -lean_dec(x_126); -lean_dec(x_122); -lean_dec(x_119); -lean_dec_ref(x_102); -lean_dec(x_95); -lean_dec_ref(x_90); -lean_dec_ref(x_89); -lean_dec_ref(x_88); -lean_dec(x_87); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -x_135 = lean_ctor_get(x_129, 0); -lean_inc(x_135); -x_136 = lean_ctor_get(x_129, 1); +lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; +x_136 = lean_ctor_get(x_135, 0); lean_inc(x_136); -if (lean_is_exclusive(x_129)) { - lean_ctor_release(x_129, 0); - lean_ctor_release(x_129, 1); - x_137 = x_129; +x_137 = lean_ctor_get(x_135, 1); +lean_inc(x_137); +if (lean_is_exclusive(x_135)) { + lean_ctor_release(x_135, 0); + lean_ctor_release(x_135, 1); + x_138 = x_135; } else { - lean_dec_ref(x_129); - x_137 = lean_box(0); + lean_dec_ref(x_135); + x_138 = lean_box(0); } -if (lean_is_scalar(x_137)) { - x_138 = lean_alloc_ctor(1, 2, 0); +x_139 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11___closed__0; +x_140 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11___closed__1; +x_141 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11___closed__2; +x_142 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__11___closed__3; +x_143 = lean_box(0); +lean_inc(x_128); +if (lean_is_scalar(x_138)) { + x_144 = lean_alloc_ctor(1, 2, 0); } else { - x_138 = x_137; -} -lean_ctor_set(x_138, 0, x_135); -lean_ctor_set(x_138, 1, x_136); -return x_138; + x_144 = x_138; + lean_ctor_set_tag(x_144, 1); } +lean_ctor_set(x_144, 0, x_128); +lean_ctor_set(x_144, 1, x_143); +lean_inc_ref(x_144); +x_145 = l_Lean_Expr_const___override(x_142, x_144); +lean_inc_ref(x_129); +x_146 = l_Lean_Expr_app___override(x_145, x_129); +x_147 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_147, 0, x_146); +lean_inc_ref(x_8); +x_148 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_147, x_133, x_134, x_8, x_9, x_10, x_11, x_137); +if (lean_obj_tag(x_148) == 0) +{ +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; +x_149 = lean_ctor_get(x_148, 0); +lean_inc(x_149); +x_150 = lean_ctor_get(x_148, 1); +lean_inc(x_150); +lean_dec_ref(x_148); +x_151 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___lam__10___closed__0; +x_152 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___closed__0; +lean_inc_ref(x_144); +x_153 = l_Lean_Expr_const___override(x_152, x_144); +lean_inc(x_136); +lean_inc(x_149); +lean_inc_ref(x_130); +lean_inc_ref(x_129); +x_154 = l_Lean_mkApp4(x_153, x_129, x_130, x_149, x_136); +x_155 = lean_box(0); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_156 = l_Lean_Meta_trySynthInstance(x_154, x_155, x_8, x_9, x_10, x_11, x_150); +if (lean_obj_tag(x_156) == 0) +{ +lean_object* x_157; +x_157 = lean_ctor_get(x_156, 0); +lean_inc(x_157); +if (lean_obj_tag(x_157) == 1) +{ +lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; +x_158 = lean_ctor_get(x_156, 1); +lean_inc(x_158); +lean_dec_ref(x_156); +x_159 = lean_ctor_get(x_157, 0); +lean_inc(x_159); +lean_dec_ref(x_157); +x_160 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___closed__1; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_136); +x_161 = l_Lean_Meta_isExprDefEq(x_160, x_136, x_8, x_9, x_10, x_11, x_158); +if (lean_obj_tag(x_161) == 0) +{ +lean_object* x_162; uint8_t x_163; +x_162 = lean_ctor_get(x_161, 0); +lean_inc(x_162); +x_163 = lean_unbox(x_162); +if (x_163 == 0) +{ +lean_object* x_164; lean_object* x_165; +lean_dec_ref(x_2); +x_164 = lean_ctor_get(x_161, 1); +lean_inc(x_164); +lean_dec_ref(x_161); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_130); +x_165 = l_Lean_Elab_Tactic_Do_ProofMode_transferHypNames(x_130, x_149, x_8, x_9, x_10, x_11, x_164); +if (lean_obj_tag(x_165) == 0) +{ +lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; +x_166 = lean_ctor_get(x_165, 0); +lean_inc(x_166); +x_167 = lean_ctor_get(x_165, 1); +lean_inc(x_167); +lean_dec_ref(x_165); +x_168 = l_Lean_Loop_forIn_loop___at___Lean_Elab_Tactic_Do_ProofMode_transferHypNames_label_spec__1___closed__1; +x_169 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_168, x_10, x_11, x_167); +if (lean_obj_tag(x_169) == 0) +{ +lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; +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_ref(x_169); +lean_inc_ref(x_131); +lean_inc(x_166); +lean_inc_ref(x_129); +x_172 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_172, 0, x_128); +lean_ctor_set(x_172, 1, x_129); +lean_ctor_set(x_172, 2, x_166); +lean_ctor_set(x_172, 3, x_131); +lean_inc(x_136); +x_173 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___lam__0___boxed), 24, 14); +lean_closure_set(x_173, 0, x_3); +lean_closure_set(x_173, 1, x_136); +lean_closure_set(x_173, 2, x_172); +lean_closure_set(x_173, 3, x_162); +lean_closure_set(x_173, 4, x_139); +lean_closure_set(x_173, 5, x_140); +lean_closure_set(x_173, 6, x_141); +lean_closure_set(x_173, 7, x_151); +lean_closure_set(x_173, 8, x_144); +lean_closure_set(x_173, 9, x_129); +lean_closure_set(x_173, 10, x_130); +lean_closure_set(x_173, 11, x_166); +lean_closure_set(x_173, 12, x_131); +lean_closure_set(x_173, 13, x_159); +x_174 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4_spec__4___redArg(x_170, x_136, x_173, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_171); +return x_174; } else { -lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; -lean_dec(x_122); -lean_dec(x_119); -lean_dec_ref(x_102); -lean_dec(x_95); -lean_dec_ref(x_90); -lean_dec_ref(x_89); -lean_dec_ref(x_88); -lean_dec(x_87); +lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; +lean_dec(x_166); +lean_dec(x_162); +lean_dec(x_159); +lean_dec_ref(x_144); +lean_dec(x_136); +lean_dec_ref(x_131); +lean_dec_ref(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -3962,59 +4029,81 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); -x_139 = lean_ctor_get(x_125, 0); -lean_inc(x_139); -x_140 = lean_ctor_get(x_125, 1); -lean_inc(x_140); -if (lean_is_exclusive(x_125)) { - lean_ctor_release(x_125, 0); - lean_ctor_release(x_125, 1); - x_141 = x_125; +x_175 = lean_ctor_get(x_169, 0); +lean_inc(x_175); +x_176 = lean_ctor_get(x_169, 1); +lean_inc(x_176); +if (lean_is_exclusive(x_169)) { + lean_ctor_release(x_169, 0); + lean_ctor_release(x_169, 1); + x_177 = x_169; } else { - lean_dec_ref(x_125); - x_141 = lean_box(0); + lean_dec_ref(x_169); + x_177 = lean_box(0); } -if (lean_is_scalar(x_141)) { - x_142 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_177)) { + x_178 = lean_alloc_ctor(1, 2, 0); } else { - x_142 = x_141; + x_178 = x_177; } -lean_ctor_set(x_142, 0, x_139); -lean_ctor_set(x_142, 1, x_140); -return x_142; +lean_ctor_set(x_178, 0, x_175); +lean_ctor_set(x_178, 1, x_176); +return x_178; } } else { -lean_object* x_143; lean_object* x_144; -lean_dec(x_122); -lean_dec(x_119); -lean_dec(x_107); -lean_dec_ref(x_102); -lean_dec(x_95); -lean_dec_ref(x_90); -lean_dec_ref(x_89); -lean_dec_ref(x_88); -lean_dec(x_87); +lean_dec(x_162); +lean_dec(x_159); +lean_dec_ref(x_144); +lean_dec(x_136); +lean_dec_ref(x_131); +lean_dec_ref(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); lean_dec_ref(x_3); -x_143 = lean_ctor_get(x_121, 1); -lean_inc(x_143); -lean_dec_ref(x_121); -x_144 = lean_apply_9(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_143); -return x_144; +return x_165; } } else { -lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; -lean_dec(x_119); -lean_dec(x_107); -lean_dec_ref(x_102); -lean_dec(x_95); -lean_dec_ref(x_90); -lean_dec_ref(x_89); -lean_dec_ref(x_88); -lean_dec(x_87); +lean_object* x_179; lean_object* x_180; +lean_dec(x_162); +lean_dec(x_159); +lean_dec(x_149); +lean_dec_ref(x_144); +lean_dec(x_136); +lean_dec_ref(x_131); +lean_dec_ref(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_3); +x_179 = lean_ctor_get(x_161, 1); +lean_inc(x_179); +lean_dec_ref(x_161); +x_180 = lean_apply_9(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_179); +return x_180; +} +} +else +{ +lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; +lean_dec(x_159); +lean_dec(x_149); +lean_dec_ref(x_144); +lean_dec(x_136); +lean_dec_ref(x_131); +lean_dec_ref(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -4025,39 +4114,116 @@ lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); -x_145 = lean_ctor_get(x_121, 0); -lean_inc(x_145); -x_146 = lean_ctor_get(x_121, 1); -lean_inc(x_146); -if (lean_is_exclusive(x_121)) { - lean_ctor_release(x_121, 0); - lean_ctor_release(x_121, 1); - x_147 = x_121; +x_181 = lean_ctor_get(x_161, 0); +lean_inc(x_181); +x_182 = lean_ctor_get(x_161, 1); +lean_inc(x_182); +if (lean_is_exclusive(x_161)) { + lean_ctor_release(x_161, 0); + lean_ctor_release(x_161, 1); + x_183 = x_161; } else { - lean_dec_ref(x_121); - x_147 = lean_box(0); + lean_dec_ref(x_161); + x_183 = lean_box(0); } -if (lean_is_scalar(x_147)) { - x_148 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_183)) { + x_184 = lean_alloc_ctor(1, 2, 0); } else { - x_148 = x_147; + x_184 = x_183; } -lean_ctor_set(x_148, 0, x_145); -lean_ctor_set(x_148, 1, x_146); +lean_ctor_set(x_184, 0, x_181); +lean_ctor_set(x_184, 1, x_182); +return x_184; +} +} +else +{ +lean_object* x_185; lean_object* x_186; +lean_dec(x_157); +lean_dec(x_149); +lean_dec_ref(x_144); +lean_dec(x_136); +lean_dec_ref(x_131); +lean_dec_ref(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_3); +x_185 = lean_ctor_get(x_156, 1); +lean_inc(x_185); +lean_dec_ref(x_156); +x_186 = lean_apply_9(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_185); +return x_186; +} +} +else +{ +lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; +lean_dec(x_149); +lean_dec_ref(x_144); +lean_dec(x_136); +lean_dec_ref(x_131); +lean_dec_ref(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_187 = lean_ctor_get(x_156, 0); +lean_inc(x_187); +x_188 = lean_ctor_get(x_156, 1); +lean_inc(x_188); +if (lean_is_exclusive(x_156)) { + lean_ctor_release(x_156, 0); + lean_ctor_release(x_156, 1); + x_189 = x_156; +} else { + lean_dec_ref(x_156); + x_189 = lean_box(0); +} +if (lean_is_scalar(x_189)) { + x_190 = lean_alloc_ctor(1, 2, 0); +} else { + x_190 = x_189; +} +lean_ctor_set(x_190, 0, x_187); +lean_ctor_set(x_190, 1, x_188); +return x_190; +} +} +else +{ +lean_dec_ref(x_144); +lean_dec(x_136); +lean_dec_ref(x_131); +lean_dec_ref(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); return x_148; } } -} else { -lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; -lean_dec(x_107); -lean_dec_ref(x_102); -lean_dec(x_95); -lean_dec_ref(x_90); -lean_dec_ref(x_89); -lean_dec_ref(x_88); -lean_dec(x_87); +lean_dec_ref(x_131); +lean_dec_ref(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -4068,116 +4234,9 @@ lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); -x_149 = lean_ctor_get(x_114, 0); -lean_inc(x_149); -x_150 = lean_ctor_get(x_114, 1); -lean_inc(x_150); -if (lean_is_exclusive(x_114)) { - lean_ctor_release(x_114, 0); - lean_ctor_release(x_114, 1); - x_151 = x_114; -} else { - lean_dec_ref(x_114); - x_151 = lean_box(0); -} -if (lean_is_scalar(x_151)) { - x_152 = lean_alloc_ctor(1, 2, 0); -} else { - x_152 = x_151; -} -lean_ctor_set(x_152, 0, x_149); -lean_ctor_set(x_152, 1, x_150); -return x_152; +return x_135; } } -else -{ -lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; -lean_dec_ref(x_102); -lean_dec(x_95); -lean_dec_ref(x_90); -lean_dec_ref(x_89); -lean_dec_ref(x_88); -lean_dec(x_87); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_153 = lean_ctor_get(x_106, 0); -lean_inc(x_153); -x_154 = lean_ctor_get(x_106, 1); -lean_inc(x_154); -if (lean_is_exclusive(x_106)) { - lean_ctor_release(x_106, 0); - lean_ctor_release(x_106, 1); - x_155 = x_106; -} else { - lean_dec_ref(x_106); - x_155 = lean_box(0); -} -if (lean_is_scalar(x_155)) { - x_156 = lean_alloc_ctor(1, 2, 0); -} else { - x_156 = x_155; -} -lean_ctor_set(x_156, 0, x_153); -lean_ctor_set(x_156, 1, x_154); -return x_156; -} -} -else -{ -lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; -lean_dec_ref(x_90); -lean_dec_ref(x_89); -lean_dec_ref(x_88); -lean_dec(x_87); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_157 = lean_ctor_get(x_94, 0); -lean_inc(x_157); -x_158 = lean_ctor_get(x_94, 1); -lean_inc(x_158); -if (lean_is_exclusive(x_94)) { - lean_ctor_release(x_94, 0); - lean_ctor_release(x_94, 1); - x_159 = x_94; -} else { - lean_dec_ref(x_94); - x_159 = lean_box(0); -} -if (lean_is_scalar(x_159)) { - x_160 = lean_alloc_ctor(1, 2, 0); -} else { - x_160 = x_159; -} -lean_ctor_set(x_160, 0, x_157); -lean_ctor_set(x_160, 1, x_158); -return x_160; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -lean_object* x_14; -x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_14; } } LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__7_spec__7_spec__7_spec__7_spec__7___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { @@ -4954,6 +5013,7 @@ _start: lean_object* x_13; lean_object* x_14; lean_object* x_15; x_13 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_3); x_14 = lean_box(0); +lean_inc_ref(x_8); x_15 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_13, x_14, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_15) == 0) { @@ -4961,55 +5021,133 @@ uint8_t x_16; x_16 = !lean_is_exclusive(x_15); if (x_16 == 0) { -lean_object* x_17; lean_object* x_18; +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; x_17 = lean_ctor_get(x_15, 0); -lean_inc(x_17); -x_18 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_18, 0, x_17); -lean_ctor_set(x_18, 1, x_17); -lean_ctor_set(x_15, 0, x_18); -return x_15; +x_18 = lean_ctor_get(x_15, 1); +x_19 = l_Lean_Expr_mvarId_x21(x_17); +x_20 = lean_box(0); +lean_ctor_set_tag(x_15, 1); +lean_ctor_set(x_15, 1, x_20); +lean_ctor_set(x_15, 0, x_19); +x_21 = l_Lean_Elab_Tactic_replaceMainGoal___redArg(x_15, x_5, x_8, x_9, x_10, x_11, x_18); +lean_dec_ref(x_8); +if (lean_obj_tag(x_21) == 0) +{ +uint8_t x_22; +x_22 = !lean_is_exclusive(x_21); +if (x_22 == 0) +{ +lean_object* x_23; +x_23 = lean_ctor_get(x_21, 0); +lean_dec(x_23); +lean_ctor_set(x_21, 0, x_17); +return x_21; } else { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_19 = lean_ctor_get(x_15, 0); -x_20 = lean_ctor_get(x_15, 1); -lean_inc(x_20); -lean_inc(x_19); -lean_dec(x_15); -lean_inc(x_19); -x_21 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_21, 0, x_19); -lean_ctor_set(x_21, 1, x_19); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_20); -return x_22; -} -} -else -{ -uint8_t x_23; -x_23 = !lean_is_exclusive(x_15); -if (x_23 == 0) -{ -return x_15; -} -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_24 = lean_ctor_get(x_15, 0); -x_25 = lean_ctor_get(x_15, 1); -lean_inc(x_25); +lean_object* x_24; lean_object* x_25; +x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); -lean_dec(x_15); -x_26 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_26, 0, x_24); -lean_ctor_set(x_26, 1, x_25); -return x_26; +lean_dec(x_21); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_17); +lean_ctor_set(x_25, 1, x_24); +return x_25; } } +else +{ +uint8_t x_26; +lean_dec(x_17); +x_26 = !lean_is_exclusive(x_21); +if (x_26 == 0) +{ +return x_21; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_21, 0); +x_28 = lean_ctor_get(x_21, 1); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_21); +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_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_30 = lean_ctor_get(x_15, 0); +x_31 = lean_ctor_get(x_15, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_15); +x_32 = l_Lean_Expr_mvarId_x21(x_30); +x_33 = lean_box(0); +x_34 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +x_35 = l_Lean_Elab_Tactic_replaceMainGoal___redArg(x_34, x_5, x_8, x_9, x_10, x_11, x_31); +lean_dec_ref(x_8); +if (lean_obj_tag(x_35) == 0) +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_ctor_get(x_35, 1); +lean_inc(x_36); +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + lean_ctor_release(x_35, 1); + x_37 = x_35; +} else { + lean_dec_ref(x_35); + x_37 = lean_box(0); +} +if (lean_is_scalar(x_37)) { + x_38 = lean_alloc_ctor(0, 2, 0); +} else { + x_38 = x_37; +} +lean_ctor_set(x_38, 0, x_30); +lean_ctor_set(x_38, 1, x_36); +return x_38; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; +lean_dec(x_30); +x_39 = lean_ctor_get(x_35, 0); +lean_inc(x_39); +x_40 = lean_ctor_get(x_35, 1); +lean_inc(x_40); +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + lean_ctor_release(x_35, 1); + x_41 = x_35; +} else { + lean_dec_ref(x_35); + x_41 = lean_box(0); +} +if (lean_is_scalar(x_41)) { + x_42 = lean_alloc_ctor(1, 2, 0); +} else { + x_42 = x_41; +} +lean_ctor_set(x_42, 0, x_39); +lean_ctor_set(x_42, 1, x_40); +return x_42; +} +} +} +else +{ +lean_dec_ref(x_8); +return x_15; +} } } static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_elabMFrame___redArg___lam__2___closed__0() { @@ -5075,101 +5213,49 @@ lean_object* x_22; lean_object* x_23; x_22 = lean_ctor_get(x_19, 0); lean_inc(x_22); lean_dec_ref(x_19); -lean_inc(x_11); -lean_inc_ref(x_10); lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_5); -x_23 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg(x_22, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_18); +x_23 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4(x_22, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_18); if (lean_obj_tag(x_23) == 0) { -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_24; lean_object* x_25; lean_object* x_26; x_24 = lean_ctor_get(x_23, 0); lean_inc(x_24); x_25 = lean_ctor_get(x_23, 1); lean_inc(x_25); lean_dec_ref(x_23); -x_26 = lean_ctor_get(x_24, 0); -lean_inc(x_26); -x_27 = lean_ctor_get(x_24, 1); -lean_inc(x_27); -lean_dec(x_24); -x_28 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__7___redArg(x_1, x_27, x_9, x_25); -x_29 = !lean_is_exclusive(x_28); -if (x_29 == 0) -{ -lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_30 = lean_ctor_get(x_28, 1); -x_31 = lean_ctor_get(x_28, 0); -lean_dec(x_31); -x_32 = l_Lean_Expr_mvarId_x21(x_26); -lean_dec(x_26); -x_33 = lean_box(0); -lean_ctor_set_tag(x_28, 1); -lean_ctor_set(x_28, 1, x_33); -lean_ctor_set(x_28, 0, x_32); -x_34 = l_Lean_Elab_Tactic_replaceMainGoal___redArg(x_28, x_5, x_8, x_9, x_10, x_11, x_30); -lean_dec(x_11); -lean_dec_ref(x_10); +x_26 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__7___redArg(x_1, x_24, x_9, x_25); lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_5); -return x_34; +return x_26; } else { -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_28, 1); -lean_inc(x_35); -lean_dec(x_28); -x_36 = l_Lean_Expr_mvarId_x21(x_26); -lean_dec(x_26); -x_37 = lean_box(0); -x_38 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_38, 0, x_36); -lean_ctor_set(x_38, 1, x_37); -x_39 = l_Lean_Elab_Tactic_replaceMainGoal___redArg(x_38, x_5, x_8, x_9, x_10, x_11, x_35); -lean_dec(x_11); -lean_dec_ref(x_10); +uint8_t x_27; lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_5); -return x_39; -} -} -else -{ -uint8_t x_40; -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_5); lean_dec(x_1); -x_40 = !lean_is_exclusive(x_23); -if (x_40 == 0) +x_27 = !lean_is_exclusive(x_23); +if (x_27 == 0) { return x_23; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_23, 0); -x_42 = lean_ctor_get(x_23, 1); -lean_inc(x_42); -lean_inc(x_41); +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_23, 0); +x_29 = lean_ctor_get(x_23, 1); +lean_inc(x_29); +lean_inc(x_28); lean_dec(x_23); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +return x_30; } } } } else { -uint8_t x_44; +uint8_t x_31; lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -5181,23 +5267,23 @@ lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); lean_dec(x_1); -x_44 = !lean_is_exclusive(x_13); -if (x_44 == 0) +x_31 = !lean_is_exclusive(x_13); +if (x_31 == 0) { return x_13; } else { -lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_45 = lean_ctor_get(x_13, 0); -x_46 = lean_ctor_get(x_13, 1); -lean_inc(x_46); -lean_inc(x_45); +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_ctor_get(x_13, 0); +x_33 = lean_ctor_get(x_13, 1); +lean_inc(x_33); +lean_inc(x_32); lean_dec(x_13); -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_45); -lean_ctor_set(x_47, 1, x_46); -return x_47; +x_34 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +return x_34; } } } @@ -5377,7 +5463,7 @@ x_18 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Ela return x_18; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg___lam__0___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___lam__0___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -5406,7 +5492,7 @@ _start: { uint8_t x_25; lean_object* x_26; x_25 = lean_unbox(x_4); -x_26 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg___lam__0(x_1, x_2, x_3, x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24); +x_26 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___lam__0(x_1, x_2, x_3, x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24); return x_26; } } @@ -5678,10 +5764,10 @@ l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___closed__1 = _init_l_Lean_E lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___closed__1); l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___closed__2 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___closed__2(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___redArg___closed__2); -l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg___closed__0); -l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___redArg___closed__1); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___closed__0); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__4___closed__1); l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__7_spec__7_spec__7___redArg___closed__0 = _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__7_spec__7_spec__7___redArg___closed__0(); l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__7_spec__7_spec__7___redArg___closed__1 = _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__7_spec__7_spec__7___redArg___closed__1(); l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__7_spec__7_spec__7___redArg___closed__2 = _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMFrame_spec__7_spec__7_spec__7___redArg___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Have.c b/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Have.c index 4400fee5b9..89aa9cd2bb 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Have.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Have.c @@ -32,6 +32,7 @@ lean_object* l_Lean_mkApp8(lean_object*, lean_object*, lean_object*, lean_object LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMDup_spec__4_spec__4_spec__4_spec__6(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMDup_spec__4_spec__4___redArg(lean_object*, lean_object*, lean_object*); size_t lean_uint64_to_usize(uint64_t); +lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); extern lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; lean_object* lean_array_push(lean_object*, lean_object*); @@ -77,7 +78,6 @@ static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_D lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_elabTermEnsuringType(lean_object*, lean_object*, uint8_t, 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_Do_ProofMode_elabMHave___closed__2; -lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMDup_spec__4_spec__4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_elabMHave___closed__0; @@ -117,6 +117,7 @@ static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_elabMDup___lam__0___closed__ lean_object* lean_array_fget(lean_object*, lean_object*); static size_t l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMDup_spec__4_spec__4_spec__4___redArg___closed__1; lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_elabMHave___closed__1; LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_elabMDup_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkCollisionNode___redArg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -144,7 +145,6 @@ uint64_t l_Lean_hashMVarId____x40_Lean_Expr___hyg_1869_(lean_object*); lean_object* l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_elabMHave(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_elabMHave___lam__0(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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*); @@ -1463,7 +1463,7 @@ x_42 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_23); lean_inc_ref(x_34); lean_inc_ref(x_33); lean_inc(x_32); -x_43 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_32, x_33, x_34, x_42); +x_43 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_32, x_33, x_34, x_42); lean_inc_ref(x_35); lean_inc_ref(x_33); lean_inc(x_32); @@ -1581,7 +1581,7 @@ x_75 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_23); lean_inc_ref(x_34); lean_inc_ref(x_33); lean_inc(x_32); -x_76 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_32, x_33, x_34, x_75); +x_76 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_32, x_33, x_34, x_75); lean_inc_ref(x_35); lean_inc_ref(x_33); lean_inc(x_32); @@ -1743,7 +1743,7 @@ x_115 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_23); lean_inc_ref(x_108); lean_inc_ref(x_107); lean_inc(x_106); -x_116 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_106, x_107, x_108, x_115); +x_116 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_106, x_107, x_108, x_115); lean_inc_ref(x_109); lean_inc_ref(x_107); lean_inc(x_106); @@ -1928,7 +1928,7 @@ x_158 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_154); lean_inc_ref(x_149); lean_inc_ref(x_148); lean_inc(x_147); -x_159 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_147, x_148, x_149, x_158); +x_159 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_147, x_148, x_149, x_158); lean_inc_ref(x_150); lean_inc_ref(x_148); lean_inc(x_147); @@ -2532,7 +2532,7 @@ lean_inc_ref(x_31); lean_inc_ref(x_5); lean_inc_ref(x_2); lean_inc(x_4); -x_32 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(x_4, x_2, x_5, x_31); +x_32 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_4, x_2, x_5, x_31); x_33 = lean_ctor_get(x_32, 0); lean_inc(x_33); x_34 = lean_ctor_get(x_32, 1); @@ -3669,7 +3669,7 @@ lean_inc_ref(x_56); lean_inc_ref(x_31); lean_inc_ref(x_5); lean_inc(x_3); -x_64 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(x_3, x_5, x_31, x_56); +x_64 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_3, x_5, x_31, x_56); x_65 = lean_ctor_get(x_64, 0); lean_inc(x_65); x_66 = lean_ctor_get(x_64, 1); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Intro.c b/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Intro.c index 7a2a8596b6..b8f7e5a339 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Intro.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Intro.c @@ -25,6 +25,7 @@ static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__5; lean_object* l_Lean_Core_instMonadCoreM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__0___closed__1; lean_object* l_Lean_Macro_throwUnsupported___redArg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___lam__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); size_t lean_usize_shift_right(size_t, size_t); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode___aux__Lean__Elab__Tactic__Do__ProofMode__Intro______macroRules__Lean__Parser__Tactic__mintro__1___closed__15; @@ -34,7 +35,6 @@ lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp(lean_object static lean_object* l_Lean_Elab_Tactic_Do_ProofMode___aux__Lean__Elab__Tactic__Do__ProofMode__Intro______macroRules__Lean__Parser__Tactic__mintro__1___closed__13; lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__6_spec__6_spec__6(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___closed__0; lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mStartMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -45,6 +45,7 @@ static lean_object* l_Lean_Elab_Tactic_Do_ProofMode___aux__Lean__Elab__Tactic__D static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__6___closed__2; size_t lean_uint64_to_usize(uint64_t); uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); extern lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; @@ -58,7 +59,6 @@ static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam_ lean_object* l_ReaderT_instFunctorOfMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_elabMIntro___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__12(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_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13_spec__14___redArg___boxed(lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); @@ -68,16 +68,14 @@ static lean_object* l___private_Lean_Elab_Tactic_Do_ProofMode_Intro_0__Lean_Elab LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1_spec__3_spec__3(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__15; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__14; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1___redArg(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_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13_spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__12; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__1___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_elabMIntro(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__3___closed__4; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___redArg___lam__0___closed__3; @@ -95,7 +93,6 @@ LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMo LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__3___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13_spec__13___redArg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___lam__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode___aux__Lean__Elab__Tactic__Do__ProofMode__Intro______macroRules__Lean__Parser__Tactic__mintro__1___closed__1; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode___aux__Lean__Elab__Tactic__Do__ProofMode__Intro______macroRules__Lean__Parser__Tactic__mintro__1___closed__14; lean_object* l_ReaderT_pure___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -106,6 +103,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode___aux__Lean__Elab__Tact LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13_spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mkArray1___redArg(lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__6___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getMainGoal___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__2; static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__0___redArg___closed__0; @@ -139,10 +137,9 @@ static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__27 lean_object* l_Lean_Elab_Tactic_replaceMainGoal___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__6_spec__6_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1___redArg___lam__0___boxed(lean_object**); lean_object* lean_st_ref_get(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode___aux__Lean__Elab__Tactic__Do__ProofMode__Intro______macroRules__Lean__Parser__Tactic__mintro__1___closed__8; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode___aux__Lean__Elab__Tactic__Do__ProofMode__Intro______macroRules__Lean__Parser__Tactic__mintro__1___closed__6; lean_object* lean_st_mk_ref(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode___aux__Lean__Elab__Tactic__Do__ProofMode__Intro______macroRules__Lean__Parser__Tactic__mintro__1___closed__4; @@ -167,7 +164,7 @@ lean_object* l_ReaderT_instMonadExceptOf___redArg___lam__2(lean_object*, lean_ob LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__0___redArg(lean_object*); lean_object* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__0(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__0(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1_spec__3___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_ProofMode_Intro_0__Lean_Elab_Tactic_Do_ProofMode_elabMIntro___regBuiltin_Lean_Elab_Tactic_Do_ProofMode_elabMIntro__1(lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); @@ -182,17 +179,19 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_ static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_elabMIntro___closed__1; lean_object* l_Lean_Expr_appFn_x21(lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__1(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_instMonadExceptOf___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__30; lean_object* l_Lean_Meta_withLetDecl___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t); LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__12___redArg___lam__0(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_Do_ProofMode_mIntroForall___redArg___lam__3___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1___lam__0(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); lean_object* l_StateRefT_x27_lift___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofExpr(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13_spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Core_instMonadQuotationCoreM; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -201,19 +200,19 @@ lean_object* l_Lean_Meta_withLocalDeclD___redArg(lean_object*, lean_object*, lea LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__6_spec__6_spec__6_spec__6(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__9; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__3___closed__5; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__0; lean_object* l_Lean_Name_mkStr6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_node4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_getFreshHypName(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__12___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__32; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_elabMIntro___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13_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*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__21; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__6_spec__6_spec__6_spec__6_spec__6___redArg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); @@ -231,7 +230,7 @@ uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4(lean_object*, lean_object*); lean_object* l_ReaderT_instMonadFunctor___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_elabMIntro___lam__0(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_PersistentHashMap_mkEmptyEntries(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -253,10 +252,9 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean static lean_object* l_Lean_Elab_Tactic_Do_ProofMode___aux__Lean__Elab__Tactic__Do__ProofMode__Intro______macroRules__Lean__Parser__Tactic__mintro__1___closed__2; lean_object* l_Lean_monadNameGeneratorLift___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1___redArg___lam__0(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_sub(size_t, size_t); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_getCollisionNodeSize___redArg(lean_object*); size_t lean_usize_add(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -277,14 +275,15 @@ static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__29 uint64_t l_Lean_hashMVarId____x40_Lean_Expr___hyg_1869_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1_spec__3_spec__3___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1___lam__0___boxed(lean_object**); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_pushForallContextIntoHyps(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__17; static lean_object* l___private_Lean_Elab_Tactic_Do_ProofMode_Intro_0__Lean_Elab_Tactic_Do_ProofMode_elabMIntro___regBuiltin_Lean_Elab_Tactic_Do_ProofMode_elabMIntro__1___closed__0; -lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); extern lean_object* l_Lean_Meta_instAddMessageContextMetaM; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__8___boxed(lean_object**); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___closed__0; extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__0___redArg___closed__1; @@ -305,21 +304,17 @@ lean_object* lean_expr_instantiate1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode___aux__Lean__Elab__Tactic__Do__ProofMode__Intro______macroRules__Lean__Parser__Tactic__mintro__1___closed__12; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1_spec__3_spec__3___redArg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1_spec__3_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__6_spec__6_spec__6_spec__8(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_land(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__0(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_4; lean_object* x_5; -x_4 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_3); -x_5 = lean_apply_2(x_2, lean_box(0), x_4); -return x_5; +lean_object* x_3; +x_3 = lean_apply_2(x_1, lean_box(0), x_2); +return x_3; } } static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__1___closed__0() { @@ -334,42 +329,34 @@ return x_2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; uint8_t 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_6 = lean_ctor_get(x_5, 0); -lean_inc(x_6); -x_7 = lean_ctor_get(x_5, 1); -lean_inc(x_7); -lean_dec_ref(x_5); -x_8 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__0), 3, 2); -lean_closure_set(x_8, 0, x_6); -lean_closure_set(x_8, 1, x_1); -x_9 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__1___closed__0; -x_10 = lean_array_push(x_9, x_2); -x_11 = 1; -x_12 = 1; -x_13 = lean_box(x_11); -x_14 = lean_box(x_11); -x_15 = lean_box(x_12); -x_16 = lean_alloc_closure((void*)(l_Lean_Meta_mkLetFVars___boxed), 10, 5); -lean_closure_set(x_16, 0, x_10); -lean_closure_set(x_16, 1, x_7); -lean_closure_set(x_16, 2, x_13); -lean_closure_set(x_16, 3, x_14); -lean_closure_set(x_16, 4, x_15); -x_17 = lean_apply_2(x_3, lean_box(0), x_16); -x_18 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_17, x_8); -return x_18; +lean_object* x_6; lean_object* x_7; uint8_t x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_6 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__1___closed__0; +x_7 = lean_array_push(x_6, x_1); +x_8 = 1; +x_9 = 1; +x_10 = lean_box(x_8); +x_11 = lean_box(x_8); +x_12 = lean_box(x_9); +x_13 = lean_alloc_closure((void*)(l_Lean_Meta_mkLetFVars___boxed), 10, 5); +lean_closure_set(x_13, 0, x_7); +lean_closure_set(x_13, 1, x_5); +lean_closure_set(x_13, 2, x_10); +lean_closure_set(x_13, 3, x_11); +lean_closure_set(x_13, 4, x_12); +x_14 = lean_apply_2(x_2, lean_box(0), x_13); +x_15 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_14, x_4); +return x_15; } } LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__2(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_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -lean_inc_ref(x_3); +lean_inc_ref(x_2); lean_inc_ref(x_9); x_10 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__1), 5, 4); -lean_closure_set(x_10, 0, x_1); -lean_closure_set(x_10, 1, x_9); +lean_closure_set(x_10, 0, x_9); +lean_closure_set(x_10, 1, x_1); lean_closure_set(x_10, 2, x_2); lean_closure_set(x_10, 3, x_3); x_11 = lean_expr_instantiate1(x_4, x_9); @@ -380,7 +367,7 @@ lean_ctor_set(x_12, 1, x_6); lean_ctor_set(x_12, 2, x_7); lean_ctor_set(x_12, 3, x_11); x_13 = lean_apply_1(x_8, x_12); -x_14 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_13, x_10); +x_14 = lean_apply_4(x_2, lean_box(0), lean_box(0), x_13, x_10); return x_14; } } @@ -444,50 +431,19 @@ return x_1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -uint8_t x_13; -x_13 = !lean_is_exclusive(x_12); -if (x_13 == 0) -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_14 = lean_ctor_get(x_12, 1); -x_15 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__6___closed__0; -x_16 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__6___closed__1; -x_17 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__6___closed__2; -x_18 = l_Lean_Name_mkStr6(x_1, x_2, x_3, x_15, x_16, x_17); -x_19 = lean_box(0); -x_20 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_20, 0, x_4); -lean_ctor_set(x_20, 1, x_19); -x_21 = l_Lean_Expr_const___override(x_18, x_20); -x_22 = l_Lean_mkApp7(x_21, x_5, x_6, x_7, x_8, x_9, x_10, x_14); -lean_ctor_set(x_12, 1, x_22); -x_23 = lean_apply_2(x_11, lean_box(0), x_12); -return x_23; -} -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_24 = lean_ctor_get(x_12, 0); -x_25 = lean_ctor_get(x_12, 1); -lean_inc(x_25); -lean_inc(x_24); -lean_dec(x_12); -x_26 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__6___closed__0; -x_27 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__6___closed__1; -x_28 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__6___closed__2; -x_29 = l_Lean_Name_mkStr6(x_1, x_2, x_3, x_26, x_27, x_28); -x_30 = lean_box(0); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_4); -lean_ctor_set(x_31, 1, x_30); -x_32 = l_Lean_Expr_const___override(x_29, x_31); -x_33 = l_Lean_mkApp7(x_32, x_5, x_6, x_7, x_8, x_9, x_10, x_25); -x_34 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_34, 0, x_24); -lean_ctor_set(x_34, 1, x_33); -x_35 = lean_apply_2(x_11, lean_box(0), x_34); -return x_35; -} +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_13 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__6___closed__0; +x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__6___closed__1; +x_15 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__6___closed__2; +x_16 = l_Lean_Name_mkStr6(x_1, x_2, x_3, x_13, x_14, x_15); +x_17 = lean_box(0); +x_18 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_18, 0, x_4); +lean_ctor_set(x_18, 1, x_17); +x_19 = l_Lean_Expr_const___override(x_16, x_18); +x_20 = l_Lean_mkApp7(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_12); +x_21 = lean_apply_2(x_11, lean_box(0), x_20); +return x_21; } } LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -499,7 +455,7 @@ lean_inc_ref(x_14); lean_inc_ref(x_4); lean_inc_ref(x_3); lean_inc(x_2); -x_15 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(x_2, x_3, x_4, x_14); +x_15 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_2, x_3, x_4, x_14); x_16 = lean_ctor_get(x_15, 0); lean_inc(x_16); x_17 = lean_ctor_get(x_15, 1); @@ -1025,7 +981,7 @@ if (x_62 == 0) { if (lean_obj_tag(x_56) == 8) { -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; uint8_t x_71; +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; uint8_t x_72; lean_dec_ref(x_49); lean_dec_ref(x_25); x_63 = lean_ctor_get(x_56, 0); @@ -1037,82 +993,84 @@ lean_inc_ref(x_65); x_66 = lean_ctor_get(x_56, 3); lean_inc_ref(x_66); lean_dec_ref(x_56); +lean_inc_ref(x_52); +x_67 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__0), 2, 1); +lean_closure_set(x_67, 0, x_52); lean_inc_ref(x_51); lean_inc_ref(x_3); -lean_inc_ref(x_52); -x_67 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__2___boxed), 9, 8); -lean_closure_set(x_67, 0, x_52); -lean_closure_set(x_67, 1, x_3); -lean_closure_set(x_67, 2, x_51); -lean_closure_set(x_67, 3, x_66); -lean_closure_set(x_67, 4, x_53); -lean_closure_set(x_67, 5, x_54); -lean_closure_set(x_67, 6, x_55); -lean_closure_set(x_67, 7, x_6); -x_68 = lean_box(x_62); -x_69 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__3___boxed), 7, 6); -lean_closure_set(x_69, 0, x_2); -lean_closure_set(x_69, 1, x_1); -lean_closure_set(x_69, 2, x_64); -lean_closure_set(x_69, 3, x_65); -lean_closure_set(x_69, 4, x_67); -lean_closure_set(x_69, 5, x_68); -x_70 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__26; +x_68 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__2___boxed), 9, 8); +lean_closure_set(x_68, 0, x_3); +lean_closure_set(x_68, 1, x_51); +lean_closure_set(x_68, 2, x_67); +lean_closure_set(x_68, 3, x_66); +lean_closure_set(x_68, 4, x_53); +lean_closure_set(x_68, 5, x_54); +lean_closure_set(x_68, 6, x_55); +lean_closure_set(x_68, 7, x_6); +x_69 = lean_box(x_62); +x_70 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__3___boxed), 7, 6); +lean_closure_set(x_70, 0, x_2); +lean_closure_set(x_70, 1, x_1); +lean_closure_set(x_70, 2, x_64); +lean_closure_set(x_70, 3, x_65); +lean_closure_set(x_70, 4, x_68); +lean_closure_set(x_70, 5, x_69); +x_71 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__26; lean_inc(x_5); -x_71 = l_Lean_Syntax_isOfKind(x_5, x_70); -if (x_71 == 0) +x_72 = l_Lean_Syntax_isOfKind(x_5, x_71); +if (x_72 == 0) { -lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; +lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_dec_ref(x_52); lean_dec(x_5); -x_72 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); -lean_closure_set(x_72, 0, x_69); -x_73 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__5___boxed), 6, 1); -lean_closure_set(x_73, 0, x_63); -x_74 = lean_apply_2(x_3, lean_box(0), x_73); -x_75 = lean_apply_4(x_51, lean_box(0), lean_box(0), x_74, x_72); -return x_75; +x_73 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); +lean_closure_set(x_73, 0, x_70); +x_74 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__5___boxed), 6, 1); +lean_closure_set(x_74, 0, x_63); +x_75 = lean_apply_2(x_3, lean_box(0), x_74); +x_76 = lean_apply_4(x_51, lean_box(0), lean_box(0), x_75, x_73); +return x_76; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; uint8_t x_79; -x_76 = lean_unsigned_to_nat(0u); -x_77 = l_Lean_Syntax_getArg(x_5, x_76); +lean_object* x_77; lean_object* x_78; lean_object* x_79; uint8_t x_80; +x_77 = lean_unsigned_to_nat(0u); +x_78 = l_Lean_Syntax_getArg(x_5, x_77); lean_dec(x_5); -x_78 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__28; -lean_inc(x_77); -x_79 = l_Lean_Syntax_isOfKind(x_77, x_78); -if (x_79 == 0) +x_79 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__28; +lean_inc(x_78); +x_80 = l_Lean_Syntax_isOfKind(x_78, x_79); +if (x_80 == 0) { -lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; -lean_dec(x_77); +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +lean_dec(x_78); lean_dec_ref(x_52); -x_80 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); -lean_closure_set(x_80, 0, x_69); -x_81 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__5___boxed), 6, 1); -lean_closure_set(x_81, 0, x_63); -x_82 = lean_apply_2(x_3, lean_box(0), x_81); -x_83 = lean_apply_4(x_51, lean_box(0), lean_box(0), x_82, x_80); -return x_83; +x_81 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); +lean_closure_set(x_81, 0, x_70); +x_82 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__5___boxed), 6, 1); +lean_closure_set(x_82, 0, x_63); +x_83 = lean_apply_2(x_3, lean_box(0), x_82); +x_84 = lean_apply_4(x_51, lean_box(0), lean_box(0), x_83, x_81); +return x_84; } else { -lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_dec(x_63); lean_dec_ref(x_3); -x_84 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); -lean_closure_set(x_84, 0, x_69); -x_85 = l_Lean_Syntax_getId(x_77); -lean_dec(x_77); -x_86 = lean_apply_2(x_52, lean_box(0), x_85); -x_87 = lean_apply_4(x_51, lean_box(0), lean_box(0), x_86, x_84); -return x_87; +x_85 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); +lean_closure_set(x_85, 0, x_70); +x_86 = l_Lean_Syntax_getId(x_78); +lean_dec(x_78); +x_87 = lean_apply_2(x_52, lean_box(0), x_86); +x_88 = lean_apply_4(x_51, lean_box(0), lean_box(0), x_87, x_85); +return x_88; } } } else { -uint8_t x_88; +uint8_t x_89; lean_dec_ref(x_55); lean_dec_ref(x_54); lean_dec(x_53); @@ -1121,1212 +1079,1220 @@ lean_dec_ref(x_51); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_2); -x_88 = !lean_is_exclusive(x_1); -if (x_88 == 0) +x_89 = !lean_is_exclusive(x_1); +if (x_89 == 0) { -lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; -x_89 = lean_ctor_get(x_1, 1); -lean_dec(x_89); -x_90 = lean_ctor_get(x_1, 0); +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; +x_90 = lean_ctor_get(x_1, 1); lean_dec(x_90); -x_91 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__30; -x_92 = l_Lean_MessageData_ofExpr(x_56); +x_91 = lean_ctor_get(x_1, 0); +lean_dec(x_91); +x_92 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__30; +x_93 = l_Lean_MessageData_ofExpr(x_56); lean_ctor_set_tag(x_1, 7); -lean_ctor_set(x_1, 1, x_92); -lean_ctor_set(x_1, 0, x_91); -x_93 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__32; -x_94 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_94, 0, x_1); -lean_ctor_set(x_94, 1, x_93); -x_95 = l_Lean_throwError___redArg(x_25, x_49, x_94); -x_96 = lean_apply_2(x_3, lean_box(0), x_95); -return x_96; +lean_ctor_set(x_1, 1, x_93); +lean_ctor_set(x_1, 0, x_92); +x_94 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__32; +x_95 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_95, 0, x_1); +lean_ctor_set(x_95, 1, x_94); +x_96 = l_Lean_throwError___redArg(x_25, x_49, x_95); +x_97 = lean_apply_2(x_3, lean_box(0), x_96); +return x_97; } else { -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_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_dec(x_1); -x_97 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__30; -x_98 = l_Lean_MessageData_ofExpr(x_56); -x_99 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_99, 0, x_97); -lean_ctor_set(x_99, 1, x_98); -x_100 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__32; -x_101 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_101, 0, x_99); -lean_ctor_set(x_101, 1, x_100); -x_102 = l_Lean_throwError___redArg(x_25, x_49, x_101); -x_103 = lean_apply_2(x_3, lean_box(0), x_102); -return x_103; +x_98 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__30; +x_99 = l_Lean_MessageData_ofExpr(x_56); +x_100 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_100, 0, x_98); +lean_ctor_set(x_100, 1, x_99); +x_101 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__32; +x_102 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_102, 0, x_100); +lean_ctor_set(x_102, 1, x_101); +x_103 = l_Lean_throwError___redArg(x_25, x_49, x_102); +x_104 = lean_apply_2(x_3, lean_box(0), x_103); +return x_104; } } } else { -lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; +lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_dec_ref(x_49); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_104 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__9___boxed), 6, 1); -lean_closure_set(x_104, 0, x_5); -x_105 = l_Lean_Expr_appFn_x21(x_56); -x_106 = l_Lean_Expr_appFn_x21(x_105); -x_107 = l_Lean_Expr_appArg_x21(x_106); +x_105 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__9___boxed), 6, 1); +lean_closure_set(x_105, 0, x_5); +x_106 = l_Lean_Expr_appFn_x21(x_56); +x_107 = l_Lean_Expr_appFn_x21(x_106); +x_108 = l_Lean_Expr_appArg_x21(x_107); +lean_dec_ref(x_107); +x_109 = l_Lean_Expr_appArg_x21(x_106); lean_dec_ref(x_106); -x_108 = l_Lean_Expr_appArg_x21(x_105); -lean_dec_ref(x_105); -x_109 = l_Lean_Expr_appArg_x21(x_56); +x_110 = l_Lean_Expr_appArg_x21(x_56); lean_dec_ref(x_56); -x_110 = lean_box(x_62); +x_111 = lean_box(x_62); lean_inc_ref(x_3); lean_inc_ref(x_51); -x_111 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__10___boxed), 17, 16); -lean_closure_set(x_111, 0, x_108); -lean_closure_set(x_111, 1, x_53); -lean_closure_set(x_111, 2, x_54); -lean_closure_set(x_111, 3, x_55); -lean_closure_set(x_111, 4, x_57); -lean_closure_set(x_111, 5, x_58); -lean_closure_set(x_111, 6, x_59); -lean_closure_set(x_111, 7, x_107); -lean_closure_set(x_111, 8, x_109); -lean_closure_set(x_111, 9, x_52); -lean_closure_set(x_111, 10, x_6); -lean_closure_set(x_111, 11, x_51); -lean_closure_set(x_111, 12, x_110); -lean_closure_set(x_111, 13, x_3); -lean_closure_set(x_111, 14, x_25); -lean_closure_set(x_111, 15, x_43); -x_112 = lean_apply_2(x_3, lean_box(0), x_104); -x_113 = lean_apply_4(x_51, lean_box(0), lean_box(0), x_112, x_111); -return x_113; +x_112 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__10___boxed), 17, 16); +lean_closure_set(x_112, 0, x_109); +lean_closure_set(x_112, 1, x_53); +lean_closure_set(x_112, 2, x_54); +lean_closure_set(x_112, 3, x_55); +lean_closure_set(x_112, 4, x_57); +lean_closure_set(x_112, 5, x_58); +lean_closure_set(x_112, 6, x_59); +lean_closure_set(x_112, 7, x_108); +lean_closure_set(x_112, 8, x_110); +lean_closure_set(x_112, 9, x_52); +lean_closure_set(x_112, 10, x_6); +lean_closure_set(x_112, 11, x_51); +lean_closure_set(x_112, 12, x_111); +lean_closure_set(x_112, 13, x_3); +lean_closure_set(x_112, 14, x_25); +lean_closure_set(x_112, 15, x_43); +x_113 = lean_apply_2(x_3, lean_box(0), x_105); +x_114 = lean_apply_4(x_51, lean_box(0), lean_box(0), x_113, x_112); +return x_114; } } else { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; uint8_t x_146; -x_114 = lean_ctor_get(x_27, 0); -x_115 = lean_ctor_get(x_27, 2); -x_116 = lean_ctor_get(x_27, 3); -x_117 = lean_ctor_get(x_27, 4); +lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; uint8_t x_147; +x_115 = lean_ctor_get(x_27, 0); +x_116 = lean_ctor_get(x_27, 2); +x_117 = lean_ctor_get(x_27, 3); +x_118 = lean_ctor_get(x_27, 4); +lean_inc(x_118); lean_inc(x_117); lean_inc(x_116); lean_inc(x_115); -lean_inc(x_114); lean_dec(x_27); -x_118 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__6; -x_119 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__7; -lean_inc_ref(x_114); -x_120 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_120, 0, x_114); -x_121 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_121, 0, x_114); -x_122 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_122, 0, x_120); -lean_ctor_set(x_122, 1, x_121); -x_123 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_123, 0, x_117); -x_124 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_124, 0, x_116); -x_125 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_125, 0, x_115); -x_126 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_126, 0, x_122); -lean_ctor_set(x_126, 1, x_118); -lean_ctor_set(x_126, 2, x_125); -lean_ctor_set(x_126, 3, x_124); -lean_ctor_set(x_126, 4, x_123); -lean_ctor_set(x_25, 1, x_119); -lean_ctor_set(x_25, 0, x_126); -x_127 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__9; -x_128 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__15; -x_129 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__18; -x_130 = lean_ctor_get(x_129, 0); -lean_inc_ref(x_130); -x_131 = l_Lean_Meta_instAddMessageContextMetaM; +x_119 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__6; +x_120 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__7; +lean_inc_ref(x_115); +x_121 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_121, 0, x_115); +x_122 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_122, 0, x_115); +x_123 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_123, 0, x_121); +lean_ctor_set(x_123, 1, x_122); +x_124 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_124, 0, x_118); +x_125 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_125, 0, x_117); +x_126 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_126, 0, x_116); +x_127 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_127, 0, x_123); +lean_ctor_set(x_127, 1, x_119); +lean_ctor_set(x_127, 2, x_126); +lean_ctor_set(x_127, 3, x_125); +lean_ctor_set(x_127, 4, x_124); +lean_ctor_set(x_25, 1, x_120); +lean_ctor_set(x_25, 0, x_127); +x_128 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__9; +x_129 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__15; +x_130 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__18; +x_131 = lean_ctor_get(x_130, 0); +lean_inc_ref(x_131); +x_132 = l_Lean_Meta_instAddMessageContextMetaM; lean_inc_ref(x_25); -x_132 = l_Lean_instAddErrorMessageContextOfAddMessageContextOfMonad___redArg(x_131, x_25); -x_133 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_133, 0, x_128); -lean_ctor_set(x_133, 1, x_130); -lean_ctor_set(x_133, 2, x_132); -x_134 = lean_ctor_get(x_1, 0); -lean_inc_ref(x_134); -x_135 = lean_ctor_get(x_1, 1); +x_133 = l_Lean_instAddErrorMessageContextOfAddMessageContextOfMonad___redArg(x_132, x_25); +x_134 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_134, 0, x_129); +lean_ctor_set(x_134, 1, x_131); +lean_ctor_set(x_134, 2, x_133); +x_135 = lean_ctor_get(x_1, 0); lean_inc_ref(x_135); -x_136 = lean_ctor_get(x_134, 1); +x_136 = lean_ctor_get(x_1, 1); lean_inc_ref(x_136); -lean_dec_ref(x_134); -x_137 = lean_ctor_get(x_4, 0); -lean_inc(x_137); -x_138 = lean_ctor_get(x_4, 1); -lean_inc_ref(x_138); -x_139 = lean_ctor_get(x_4, 2); -lean_inc_ref(x_139); -x_140 = lean_ctor_get(x_4, 3); -lean_inc_ref(x_140); -lean_dec_ref(x_4); -x_141 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__19; -x_142 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__20; -x_143 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__21; -x_144 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__23; -x_145 = lean_unsigned_to_nat(3u); -x_146 = l_Lean_Expr_isAppOfArity(x_140, x_144, x_145); -if (x_146 == 0) -{ -if (lean_obj_tag(x_140) == 8) -{ -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; uint8_t x_155; -lean_dec_ref(x_133); -lean_dec_ref(x_25); -x_147 = lean_ctor_get(x_140, 0); -lean_inc(x_147); -x_148 = lean_ctor_get(x_140, 1); -lean_inc_ref(x_148); -x_149 = lean_ctor_get(x_140, 2); -lean_inc_ref(x_149); -x_150 = lean_ctor_get(x_140, 3); -lean_inc_ref(x_150); -lean_dec_ref(x_140); -lean_inc_ref(x_135); -lean_inc_ref(x_3); -lean_inc_ref(x_136); -x_151 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__2___boxed), 9, 8); -lean_closure_set(x_151, 0, x_136); -lean_closure_set(x_151, 1, x_3); -lean_closure_set(x_151, 2, x_135); -lean_closure_set(x_151, 3, x_150); -lean_closure_set(x_151, 4, x_137); -lean_closure_set(x_151, 5, x_138); -lean_closure_set(x_151, 6, x_139); -lean_closure_set(x_151, 7, x_6); -x_152 = lean_box(x_146); -x_153 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__3___boxed), 7, 6); -lean_closure_set(x_153, 0, x_2); -lean_closure_set(x_153, 1, x_1); -lean_closure_set(x_153, 2, x_148); -lean_closure_set(x_153, 3, x_149); -lean_closure_set(x_153, 4, x_151); -lean_closure_set(x_153, 5, x_152); -x_154 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__26; -lean_inc(x_5); -x_155 = l_Lean_Syntax_isOfKind(x_5, x_154); -if (x_155 == 0) -{ -lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -lean_dec_ref(x_136); -lean_dec(x_5); -x_156 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); -lean_closure_set(x_156, 0, x_153); -x_157 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__5___boxed), 6, 1); -lean_closure_set(x_157, 0, x_147); -x_158 = lean_apply_2(x_3, lean_box(0), x_157); -x_159 = lean_apply_4(x_135, lean_box(0), lean_box(0), x_158, x_156); -return x_159; -} -else -{ -lean_object* x_160; lean_object* x_161; lean_object* x_162; uint8_t x_163; -x_160 = lean_unsigned_to_nat(0u); -x_161 = l_Lean_Syntax_getArg(x_5, x_160); -lean_dec(x_5); -x_162 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__28; -lean_inc(x_161); -x_163 = l_Lean_Syntax_isOfKind(x_161, x_162); -if (x_163 == 0) -{ -lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; -lean_dec(x_161); -lean_dec_ref(x_136); -x_164 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); -lean_closure_set(x_164, 0, x_153); -x_165 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__5___boxed), 6, 1); -lean_closure_set(x_165, 0, x_147); -x_166 = lean_apply_2(x_3, lean_box(0), x_165); -x_167 = lean_apply_4(x_135, lean_box(0), lean_box(0), x_166, x_164); -return x_167; -} -else -{ -lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; -lean_dec(x_147); -lean_dec_ref(x_3); -x_168 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); -lean_closure_set(x_168, 0, x_153); -x_169 = l_Lean_Syntax_getId(x_161); -lean_dec(x_161); -x_170 = lean_apply_2(x_136, lean_box(0), x_169); -x_171 = lean_apply_4(x_135, lean_box(0), lean_box(0), x_170, x_168); -return x_171; -} -} -} -else -{ -lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; -lean_dec_ref(x_139); -lean_dec_ref(x_138); -lean_dec(x_137); -lean_dec_ref(x_136); +x_137 = lean_ctor_get(x_135, 1); +lean_inc_ref(x_137); lean_dec_ref(x_135); +x_138 = lean_ctor_get(x_4, 0); +lean_inc(x_138); +x_139 = lean_ctor_get(x_4, 1); +lean_inc_ref(x_139); +x_140 = lean_ctor_get(x_4, 2); +lean_inc_ref(x_140); +x_141 = lean_ctor_get(x_4, 3); +lean_inc_ref(x_141); +lean_dec_ref(x_4); +x_142 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__19; +x_143 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__20; +x_144 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__21; +x_145 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__23; +x_146 = lean_unsigned_to_nat(3u); +x_147 = l_Lean_Expr_isAppOfArity(x_141, x_145, x_146); +if (x_147 == 0) +{ +if (lean_obj_tag(x_141) == 8) +{ +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; uint8_t x_157; +lean_dec_ref(x_134); +lean_dec_ref(x_25); +x_148 = lean_ctor_get(x_141, 0); +lean_inc(x_148); +x_149 = lean_ctor_get(x_141, 1); +lean_inc_ref(x_149); +x_150 = lean_ctor_get(x_141, 2); +lean_inc_ref(x_150); +x_151 = lean_ctor_get(x_141, 3); +lean_inc_ref(x_151); +lean_dec_ref(x_141); +lean_inc_ref(x_137); +x_152 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__0), 2, 1); +lean_closure_set(x_152, 0, x_137); +lean_inc_ref(x_136); +lean_inc_ref(x_3); +x_153 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__2___boxed), 9, 8); +lean_closure_set(x_153, 0, x_3); +lean_closure_set(x_153, 1, x_136); +lean_closure_set(x_153, 2, x_152); +lean_closure_set(x_153, 3, x_151); +lean_closure_set(x_153, 4, x_138); +lean_closure_set(x_153, 5, x_139); +lean_closure_set(x_153, 6, x_140); +lean_closure_set(x_153, 7, x_6); +x_154 = lean_box(x_147); +x_155 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__3___boxed), 7, 6); +lean_closure_set(x_155, 0, x_2); +lean_closure_set(x_155, 1, x_1); +lean_closure_set(x_155, 2, x_149); +lean_closure_set(x_155, 3, x_150); +lean_closure_set(x_155, 4, x_153); +lean_closure_set(x_155, 5, x_154); +x_156 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__26; +lean_inc(x_5); +x_157 = l_Lean_Syntax_isOfKind(x_5, x_156); +if (x_157 == 0) +{ +lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; +lean_dec_ref(x_137); +lean_dec(x_5); +x_158 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); +lean_closure_set(x_158, 0, x_155); +x_159 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__5___boxed), 6, 1); +lean_closure_set(x_159, 0, x_148); +x_160 = lean_apply_2(x_3, lean_box(0), x_159); +x_161 = lean_apply_4(x_136, lean_box(0), lean_box(0), x_160, x_158); +return x_161; +} +else +{ +lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; +x_162 = lean_unsigned_to_nat(0u); +x_163 = l_Lean_Syntax_getArg(x_5, x_162); +lean_dec(x_5); +x_164 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__28; +lean_inc(x_163); +x_165 = l_Lean_Syntax_isOfKind(x_163, x_164); +if (x_165 == 0) +{ +lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; +lean_dec(x_163); +lean_dec_ref(x_137); +x_166 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); +lean_closure_set(x_166, 0, x_155); +x_167 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__5___boxed), 6, 1); +lean_closure_set(x_167, 0, x_148); +x_168 = lean_apply_2(x_3, lean_box(0), x_167); +x_169 = lean_apply_4(x_136, lean_box(0), lean_box(0), x_168, x_166); +return x_169; +} +else +{ +lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; +lean_dec(x_148); +lean_dec_ref(x_3); +x_170 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); +lean_closure_set(x_170, 0, x_155); +x_171 = l_Lean_Syntax_getId(x_163); +lean_dec(x_163); +x_172 = lean_apply_2(x_137, lean_box(0), x_171); +x_173 = lean_apply_4(x_136, lean_box(0), lean_box(0), x_172, x_170); +return x_173; +} +} +} +else +{ +lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; +lean_dec_ref(x_140); +lean_dec_ref(x_139); +lean_dec(x_138); +lean_dec_ref(x_137); +lean_dec_ref(x_136); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_2); if (lean_is_exclusive(x_1)) { lean_ctor_release(x_1, 0); lean_ctor_release(x_1, 1); - x_172 = x_1; + x_174 = x_1; } else { lean_dec_ref(x_1); - x_172 = lean_box(0); + x_174 = lean_box(0); } -x_173 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__30; -x_174 = l_Lean_MessageData_ofExpr(x_140); -if (lean_is_scalar(x_172)) { - x_175 = lean_alloc_ctor(7, 2, 0); +x_175 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__30; +x_176 = l_Lean_MessageData_ofExpr(x_141); +if (lean_is_scalar(x_174)) { + x_177 = lean_alloc_ctor(7, 2, 0); } else { - x_175 = x_172; - lean_ctor_set_tag(x_175, 7); + x_177 = x_174; + lean_ctor_set_tag(x_177, 7); } -lean_ctor_set(x_175, 0, x_173); -lean_ctor_set(x_175, 1, x_174); -x_176 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__32; -x_177 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_177, 0, x_175); lean_ctor_set(x_177, 1, x_176); -x_178 = l_Lean_throwError___redArg(x_25, x_133, x_177); -x_179 = lean_apply_2(x_3, lean_box(0), x_178); -return x_179; +x_178 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__32; +x_179 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_179, 0, x_177); +lean_ctor_set(x_179, 1, x_178); +x_180 = l_Lean_throwError___redArg(x_25, x_134, x_179); +x_181 = lean_apply_2(x_3, lean_box(0), x_180); +return x_181; } } else { -lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; -lean_dec_ref(x_133); +lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; +lean_dec_ref(x_134); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_180 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__9___boxed), 6, 1); -lean_closure_set(x_180, 0, x_5); -x_181 = l_Lean_Expr_appFn_x21(x_140); -x_182 = l_Lean_Expr_appFn_x21(x_181); -x_183 = l_Lean_Expr_appArg_x21(x_182); -lean_dec_ref(x_182); -x_184 = l_Lean_Expr_appArg_x21(x_181); -lean_dec_ref(x_181); -x_185 = l_Lean_Expr_appArg_x21(x_140); -lean_dec_ref(x_140); -x_186 = lean_box(x_146); +x_182 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__9___boxed), 6, 1); +lean_closure_set(x_182, 0, x_5); +x_183 = l_Lean_Expr_appFn_x21(x_141); +x_184 = l_Lean_Expr_appFn_x21(x_183); +x_185 = l_Lean_Expr_appArg_x21(x_184); +lean_dec_ref(x_184); +x_186 = l_Lean_Expr_appArg_x21(x_183); +lean_dec_ref(x_183); +x_187 = l_Lean_Expr_appArg_x21(x_141); +lean_dec_ref(x_141); +x_188 = lean_box(x_147); lean_inc_ref(x_3); -lean_inc_ref(x_135); -x_187 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__10___boxed), 17, 16); -lean_closure_set(x_187, 0, x_184); -lean_closure_set(x_187, 1, x_137); -lean_closure_set(x_187, 2, x_138); -lean_closure_set(x_187, 3, x_139); -lean_closure_set(x_187, 4, x_141); -lean_closure_set(x_187, 5, x_142); -lean_closure_set(x_187, 6, x_143); -lean_closure_set(x_187, 7, x_183); -lean_closure_set(x_187, 8, x_185); -lean_closure_set(x_187, 9, x_136); -lean_closure_set(x_187, 10, x_6); -lean_closure_set(x_187, 11, x_135); -lean_closure_set(x_187, 12, x_186); -lean_closure_set(x_187, 13, x_3); -lean_closure_set(x_187, 14, x_25); -lean_closure_set(x_187, 15, x_127); -x_188 = lean_apply_2(x_3, lean_box(0), x_180); -x_189 = lean_apply_4(x_135, lean_box(0), lean_box(0), x_188, x_187); -return x_189; +lean_inc_ref(x_136); +x_189 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__10___boxed), 17, 16); +lean_closure_set(x_189, 0, x_186); +lean_closure_set(x_189, 1, x_138); +lean_closure_set(x_189, 2, x_139); +lean_closure_set(x_189, 3, x_140); +lean_closure_set(x_189, 4, x_142); +lean_closure_set(x_189, 5, x_143); +lean_closure_set(x_189, 6, x_144); +lean_closure_set(x_189, 7, x_185); +lean_closure_set(x_189, 8, x_187); +lean_closure_set(x_189, 9, x_137); +lean_closure_set(x_189, 10, x_6); +lean_closure_set(x_189, 11, x_136); +lean_closure_set(x_189, 12, x_188); +lean_closure_set(x_189, 13, x_3); +lean_closure_set(x_189, 14, x_25); +lean_closure_set(x_189, 15, x_128); +x_190 = lean_apply_2(x_3, lean_box(0), x_182); +x_191 = lean_apply_4(x_136, lean_box(0), lean_box(0), x_190, x_189); +return x_191; } } } else { -lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; uint8_t x_225; -x_190 = lean_ctor_get(x_25, 0); -lean_inc(x_190); +lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; uint8_t x_227; +x_192 = lean_ctor_get(x_25, 0); +lean_inc(x_192); lean_dec(x_25); -x_191 = lean_ctor_get(x_190, 0); -lean_inc_ref(x_191); -x_192 = lean_ctor_get(x_190, 2); -lean_inc_ref(x_192); -x_193 = lean_ctor_get(x_190, 3); +x_193 = lean_ctor_get(x_192, 0); lean_inc_ref(x_193); -x_194 = lean_ctor_get(x_190, 4); +x_194 = lean_ctor_get(x_192, 2); lean_inc_ref(x_194); -if (lean_is_exclusive(x_190)) { - lean_ctor_release(x_190, 0); - lean_ctor_release(x_190, 1); - lean_ctor_release(x_190, 2); - lean_ctor_release(x_190, 3); - lean_ctor_release(x_190, 4); - x_195 = x_190; +x_195 = lean_ctor_get(x_192, 3); +lean_inc_ref(x_195); +x_196 = lean_ctor_get(x_192, 4); +lean_inc_ref(x_196); +if (lean_is_exclusive(x_192)) { + lean_ctor_release(x_192, 0); + lean_ctor_release(x_192, 1); + lean_ctor_release(x_192, 2); + lean_ctor_release(x_192, 3); + lean_ctor_release(x_192, 4); + x_197 = x_192; } else { - lean_dec_ref(x_190); - x_195 = lean_box(0); + lean_dec_ref(x_192); + x_197 = lean_box(0); } -x_196 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__6; -x_197 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__7; -lean_inc_ref(x_191); -x_198 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_198, 0, x_191); -x_199 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_199, 0, x_191); -x_200 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_200, 0, x_198); -lean_ctor_set(x_200, 1, x_199); -x_201 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_201, 0, x_194); -x_202 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_202, 0, x_193); -x_203 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_203, 0, x_192); -if (lean_is_scalar(x_195)) { - x_204 = lean_alloc_ctor(0, 5, 0); +x_198 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__6; +x_199 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__7; +lean_inc_ref(x_193); +x_200 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_200, 0, x_193); +x_201 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_201, 0, x_193); +x_202 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_202, 0, x_200); +lean_ctor_set(x_202, 1, x_201); +x_203 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_203, 0, x_196); +x_204 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_204, 0, x_195); +x_205 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_205, 0, x_194); +if (lean_is_scalar(x_197)) { + x_206 = lean_alloc_ctor(0, 5, 0); } else { - x_204 = x_195; + x_206 = x_197; } -lean_ctor_set(x_204, 0, x_200); -lean_ctor_set(x_204, 1, x_196); -lean_ctor_set(x_204, 2, x_203); -lean_ctor_set(x_204, 3, x_202); -lean_ctor_set(x_204, 4, x_201); -x_205 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_205, 0, x_204); -lean_ctor_set(x_205, 1, x_197); -x_206 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__9; -x_207 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__15; -x_208 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__18; -x_209 = lean_ctor_get(x_208, 0); -lean_inc_ref(x_209); -x_210 = l_Lean_Meta_instAddMessageContextMetaM; -lean_inc_ref(x_205); -x_211 = l_Lean_instAddErrorMessageContextOfAddMessageContextOfMonad___redArg(x_210, x_205); -x_212 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_212, 0, x_207); -lean_ctor_set(x_212, 1, x_209); -lean_ctor_set(x_212, 2, x_211); -x_213 = lean_ctor_get(x_1, 0); -lean_inc_ref(x_213); -x_214 = lean_ctor_get(x_1, 1); -lean_inc_ref(x_214); -x_215 = lean_ctor_get(x_213, 1); +lean_ctor_set(x_206, 0, x_202); +lean_ctor_set(x_206, 1, x_198); +lean_ctor_set(x_206, 2, x_205); +lean_ctor_set(x_206, 3, x_204); +lean_ctor_set(x_206, 4, x_203); +x_207 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_207, 0, x_206); +lean_ctor_set(x_207, 1, x_199); +x_208 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__9; +x_209 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__15; +x_210 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__18; +x_211 = lean_ctor_get(x_210, 0); +lean_inc_ref(x_211); +x_212 = l_Lean_Meta_instAddMessageContextMetaM; +lean_inc_ref(x_207); +x_213 = l_Lean_instAddErrorMessageContextOfAddMessageContextOfMonad___redArg(x_212, x_207); +x_214 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_214, 0, x_209); +lean_ctor_set(x_214, 1, x_211); +lean_ctor_set(x_214, 2, x_213); +x_215 = lean_ctor_get(x_1, 0); lean_inc_ref(x_215); -lean_dec_ref(x_213); -x_216 = lean_ctor_get(x_4, 0); -lean_inc(x_216); -x_217 = lean_ctor_get(x_4, 1); +x_216 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_216); +x_217 = lean_ctor_get(x_215, 1); lean_inc_ref(x_217); -x_218 = lean_ctor_get(x_4, 2); -lean_inc_ref(x_218); -x_219 = lean_ctor_get(x_4, 3); +lean_dec_ref(x_215); +x_218 = lean_ctor_get(x_4, 0); +lean_inc(x_218); +x_219 = lean_ctor_get(x_4, 1); lean_inc_ref(x_219); +x_220 = lean_ctor_get(x_4, 2); +lean_inc_ref(x_220); +x_221 = lean_ctor_get(x_4, 3); +lean_inc_ref(x_221); lean_dec_ref(x_4); -x_220 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__19; -x_221 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__20; -x_222 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__21; -x_223 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__23; -x_224 = lean_unsigned_to_nat(3u); -x_225 = l_Lean_Expr_isAppOfArity(x_219, x_223, x_224); -if (x_225 == 0) +x_222 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__19; +x_223 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__20; +x_224 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__21; +x_225 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__23; +x_226 = lean_unsigned_to_nat(3u); +x_227 = l_Lean_Expr_isAppOfArity(x_221, x_225, x_226); +if (x_227 == 0) { -if (lean_obj_tag(x_219) == 8) +if (lean_obj_tag(x_221) == 8) { -lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; uint8_t x_234; -lean_dec_ref(x_212); -lean_dec_ref(x_205); -x_226 = lean_ctor_get(x_219, 0); -lean_inc(x_226); -x_227 = lean_ctor_get(x_219, 1); -lean_inc_ref(x_227); -x_228 = lean_ctor_get(x_219, 2); -lean_inc_ref(x_228); -x_229 = lean_ctor_get(x_219, 3); -lean_inc_ref(x_229); -lean_dec_ref(x_219); -lean_inc_ref(x_214); -lean_inc_ref(x_3); -lean_inc_ref(x_215); -x_230 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__2___boxed), 9, 8); -lean_closure_set(x_230, 0, x_215); -lean_closure_set(x_230, 1, x_3); -lean_closure_set(x_230, 2, x_214); -lean_closure_set(x_230, 3, x_229); -lean_closure_set(x_230, 4, x_216); -lean_closure_set(x_230, 5, x_217); -lean_closure_set(x_230, 6, x_218); -lean_closure_set(x_230, 7, x_6); -x_231 = lean_box(x_225); -x_232 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__3___boxed), 7, 6); -lean_closure_set(x_232, 0, x_2); -lean_closure_set(x_232, 1, x_1); -lean_closure_set(x_232, 2, x_227); -lean_closure_set(x_232, 3, x_228); -lean_closure_set(x_232, 4, x_230); -lean_closure_set(x_232, 5, x_231); -x_233 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__26; -lean_inc(x_5); -x_234 = l_Lean_Syntax_isOfKind(x_5, x_233); -if (x_234 == 0) -{ -lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; -lean_dec_ref(x_215); -lean_dec(x_5); -x_235 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); -lean_closure_set(x_235, 0, x_232); -x_236 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__5___boxed), 6, 1); -lean_closure_set(x_236, 0, x_226); -x_237 = lean_apply_2(x_3, lean_box(0), x_236); -x_238 = lean_apply_4(x_214, lean_box(0), lean_box(0), x_237, x_235); -return x_238; -} -else -{ -lean_object* x_239; lean_object* x_240; lean_object* x_241; uint8_t x_242; -x_239 = lean_unsigned_to_nat(0u); -x_240 = l_Lean_Syntax_getArg(x_5, x_239); -lean_dec(x_5); -x_241 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__28; -lean_inc(x_240); -x_242 = l_Lean_Syntax_isOfKind(x_240, x_241); -if (x_242 == 0) -{ -lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; -lean_dec(x_240); -lean_dec_ref(x_215); -x_243 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); -lean_closure_set(x_243, 0, x_232); -x_244 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__5___boxed), 6, 1); -lean_closure_set(x_244, 0, x_226); -x_245 = lean_apply_2(x_3, lean_box(0), x_244); -x_246 = lean_apply_4(x_214, lean_box(0), lean_box(0), x_245, x_243); -return x_246; -} -else -{ -lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; -lean_dec(x_226); -lean_dec_ref(x_3); -x_247 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); -lean_closure_set(x_247, 0, x_232); -x_248 = l_Lean_Syntax_getId(x_240); -lean_dec(x_240); -x_249 = lean_apply_2(x_215, lean_box(0), x_248); -x_250 = lean_apply_4(x_214, lean_box(0), lean_box(0), x_249, x_247); -return x_250; -} -} -} -else -{ -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_dec_ref(x_218); -lean_dec_ref(x_217); -lean_dec(x_216); -lean_dec_ref(x_215); +lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; uint8_t x_237; lean_dec_ref(x_214); +lean_dec_ref(x_207); +x_228 = lean_ctor_get(x_221, 0); +lean_inc(x_228); +x_229 = lean_ctor_get(x_221, 1); +lean_inc_ref(x_229); +x_230 = lean_ctor_get(x_221, 2); +lean_inc_ref(x_230); +x_231 = lean_ctor_get(x_221, 3); +lean_inc_ref(x_231); +lean_dec_ref(x_221); +lean_inc_ref(x_217); +x_232 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__0), 2, 1); +lean_closure_set(x_232, 0, x_217); +lean_inc_ref(x_216); +lean_inc_ref(x_3); +x_233 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__2___boxed), 9, 8); +lean_closure_set(x_233, 0, x_3); +lean_closure_set(x_233, 1, x_216); +lean_closure_set(x_233, 2, x_232); +lean_closure_set(x_233, 3, x_231); +lean_closure_set(x_233, 4, x_218); +lean_closure_set(x_233, 5, x_219); +lean_closure_set(x_233, 6, x_220); +lean_closure_set(x_233, 7, x_6); +x_234 = lean_box(x_227); +x_235 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__3___boxed), 7, 6); +lean_closure_set(x_235, 0, x_2); +lean_closure_set(x_235, 1, x_1); +lean_closure_set(x_235, 2, x_229); +lean_closure_set(x_235, 3, x_230); +lean_closure_set(x_235, 4, x_233); +lean_closure_set(x_235, 5, x_234); +x_236 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__26; +lean_inc(x_5); +x_237 = l_Lean_Syntax_isOfKind(x_5, x_236); +if (x_237 == 0) +{ +lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; +lean_dec_ref(x_217); +lean_dec(x_5); +x_238 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); +lean_closure_set(x_238, 0, x_235); +x_239 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__5___boxed), 6, 1); +lean_closure_set(x_239, 0, x_228); +x_240 = lean_apply_2(x_3, lean_box(0), x_239); +x_241 = lean_apply_4(x_216, lean_box(0), lean_box(0), x_240, x_238); +return x_241; +} +else +{ +lean_object* x_242; lean_object* x_243; lean_object* x_244; uint8_t x_245; +x_242 = lean_unsigned_to_nat(0u); +x_243 = l_Lean_Syntax_getArg(x_5, x_242); +lean_dec(x_5); +x_244 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__28; +lean_inc(x_243); +x_245 = l_Lean_Syntax_isOfKind(x_243, x_244); +if (x_245 == 0) +{ +lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; +lean_dec(x_243); +lean_dec_ref(x_217); +x_246 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); +lean_closure_set(x_246, 0, x_235); +x_247 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__5___boxed), 6, 1); +lean_closure_set(x_247, 0, x_228); +x_248 = lean_apply_2(x_3, lean_box(0), x_247); +x_249 = lean_apply_4(x_216, lean_box(0), lean_box(0), x_248, x_246); +return x_249; +} +else +{ +lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; +lean_dec(x_228); +lean_dec_ref(x_3); +x_250 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); +lean_closure_set(x_250, 0, x_235); +x_251 = l_Lean_Syntax_getId(x_243); +lean_dec(x_243); +x_252 = lean_apply_2(x_217, lean_box(0), x_251); +x_253 = lean_apply_4(x_216, lean_box(0), lean_box(0), x_252, x_250); +return x_253; +} +} +} +else +{ +lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; +lean_dec_ref(x_220); +lean_dec_ref(x_219); +lean_dec(x_218); +lean_dec_ref(x_217); +lean_dec_ref(x_216); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_2); if (lean_is_exclusive(x_1)) { lean_ctor_release(x_1, 0); lean_ctor_release(x_1, 1); - x_251 = x_1; + x_254 = x_1; } else { lean_dec_ref(x_1); - x_251 = lean_box(0); + x_254 = lean_box(0); } -x_252 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__30; -x_253 = l_Lean_MessageData_ofExpr(x_219); -if (lean_is_scalar(x_251)) { - x_254 = lean_alloc_ctor(7, 2, 0); +x_255 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__30; +x_256 = l_Lean_MessageData_ofExpr(x_221); +if (lean_is_scalar(x_254)) { + x_257 = lean_alloc_ctor(7, 2, 0); } else { - x_254 = x_251; - lean_ctor_set_tag(x_254, 7); + x_257 = x_254; + lean_ctor_set_tag(x_257, 7); } -lean_ctor_set(x_254, 0, x_252); -lean_ctor_set(x_254, 1, x_253); -x_255 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__32; -x_256 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_256, 0, x_254); -lean_ctor_set(x_256, 1, x_255); -x_257 = l_Lean_throwError___redArg(x_205, x_212, x_256); -x_258 = lean_apply_2(x_3, lean_box(0), x_257); -return x_258; +lean_ctor_set(x_257, 0, x_255); +lean_ctor_set(x_257, 1, x_256); +x_258 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__32; +x_259 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_259, 0, x_257); +lean_ctor_set(x_259, 1, x_258); +x_260 = l_Lean_throwError___redArg(x_207, x_214, x_259); +x_261 = lean_apply_2(x_3, lean_box(0), x_260); +return x_261; } } else { -lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -lean_dec_ref(x_212); +lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; +lean_dec_ref(x_214); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_259 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__9___boxed), 6, 1); -lean_closure_set(x_259, 0, x_5); -x_260 = l_Lean_Expr_appFn_x21(x_219); -x_261 = l_Lean_Expr_appFn_x21(x_260); -x_262 = l_Lean_Expr_appArg_x21(x_261); -lean_dec_ref(x_261); -x_263 = l_Lean_Expr_appArg_x21(x_260); -lean_dec_ref(x_260); -x_264 = l_Lean_Expr_appArg_x21(x_219); -lean_dec_ref(x_219); -x_265 = lean_box(x_225); +x_262 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__9___boxed), 6, 1); +lean_closure_set(x_262, 0, x_5); +x_263 = l_Lean_Expr_appFn_x21(x_221); +x_264 = l_Lean_Expr_appFn_x21(x_263); +x_265 = l_Lean_Expr_appArg_x21(x_264); +lean_dec_ref(x_264); +x_266 = l_Lean_Expr_appArg_x21(x_263); +lean_dec_ref(x_263); +x_267 = l_Lean_Expr_appArg_x21(x_221); +lean_dec_ref(x_221); +x_268 = lean_box(x_227); lean_inc_ref(x_3); -lean_inc_ref(x_214); -x_266 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__10___boxed), 17, 16); -lean_closure_set(x_266, 0, x_263); -lean_closure_set(x_266, 1, x_216); -lean_closure_set(x_266, 2, x_217); -lean_closure_set(x_266, 3, x_218); -lean_closure_set(x_266, 4, x_220); -lean_closure_set(x_266, 5, x_221); -lean_closure_set(x_266, 6, x_222); -lean_closure_set(x_266, 7, x_262); -lean_closure_set(x_266, 8, x_264); -lean_closure_set(x_266, 9, x_215); -lean_closure_set(x_266, 10, x_6); -lean_closure_set(x_266, 11, x_214); -lean_closure_set(x_266, 12, x_265); -lean_closure_set(x_266, 13, x_3); -lean_closure_set(x_266, 14, x_205); -lean_closure_set(x_266, 15, x_206); -x_267 = lean_apply_2(x_3, lean_box(0), x_259); -x_268 = lean_apply_4(x_214, lean_box(0), lean_box(0), x_267, x_266); -return x_268; +lean_inc_ref(x_216); +x_269 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__10___boxed), 17, 16); +lean_closure_set(x_269, 0, x_266); +lean_closure_set(x_269, 1, x_218); +lean_closure_set(x_269, 2, x_219); +lean_closure_set(x_269, 3, x_220); +lean_closure_set(x_269, 4, x_222); +lean_closure_set(x_269, 5, x_223); +lean_closure_set(x_269, 6, x_224); +lean_closure_set(x_269, 7, x_265); +lean_closure_set(x_269, 8, x_267); +lean_closure_set(x_269, 9, x_217); +lean_closure_set(x_269, 10, x_6); +lean_closure_set(x_269, 11, x_216); +lean_closure_set(x_269, 12, x_268); +lean_closure_set(x_269, 13, x_3); +lean_closure_set(x_269, 14, x_207); +lean_closure_set(x_269, 15, x_208); +x_270 = lean_apply_2(x_3, lean_box(0), x_262); +x_271 = lean_apply_4(x_216, lean_box(0), lean_box(0), x_270, x_269); +return x_271; } } } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; uint8_t x_319; -x_269 = lean_ctor_get(x_9, 0); -x_270 = lean_ctor_get(x_9, 2); -x_271 = lean_ctor_get(x_9, 3); -x_272 = lean_ctor_get(x_9, 4); +lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; uint8_t x_322; +x_272 = lean_ctor_get(x_9, 0); +x_273 = lean_ctor_get(x_9, 2); +x_274 = lean_ctor_get(x_9, 3); +x_275 = lean_ctor_get(x_9, 4); +lean_inc(x_275); +lean_inc(x_274); +lean_inc(x_273); lean_inc(x_272); -lean_inc(x_271); -lean_inc(x_270); -lean_inc(x_269); lean_dec(x_9); -x_273 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__2; -x_274 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__3; -lean_inc_ref(x_269); -x_275 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_275, 0, x_269); -x_276 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_276, 0, x_269); -x_277 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_277, 0, x_275); -lean_ctor_set(x_277, 1, x_276); -x_278 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +x_276 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__2; +x_277 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__3; +lean_inc_ref(x_272); +x_278 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); lean_closure_set(x_278, 0, x_272); -x_279 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_279, 0, x_271); -x_280 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_280, 0, x_270); -x_281 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_281, 0, x_277); -lean_ctor_set(x_281, 1, x_273); -lean_ctor_set(x_281, 2, x_280); -lean_ctor_set(x_281, 3, x_279); -lean_ctor_set(x_281, 4, x_278); -lean_ctor_set(x_7, 1, x_274); -lean_ctor_set(x_7, 0, x_281); -x_282 = l_ReaderT_instMonad___redArg(x_7); -x_283 = lean_ctor_get(x_282, 0); -lean_inc_ref(x_283); -if (lean_is_exclusive(x_282)) { - lean_ctor_release(x_282, 0); - lean_ctor_release(x_282, 1); - x_284 = x_282; -} else { - lean_dec_ref(x_282); - x_284 = lean_box(0); -} -x_285 = lean_ctor_get(x_283, 0); -lean_inc_ref(x_285); -x_286 = lean_ctor_get(x_283, 2); +x_279 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_279, 0, x_272); +x_280 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_280, 0, x_278); +lean_ctor_set(x_280, 1, x_279); +x_281 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_281, 0, x_275); +x_282 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_282, 0, x_274); +x_283 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_283, 0, x_273); +x_284 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_284, 0, x_280); +lean_ctor_set(x_284, 1, x_276); +lean_ctor_set(x_284, 2, x_283); +lean_ctor_set(x_284, 3, x_282); +lean_ctor_set(x_284, 4, x_281); +lean_ctor_set(x_7, 1, x_277); +lean_ctor_set(x_7, 0, x_284); +x_285 = l_ReaderT_instMonad___redArg(x_7); +x_286 = lean_ctor_get(x_285, 0); lean_inc_ref(x_286); -x_287 = lean_ctor_get(x_283, 3); -lean_inc_ref(x_287); -x_288 = lean_ctor_get(x_283, 4); +if (lean_is_exclusive(x_285)) { + lean_ctor_release(x_285, 0); + lean_ctor_release(x_285, 1); + x_287 = x_285; +} else { + lean_dec_ref(x_285); + x_287 = lean_box(0); +} +x_288 = lean_ctor_get(x_286, 0); lean_inc_ref(x_288); -if (lean_is_exclusive(x_283)) { - lean_ctor_release(x_283, 0); - lean_ctor_release(x_283, 1); - lean_ctor_release(x_283, 2); - lean_ctor_release(x_283, 3); - lean_ctor_release(x_283, 4); - x_289 = x_283; +x_289 = lean_ctor_get(x_286, 2); +lean_inc_ref(x_289); +x_290 = lean_ctor_get(x_286, 3); +lean_inc_ref(x_290); +x_291 = lean_ctor_get(x_286, 4); +lean_inc_ref(x_291); +if (lean_is_exclusive(x_286)) { + lean_ctor_release(x_286, 0); + lean_ctor_release(x_286, 1); + lean_ctor_release(x_286, 2); + lean_ctor_release(x_286, 3); + lean_ctor_release(x_286, 4); + x_292 = x_286; } else { - lean_dec_ref(x_283); - x_289 = lean_box(0); + lean_dec_ref(x_286); + x_292 = lean_box(0); } -x_290 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__6; -x_291 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__7; -lean_inc_ref(x_285); -x_292 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_292, 0, x_285); -x_293 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_293, 0, x_285); -x_294 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_294, 0, x_292); -lean_ctor_set(x_294, 1, x_293); -x_295 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +x_293 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__6; +x_294 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__7; +lean_inc_ref(x_288); +x_295 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); lean_closure_set(x_295, 0, x_288); -x_296 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_296, 0, x_287); -x_297 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_297, 0, x_286); -if (lean_is_scalar(x_289)) { - x_298 = lean_alloc_ctor(0, 5, 0); +x_296 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_296, 0, x_288); +x_297 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_297, 0, x_295); +lean_ctor_set(x_297, 1, x_296); +x_298 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_298, 0, x_291); +x_299 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_299, 0, x_290); +x_300 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_300, 0, x_289); +if (lean_is_scalar(x_292)) { + x_301 = lean_alloc_ctor(0, 5, 0); } else { - x_298 = x_289; + x_301 = x_292; } -lean_ctor_set(x_298, 0, x_294); -lean_ctor_set(x_298, 1, x_290); -lean_ctor_set(x_298, 2, x_297); -lean_ctor_set(x_298, 3, x_296); -lean_ctor_set(x_298, 4, x_295); -if (lean_is_scalar(x_284)) { - x_299 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_301, 0, x_297); +lean_ctor_set(x_301, 1, x_293); +lean_ctor_set(x_301, 2, x_300); +lean_ctor_set(x_301, 3, x_299); +lean_ctor_set(x_301, 4, x_298); +if (lean_is_scalar(x_287)) { + x_302 = lean_alloc_ctor(0, 2, 0); } else { - x_299 = x_284; + x_302 = x_287; } -lean_ctor_set(x_299, 0, x_298); -lean_ctor_set(x_299, 1, x_291); -x_300 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__9; -x_301 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__15; -x_302 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__18; -x_303 = lean_ctor_get(x_302, 0); -lean_inc_ref(x_303); -x_304 = l_Lean_Meta_instAddMessageContextMetaM; -lean_inc_ref(x_299); -x_305 = l_Lean_instAddErrorMessageContextOfAddMessageContextOfMonad___redArg(x_304, x_299); -x_306 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_306, 0, x_301); -lean_ctor_set(x_306, 1, x_303); -lean_ctor_set(x_306, 2, x_305); -x_307 = lean_ctor_get(x_1, 0); -lean_inc_ref(x_307); -x_308 = lean_ctor_get(x_1, 1); -lean_inc_ref(x_308); -x_309 = lean_ctor_get(x_307, 1); -lean_inc_ref(x_309); -lean_dec_ref(x_307); -x_310 = lean_ctor_get(x_4, 0); -lean_inc(x_310); -x_311 = lean_ctor_get(x_4, 1); +lean_ctor_set(x_302, 0, x_301); +lean_ctor_set(x_302, 1, x_294); +x_303 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__9; +x_304 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__15; +x_305 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__18; +x_306 = lean_ctor_get(x_305, 0); +lean_inc_ref(x_306); +x_307 = l_Lean_Meta_instAddMessageContextMetaM; +lean_inc_ref(x_302); +x_308 = l_Lean_instAddErrorMessageContextOfAddMessageContextOfMonad___redArg(x_307, x_302); +x_309 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_309, 0, x_304); +lean_ctor_set(x_309, 1, x_306); +lean_ctor_set(x_309, 2, x_308); +x_310 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_310); +x_311 = lean_ctor_get(x_1, 1); lean_inc_ref(x_311); -x_312 = lean_ctor_get(x_4, 2); +x_312 = lean_ctor_get(x_310, 1); lean_inc_ref(x_312); -x_313 = lean_ctor_get(x_4, 3); -lean_inc_ref(x_313); +lean_dec_ref(x_310); +x_313 = lean_ctor_get(x_4, 0); +lean_inc(x_313); +x_314 = lean_ctor_get(x_4, 1); +lean_inc_ref(x_314); +x_315 = lean_ctor_get(x_4, 2); +lean_inc_ref(x_315); +x_316 = lean_ctor_get(x_4, 3); +lean_inc_ref(x_316); lean_dec_ref(x_4); -x_314 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__19; -x_315 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__20; -x_316 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__21; -x_317 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__23; -x_318 = lean_unsigned_to_nat(3u); -x_319 = l_Lean_Expr_isAppOfArity(x_313, x_317, x_318); -if (x_319 == 0) +x_317 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__19; +x_318 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__20; +x_319 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__21; +x_320 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__23; +x_321 = lean_unsigned_to_nat(3u); +x_322 = l_Lean_Expr_isAppOfArity(x_316, x_320, x_321); +if (x_322 == 0) { -if (lean_obj_tag(x_313) == 8) +if (lean_obj_tag(x_316) == 8) { -lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; uint8_t x_328; -lean_dec_ref(x_306); -lean_dec_ref(x_299); -x_320 = lean_ctor_get(x_313, 0); -lean_inc(x_320); -x_321 = lean_ctor_get(x_313, 1); -lean_inc_ref(x_321); -x_322 = lean_ctor_get(x_313, 2); -lean_inc_ref(x_322); -x_323 = lean_ctor_get(x_313, 3); -lean_inc_ref(x_323); -lean_dec_ref(x_313); -lean_inc_ref(x_308); +lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; uint8_t x_332; +lean_dec_ref(x_309); +lean_dec_ref(x_302); +x_323 = lean_ctor_get(x_316, 0); +lean_inc(x_323); +x_324 = lean_ctor_get(x_316, 1); +lean_inc_ref(x_324); +x_325 = lean_ctor_get(x_316, 2); +lean_inc_ref(x_325); +x_326 = lean_ctor_get(x_316, 3); +lean_inc_ref(x_326); +lean_dec_ref(x_316); +lean_inc_ref(x_312); +x_327 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__0), 2, 1); +lean_closure_set(x_327, 0, x_312); +lean_inc_ref(x_311); lean_inc_ref(x_3); -lean_inc_ref(x_309); -x_324 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__2___boxed), 9, 8); -lean_closure_set(x_324, 0, x_309); -lean_closure_set(x_324, 1, x_3); -lean_closure_set(x_324, 2, x_308); -lean_closure_set(x_324, 3, x_323); -lean_closure_set(x_324, 4, x_310); -lean_closure_set(x_324, 5, x_311); -lean_closure_set(x_324, 6, x_312); -lean_closure_set(x_324, 7, x_6); -x_325 = lean_box(x_319); -x_326 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__3___boxed), 7, 6); -lean_closure_set(x_326, 0, x_2); -lean_closure_set(x_326, 1, x_1); -lean_closure_set(x_326, 2, x_321); -lean_closure_set(x_326, 3, x_322); -lean_closure_set(x_326, 4, x_324); -lean_closure_set(x_326, 5, x_325); -x_327 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__26; +x_328 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__2___boxed), 9, 8); +lean_closure_set(x_328, 0, x_3); +lean_closure_set(x_328, 1, x_311); +lean_closure_set(x_328, 2, x_327); +lean_closure_set(x_328, 3, x_326); +lean_closure_set(x_328, 4, x_313); +lean_closure_set(x_328, 5, x_314); +lean_closure_set(x_328, 6, x_315); +lean_closure_set(x_328, 7, x_6); +x_329 = lean_box(x_322); +x_330 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__3___boxed), 7, 6); +lean_closure_set(x_330, 0, x_2); +lean_closure_set(x_330, 1, x_1); +lean_closure_set(x_330, 2, x_324); +lean_closure_set(x_330, 3, x_325); +lean_closure_set(x_330, 4, x_328); +lean_closure_set(x_330, 5, x_329); +x_331 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__26; lean_inc(x_5); -x_328 = l_Lean_Syntax_isOfKind(x_5, x_327); -if (x_328 == 0) +x_332 = l_Lean_Syntax_isOfKind(x_5, x_331); +if (x_332 == 0) { -lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; -lean_dec_ref(x_309); +lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; +lean_dec_ref(x_312); lean_dec(x_5); -x_329 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); -lean_closure_set(x_329, 0, x_326); -x_330 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__5___boxed), 6, 1); -lean_closure_set(x_330, 0, x_320); -x_331 = lean_apply_2(x_3, lean_box(0), x_330); -x_332 = lean_apply_4(x_308, lean_box(0), lean_box(0), x_331, x_329); -return x_332; +x_333 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); +lean_closure_set(x_333, 0, x_330); +x_334 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__5___boxed), 6, 1); +lean_closure_set(x_334, 0, x_323); +x_335 = lean_apply_2(x_3, lean_box(0), x_334); +x_336 = lean_apply_4(x_311, lean_box(0), lean_box(0), x_335, x_333); +return x_336; } else { -lean_object* x_333; lean_object* x_334; lean_object* x_335; uint8_t x_336; -x_333 = lean_unsigned_to_nat(0u); -x_334 = l_Lean_Syntax_getArg(x_5, x_333); +lean_object* x_337; lean_object* x_338; lean_object* x_339; uint8_t x_340; +x_337 = lean_unsigned_to_nat(0u); +x_338 = l_Lean_Syntax_getArg(x_5, x_337); lean_dec(x_5); -x_335 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__28; -lean_inc(x_334); -x_336 = l_Lean_Syntax_isOfKind(x_334, x_335); -if (x_336 == 0) -{ -lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; -lean_dec(x_334); -lean_dec_ref(x_309); -x_337 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); -lean_closure_set(x_337, 0, x_326); -x_338 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__5___boxed), 6, 1); -lean_closure_set(x_338, 0, x_320); -x_339 = lean_apply_2(x_3, lean_box(0), x_338); -x_340 = lean_apply_4(x_308, lean_box(0), lean_box(0), x_339, x_337); -return x_340; -} -else +x_339 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__28; +lean_inc(x_338); +x_340 = l_Lean_Syntax_isOfKind(x_338, x_339); +if (x_340 == 0) { lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; -lean_dec(x_320); -lean_dec_ref(x_3); +lean_dec(x_338); +lean_dec_ref(x_312); x_341 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); -lean_closure_set(x_341, 0, x_326); -x_342 = l_Lean_Syntax_getId(x_334); -lean_dec(x_334); -x_343 = lean_apply_2(x_309, lean_box(0), x_342); -x_344 = lean_apply_4(x_308, lean_box(0), lean_box(0), x_343, x_341); +lean_closure_set(x_341, 0, x_330); +x_342 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__5___boxed), 6, 1); +lean_closure_set(x_342, 0, x_323); +x_343 = lean_apply_2(x_3, lean_box(0), x_342); +x_344 = lean_apply_4(x_311, lean_box(0), lean_box(0), x_343, x_341); return x_344; } +else +{ +lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; +lean_dec(x_323); +lean_dec_ref(x_3); +x_345 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); +lean_closure_set(x_345, 0, x_330); +x_346 = l_Lean_Syntax_getId(x_338); +lean_dec(x_338); +x_347 = lean_apply_2(x_312, lean_box(0), x_346); +x_348 = lean_apply_4(x_311, lean_box(0), lean_box(0), x_347, x_345); +return x_348; +} } } else { -lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; +lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; +lean_dec_ref(x_315); +lean_dec_ref(x_314); +lean_dec(x_313); lean_dec_ref(x_312); lean_dec_ref(x_311); -lean_dec(x_310); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_349 = x_1; +} else { + lean_dec_ref(x_1); + x_349 = lean_box(0); +} +x_350 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__30; +x_351 = l_Lean_MessageData_ofExpr(x_316); +if (lean_is_scalar(x_349)) { + x_352 = lean_alloc_ctor(7, 2, 0); +} else { + x_352 = x_349; + lean_ctor_set_tag(x_352, 7); +} +lean_ctor_set(x_352, 0, x_350); +lean_ctor_set(x_352, 1, x_351); +x_353 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__32; +x_354 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_354, 0, x_352); +lean_ctor_set(x_354, 1, x_353); +x_355 = l_Lean_throwError___redArg(x_302, x_309, x_354); +x_356 = lean_apply_2(x_3, lean_box(0), x_355); +return x_356; +} +} +else +{ +lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_dec_ref(x_309); -lean_dec_ref(x_308); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_2); -if (lean_is_exclusive(x_1)) { - lean_ctor_release(x_1, 0); - lean_ctor_release(x_1, 1); - x_345 = x_1; -} else { - lean_dec_ref(x_1); - x_345 = lean_box(0); -} -x_346 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__30; -x_347 = l_Lean_MessageData_ofExpr(x_313); -if (lean_is_scalar(x_345)) { - x_348 = lean_alloc_ctor(7, 2, 0); -} else { - x_348 = x_345; - lean_ctor_set_tag(x_348, 7); -} -lean_ctor_set(x_348, 0, x_346); -lean_ctor_set(x_348, 1, x_347); -x_349 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__32; -x_350 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_350, 0, x_348); -lean_ctor_set(x_350, 1, x_349); -x_351 = l_Lean_throwError___redArg(x_299, x_306, x_350); -x_352 = lean_apply_2(x_3, lean_box(0), x_351); -return x_352; -} -} -else -{ -lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; -lean_dec_ref(x_306); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_353 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__9___boxed), 6, 1); -lean_closure_set(x_353, 0, x_5); -x_354 = l_Lean_Expr_appFn_x21(x_313); -x_355 = l_Lean_Expr_appFn_x21(x_354); -x_356 = l_Lean_Expr_appArg_x21(x_355); -lean_dec_ref(x_355); -x_357 = l_Lean_Expr_appArg_x21(x_354); -lean_dec_ref(x_354); -x_358 = l_Lean_Expr_appArg_x21(x_313); -lean_dec_ref(x_313); -x_359 = lean_box(x_319); +x_357 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__9___boxed), 6, 1); +lean_closure_set(x_357, 0, x_5); +x_358 = l_Lean_Expr_appFn_x21(x_316); +x_359 = l_Lean_Expr_appFn_x21(x_358); +x_360 = l_Lean_Expr_appArg_x21(x_359); +lean_dec_ref(x_359); +x_361 = l_Lean_Expr_appArg_x21(x_358); +lean_dec_ref(x_358); +x_362 = l_Lean_Expr_appArg_x21(x_316); +lean_dec_ref(x_316); +x_363 = lean_box(x_322); lean_inc_ref(x_3); -lean_inc_ref(x_308); -x_360 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__10___boxed), 17, 16); -lean_closure_set(x_360, 0, x_357); -lean_closure_set(x_360, 1, x_310); -lean_closure_set(x_360, 2, x_311); -lean_closure_set(x_360, 3, x_312); -lean_closure_set(x_360, 4, x_314); -lean_closure_set(x_360, 5, x_315); -lean_closure_set(x_360, 6, x_316); -lean_closure_set(x_360, 7, x_356); -lean_closure_set(x_360, 8, x_358); -lean_closure_set(x_360, 9, x_309); -lean_closure_set(x_360, 10, x_6); -lean_closure_set(x_360, 11, x_308); -lean_closure_set(x_360, 12, x_359); -lean_closure_set(x_360, 13, x_3); -lean_closure_set(x_360, 14, x_299); -lean_closure_set(x_360, 15, x_300); -x_361 = lean_apply_2(x_3, lean_box(0), x_353); -x_362 = lean_apply_4(x_308, lean_box(0), lean_box(0), x_361, x_360); -return x_362; +lean_inc_ref(x_311); +x_364 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__10___boxed), 17, 16); +lean_closure_set(x_364, 0, x_361); +lean_closure_set(x_364, 1, x_313); +lean_closure_set(x_364, 2, x_314); +lean_closure_set(x_364, 3, x_315); +lean_closure_set(x_364, 4, x_317); +lean_closure_set(x_364, 5, x_318); +lean_closure_set(x_364, 6, x_319); +lean_closure_set(x_364, 7, x_360); +lean_closure_set(x_364, 8, x_362); +lean_closure_set(x_364, 9, x_312); +lean_closure_set(x_364, 10, x_6); +lean_closure_set(x_364, 11, x_311); +lean_closure_set(x_364, 12, x_363); +lean_closure_set(x_364, 13, x_3); +lean_closure_set(x_364, 14, x_302); +lean_closure_set(x_364, 15, x_303); +x_365 = lean_apply_2(x_3, lean_box(0), x_357); +x_366 = lean_apply_4(x_311, lean_box(0), lean_box(0), x_365, x_364); +return x_366; } } } else { -lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; uint8_t x_416; -x_363 = lean_ctor_get(x_7, 0); -lean_inc(x_363); +lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; uint8_t x_420; +x_367 = lean_ctor_get(x_7, 0); +lean_inc(x_367); lean_dec(x_7); -x_364 = lean_ctor_get(x_363, 0); -lean_inc_ref(x_364); -x_365 = lean_ctor_get(x_363, 2); -lean_inc_ref(x_365); -x_366 = lean_ctor_get(x_363, 3); -lean_inc_ref(x_366); -x_367 = lean_ctor_get(x_363, 4); -lean_inc_ref(x_367); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - lean_ctor_release(x_363, 2); - lean_ctor_release(x_363, 3); - lean_ctor_release(x_363, 4); - x_368 = x_363; +x_368 = lean_ctor_get(x_367, 0); +lean_inc_ref(x_368); +x_369 = lean_ctor_get(x_367, 2); +lean_inc_ref(x_369); +x_370 = lean_ctor_get(x_367, 3); +lean_inc_ref(x_370); +x_371 = lean_ctor_get(x_367, 4); +lean_inc_ref(x_371); +if (lean_is_exclusive(x_367)) { + lean_ctor_release(x_367, 0); + lean_ctor_release(x_367, 1); + lean_ctor_release(x_367, 2); + lean_ctor_release(x_367, 3); + lean_ctor_release(x_367, 4); + x_372 = x_367; } else { - lean_dec_ref(x_363); - x_368 = lean_box(0); + lean_dec_ref(x_367); + x_372 = lean_box(0); } -x_369 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__2; -x_370 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__3; -lean_inc_ref(x_364); -x_371 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_371, 0, x_364); -x_372 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_372, 0, x_364); -x_373 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_374, 0, x_367); -x_375 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_375, 0, x_366); -x_376 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_376, 0, x_365); -if (lean_is_scalar(x_368)) { - x_377 = lean_alloc_ctor(0, 5, 0); +x_373 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__2; +x_374 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__3; +lean_inc_ref(x_368); +x_375 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_375, 0, x_368); +x_376 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_376, 0, x_368); +x_377 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_377, 0, x_375); +lean_ctor_set(x_377, 1, x_376); +x_378 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_378, 0, x_371); +x_379 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_379, 0, x_370); +x_380 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_380, 0, x_369); +if (lean_is_scalar(x_372)) { + x_381 = lean_alloc_ctor(0, 5, 0); } else { - x_377 = x_368; + x_381 = x_372; } -lean_ctor_set(x_377, 0, x_373); -lean_ctor_set(x_377, 1, x_369); -lean_ctor_set(x_377, 2, x_376); -lean_ctor_set(x_377, 3, x_375); -lean_ctor_set(x_377, 4, x_374); -x_378 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_378, 0, x_377); -lean_ctor_set(x_378, 1, x_370); -x_379 = l_ReaderT_instMonad___redArg(x_378); -x_380 = lean_ctor_get(x_379, 0); -lean_inc_ref(x_380); -if (lean_is_exclusive(x_379)) { - lean_ctor_release(x_379, 0); - lean_ctor_release(x_379, 1); - x_381 = x_379; -} else { - lean_dec_ref(x_379); - x_381 = lean_box(0); -} -x_382 = lean_ctor_get(x_380, 0); -lean_inc_ref(x_382); -x_383 = lean_ctor_get(x_380, 2); -lean_inc_ref(x_383); -x_384 = lean_ctor_get(x_380, 3); +lean_ctor_set(x_381, 0, x_377); +lean_ctor_set(x_381, 1, x_373); +lean_ctor_set(x_381, 2, x_380); +lean_ctor_set(x_381, 3, x_379); +lean_ctor_set(x_381, 4, x_378); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_381); +lean_ctor_set(x_382, 1, x_374); +x_383 = l_ReaderT_instMonad___redArg(x_382); +x_384 = lean_ctor_get(x_383, 0); lean_inc_ref(x_384); -x_385 = lean_ctor_get(x_380, 4); -lean_inc_ref(x_385); -if (lean_is_exclusive(x_380)) { - lean_ctor_release(x_380, 0); - lean_ctor_release(x_380, 1); - lean_ctor_release(x_380, 2); - lean_ctor_release(x_380, 3); - lean_ctor_release(x_380, 4); - x_386 = x_380; +if (lean_is_exclusive(x_383)) { + lean_ctor_release(x_383, 0); + lean_ctor_release(x_383, 1); + x_385 = x_383; } else { - lean_dec_ref(x_380); - x_386 = lean_box(0); + lean_dec_ref(x_383); + x_385 = lean_box(0); } -x_387 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__6; -x_388 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__7; -lean_inc_ref(x_382); -x_389 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_389, 0, x_382); -x_390 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_390, 0, x_382); -x_391 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_391, 0, x_389); -lean_ctor_set(x_391, 1, x_390); -x_392 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_392, 0, x_385); -x_393 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_393, 0, x_384); -x_394 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_394, 0, x_383); -if (lean_is_scalar(x_386)) { - x_395 = lean_alloc_ctor(0, 5, 0); +x_386 = lean_ctor_get(x_384, 0); +lean_inc_ref(x_386); +x_387 = lean_ctor_get(x_384, 2); +lean_inc_ref(x_387); +x_388 = lean_ctor_get(x_384, 3); +lean_inc_ref(x_388); +x_389 = lean_ctor_get(x_384, 4); +lean_inc_ref(x_389); +if (lean_is_exclusive(x_384)) { + lean_ctor_release(x_384, 0); + lean_ctor_release(x_384, 1); + lean_ctor_release(x_384, 2); + lean_ctor_release(x_384, 3); + lean_ctor_release(x_384, 4); + x_390 = x_384; } else { - x_395 = x_386; + lean_dec_ref(x_384); + x_390 = lean_box(0); } -lean_ctor_set(x_395, 0, x_391); -lean_ctor_set(x_395, 1, x_387); -lean_ctor_set(x_395, 2, x_394); -lean_ctor_set(x_395, 3, x_393); -lean_ctor_set(x_395, 4, x_392); -if (lean_is_scalar(x_381)) { - x_396 = lean_alloc_ctor(0, 2, 0); +x_391 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__6; +x_392 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__7; +lean_inc_ref(x_386); +x_393 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_393, 0, x_386); +x_394 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_394, 0, x_386); +x_395 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_395, 0, x_393); +lean_ctor_set(x_395, 1, x_394); +x_396 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_396, 0, x_389); +x_397 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_397, 0, x_388); +x_398 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_398, 0, x_387); +if (lean_is_scalar(x_390)) { + x_399 = lean_alloc_ctor(0, 5, 0); } else { - x_396 = x_381; + x_399 = x_390; } -lean_ctor_set(x_396, 0, x_395); -lean_ctor_set(x_396, 1, x_388); -x_397 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__9; -x_398 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__15; -x_399 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__18; -x_400 = lean_ctor_get(x_399, 0); -lean_inc_ref(x_400); -x_401 = l_Lean_Meta_instAddMessageContextMetaM; -lean_inc_ref(x_396); -x_402 = l_Lean_instAddErrorMessageContextOfAddMessageContextOfMonad___redArg(x_401, x_396); -x_403 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_403, 0, x_398); -lean_ctor_set(x_403, 1, x_400); -lean_ctor_set(x_403, 2, x_402); -x_404 = lean_ctor_get(x_1, 0); +lean_ctor_set(x_399, 0, x_395); +lean_ctor_set(x_399, 1, x_391); +lean_ctor_set(x_399, 2, x_398); +lean_ctor_set(x_399, 3, x_397); +lean_ctor_set(x_399, 4, x_396); +if (lean_is_scalar(x_385)) { + x_400 = lean_alloc_ctor(0, 2, 0); +} else { + x_400 = x_385; +} +lean_ctor_set(x_400, 0, x_399); +lean_ctor_set(x_400, 1, x_392); +x_401 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__9; +x_402 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__15; +x_403 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__18; +x_404 = lean_ctor_get(x_403, 0); lean_inc_ref(x_404); -x_405 = lean_ctor_get(x_1, 1); -lean_inc_ref(x_405); -x_406 = lean_ctor_get(x_404, 1); -lean_inc_ref(x_406); -lean_dec_ref(x_404); -x_407 = lean_ctor_get(x_4, 0); -lean_inc(x_407); -x_408 = lean_ctor_get(x_4, 1); +x_405 = l_Lean_Meta_instAddMessageContextMetaM; +lean_inc_ref(x_400); +x_406 = l_Lean_instAddErrorMessageContextOfAddMessageContextOfMonad___redArg(x_405, x_400); +x_407 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_407, 0, x_402); +lean_ctor_set(x_407, 1, x_404); +lean_ctor_set(x_407, 2, x_406); +x_408 = lean_ctor_get(x_1, 0); lean_inc_ref(x_408); -x_409 = lean_ctor_get(x_4, 2); +x_409 = lean_ctor_get(x_1, 1); lean_inc_ref(x_409); -x_410 = lean_ctor_get(x_4, 3); +x_410 = lean_ctor_get(x_408, 1); lean_inc_ref(x_410); -lean_dec_ref(x_4); -x_411 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__19; -x_412 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__20; -x_413 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__21; -x_414 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__23; -x_415 = lean_unsigned_to_nat(3u); -x_416 = l_Lean_Expr_isAppOfArity(x_410, x_414, x_415); -if (x_416 == 0) -{ -if (lean_obj_tag(x_410) == 8) -{ -lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; uint8_t x_425; -lean_dec_ref(x_403); -lean_dec_ref(x_396); -x_417 = lean_ctor_get(x_410, 0); -lean_inc(x_417); -x_418 = lean_ctor_get(x_410, 1); -lean_inc_ref(x_418); -x_419 = lean_ctor_get(x_410, 2); -lean_inc_ref(x_419); -x_420 = lean_ctor_get(x_410, 3); -lean_inc_ref(x_420); -lean_dec_ref(x_410); -lean_inc_ref(x_405); -lean_inc_ref(x_3); -lean_inc_ref(x_406); -x_421 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__2___boxed), 9, 8); -lean_closure_set(x_421, 0, x_406); -lean_closure_set(x_421, 1, x_3); -lean_closure_set(x_421, 2, x_405); -lean_closure_set(x_421, 3, x_420); -lean_closure_set(x_421, 4, x_407); -lean_closure_set(x_421, 5, x_408); -lean_closure_set(x_421, 6, x_409); -lean_closure_set(x_421, 7, x_6); -x_422 = lean_box(x_416); -x_423 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__3___boxed), 7, 6); -lean_closure_set(x_423, 0, x_2); -lean_closure_set(x_423, 1, x_1); -lean_closure_set(x_423, 2, x_418); -lean_closure_set(x_423, 3, x_419); -lean_closure_set(x_423, 4, x_421); -lean_closure_set(x_423, 5, x_422); -x_424 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__26; -lean_inc(x_5); -x_425 = l_Lean_Syntax_isOfKind(x_5, x_424); -if (x_425 == 0) -{ -lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; -lean_dec_ref(x_406); -lean_dec(x_5); -x_426 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); -lean_closure_set(x_426, 0, x_423); -x_427 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__5___boxed), 6, 1); -lean_closure_set(x_427, 0, x_417); -x_428 = lean_apply_2(x_3, lean_box(0), x_427); -x_429 = lean_apply_4(x_405, lean_box(0), lean_box(0), x_428, x_426); -return x_429; -} -else -{ -lean_object* x_430; lean_object* x_431; lean_object* x_432; uint8_t x_433; -x_430 = lean_unsigned_to_nat(0u); -x_431 = l_Lean_Syntax_getArg(x_5, x_430); -lean_dec(x_5); -x_432 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__28; -lean_inc(x_431); -x_433 = l_Lean_Syntax_isOfKind(x_431, x_432); -if (x_433 == 0) -{ -lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; -lean_dec(x_431); -lean_dec_ref(x_406); -x_434 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); -lean_closure_set(x_434, 0, x_423); -x_435 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__5___boxed), 6, 1); -lean_closure_set(x_435, 0, x_417); -x_436 = lean_apply_2(x_3, lean_box(0), x_435); -x_437 = lean_apply_4(x_405, lean_box(0), lean_box(0), x_436, x_434); -return x_437; -} -else -{ -lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; -lean_dec(x_417); -lean_dec_ref(x_3); -x_438 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); -lean_closure_set(x_438, 0, x_423); -x_439 = l_Lean_Syntax_getId(x_431); -lean_dec(x_431); -x_440 = lean_apply_2(x_406, lean_box(0), x_439); -x_441 = lean_apply_4(x_405, lean_box(0), lean_box(0), x_440, x_438); -return x_441; -} -} -} -else -{ -lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; -lean_dec_ref(x_409); lean_dec_ref(x_408); -lean_dec(x_407); -lean_dec_ref(x_406); -lean_dec_ref(x_405); +x_411 = lean_ctor_get(x_4, 0); +lean_inc(x_411); +x_412 = lean_ctor_get(x_4, 1); +lean_inc_ref(x_412); +x_413 = lean_ctor_get(x_4, 2); +lean_inc_ref(x_413); +x_414 = lean_ctor_get(x_4, 3); +lean_inc_ref(x_414); +lean_dec_ref(x_4); +x_415 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__19; +x_416 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__20; +x_417 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__21; +x_418 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__23; +x_419 = lean_unsigned_to_nat(3u); +x_420 = l_Lean_Expr_isAppOfArity(x_414, x_418, x_419); +if (x_420 == 0) +{ +if (lean_obj_tag(x_414) == 8) +{ +lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; uint8_t x_430; +lean_dec_ref(x_407); +lean_dec_ref(x_400); +x_421 = lean_ctor_get(x_414, 0); +lean_inc(x_421); +x_422 = lean_ctor_get(x_414, 1); +lean_inc_ref(x_422); +x_423 = lean_ctor_get(x_414, 2); +lean_inc_ref(x_423); +x_424 = lean_ctor_get(x_414, 3); +lean_inc_ref(x_424); +lean_dec_ref(x_414); +lean_inc_ref(x_410); +x_425 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__0), 2, 1); +lean_closure_set(x_425, 0, x_410); +lean_inc_ref(x_409); +lean_inc_ref(x_3); +x_426 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__2___boxed), 9, 8); +lean_closure_set(x_426, 0, x_3); +lean_closure_set(x_426, 1, x_409); +lean_closure_set(x_426, 2, x_425); +lean_closure_set(x_426, 3, x_424); +lean_closure_set(x_426, 4, x_411); +lean_closure_set(x_426, 5, x_412); +lean_closure_set(x_426, 6, x_413); +lean_closure_set(x_426, 7, x_6); +x_427 = lean_box(x_420); +x_428 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__3___boxed), 7, 6); +lean_closure_set(x_428, 0, x_2); +lean_closure_set(x_428, 1, x_1); +lean_closure_set(x_428, 2, x_422); +lean_closure_set(x_428, 3, x_423); +lean_closure_set(x_428, 4, x_426); +lean_closure_set(x_428, 5, x_427); +x_429 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__26; +lean_inc(x_5); +x_430 = l_Lean_Syntax_isOfKind(x_5, x_429); +if (x_430 == 0) +{ +lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; +lean_dec_ref(x_410); +lean_dec(x_5); +x_431 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); +lean_closure_set(x_431, 0, x_428); +x_432 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__5___boxed), 6, 1); +lean_closure_set(x_432, 0, x_421); +x_433 = lean_apply_2(x_3, lean_box(0), x_432); +x_434 = lean_apply_4(x_409, lean_box(0), lean_box(0), x_433, x_431); +return x_434; +} +else +{ +lean_object* x_435; lean_object* x_436; lean_object* x_437; uint8_t x_438; +x_435 = lean_unsigned_to_nat(0u); +x_436 = l_Lean_Syntax_getArg(x_5, x_435); +lean_dec(x_5); +x_437 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__28; +lean_inc(x_436); +x_438 = l_Lean_Syntax_isOfKind(x_436, x_437); +if (x_438 == 0) +{ +lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; +lean_dec(x_436); +lean_dec_ref(x_410); +x_439 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); +lean_closure_set(x_439, 0, x_428); +x_440 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__5___boxed), 6, 1); +lean_closure_set(x_440, 0, x_421); +x_441 = lean_apply_2(x_3, lean_box(0), x_440); +x_442 = lean_apply_4(x_409, lean_box(0), lean_box(0), x_441, x_439); +return x_442; +} +else +{ +lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; +lean_dec(x_421); +lean_dec_ref(x_3); +x_443 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__4), 2, 1); +lean_closure_set(x_443, 0, x_428); +x_444 = l_Lean_Syntax_getId(x_436); +lean_dec(x_436); +x_445 = lean_apply_2(x_410, lean_box(0), x_444); +x_446 = lean_apply_4(x_409, lean_box(0), lean_box(0), x_445, x_443); +return x_446; +} +} +} +else +{ +lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; +lean_dec_ref(x_413); +lean_dec_ref(x_412); +lean_dec(x_411); +lean_dec_ref(x_410); +lean_dec_ref(x_409); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_2); if (lean_is_exclusive(x_1)) { lean_ctor_release(x_1, 0); lean_ctor_release(x_1, 1); - x_442 = x_1; + x_447 = x_1; } else { lean_dec_ref(x_1); - x_442 = lean_box(0); + x_447 = lean_box(0); } -x_443 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__30; -x_444 = l_Lean_MessageData_ofExpr(x_410); -if (lean_is_scalar(x_442)) { - x_445 = lean_alloc_ctor(7, 2, 0); +x_448 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__30; +x_449 = l_Lean_MessageData_ofExpr(x_414); +if (lean_is_scalar(x_447)) { + x_450 = lean_alloc_ctor(7, 2, 0); } else { - x_445 = x_442; - lean_ctor_set_tag(x_445, 7); + x_450 = x_447; + lean_ctor_set_tag(x_450, 7); } -lean_ctor_set(x_445, 0, x_443); -lean_ctor_set(x_445, 1, x_444); -x_446 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__32; -x_447 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_447, 0, x_445); -lean_ctor_set(x_447, 1, x_446); -x_448 = l_Lean_throwError___redArg(x_396, x_403, x_447); -x_449 = lean_apply_2(x_3, lean_box(0), x_448); -return x_449; +lean_ctor_set(x_450, 0, x_448); +lean_ctor_set(x_450, 1, x_449); +x_451 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__32; +x_452 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_452, 0, x_450); +lean_ctor_set(x_452, 1, x_451); +x_453 = l_Lean_throwError___redArg(x_400, x_407, x_452); +x_454 = lean_apply_2(x_3, lean_box(0), x_453); +return x_454; } } else { -lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; -lean_dec_ref(x_403); +lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; +lean_dec_ref(x_407); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_450 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__9___boxed), 6, 1); -lean_closure_set(x_450, 0, x_5); -x_451 = l_Lean_Expr_appFn_x21(x_410); -x_452 = l_Lean_Expr_appFn_x21(x_451); -x_453 = l_Lean_Expr_appArg_x21(x_452); -lean_dec_ref(x_452); -x_454 = l_Lean_Expr_appArg_x21(x_451); -lean_dec_ref(x_451); -x_455 = l_Lean_Expr_appArg_x21(x_410); -lean_dec_ref(x_410); -x_456 = lean_box(x_416); +x_455 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__9___boxed), 6, 1); +lean_closure_set(x_455, 0, x_5); +x_456 = l_Lean_Expr_appFn_x21(x_414); +x_457 = l_Lean_Expr_appFn_x21(x_456); +x_458 = l_Lean_Expr_appArg_x21(x_457); +lean_dec_ref(x_457); +x_459 = l_Lean_Expr_appArg_x21(x_456); +lean_dec_ref(x_456); +x_460 = l_Lean_Expr_appArg_x21(x_414); +lean_dec_ref(x_414); +x_461 = lean_box(x_420); lean_inc_ref(x_3); -lean_inc_ref(x_405); -x_457 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__10___boxed), 17, 16); -lean_closure_set(x_457, 0, x_454); -lean_closure_set(x_457, 1, x_407); -lean_closure_set(x_457, 2, x_408); -lean_closure_set(x_457, 3, x_409); -lean_closure_set(x_457, 4, x_411); -lean_closure_set(x_457, 5, x_412); -lean_closure_set(x_457, 6, x_413); -lean_closure_set(x_457, 7, x_453); -lean_closure_set(x_457, 8, x_455); -lean_closure_set(x_457, 9, x_406); -lean_closure_set(x_457, 10, x_6); -lean_closure_set(x_457, 11, x_405); -lean_closure_set(x_457, 12, x_456); -lean_closure_set(x_457, 13, x_3); -lean_closure_set(x_457, 14, x_396); -lean_closure_set(x_457, 15, x_397); -x_458 = lean_apply_2(x_3, lean_box(0), x_450); -x_459 = lean_apply_4(x_405, lean_box(0), lean_box(0), x_458, x_457); -return x_459; +lean_inc_ref(x_409); +x_462 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__10___boxed), 17, 16); +lean_closure_set(x_462, 0, x_459); +lean_closure_set(x_462, 1, x_411); +lean_closure_set(x_462, 2, x_412); +lean_closure_set(x_462, 3, x_413); +lean_closure_set(x_462, 4, x_415); +lean_closure_set(x_462, 5, x_416); +lean_closure_set(x_462, 6, x_417); +lean_closure_set(x_462, 7, x_458); +lean_closure_set(x_462, 8, x_460); +lean_closure_set(x_462, 9, x_410); +lean_closure_set(x_462, 10, x_6); +lean_closure_set(x_462, 11, x_409); +lean_closure_set(x_462, 12, x_461); +lean_closure_set(x_462, 13, x_3); +lean_closure_set(x_462, 14, x_400); +lean_closure_set(x_462, 15, x_401); +x_463 = lean_apply_2(x_3, lean_box(0), x_455); +x_464 = lean_apply_4(x_409, lean_box(0), lean_box(0), x_463, x_462); +return x_464; } } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro(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_9; -x_9 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg(x_3, x_4, x_5, x_6, x_7, x_8); -return x_9; +lean_object* x_8; +x_8 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg(x_2, x_3, x_4, x_5, x_6, x_7); +return x_8; } } LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__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) { @@ -2451,58 +2417,42 @@ x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__0(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__0(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_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_9 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__0___closed__1; -x_10 = lean_box(0); -x_11 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_11, 0, x_1); -lean_ctor_set(x_11, 1, x_10); -x_12 = l_Lean_Expr_const___override(x_9, x_11); -x_13 = l_Lean_mkApp5(x_12, x_2, x_3, x_4, x_5, x_8); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_6); -lean_ctor_set(x_14, 1, x_13); -x_15 = lean_apply_2(x_7, lean_box(0), x_14); -return x_15; +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_8 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__0___closed__1; +x_9 = lean_box(0); +x_10 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_10, 0, x_1); +lean_ctor_set(x_10, 1, x_9); +x_11 = l_Lean_Expr_const___override(x_8, x_10); +x_12 = l_Lean_mkApp5(x_11, x_2, x_3, x_4, x_5, x_7); +x_13 = lean_apply_2(x_6, lean_box(0), x_12); +return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__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, uint8_t x_8, uint8_t x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__1(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -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_ref(x_12); -x_15 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__0), 8, 7); -lean_closure_set(x_15, 0, x_1); -lean_closure_set(x_15, 1, x_2); -lean_closure_set(x_15, 2, x_3); -lean_closure_set(x_15, 3, x_4); -lean_closure_set(x_15, 4, x_5); -lean_closure_set(x_15, 5, x_13); -lean_closure_set(x_15, 6, x_6); -x_16 = 1; -x_17 = lean_box(x_8); -x_18 = lean_box(x_9); -x_19 = lean_box(x_8); -x_20 = lean_box(x_9); -x_21 = lean_box(x_16); -x_22 = lean_alloc_closure((void*)(l_Lean_Meta_mkLambdaFVars___boxed), 12, 7); -lean_closure_set(x_22, 0, x_7); -lean_closure_set(x_22, 1, x_14); -lean_closure_set(x_22, 2, x_17); -lean_closure_set(x_22, 3, x_18); -lean_closure_set(x_22, 4, x_19); -lean_closure_set(x_22, 5, x_20); -lean_closure_set(x_22, 6, x_21); -x_23 = lean_apply_2(x_10, lean_box(0), x_22); -x_24 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_23, x_15); -return x_24; +uint8_t x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_8 = 1; +x_9 = lean_box(x_2); +x_10 = lean_box(x_3); +x_11 = lean_box(x_2); +x_12 = lean_box(x_3); +x_13 = lean_box(x_8); +x_14 = lean_alloc_closure((void*)(l_Lean_Meta_mkLambdaFVars___boxed), 12, 7); +lean_closure_set(x_14, 0, x_1); +lean_closure_set(x_14, 1, x_7); +lean_closure_set(x_14, 2, x_9); +lean_closure_set(x_14, 3, x_10); +lean_closure_set(x_14, 4, x_11); +lean_closure_set(x_14, 5, x_12); +lean_closure_set(x_14, 6, x_13); +x_15 = lean_apply_2(x_4, lean_box(0), x_14); +x_16 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_15, x_6); +return x_16; } } LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, 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) { @@ -2511,7 +2461,6 @@ _start: lean_object* x_19; lean_object* x_20; lean_object* x_21; x_19 = lean_ctor_get(x_14, 2); lean_inc_ref(x_19); -lean_inc_ref(x_1); x_20 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_20, 0, x_1); lean_inc(x_17); @@ -2527,7 +2476,6 @@ x_22 = lean_ctor_get(x_21, 1); lean_inc(x_22); lean_dec_ref(x_21); lean_inc_ref(x_13); -lean_inc_ref(x_4); x_23 = l_Lean_Expr_app___override(x_4, x_13); lean_inc_ref(x_5); x_24 = l_Lean_Elab_Tactic_Do_ProofMode_pushForallContextIntoHyps(x_5, x_23); @@ -2536,32 +2484,24 @@ x_26 = lean_array_push(x_25, x_13); x_27 = 0; x_28 = lean_box(x_27); x_29 = lean_box(x_3); -lean_inc_ref(x_10); -lean_inc_ref(x_26); lean_inc_ref(x_7); -lean_inc_ref(x_5); -lean_inc(x_6); -x_30 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__1___boxed), 12, 11); -lean_closure_set(x_30, 0, x_6); -lean_closure_set(x_30, 1, x_5); -lean_closure_set(x_30, 2, x_1); -lean_closure_set(x_30, 3, x_4); +lean_inc_ref(x_26); +x_30 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__1___boxed), 7, 6); +lean_closure_set(x_30, 0, x_26); +lean_closure_set(x_30, 1, x_28); +lean_closure_set(x_30, 2, x_29); +lean_closure_set(x_30, 3, x_6); lean_closure_set(x_30, 4, x_7); lean_closure_set(x_30, 5, x_8); -lean_closure_set(x_30, 6, x_26); -lean_closure_set(x_30, 7, x_28); -lean_closure_set(x_30, 8, x_29); -lean_closure_set(x_30, 9, x_9); -lean_closure_set(x_30, 10, x_10); -x_31 = l_Lean_Expr_betaRev(x_7, x_26, x_27, x_27); +x_31 = l_Lean_Expr_betaRev(x_9, x_26, x_27, x_27); lean_dec_ref(x_26); x_32 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_32, 0, x_6); +lean_ctor_set(x_32, 0, x_10); lean_ctor_set(x_32, 1, x_5); lean_ctor_set(x_32, 2, x_24); lean_ctor_set(x_32, 3, x_31); x_33 = lean_apply_1(x_11, x_32); -x_34 = lean_apply_4(x_10, lean_box(0), lean_box(0), x_33, x_30); +x_34 = lean_apply_4(x_7, lean_box(0), lean_box(0), x_33, x_30); x_35 = lean_apply_7(x_12, lean_box(0), x_34, x_14, x_15, x_16, x_17, x_22); return x_35; } @@ -2575,14 +2515,13 @@ lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); lean_dec_ref(x_11); -lean_dec_ref(x_10); +lean_dec(x_10); lean_dec_ref(x_9); lean_dec_ref(x_8); lean_dec_ref(x_7); -lean_dec(x_6); +lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); -lean_dec_ref(x_1); x_36 = !lean_is_exclusive(x_21); if (x_36 == 0) { @@ -2706,8 +2645,8 @@ lean_dec_ref(x_9); lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); +lean_dec(x_5); +lean_dec_ref(x_4); x_26 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__3___closed__4; x_27 = l_Lean_MessageData_ofExpr(x_17); x_28 = lean_alloc_ctor(7, 2, 0); @@ -2723,7 +2662,7 @@ return x_32; } else { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; +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; uint8_t x_40; lean_dec_ref(x_17); lean_dec_ref(x_3); x_33 = l_Lean_Expr_appFn_x21(x_21); @@ -2731,47 +2670,59 @@ x_34 = l_Lean_Expr_appArg_x21(x_33); lean_dec_ref(x_33); x_35 = l_Lean_Expr_appArg_x21(x_21); lean_dec(x_21); -x_36 = lean_box(x_25); -lean_inc(x_4); +lean_inc_ref(x_19); +lean_inc_ref(x_18); lean_inc_ref(x_34); -x_37 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__2___boxed), 18, 12); -lean_closure_set(x_37, 0, x_34); -lean_closure_set(x_37, 1, x_4); -lean_closure_set(x_37, 2, x_36); -lean_closure_set(x_37, 3, x_18); -lean_closure_set(x_37, 4, x_35); -lean_closure_set(x_37, 5, x_16); -lean_closure_set(x_37, 6, x_19); -lean_closure_set(x_37, 7, x_5); -lean_closure_set(x_37, 8, x_6); -lean_closure_set(x_37, 9, x_7); -lean_closure_set(x_37, 10, x_8); -lean_closure_set(x_37, 11, x_10); -x_38 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__26; -lean_inc(x_4); -x_39 = l_Lean_Syntax_isOfKind(x_4, x_38); -if (x_39 == 0) +lean_inc_ref(x_35); +lean_inc(x_16); +x_36 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__0), 7, 6); +lean_closure_set(x_36, 0, x_16); +lean_closure_set(x_36, 1, x_35); +lean_closure_set(x_36, 2, x_34); +lean_closure_set(x_36, 3, x_18); +lean_closure_set(x_36, 4, x_19); +lean_closure_set(x_36, 5, x_4); +x_37 = lean_box(x_25); +lean_inc(x_5); +lean_inc_ref(x_34); +x_38 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__2___boxed), 18, 12); +lean_closure_set(x_38, 0, x_34); +lean_closure_set(x_38, 1, x_5); +lean_closure_set(x_38, 2, x_37); +lean_closure_set(x_38, 3, x_18); +lean_closure_set(x_38, 4, x_35); +lean_closure_set(x_38, 5, x_6); +lean_closure_set(x_38, 6, x_7); +lean_closure_set(x_38, 7, x_36); +lean_closure_set(x_38, 8, x_19); +lean_closure_set(x_38, 9, x_16); +lean_closure_set(x_38, 10, x_8); +lean_closure_set(x_38, 11, x_10); +x_39 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__26; +lean_inc(x_5); +x_40 = l_Lean_Syntax_isOfKind(x_5, x_39); +if (x_40 == 0) { -lean_object* x_40; lean_object* x_41; -lean_dec(x_4); -x_40 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__3___closed__6; -x_41 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_40, x_13, x_14, x_22); -if (lean_obj_tag(x_41) == 0) +lean_object* x_41; lean_object* x_42; +lean_dec(x_5); +x_41 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__3___closed__6; +x_42 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_41, x_13, x_14, x_22); +if (lean_obj_tag(x_42) == 0) { -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_42 = lean_ctor_get(x_41, 0); -lean_inc(x_42); -x_43 = lean_ctor_get(x_41, 1); +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_43 = lean_ctor_get(x_42, 0); lean_inc(x_43); -lean_dec_ref(x_41); -x_44 = l_Lean_Meta_withLocalDeclD___redArg(x_9, x_2, x_42, x_34, x_37); -x_45 = lean_apply_5(x_44, x_11, x_12, x_13, x_14, x_43); -return x_45; +x_44 = lean_ctor_get(x_42, 1); +lean_inc(x_44); +lean_dec_ref(x_42); +x_45 = l_Lean_Meta_withLocalDeclD___redArg(x_9, x_2, x_43, x_34, x_38); +x_46 = lean_apply_5(x_45, x_11, x_12, x_13, x_14, x_44); +return x_46; } else { -uint8_t x_46; -lean_dec_ref(x_37); +uint8_t x_47; +lean_dec_ref(x_38); lean_dec_ref(x_34); lean_dec(x_14); lean_dec_ref(x_13); @@ -2779,57 +2730,57 @@ lean_dec(x_12); lean_dec_ref(x_11); lean_dec_ref(x_9); lean_dec_ref(x_2); -x_46 = !lean_is_exclusive(x_41); -if (x_46 == 0) +x_47 = !lean_is_exclusive(x_42); +if (x_47 == 0) { -return x_41; +return x_42; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_41, 0); -x_48 = lean_ctor_get(x_41, 1); +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_42, 0); +x_49 = lean_ctor_get(x_42, 1); +lean_inc(x_49); lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_41); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; +lean_dec(x_42); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; } } } else { -lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; -x_50 = lean_unsigned_to_nat(0u); -x_51 = l_Lean_Syntax_getArg(x_4, x_50); -lean_dec(x_4); -x_52 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__28; -lean_inc(x_51); -x_53 = l_Lean_Syntax_isOfKind(x_51, x_52); -if (x_53 == 0) +lean_object* x_51; lean_object* x_52; lean_object* x_53; uint8_t x_54; +x_51 = lean_unsigned_to_nat(0u); +x_52 = l_Lean_Syntax_getArg(x_5, x_51); +lean_dec(x_5); +x_53 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__28; +lean_inc(x_52); +x_54 = l_Lean_Syntax_isOfKind(x_52, x_53); +if (x_54 == 0) { -lean_object* x_54; lean_object* x_55; -lean_dec(x_51); -x_54 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__3___closed__6; -x_55 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_54, x_13, x_14, x_22); -if (lean_obj_tag(x_55) == 0) +lean_object* x_55; lean_object* x_56; +lean_dec(x_52); +x_55 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__3___closed__6; +x_56 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_55, x_13, x_14, x_22); +if (lean_obj_tag(x_56) == 0) { -lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_56 = lean_ctor_get(x_55, 0); -lean_inc(x_56); -x_57 = lean_ctor_get(x_55, 1); +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = lean_ctor_get(x_56, 0); lean_inc(x_57); -lean_dec_ref(x_55); -x_58 = l_Lean_Meta_withLocalDeclD___redArg(x_9, x_2, x_56, x_34, x_37); -x_59 = lean_apply_5(x_58, x_11, x_12, x_13, x_14, x_57); -return x_59; +x_58 = lean_ctor_get(x_56, 1); +lean_inc(x_58); +lean_dec_ref(x_56); +x_59 = l_Lean_Meta_withLocalDeclD___redArg(x_9, x_2, x_57, x_34, x_38); +x_60 = lean_apply_5(x_59, x_11, x_12, x_13, x_14, x_58); +return x_60; } else { -uint8_t x_60; -lean_dec_ref(x_37); +uint8_t x_61; +lean_dec_ref(x_38); lean_dec_ref(x_34); lean_dec(x_14); lean_dec_ref(x_13); @@ -2837,41 +2788,41 @@ lean_dec(x_12); lean_dec_ref(x_11); lean_dec_ref(x_9); lean_dec_ref(x_2); -x_60 = !lean_is_exclusive(x_55); -if (x_60 == 0) +x_61 = !lean_is_exclusive(x_56); +if (x_61 == 0) { -return x_55; +return x_56; } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_61 = lean_ctor_get(x_55, 0); -x_62 = lean_ctor_get(x_55, 1); +lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_62 = lean_ctor_get(x_56, 0); +x_63 = lean_ctor_get(x_56, 1); +lean_inc(x_63); lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_55); -x_63 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_63, 0, x_61); -lean_ctor_set(x_63, 1, x_62); -return x_63; +lean_dec(x_56); +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 { -lean_object* x_64; lean_object* x_65; lean_object* x_66; -x_64 = l_Lean_Syntax_getId(x_51); -lean_dec(x_51); -x_65 = l_Lean_Meta_withLocalDeclD___redArg(x_9, x_2, x_64, x_34, x_37); -x_66 = lean_apply_5(x_65, x_11, x_12, x_13, x_14, x_22); -return x_66; +lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_65 = l_Lean_Syntax_getId(x_52); +lean_dec(x_52); +x_66 = l_Lean_Meta_withLocalDeclD___redArg(x_9, x_2, x_65, x_34, x_38); +x_67 = lean_apply_5(x_66, x_11, x_12, x_13, x_14, x_22); +return x_67; } } } } else { -uint8_t x_67; +uint8_t x_68; lean_dec_ref(x_19); lean_dec_ref(x_18); lean_dec_ref(x_17); @@ -2885,27 +2836,27 @@ lean_dec_ref(x_9); lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); +lean_dec(x_5); +lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); -x_67 = !lean_is_exclusive(x_20); -if (x_67 == 0) +x_68 = !lean_is_exclusive(x_20); +if (x_68 == 0) { return x_20; } else { -lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_68 = lean_ctor_get(x_20, 0); -x_69 = lean_ctor_get(x_20, 1); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_20, 0); +x_70 = lean_ctor_get(x_20, 1); +lean_inc(x_70); lean_inc(x_69); -lean_inc(x_68); lean_dec(x_20); -x_70 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_70, 0, x_68); -lean_ctor_set(x_70, 1, x_69); -return x_70; +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; } } } @@ -3063,8 +3014,8 @@ x_71 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall__ lean_closure_set(x_71, 0, x_4); lean_closure_set(x_71, 1, x_24); lean_closure_set(x_71, 2, x_65); -lean_closure_set(x_71, 3, x_5); -lean_closure_set(x_71, 4, x_68); +lean_closure_set(x_71, 3, x_68); +lean_closure_set(x_71, 4, x_5); lean_closure_set(x_71, 5, x_3); lean_closure_set(x_71, 6, x_67); lean_closure_set(x_71, 7, x_6); @@ -3143,8 +3094,8 @@ x_100 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall_ lean_closure_set(x_100, 0, x_4); lean_closure_set(x_100, 1, x_24); lean_closure_set(x_100, 2, x_94); -lean_closure_set(x_100, 3, x_5); -lean_closure_set(x_100, 4, x_97); +lean_closure_set(x_100, 3, x_97); +lean_closure_set(x_100, 4, x_5); lean_closure_set(x_100, 5, x_3); lean_closure_set(x_100, 6, x_96); lean_closure_set(x_100, 7, x_6); @@ -3242,8 +3193,8 @@ x_132 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall_ lean_closure_set(x_132, 0, x_4); lean_closure_set(x_132, 1, x_24); lean_closure_set(x_132, 2, x_126); -lean_closure_set(x_132, 3, x_5); -lean_closure_set(x_132, 4, x_129); +lean_closure_set(x_132, 3, x_129); +lean_closure_set(x_132, 4, x_5); lean_closure_set(x_132, 5, x_3); lean_closure_set(x_132, 6, x_128); lean_closure_set(x_132, 7, x_6); @@ -3385,8 +3336,8 @@ x_178 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall_ lean_closure_set(x_178, 0, x_4); lean_closure_set(x_178, 1, x_24); lean_closure_set(x_178, 2, x_172); -lean_closure_set(x_178, 3, x_5); -lean_closure_set(x_178, 4, x_175); +lean_closure_set(x_178, 3, x_175); +lean_closure_set(x_178, 4, x_5); lean_closure_set(x_178, 5, x_3); lean_closure_set(x_178, 6, x_174); lean_closure_set(x_178, 7, x_6); @@ -3546,8 +3497,8 @@ x_227 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall_ lean_closure_set(x_227, 0, x_4); lean_closure_set(x_227, 1, x_197); lean_closure_set(x_227, 2, x_221); -lean_closure_set(x_227, 3, x_5); -lean_closure_set(x_227, 4, x_224); +lean_closure_set(x_227, 3, x_224); +lean_closure_set(x_227, 4, x_5); lean_closure_set(x_227, 5, x_3); lean_closure_set(x_227, 6, x_223); lean_closure_set(x_227, 7, x_6); @@ -3753,8 +3704,8 @@ x_292 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall_ lean_closure_set(x_292, 0, x_4); lean_closure_set(x_292, 1, x_262); lean_closure_set(x_292, 2, x_286); -lean_closure_set(x_292, 3, x_5); -lean_closure_set(x_292, 4, x_289); +lean_closure_set(x_292, 3, x_289); +lean_closure_set(x_292, 4, x_5); lean_closure_set(x_292, 5, x_3); lean_closure_set(x_292, 6, x_288); lean_closure_set(x_292, 7, x_6); @@ -3766,22 +3717,22 @@ return x_295; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall(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_9; -x_9 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg(x_3, x_4, x_5, x_6, x_7, x_8); -return x_9; +lean_object* x_8; +x_8 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg(x_2, x_3, x_4, x_5, x_6, x_7); +return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__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_13; uint8_t x_14; lean_object* x_15; -x_13 = lean_unbox(x_8); -x_14 = lean_unbox(x_9); -x_15 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_13, x_14, x_10, x_11, x_12); -return x_15; +uint8_t x_8; uint8_t x_9; lean_object* x_10; +x_8 = lean_unbox(x_2); +x_9 = lean_unbox(x_3); +x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__1(x_1, x_8, x_9, x_4, x_5, x_6, x_7); +return x_10; } } LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__2___boxed(lean_object** _args) { @@ -3970,12 +3921,12 @@ return x_18; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN(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_9; -x_9 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___redArg(x_3, x_4, x_5, x_6, x_7, x_8); -return x_9; +lean_object* x_8; +x_8 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___redArg(x_2, x_3, x_4, x_5, x_6, x_7); +return x_8; } } LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___redArg___lam__0___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) { @@ -4009,13 +3960,13 @@ lean_dec(x_5); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___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_9; -x_9 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_7); -return x_9; +lean_object* x_8; +x_8 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +return x_8; } } static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode___aux__Lean__Elab__Tactic__Do__ProofMode__Intro______macroRules__Lean__Parser__Tactic__mintro__1___closed__0() { @@ -4744,7 +4695,7 @@ x_10 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroFor return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1___redArg___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, 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) { _start: { lean_object* x_19; lean_object* x_20; lean_object* x_21; @@ -4793,272 +4744,120 @@ uint8_t x_31; x_31 = !lean_is_exclusive(x_30); if (x_31 == 0) { -lean_object* x_32; uint8_t x_33; +lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_object* x_35; x_32 = lean_ctor_get(x_30, 0); -x_33 = !lean_is_exclusive(x_32); -if (x_33 == 0) -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; -x_34 = lean_ctor_get(x_30, 1); -x_35 = lean_ctor_get(x_32, 0); -x_36 = lean_ctor_get(x_32, 1); -x_37 = 1; -x_38 = l_Lean_Meta_mkLambdaFVars(x_26, x_36, x_27, x_3, x_27, x_3, x_37, x_14, x_15, x_16, x_17, x_34); +x_33 = lean_ctor_get(x_30, 1); +x_34 = 1; +x_35 = l_Lean_Meta_mkLambdaFVars(x_26, x_32, x_27, x_3, x_27, x_3, x_34, x_14, x_15, x_16, x_17, x_33); lean_dec(x_17); lean_dec_ref(x_16); lean_dec(x_15); lean_dec_ref(x_14); lean_dec_ref(x_26); -if (lean_obj_tag(x_38) == 0) +if (lean_obj_tag(x_35) == 0) { -uint8_t x_39; -x_39 = !lean_is_exclusive(x_38); -if (x_39 == 0) +uint8_t x_36; +x_36 = !lean_is_exclusive(x_35); +if (x_36 == 0) { -lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_40 = lean_ctor_get(x_38, 0); -x_41 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__0___closed__1; -x_42 = lean_box(0); +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_37 = lean_ctor_get(x_35, 0); +x_38 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__0___closed__1; +x_39 = lean_box(0); lean_ctor_set_tag(x_30, 1); -lean_ctor_set(x_30, 1, x_42); +lean_ctor_set(x_30, 1, x_39); lean_ctor_set(x_30, 0, x_7); -x_43 = l_Lean_Expr_const___override(x_41, x_30); -x_44 = l_Lean_mkApp5(x_43, x_5, x_1, x_4, x_6, x_40); -lean_ctor_set(x_32, 1, x_44); -lean_ctor_set(x_38, 0, x_32); -return x_38; +x_40 = l_Lean_Expr_const___override(x_38, x_30); +x_41 = l_Lean_mkApp5(x_40, x_5, x_1, x_4, x_6, x_37); +lean_ctor_set(x_35, 0, x_41); +return x_35; } else { -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_45 = lean_ctor_get(x_38, 0); -x_46 = lean_ctor_get(x_38, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_38); -x_47 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__0___closed__1; -x_48 = lean_box(0); -lean_ctor_set_tag(x_30, 1); -lean_ctor_set(x_30, 1, x_48); -lean_ctor_set(x_30, 0, x_7); -x_49 = l_Lean_Expr_const___override(x_47, x_30); -x_50 = l_Lean_mkApp5(x_49, x_5, x_1, x_4, x_6, x_45); -lean_ctor_set(x_32, 1, x_50); -x_51 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_51, 0, x_32); -lean_ctor_set(x_51, 1, x_46); -return x_51; -} -} -else -{ -uint8_t x_52; -lean_free_object(x_32); +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_42 = lean_ctor_get(x_35, 0); +x_43 = lean_ctor_get(x_35, 1); +lean_inc(x_43); +lean_inc(x_42); lean_dec(x_35); -lean_free_object(x_30); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_52 = !lean_is_exclusive(x_38); -if (x_52 == 0) -{ -return x_38; -} -else -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_53 = lean_ctor_get(x_38, 0); -x_54 = lean_ctor_get(x_38, 1); -lean_inc(x_54); -lean_inc(x_53); -lean_dec(x_38); -x_55 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_55, 0, x_53); -lean_ctor_set(x_55, 1, x_54); -return x_55; -} -} -} -else -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_object* x_60; -x_56 = lean_ctor_get(x_30, 1); -x_57 = lean_ctor_get(x_32, 0); -x_58 = lean_ctor_get(x_32, 1); -lean_inc(x_58); -lean_inc(x_57); -lean_dec(x_32); -x_59 = 1; -x_60 = l_Lean_Meta_mkLambdaFVars(x_26, x_58, x_27, x_3, x_27, x_3, x_59, x_14, x_15, x_16, x_17, x_56); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_26); -if (lean_obj_tag(x_60) == 0) -{ -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; -x_61 = lean_ctor_get(x_60, 0); -lean_inc(x_61); -x_62 = lean_ctor_get(x_60, 1); -lean_inc(x_62); -if (lean_is_exclusive(x_60)) { - lean_ctor_release(x_60, 0); - lean_ctor_release(x_60, 1); - x_63 = x_60; -} else { - lean_dec_ref(x_60); - x_63 = lean_box(0); -} -x_64 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__0___closed__1; -x_65 = lean_box(0); +x_44 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__0___closed__1; +x_45 = lean_box(0); lean_ctor_set_tag(x_30, 1); -lean_ctor_set(x_30, 1, x_65); +lean_ctor_set(x_30, 1, x_45); lean_ctor_set(x_30, 0, x_7); -x_66 = l_Lean_Expr_const___override(x_64, x_30); -x_67 = l_Lean_mkApp5(x_66, x_5, x_1, x_4, x_6, x_61); -x_68 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_68, 0, x_57); -lean_ctor_set(x_68, 1, x_67); -if (lean_is_scalar(x_63)) { - x_69 = lean_alloc_ctor(0, 2, 0); -} else { - x_69 = x_63; +x_46 = l_Lean_Expr_const___override(x_44, x_30); +x_47 = l_Lean_mkApp5(x_46, x_5, x_1, x_4, x_6, x_42); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_48, 1, x_43); +return x_48; } -lean_ctor_set(x_69, 0, x_68); -lean_ctor_set(x_69, 1, x_62); -return x_69; } else { -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; -lean_dec(x_57); lean_free_object(x_30); lean_dec(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec_ref(x_1); -x_70 = lean_ctor_get(x_60, 0); -lean_inc(x_70); -x_71 = lean_ctor_get(x_60, 1); -lean_inc(x_71); -if (lean_is_exclusive(x_60)) { - lean_ctor_release(x_60, 0); - lean_ctor_release(x_60, 1); - x_72 = x_60; -} else { - lean_dec_ref(x_60); - x_72 = lean_box(0); -} -if (lean_is_scalar(x_72)) { - x_73 = lean_alloc_ctor(1, 2, 0); -} else { - x_73 = x_72; -} -lean_ctor_set(x_73, 0, x_70); -lean_ctor_set(x_73, 1, x_71); -return x_73; -} +return x_35; } } else { -lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; uint8_t x_79; lean_object* x_80; -x_74 = lean_ctor_get(x_30, 0); -x_75 = lean_ctor_get(x_30, 1); -lean_inc(x_75); -lean_inc(x_74); +lean_object* x_49; lean_object* x_50; uint8_t x_51; lean_object* x_52; +x_49 = lean_ctor_get(x_30, 0); +x_50 = lean_ctor_get(x_30, 1); +lean_inc(x_50); +lean_inc(x_49); lean_dec(x_30); -x_76 = lean_ctor_get(x_74, 0); -lean_inc(x_76); -x_77 = lean_ctor_get(x_74, 1); -lean_inc(x_77); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - lean_ctor_release(x_74, 1); - x_78 = x_74; -} else { - lean_dec_ref(x_74); - x_78 = lean_box(0); -} -x_79 = 1; -x_80 = l_Lean_Meta_mkLambdaFVars(x_26, x_77, x_27, x_3, x_27, x_3, x_79, x_14, x_15, x_16, x_17, x_75); +x_51 = 1; +x_52 = l_Lean_Meta_mkLambdaFVars(x_26, x_49, x_27, x_3, x_27, x_3, x_51, x_14, x_15, x_16, x_17, x_50); lean_dec(x_17); lean_dec_ref(x_16); lean_dec(x_15); lean_dec_ref(x_14); lean_dec_ref(x_26); -if (lean_obj_tag(x_80) == 0) +if (lean_obj_tag(x_52) == 0) { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; -x_81 = lean_ctor_get(x_80, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_80, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_80)) { - lean_ctor_release(x_80, 0); - lean_ctor_release(x_80, 1); - x_83 = x_80; +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; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_52, 1); +lean_inc(x_54); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_55 = x_52; } else { - lean_dec_ref(x_80); - x_83 = lean_box(0); + lean_dec_ref(x_52); + x_55 = lean_box(0); } -x_84 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__0___closed__1; -x_85 = lean_box(0); -x_86 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_86, 0, x_7); -lean_ctor_set(x_86, 1, x_85); -x_87 = l_Lean_Expr_const___override(x_84, x_86); -x_88 = l_Lean_mkApp5(x_87, x_5, x_1, x_4, x_6, x_81); -if (lean_is_scalar(x_78)) { - x_89 = lean_alloc_ctor(0, 2, 0); +x_56 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__0___closed__1; +x_57 = lean_box(0); +x_58 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_58, 0, x_7); +lean_ctor_set(x_58, 1, x_57); +x_59 = l_Lean_Expr_const___override(x_56, x_58); +x_60 = l_Lean_mkApp5(x_59, x_5, x_1, x_4, x_6, x_53); +if (lean_is_scalar(x_55)) { + x_61 = lean_alloc_ctor(0, 2, 0); } else { - x_89 = x_78; + x_61 = x_55; } -lean_ctor_set(x_89, 0, x_76); -lean_ctor_set(x_89, 1, x_88); -if (lean_is_scalar(x_83)) { - x_90 = lean_alloc_ctor(0, 2, 0); -} else { - x_90 = x_83; -} -lean_ctor_set(x_90, 0, x_89); -lean_ctor_set(x_90, 1, x_82); -return x_90; +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_54); +return x_61; } else { -lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; -lean_dec(x_78); -lean_dec(x_76); lean_dec(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec_ref(x_1); -x_91 = lean_ctor_get(x_80, 0); -lean_inc(x_91); -x_92 = lean_ctor_get(x_80, 1); -lean_inc(x_92); -if (lean_is_exclusive(x_80)) { - lean_ctor_release(x_80, 0); - lean_ctor_release(x_80, 1); - x_93 = x_80; -} else { - lean_dec_ref(x_80); - x_93 = lean_box(0); -} -if (lean_is_scalar(x_93)) { - x_94 = lean_alloc_ctor(1, 2, 0); -} else { - x_94 = x_93; -} -lean_ctor_set(x_94, 0, x_91); -lean_ctor_set(x_94, 1, x_92); -return x_94; +return x_52; } } } @@ -5079,7 +4878,7 @@ return x_30; } else { -uint8_t x_95; +uint8_t x_62; lean_dec(x_17); lean_dec_ref(x_16); lean_dec(x_15); @@ -5095,28 +4894,28 @@ lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec_ref(x_1); -x_95 = !lean_is_exclusive(x_21); -if (x_95 == 0) +x_62 = !lean_is_exclusive(x_21); +if (x_62 == 0) { return x_21; } else { -lean_object* x_96; lean_object* x_97; lean_object* x_98; -x_96 = lean_ctor_get(x_21, 0); -x_97 = lean_ctor_get(x_21, 1); -lean_inc(x_97); -lean_inc(x_96); +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_21, 0); +x_64 = lean_ctor_get(x_21, 1); +lean_inc(x_64); +lean_inc(x_63); lean_dec(x_21); -x_98 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_98, 0, x_96); -lean_ctor_set(x_98, 1, x_97); -return x_98; +x_65 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_65, 0, x_63); +lean_ctor_set(x_65, 1, x_64); +return x_65; } } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; @@ -5137,19 +4936,20 @@ lean_inc_ref(x_20); x_23 = lean_whnf(x_20, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_23) == 0) { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; -x_24 = lean_ctor_get(x_23, 0); -lean_inc(x_24); -x_25 = lean_ctor_get(x_23, 1); -lean_inc(x_25); -lean_dec_ref(x_23); -x_26 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__3___closed__2; -x_27 = lean_unsigned_to_nat(3u); -x_28 = l_Lean_Expr_isAppOfArity(x_24, x_26, x_27); -if (x_28 == 0) +uint8_t x_24; +x_24 = !lean_is_exclusive(x_23); +if (x_24 == 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_dec(x_24); +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; +x_25 = lean_ctor_get(x_23, 0); +x_26 = lean_ctor_get(x_23, 1); +x_27 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__3___closed__2; +x_28 = lean_unsigned_to_nat(3u); +x_29 = l_Lean_Expr_isAppOfArity(x_25, x_27, x_28); +if (x_29 == 0) +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +lean_dec(x_25); lean_dec_ref(x_22); lean_dec_ref(x_21); lean_dec(x_19); @@ -5159,16 +4959,16 @@ lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec(x_2); -x_29 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__3___closed__4; -x_30 = l_Lean_MessageData_ofExpr(x_20); -x_31 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); +x_30 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__3___closed__4; +x_31 = l_Lean_MessageData_ofExpr(x_20); +lean_ctor_set_tag(x_23, 7); +lean_ctor_set(x_23, 1, x_31); +lean_ctor_set(x_23, 0, x_30); x_32 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__32; x_33 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 0, x_23); lean_ctor_set(x_33, 1, x_32); -x_34 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1_spec__1___redArg(x_33, x_8, x_9, x_10, x_11, x_25); +x_34 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1_spec__1___redArg(x_33, x_8, x_9, x_10, x_11, x_26); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -5179,16 +4979,17 @@ goto block_18; else { lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint8_t x_41; +lean_free_object(x_23); lean_dec_ref(x_20); -x_35 = l_Lean_Expr_appFn_x21(x_24); +x_35 = l_Lean_Expr_appFn_x21(x_25); x_36 = l_Lean_Expr_appArg_x21(x_35); lean_dec_ref(x_35); -x_37 = l_Lean_Expr_appArg_x21(x_24); -lean_dec(x_24); -x_38 = lean_box(x_28); +x_37 = l_Lean_Expr_appArg_x21(x_25); +lean_dec(x_25); +x_38 = lean_box(x_29); lean_inc(x_2); lean_inc_ref(x_36); -x_39 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1___redArg___lam__0___boxed), 18, 12); +x_39 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1___lam__0___boxed), 18, 12); lean_closure_set(x_39, 0, x_36); lean_closure_set(x_39, 1, x_2); lean_closure_set(x_39, 2, x_38); @@ -5209,7 +5010,7 @@ if (x_41 == 0) lean_object* x_42; lean_object* x_43; lean_dec(x_2); x_42 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__3___closed__6; -x_43 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_42, x_10, x_11, x_25); +x_43 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_42, x_10, x_11, x_26); if (lean_obj_tag(x_43) == 0) { lean_object* x_44; lean_object* x_45; lean_object* x_46; @@ -5265,7 +5066,7 @@ if (x_54 == 0) lean_object* x_55; lean_object* x_56; lean_dec(x_52); x_55 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__3___closed__6; -x_56 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_55, x_10, x_11, x_25); +x_56 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_55, x_10, x_11, x_26); if (lean_obj_tag(x_56) == 0) { lean_object* x_57; lean_object* x_58; lean_object* x_59; @@ -5312,7 +5113,7 @@ else lean_object* x_64; lean_object* x_65; x_64 = l_Lean_Syntax_getId(x_52); lean_dec(x_52); -x_65 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1_spec__3___redArg(x_64, x_36, x_39, x_8, x_9, x_10, x_11, x_25); +x_65 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1_spec__3___redArg(x_64, x_36, x_39, x_8, x_9, x_10, x_11, x_26); x_13 = x_65; goto block_18; } @@ -5321,7 +5122,195 @@ goto block_18; } else { -uint8_t x_66; +lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint8_t x_70; +x_66 = lean_ctor_get(x_23, 0); +x_67 = lean_ctor_get(x_23, 1); +lean_inc(x_67); +lean_inc(x_66); +lean_dec(x_23); +x_68 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__3___closed__2; +x_69 = lean_unsigned_to_nat(3u); +x_70 = l_Lean_Expr_isAppOfArity(x_66, x_68, x_69); +if (x_70 == 0) +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +lean_dec(x_66); +lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec(x_19); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +x_71 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__3___closed__4; +x_72 = l_Lean_MessageData_ofExpr(x_20); +x_73 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_73, 0, x_71); +lean_ctor_set(x_73, 1, x_72); +x_74 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__32; +x_75 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_75, 0, x_73); +lean_ctor_set(x_75, 1, x_74); +x_76 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1_spec__1___redArg(x_75, x_8, x_9, x_10, x_11, x_67); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_13 = x_76; +goto block_18; +} +else +{ +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; +lean_dec_ref(x_20); +x_77 = l_Lean_Expr_appFn_x21(x_66); +x_78 = l_Lean_Expr_appArg_x21(x_77); +lean_dec_ref(x_77); +x_79 = l_Lean_Expr_appArg_x21(x_66); +lean_dec(x_66); +x_80 = lean_box(x_70); +lean_inc(x_2); +lean_inc_ref(x_78); +x_81 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1___lam__0___boxed), 18, 12); +lean_closure_set(x_81, 0, x_78); +lean_closure_set(x_81, 1, x_2); +lean_closure_set(x_81, 2, x_80); +lean_closure_set(x_81, 3, x_21); +lean_closure_set(x_81, 4, x_79); +lean_closure_set(x_81, 5, x_22); +lean_closure_set(x_81, 6, x_19); +lean_closure_set(x_81, 7, x_3); +lean_closure_set(x_81, 8, x_4); +lean_closure_set(x_81, 9, x_5); +lean_closure_set(x_81, 10, x_6); +lean_closure_set(x_81, 11, x_7); +x_82 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__26; +lean_inc(x_2); +x_83 = l_Lean_Syntax_isOfKind(x_2, x_82); +if (x_83 == 0) +{ +lean_object* x_84; lean_object* x_85; +lean_dec(x_2); +x_84 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__3___closed__6; +x_85 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_84, x_10, x_11, x_67); +if (lean_obj_tag(x_85) == 0) +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_86 = lean_ctor_get(x_85, 0); +lean_inc(x_86); +x_87 = lean_ctor_get(x_85, 1); +lean_inc(x_87); +lean_dec_ref(x_85); +x_88 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1_spec__3___redArg(x_86, x_78, x_81, x_8, x_9, x_10, x_11, x_87); +x_13 = x_88; +goto block_18; +} +else +{ +lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; +lean_dec_ref(x_81); +lean_dec_ref(x_78); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_89 = lean_ctor_get(x_85, 0); +lean_inc(x_89); +x_90 = lean_ctor_get(x_85, 1); +lean_inc(x_90); +if (lean_is_exclusive(x_85)) { + lean_ctor_release(x_85, 0); + lean_ctor_release(x_85, 1); + x_91 = x_85; +} else { + lean_dec_ref(x_85); + x_91 = lean_box(0); +} +if (lean_is_scalar(x_91)) { + x_92 = lean_alloc_ctor(1, 2, 0); +} else { + x_92 = x_91; +} +lean_ctor_set(x_92, 0, x_89); +lean_ctor_set(x_92, 1, x_90); +return x_92; +} +} +else +{ +lean_object* x_93; lean_object* x_94; lean_object* x_95; uint8_t x_96; +x_93 = lean_unsigned_to_nat(0u); +x_94 = l_Lean_Syntax_getArg(x_2, x_93); +lean_dec(x_2); +x_95 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__28; +lean_inc(x_94); +x_96 = l_Lean_Syntax_isOfKind(x_94, x_95); +if (x_96 == 0) +{ +lean_object* x_97; lean_object* x_98; +lean_dec(x_94); +x_97 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___redArg___lam__3___closed__6; +x_98 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_97, x_10, x_11, x_67); +if (lean_obj_tag(x_98) == 0) +{ +lean_object* x_99; lean_object* x_100; lean_object* x_101; +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +x_100 = lean_ctor_get(x_98, 1); +lean_inc(x_100); +lean_dec_ref(x_98); +x_101 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1_spec__3___redArg(x_99, x_78, x_81, x_8, x_9, x_10, x_11, x_100); +x_13 = x_101; +goto block_18; +} +else +{ +lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; +lean_dec_ref(x_81); +lean_dec_ref(x_78); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_102 = lean_ctor_get(x_98, 0); +lean_inc(x_102); +x_103 = lean_ctor_get(x_98, 1); +lean_inc(x_103); +if (lean_is_exclusive(x_98)) { + lean_ctor_release(x_98, 0); + lean_ctor_release(x_98, 1); + x_104 = x_98; +} else { + lean_dec_ref(x_98); + x_104 = lean_box(0); +} +if (lean_is_scalar(x_104)) { + x_105 = lean_alloc_ctor(1, 2, 0); +} else { + x_105 = x_104; +} +lean_ctor_set(x_105, 0, x_102); +lean_ctor_set(x_105, 1, x_103); +return x_105; +} +} +else +{ +lean_object* x_106; lean_object* x_107; +x_106 = l_Lean_Syntax_getId(x_94); +lean_dec(x_94); +x_107 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1_spec__3___redArg(x_106, x_78, x_81, x_8, x_9, x_10, x_11, x_67); +x_13 = x_107; +goto block_18; +} +} +} +} +} +else +{ lean_dec_ref(x_22); lean_dec_ref(x_21); lean_dec_ref(x_20); @@ -5336,25 +5325,8 @@ lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec(x_2); -x_66 = !lean_is_exclusive(x_23); -if (x_66 == 0) -{ return x_23; } -else -{ -lean_object* x_67; lean_object* x_68; lean_object* x_69; -x_67 = lean_ctor_get(x_23, 0); -x_68 = lean_ctor_get(x_23, 1); -lean_inc(x_68); -lean_inc(x_67); -lean_dec(x_23); -x_69 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_69, 0, x_67); -lean_ctor_set(x_69, 1, x_68); -return x_69; -} -} block_18: { if (lean_obj_tag(x_13) == 0) @@ -5386,14 +5358,6 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -lean_object* x_14; -x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_14; -} -} LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__6_spec__6_spec__6_spec__6_spec__6___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { @@ -6403,7 +6367,7 @@ x_6 = l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_E return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_16; lean_object* x_17; lean_object* x_18; @@ -6420,151 +6384,23 @@ lean_inc_ref(x_11); x_18 = lean_apply_10(x_5, x_17, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); if (lean_obj_tag(x_18) == 0) { -lean_object* x_19; lean_object* x_20; uint8_t x_21; +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; uint8_t x_24; lean_object* x_25; x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); x_20 = lean_ctor_get(x_18, 1); lean_inc(x_20); lean_dec_ref(x_18); -x_21 = !lean_is_exclusive(x_19); -if (x_21 == 0) -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; lean_object* x_28; -x_22 = lean_ctor_get(x_19, 0); -x_23 = lean_ctor_get(x_19, 1); -x_24 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__1___closed__0; -x_25 = lean_array_push(x_24, x_6); -x_26 = 1; -x_27 = 1; -x_28 = l_Lean_Meta_mkLetFVars(x_25, x_23, x_26, x_26, x_27, x_11, x_12, x_13, x_14, x_20); +x_21 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__1___closed__0; +x_22 = lean_array_push(x_21, x_6); +x_23 = 1; +x_24 = 1; +x_25 = l_Lean_Meta_mkLetFVars(x_22, x_19, x_23, x_23, x_24, x_11, x_12, x_13, x_14, x_20); lean_dec(x_14); lean_dec_ref(x_13); lean_dec(x_12); lean_dec_ref(x_11); -lean_dec_ref(x_25); -if (lean_obj_tag(x_28) == 0) -{ -uint8_t x_29; -x_29 = !lean_is_exclusive(x_28); -if (x_29 == 0) -{ -lean_object* x_30; -x_30 = lean_ctor_get(x_28, 0); -lean_ctor_set(x_19, 1, x_30); -lean_ctor_set(x_28, 0, x_19); -return x_28; -} -else -{ -lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_31 = lean_ctor_get(x_28, 0); -x_32 = lean_ctor_get(x_28, 1); -lean_inc(x_32); -lean_inc(x_31); -lean_dec(x_28); -lean_ctor_set(x_19, 1, x_31); -x_33 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_33, 0, x_19); -lean_ctor_set(x_33, 1, x_32); -return x_33; -} -} -else -{ -uint8_t x_34; -lean_free_object(x_19); -lean_dec(x_22); -x_34 = !lean_is_exclusive(x_28); -if (x_34 == 0) -{ -return x_28; -} -else -{ -lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_35 = lean_ctor_get(x_28, 0); -x_36 = lean_ctor_get(x_28, 1); -lean_inc(x_36); -lean_inc(x_35); -lean_dec(x_28); -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_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; uint8_t x_43; lean_object* x_44; -x_38 = lean_ctor_get(x_19, 0); -x_39 = lean_ctor_get(x_19, 1); -lean_inc(x_39); -lean_inc(x_38); -lean_dec(x_19); -x_40 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___lam__1___closed__0; -x_41 = lean_array_push(x_40, x_6); -x_42 = 1; -x_43 = 1; -x_44 = l_Lean_Meta_mkLetFVars(x_41, x_39, x_42, x_42, x_43, x_11, x_12, x_13, x_14, x_20); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_41); -if (lean_obj_tag(x_44) == 0) -{ -lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_45 = lean_ctor_get(x_44, 0); -lean_inc(x_45); -x_46 = lean_ctor_get(x_44, 1); -lean_inc(x_46); -if (lean_is_exclusive(x_44)) { - lean_ctor_release(x_44, 0); - lean_ctor_release(x_44, 1); - x_47 = x_44; -} else { - lean_dec_ref(x_44); - x_47 = lean_box(0); -} -x_48 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_48, 0, x_38); -lean_ctor_set(x_48, 1, x_45); -if (lean_is_scalar(x_47)) { - x_49 = lean_alloc_ctor(0, 2, 0); -} else { - x_49 = x_47; -} -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set(x_49, 1, x_46); -return x_49; -} -else -{ -lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; -lean_dec(x_38); -x_50 = lean_ctor_get(x_44, 0); -lean_inc(x_50); -x_51 = lean_ctor_get(x_44, 1); -lean_inc(x_51); -if (lean_is_exclusive(x_44)) { - lean_ctor_release(x_44, 0); - lean_ctor_release(x_44, 1); - x_52 = x_44; -} else { - lean_dec_ref(x_44); - x_52 = lean_box(0); -} -if (lean_is_scalar(x_52)) { - x_53 = lean_alloc_ctor(1, 2, 0); -} else { - x_53 = x_52; -} -lean_ctor_set(x_53, 0, x_50); -lean_ctor_set(x_53, 1, x_51); -return x_53; -} -} +lean_dec_ref(x_22); +return x_25; } else { @@ -6577,7 +6413,7 @@ return x_18; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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) { _start: { uint8_t x_15; lean_object* x_16; @@ -6586,7 +6422,7 @@ x_16 = l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at_ return x_16; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___closed__0() { _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; lean_object* x_7; @@ -6600,7 +6436,7 @@ x_7 = l_Lean_Name_mkStr6(x_6, x_5, x_4, x_3, x_2, x_1); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { uint8_t x_13; @@ -6630,7 +6466,7 @@ lean_inc_ref(x_23); x_24 = lean_ctor_get(x_17, 3); lean_inc_ref(x_24); lean_dec_ref(x_17); -x_25 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___lam__0___boxed), 15, 5); +x_25 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___lam__0___boxed), 15, 5); lean_closure_set(x_25, 0, x_24); lean_closure_set(x_25, 1, x_14); lean_closure_set(x_25, 2, x_15); @@ -6652,7 +6488,7 @@ lean_inc(x_29); x_30 = lean_ctor_get(x_28, 1); lean_inc(x_30); lean_dec_ref(x_28); -x_31 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___lam__1(x_22, x_23, x_25, x_20, x_29, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_30); +x_31 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___lam__1(x_22, x_23, x_25, x_20, x_29, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_30); return x_31; } else @@ -6711,7 +6547,7 @@ lean_inc(x_41); x_42 = lean_ctor_get(x_40, 1); lean_inc(x_42); lean_dec_ref(x_40); -x_43 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___lam__1(x_22, x_23, x_25, x_20, x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_42); +x_43 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___lam__1(x_22, x_23, x_25, x_20, x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_42); return x_43; } else @@ -6754,7 +6590,7 @@ lean_object* x_48; lean_object* x_49; lean_dec(x_21); x_48 = l_Lean_Syntax_getId(x_37); lean_dec(x_37); -x_49 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___lam__1(x_22, x_23, x_25, x_20, x_48, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_49 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___lam__1(x_22, x_23, x_25, x_20, x_48, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_49; } } @@ -6839,7 +6675,7 @@ lean_inc_ref(x_71); lean_inc_ref(x_16); lean_inc_ref(x_15); lean_inc(x_14); -x_72 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(x_14, x_15, x_16, x_71); +x_72 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_14, x_15, x_16, x_71); x_73 = !lean_is_exclusive(x_72); if (x_73 == 0) { @@ -6860,83 +6696,37 @@ uint8_t x_78; x_78 = !lean_is_exclusive(x_77); if (x_78 == 0) { -lean_object* x_79; uint8_t x_80; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; x_79 = lean_ctor_get(x_77, 0); -x_80 = !lean_is_exclusive(x_79); -if (x_80 == 0) -{ -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; -x_81 = lean_ctor_get(x_79, 1); -x_82 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___closed__0; -x_83 = lean_box(0); +x_80 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___closed__0; +x_81 = lean_box(0); lean_ctor_set_tag(x_72, 1); -lean_ctor_set(x_72, 1, x_83); +lean_ctor_set(x_72, 1, x_81); lean_ctor_set(x_72, 0, x_14); -x_84 = l_Lean_Expr_const___override(x_82, x_72); -x_85 = l_Lean_mkApp7(x_84, x_66, x_74, x_16, x_71, x_76, x_75, x_81); -lean_ctor_set(x_79, 1, x_85); +x_82 = l_Lean_Expr_const___override(x_80, x_72); +x_83 = l_Lean_mkApp7(x_82, x_66, x_74, x_16, x_71, x_76, x_75, x_79); +lean_ctor_set(x_77, 0, x_83); return x_77; } else { -lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; -x_86 = lean_ctor_get(x_79, 0); -x_87 = lean_ctor_get(x_79, 1); -lean_inc(x_87); -lean_inc(x_86); -lean_dec(x_79); -x_88 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___closed__0; -x_89 = lean_box(0); -lean_ctor_set_tag(x_72, 1); -lean_ctor_set(x_72, 1, x_89); -lean_ctor_set(x_72, 0, x_14); -x_90 = l_Lean_Expr_const___override(x_88, x_72); -x_91 = l_Lean_mkApp7(x_90, x_66, x_74, x_16, x_71, x_76, x_75, x_87); -x_92 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_92, 0, x_86); -lean_ctor_set(x_92, 1, x_91); -lean_ctor_set(x_77, 0, x_92); -return x_77; -} -} -else -{ -lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; -x_93 = lean_ctor_get(x_77, 0); -x_94 = lean_ctor_get(x_77, 1); -lean_inc(x_94); -lean_inc(x_93); +lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; +x_84 = lean_ctor_get(x_77, 0); +x_85 = lean_ctor_get(x_77, 1); +lean_inc(x_85); +lean_inc(x_84); lean_dec(x_77); -x_95 = lean_ctor_get(x_93, 0); -lean_inc(x_95); -x_96 = lean_ctor_get(x_93, 1); -lean_inc(x_96); -if (lean_is_exclusive(x_93)) { - lean_ctor_release(x_93, 0); - lean_ctor_release(x_93, 1); - x_97 = x_93; -} else { - lean_dec_ref(x_93); - x_97 = lean_box(0); -} -x_98 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___closed__0; -x_99 = lean_box(0); +x_86 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___closed__0; +x_87 = lean_box(0); lean_ctor_set_tag(x_72, 1); -lean_ctor_set(x_72, 1, x_99); +lean_ctor_set(x_72, 1, x_87); lean_ctor_set(x_72, 0, x_14); -x_100 = l_Lean_Expr_const___override(x_98, x_72); -x_101 = l_Lean_mkApp7(x_100, x_66, x_74, x_16, x_71, x_76, x_75, x_96); -if (lean_is_scalar(x_97)) { - x_102 = lean_alloc_ctor(0, 2, 0); -} else { - x_102 = x_97; -} -lean_ctor_set(x_102, 0, x_95); -lean_ctor_set(x_102, 1, x_101); -x_103 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_103, 0, x_102); -lean_ctor_set(x_103, 1, x_94); -return x_103; +x_88 = l_Lean_Expr_const___override(x_86, x_72); +x_89 = l_Lean_mkApp7(x_88, x_66, x_74, x_16, x_71, x_76, x_75, x_84); +x_90 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_90, 0, x_89); +lean_ctor_set(x_90, 1, x_85); +return x_90; } } else @@ -6954,86 +6744,67 @@ return x_77; } else { -lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; -x_104 = lean_ctor_get(x_72, 0); -x_105 = lean_ctor_get(x_72, 1); -lean_inc(x_105); -lean_inc(x_104); +lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; +x_91 = lean_ctor_get(x_72, 0); +x_92 = lean_ctor_get(x_72, 1); +lean_inc(x_92); +lean_inc(x_91); lean_dec(x_72); -x_106 = l_Lean_Expr_appArg_x21(x_17); +x_93 = l_Lean_Expr_appArg_x21(x_17); lean_dec_ref(x_17); -lean_inc_ref(x_106); -lean_inc(x_104); +lean_inc_ref(x_93); +lean_inc(x_91); lean_inc(x_14); -lean_ctor_set(x_1, 3, x_106); -lean_ctor_set(x_1, 2, x_104); -x_107 = lean_apply_10(x_3, x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_70); -if (lean_obj_tag(x_107) == 0) +lean_ctor_set(x_1, 3, x_93); +lean_ctor_set(x_1, 2, x_91); +x_94 = lean_apply_10(x_3, x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_70); +if (lean_obj_tag(x_94) == 0) { -lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; -x_108 = lean_ctor_get(x_107, 0); -lean_inc(x_108); -x_109 = lean_ctor_get(x_107, 1); -lean_inc(x_109); -if (lean_is_exclusive(x_107)) { - lean_ctor_release(x_107, 0); - lean_ctor_release(x_107, 1); - x_110 = x_107; +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; +x_95 = lean_ctor_get(x_94, 0); +lean_inc(x_95); +x_96 = lean_ctor_get(x_94, 1); +lean_inc(x_96); +if (lean_is_exclusive(x_94)) { + lean_ctor_release(x_94, 0); + lean_ctor_release(x_94, 1); + x_97 = x_94; } else { - lean_dec_ref(x_107); - x_110 = lean_box(0); + lean_dec_ref(x_94); + x_97 = lean_box(0); } -x_111 = lean_ctor_get(x_108, 0); -lean_inc(x_111); -x_112 = lean_ctor_get(x_108, 1); -lean_inc(x_112); -if (lean_is_exclusive(x_108)) { - lean_ctor_release(x_108, 0); - lean_ctor_release(x_108, 1); - x_113 = x_108; +x_98 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___closed__0; +x_99 = lean_box(0); +x_100 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_100, 0, x_14); +lean_ctor_set(x_100, 1, x_99); +x_101 = l_Lean_Expr_const___override(x_98, x_100); +x_102 = l_Lean_mkApp7(x_101, x_66, x_91, x_16, x_71, x_93, x_92, x_95); +if (lean_is_scalar(x_97)) { + x_103 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_108); - x_113 = lean_box(0); + x_103 = x_97; } -x_114 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___closed__0; -x_115 = lean_box(0); -x_116 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_116, 0, x_14); -lean_ctor_set(x_116, 1, x_115); -x_117 = l_Lean_Expr_const___override(x_114, x_116); -x_118 = l_Lean_mkApp7(x_117, x_66, x_104, x_16, x_71, x_106, x_105, x_112); -if (lean_is_scalar(x_113)) { - x_119 = lean_alloc_ctor(0, 2, 0); -} else { - x_119 = x_113; -} -lean_ctor_set(x_119, 0, x_111); -lean_ctor_set(x_119, 1, x_118); -if (lean_is_scalar(x_110)) { - x_120 = lean_alloc_ctor(0, 2, 0); -} else { - x_120 = x_110; -} -lean_ctor_set(x_120, 0, x_119); -lean_ctor_set(x_120, 1, x_109); -return x_120; +lean_ctor_set(x_103, 0, x_102); +lean_ctor_set(x_103, 1, x_96); +return x_103; } else { -lean_dec_ref(x_106); -lean_dec(x_105); -lean_dec(x_104); +lean_dec_ref(x_93); +lean_dec(x_92); +lean_dec(x_91); lean_dec_ref(x_71); lean_dec_ref(x_66); lean_dec_ref(x_16); lean_dec(x_14); -return x_107; +return x_94; } } } else { -uint8_t x_121; +uint8_t x_104; lean_dec_ref(x_68); lean_dec_ref(x_66); lean_free_object(x_1); @@ -7050,29 +6821,29 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); -x_121 = !lean_is_exclusive(x_69); -if (x_121 == 0) +x_104 = !lean_is_exclusive(x_69); +if (x_104 == 0) { return x_69; } else { -lean_object* x_122; lean_object* x_123; lean_object* x_124; -x_122 = lean_ctor_get(x_69, 0); -x_123 = lean_ctor_get(x_69, 1); -lean_inc(x_123); -lean_inc(x_122); +lean_object* x_105; lean_object* x_106; lean_object* x_107; +x_105 = lean_ctor_get(x_69, 0); +x_106 = lean_ctor_get(x_69, 1); +lean_inc(x_106); +lean_inc(x_105); lean_dec(x_69); -x_124 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_124, 0, x_122); -lean_ctor_set(x_124, 1, x_123); -return x_124; +x_107 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_107, 0, x_105); +lean_ctor_set(x_107, 1, x_106); +return x_107; } } } else { -uint8_t x_125; +uint8_t x_108; lean_free_object(x_1); lean_dec_ref(x_17); lean_dec_ref(x_16); @@ -7087,87 +6858,87 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); -x_125 = !lean_is_exclusive(x_56); -if (x_125 == 0) +x_108 = !lean_is_exclusive(x_56); +if (x_108 == 0) { return x_56; } else { -lean_object* x_126; lean_object* x_127; lean_object* x_128; -x_126 = lean_ctor_get(x_56, 0); -x_127 = lean_ctor_get(x_56, 1); -lean_inc(x_127); -lean_inc(x_126); +lean_object* x_109; lean_object* x_110; lean_object* x_111; +x_109 = lean_ctor_get(x_56, 0); +x_110 = lean_ctor_get(x_56, 1); +lean_inc(x_110); +lean_inc(x_109); lean_dec(x_56); -x_128 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_128, 0, x_126); -lean_ctor_set(x_128, 1, x_127); -return x_128; +x_111 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_111, 0, x_109); +lean_ctor_set(x_111, 1, x_110); +return x_111; } } } } else { -lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; uint8_t x_135; -x_129 = lean_ctor_get(x_1, 0); -x_130 = lean_ctor_get(x_1, 1); -x_131 = lean_ctor_get(x_1, 2); -x_132 = lean_ctor_get(x_1, 3); -lean_inc(x_132); -lean_inc(x_131); -lean_inc(x_130); -lean_inc(x_129); +lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; +x_112 = lean_ctor_get(x_1, 0); +x_113 = lean_ctor_get(x_1, 1); +x_114 = lean_ctor_get(x_1, 2); +x_115 = lean_ctor_get(x_1, 3); +lean_inc(x_115); +lean_inc(x_114); +lean_inc(x_113); +lean_inc(x_112); lean_dec(x_1); -x_133 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__23; -x_134 = lean_unsigned_to_nat(3u); -x_135 = l_Lean_Expr_isAppOfArity(x_132, x_133, x_134); -if (x_135 == 0) +x_116 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__23; +x_117 = lean_unsigned_to_nat(3u); +x_118 = l_Lean_Expr_isAppOfArity(x_115, x_116, x_117); +if (x_118 == 0) { -if (lean_obj_tag(x_132) == 8) +if (lean_obj_tag(x_115) == 8) { -lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; uint8_t x_142; -x_136 = lean_ctor_get(x_132, 0); -lean_inc(x_136); -x_137 = lean_ctor_get(x_132, 1); -lean_inc_ref(x_137); -x_138 = lean_ctor_get(x_132, 2); -lean_inc_ref(x_138); -x_139 = lean_ctor_get(x_132, 3); -lean_inc_ref(x_139); -lean_dec_ref(x_132); -x_140 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___lam__0___boxed), 15, 5); -lean_closure_set(x_140, 0, x_139); -lean_closure_set(x_140, 1, x_129); -lean_closure_set(x_140, 2, x_130); -lean_closure_set(x_140, 3, x_131); -lean_closure_set(x_140, 4, x_3); -x_141 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__26; +lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; uint8_t x_125; +x_119 = lean_ctor_get(x_115, 0); +lean_inc(x_119); +x_120 = lean_ctor_get(x_115, 1); +lean_inc_ref(x_120); +x_121 = lean_ctor_get(x_115, 2); +lean_inc_ref(x_121); +x_122 = lean_ctor_get(x_115, 3); +lean_inc_ref(x_122); +lean_dec_ref(x_115); +x_123 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___lam__0___boxed), 15, 5); +lean_closure_set(x_123, 0, x_122); +lean_closure_set(x_123, 1, x_112); +lean_closure_set(x_123, 2, x_113); +lean_closure_set(x_123, 3, x_114); +lean_closure_set(x_123, 4, x_3); +x_124 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__26; lean_inc(x_2); -x_142 = l_Lean_Syntax_isOfKind(x_2, x_141); -if (x_142 == 0) +x_125 = l_Lean_Syntax_isOfKind(x_2, x_124); +if (x_125 == 0) { -lean_object* x_143; +lean_object* x_126; lean_dec(x_2); -x_143 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_136, x_10, x_11, x_12); -if (lean_obj_tag(x_143) == 0) +x_126 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_119, x_10, x_11, x_12); +if (lean_obj_tag(x_126) == 0) { -lean_object* x_144; lean_object* x_145; lean_object* x_146; -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_ref(x_143); -x_146 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___lam__1(x_137, x_138, x_140, x_135, x_144, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_145); -return x_146; +lean_object* x_127; lean_object* x_128; lean_object* x_129; +x_127 = lean_ctor_get(x_126, 0); +lean_inc(x_127); +x_128 = lean_ctor_get(x_126, 1); +lean_inc(x_128); +lean_dec_ref(x_126); +x_129 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___lam__1(x_120, x_121, x_123, x_118, x_127, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_128); +return x_129; } else { -lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; -lean_dec_ref(x_140); -lean_dec_ref(x_138); -lean_dec_ref(x_137); +lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; +lean_dec_ref(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_120); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -7176,59 +6947,59 @@ lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); -x_147 = lean_ctor_get(x_143, 0); -lean_inc(x_147); -x_148 = lean_ctor_get(x_143, 1); -lean_inc(x_148); -if (lean_is_exclusive(x_143)) { - lean_ctor_release(x_143, 0); - lean_ctor_release(x_143, 1); - x_149 = x_143; +x_130 = lean_ctor_get(x_126, 0); +lean_inc(x_130); +x_131 = lean_ctor_get(x_126, 1); +lean_inc(x_131); +if (lean_is_exclusive(x_126)) { + lean_ctor_release(x_126, 0); + lean_ctor_release(x_126, 1); + x_132 = x_126; } else { - lean_dec_ref(x_143); - x_149 = lean_box(0); + lean_dec_ref(x_126); + x_132 = lean_box(0); } -if (lean_is_scalar(x_149)) { - x_150 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_132)) { + x_133 = lean_alloc_ctor(1, 2, 0); } else { - x_150 = x_149; + x_133 = x_132; } -lean_ctor_set(x_150, 0, x_147); -lean_ctor_set(x_150, 1, x_148); -return x_150; +lean_ctor_set(x_133, 0, x_130); +lean_ctor_set(x_133, 1, x_131); +return x_133; } } else { -lean_object* x_151; lean_object* x_152; lean_object* x_153; uint8_t x_154; -x_151 = lean_unsigned_to_nat(0u); -x_152 = l_Lean_Syntax_getArg(x_2, x_151); +lean_object* x_134; lean_object* x_135; lean_object* x_136; uint8_t x_137; +x_134 = lean_unsigned_to_nat(0u); +x_135 = l_Lean_Syntax_getArg(x_2, x_134); lean_dec(x_2); -x_153 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__28; -lean_inc(x_152); -x_154 = l_Lean_Syntax_isOfKind(x_152, x_153); -if (x_154 == 0) +x_136 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__28; +lean_inc(x_135); +x_137 = l_Lean_Syntax_isOfKind(x_135, x_136); +if (x_137 == 0) { -lean_object* x_155; -lean_dec(x_152); -x_155 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_136, x_10, x_11, x_12); -if (lean_obj_tag(x_155) == 0) +lean_object* x_138; +lean_dec(x_135); +x_138 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_119, x_10, x_11, x_12); +if (lean_obj_tag(x_138) == 0) { -lean_object* x_156; lean_object* x_157; lean_object* x_158; -x_156 = lean_ctor_get(x_155, 0); -lean_inc(x_156); -x_157 = lean_ctor_get(x_155, 1); -lean_inc(x_157); -lean_dec_ref(x_155); -x_158 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___lam__1(x_137, x_138, x_140, x_135, x_156, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_157); -return x_158; +lean_object* x_139; lean_object* x_140; lean_object* x_141; +x_139 = lean_ctor_get(x_138, 0); +lean_inc(x_139); +x_140 = lean_ctor_get(x_138, 1); +lean_inc(x_140); +lean_dec_ref(x_138); +x_141 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___lam__1(x_120, x_121, x_123, x_118, x_139, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_140); +return x_141; } else { -lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; -lean_dec_ref(x_140); -lean_dec_ref(x_138); -lean_dec_ref(x_137); +lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +lean_dec_ref(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_120); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -7237,298 +7008,271 @@ lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); -x_159 = lean_ctor_get(x_155, 0); -lean_inc(x_159); -x_160 = lean_ctor_get(x_155, 1); -lean_inc(x_160); -if (lean_is_exclusive(x_155)) { - lean_ctor_release(x_155, 0); - lean_ctor_release(x_155, 1); - x_161 = x_155; +x_142 = lean_ctor_get(x_138, 0); +lean_inc(x_142); +x_143 = lean_ctor_get(x_138, 1); +lean_inc(x_143); +if (lean_is_exclusive(x_138)) { + lean_ctor_release(x_138, 0); + lean_ctor_release(x_138, 1); + x_144 = x_138; } else { - lean_dec_ref(x_155); - x_161 = lean_box(0); + lean_dec_ref(x_138); + x_144 = lean_box(0); } -if (lean_is_scalar(x_161)) { - x_162 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_144)) { + x_145 = lean_alloc_ctor(1, 2, 0); } else { - x_162 = x_161; + x_145 = x_144; } -lean_ctor_set(x_162, 0, x_159); -lean_ctor_set(x_162, 1, x_160); -return x_162; +lean_ctor_set(x_145, 0, x_142); +lean_ctor_set(x_145, 1, x_143); +return x_145; } } else { -lean_object* x_163; lean_object* x_164; -lean_dec(x_136); -x_163 = l_Lean_Syntax_getId(x_152); -lean_dec(x_152); -x_164 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___lam__1(x_137, x_138, x_140, x_135, x_163, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -return x_164; +lean_object* x_146; lean_object* x_147; +lean_dec(x_119); +x_146 = l_Lean_Syntax_getId(x_135); +lean_dec(x_135); +x_147 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___lam__1(x_120, x_121, x_123, x_118, x_146, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_147; } } } else { -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_dec_ref(x_131); -lean_dec_ref(x_130); -lean_dec(x_129); +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_dec_ref(x_114); +lean_dec_ref(x_113); +lean_dec(x_112); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec(x_2); -x_165 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__30; -x_166 = l_Lean_MessageData_ofExpr(x_132); -x_167 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_167, 0, x_165); -lean_ctor_set(x_167, 1, x_166); -x_168 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__32; -x_169 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_169, 0, x_167); -lean_ctor_set(x_169, 1, x_168); -x_170 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1_spec__1___redArg(x_169, x_8, x_9, x_10, x_11, x_12); +x_148 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__30; +x_149 = l_Lean_MessageData_ofExpr(x_115); +x_150 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_150, 0, x_148); +lean_ctor_set(x_150, 1, x_149); +x_151 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___redArg___closed__32; +x_152 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_152, 0, x_150); +lean_ctor_set(x_152, 1, x_151); +x_153 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1_spec__1___redArg(x_152, x_8, x_9, x_10, x_11, x_12); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); lean_dec_ref(x_8); -return x_170; +return x_153; } } else { -lean_object* x_171; -x_171 = l_Lean_Elab_Tactic_Do_ProofMode_getFreshHypName(x_2, x_10, x_11, x_12); -if (lean_obj_tag(x_171) == 0) +lean_object* x_154; +x_154 = l_Lean_Elab_Tactic_Do_ProofMode_getFreshHypName(x_2, x_10, x_11, x_12); +if (lean_obj_tag(x_154) == 0) { -lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; -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_ref(x_171); -x_174 = lean_ctor_get(x_172, 0); -lean_inc(x_174); -x_175 = lean_ctor_get(x_172, 1); -lean_inc(x_175); -lean_dec(x_172); -x_176 = l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13_spec__14___redArg(x_11, x_173); -x_177 = lean_ctor_get(x_176, 0); -lean_inc(x_177); -x_178 = lean_ctor_get(x_176, 1); -lean_inc(x_178); -lean_dec_ref(x_176); -x_179 = l_Lean_Expr_appFn_x21(x_132); -x_180 = l_Lean_Expr_appFn_x21(x_179); -x_181 = l_Lean_Expr_appArg_x21(x_180); -lean_dec_ref(x_180); -x_182 = l_Lean_Expr_appArg_x21(x_179); -lean_dec_ref(x_179); -x_183 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_183, 0, x_174); -lean_ctor_set(x_183, 1, x_177); -lean_ctor_set(x_183, 2, x_182); +lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; +x_155 = lean_ctor_get(x_154, 0); +lean_inc(x_155); +x_156 = lean_ctor_get(x_154, 1); +lean_inc(x_156); +lean_dec_ref(x_154); +x_157 = lean_ctor_get(x_155, 0); +lean_inc(x_157); +x_158 = lean_ctor_get(x_155, 1); +lean_inc(x_158); +lean_dec(x_155); +x_159 = l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13_spec__14___redArg(x_11, x_156); +x_160 = lean_ctor_get(x_159, 0); +lean_inc(x_160); +x_161 = lean_ctor_get(x_159, 1); +lean_inc(x_161); +lean_dec_ref(x_159); +x_162 = l_Lean_Expr_appFn_x21(x_115); +x_163 = l_Lean_Expr_appFn_x21(x_162); +x_164 = l_Lean_Expr_appArg_x21(x_163); +lean_dec_ref(x_163); +x_165 = l_Lean_Expr_appArg_x21(x_162); +lean_dec_ref(x_162); +x_166 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_166, 0, x_157); +lean_ctor_set(x_166, 1, x_160); +lean_ctor_set(x_166, 2, x_165); lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); -lean_inc_ref(x_183); -lean_inc_ref(x_181); -x_184 = l_Lean_Elab_Tactic_Do_ProofMode_addHypInfo(x_175, x_181, x_183, x_135, x_8, x_9, x_10, x_11, x_178); -if (lean_obj_tag(x_184) == 0) +lean_inc_ref(x_166); +lean_inc_ref(x_164); +x_167 = l_Lean_Elab_Tactic_Do_ProofMode_addHypInfo(x_158, x_164, x_166, x_118, x_8, x_9, x_10, x_11, x_161); +if (lean_obj_tag(x_167) == 0) { -lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; -x_185 = lean_ctor_get(x_184, 1); -lean_inc(x_185); -lean_dec_ref(x_184); -x_186 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_183); -lean_inc_ref(x_186); -lean_inc_ref(x_131); -lean_inc_ref(x_130); -lean_inc(x_129); -x_187 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(x_129, x_130, x_131, x_186); -x_188 = lean_ctor_get(x_187, 0); -lean_inc(x_188); -x_189 = lean_ctor_get(x_187, 1); -lean_inc(x_189); -if (lean_is_exclusive(x_187)) { - lean_ctor_release(x_187, 0); - lean_ctor_release(x_187, 1); - x_190 = x_187; +lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; +x_168 = lean_ctor_get(x_167, 1); +lean_inc(x_168); +lean_dec_ref(x_167); +x_169 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_166); +lean_inc_ref(x_169); +lean_inc_ref(x_114); +lean_inc_ref(x_113); +lean_inc(x_112); +x_170 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_112, x_113, x_114, x_169); +x_171 = lean_ctor_get(x_170, 0); +lean_inc(x_171); +x_172 = lean_ctor_get(x_170, 1); +lean_inc(x_172); +if (lean_is_exclusive(x_170)) { + lean_ctor_release(x_170, 0); + lean_ctor_release(x_170, 1); + x_173 = x_170; } else { - lean_dec_ref(x_187); - x_190 = lean_box(0); + lean_dec_ref(x_170); + x_173 = lean_box(0); } -x_191 = l_Lean_Expr_appArg_x21(x_132); -lean_dec_ref(x_132); -lean_inc_ref(x_191); -lean_inc(x_188); -lean_inc(x_129); -x_192 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_192, 0, x_129); -lean_ctor_set(x_192, 1, x_130); -lean_ctor_set(x_192, 2, x_188); -lean_ctor_set(x_192, 3, x_191); -x_193 = lean_apply_10(x_3, x_192, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_185); -if (lean_obj_tag(x_193) == 0) +x_174 = l_Lean_Expr_appArg_x21(x_115); +lean_dec_ref(x_115); +lean_inc_ref(x_174); +lean_inc(x_171); +lean_inc(x_112); +x_175 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_175, 0, x_112); +lean_ctor_set(x_175, 1, x_113); +lean_ctor_set(x_175, 2, x_171); +lean_ctor_set(x_175, 3, x_174); +x_176 = lean_apply_10(x_3, x_175, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_168); +if (lean_obj_tag(x_176) == 0) { -lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_194 = lean_ctor_get(x_193, 0); -lean_inc(x_194); -x_195 = lean_ctor_get(x_193, 1); -lean_inc(x_195); -if (lean_is_exclusive(x_193)) { - lean_ctor_release(x_193, 0); - lean_ctor_release(x_193, 1); - x_196 = x_193; +lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; +x_177 = lean_ctor_get(x_176, 0); +lean_inc(x_177); +x_178 = lean_ctor_get(x_176, 1); +lean_inc(x_178); +if (lean_is_exclusive(x_176)) { + lean_ctor_release(x_176, 0); + lean_ctor_release(x_176, 1); + x_179 = x_176; } else { - lean_dec_ref(x_193); - x_196 = lean_box(0); + lean_dec_ref(x_176); + x_179 = lean_box(0); } -x_197 = lean_ctor_get(x_194, 0); -lean_inc(x_197); -x_198 = lean_ctor_get(x_194, 1); -lean_inc(x_198); -if (lean_is_exclusive(x_194)) { - lean_ctor_release(x_194, 0); - lean_ctor_release(x_194, 1); - x_199 = x_194; +x_180 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___closed__0; +x_181 = lean_box(0); +if (lean_is_scalar(x_173)) { + x_182 = lean_alloc_ctor(1, 2, 0); } else { - lean_dec_ref(x_194); - x_199 = lean_box(0); + x_182 = x_173; + lean_ctor_set_tag(x_182, 1); } -x_200 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___closed__0; -x_201 = lean_box(0); -if (lean_is_scalar(x_190)) { - x_202 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_182, 0, x_112); +lean_ctor_set(x_182, 1, x_181); +x_183 = l_Lean_Expr_const___override(x_180, x_182); +x_184 = l_Lean_mkApp7(x_183, x_164, x_171, x_114, x_169, x_174, x_172, x_177); +if (lean_is_scalar(x_179)) { + x_185 = lean_alloc_ctor(0, 2, 0); } else { - x_202 = x_190; - lean_ctor_set_tag(x_202, 1); + x_185 = x_179; } -lean_ctor_set(x_202, 0, x_129); -lean_ctor_set(x_202, 1, x_201); -x_203 = l_Lean_Expr_const___override(x_200, x_202); -x_204 = l_Lean_mkApp7(x_203, x_181, x_188, x_131, x_186, x_191, x_189, x_198); -if (lean_is_scalar(x_199)) { - x_205 = lean_alloc_ctor(0, 2, 0); -} else { - x_205 = x_199; -} -lean_ctor_set(x_205, 0, x_197); -lean_ctor_set(x_205, 1, x_204); -if (lean_is_scalar(x_196)) { - x_206 = lean_alloc_ctor(0, 2, 0); -} else { - x_206 = x_196; -} -lean_ctor_set(x_206, 0, x_205); -lean_ctor_set(x_206, 1, x_195); -return x_206; +lean_ctor_set(x_185, 0, x_184); +lean_ctor_set(x_185, 1, x_178); +return x_185; } else { -lean_dec_ref(x_191); -lean_dec(x_190); -lean_dec(x_189); -lean_dec(x_188); -lean_dec_ref(x_186); -lean_dec_ref(x_181); -lean_dec_ref(x_131); -lean_dec(x_129); +lean_dec_ref(x_174); +lean_dec(x_173); +lean_dec(x_172); +lean_dec(x_171); +lean_dec_ref(x_169); +lean_dec_ref(x_164); +lean_dec_ref(x_114); +lean_dec(x_112); +return x_176; +} +} +else +{ +lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; +lean_dec_ref(x_166); +lean_dec_ref(x_164); +lean_dec_ref(x_115); +lean_dec_ref(x_114); +lean_dec_ref(x_113); +lean_dec(x_112); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_186 = lean_ctor_get(x_167, 0); +lean_inc(x_186); +x_187 = lean_ctor_get(x_167, 1); +lean_inc(x_187); +if (lean_is_exclusive(x_167)) { + lean_ctor_release(x_167, 0); + lean_ctor_release(x_167, 1); + x_188 = x_167; +} else { + lean_dec_ref(x_167); + x_188 = lean_box(0); +} +if (lean_is_scalar(x_188)) { + x_189 = lean_alloc_ctor(1, 2, 0); +} else { + x_189 = x_188; +} +lean_ctor_set(x_189, 0, x_186); +lean_ctor_set(x_189, 1, x_187); +return x_189; +} +} +else +{ +lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; +lean_dec_ref(x_115); +lean_dec_ref(x_114); +lean_dec_ref(x_113); +lean_dec(x_112); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_190 = lean_ctor_get(x_154, 0); +lean_inc(x_190); +x_191 = lean_ctor_get(x_154, 1); +lean_inc(x_191); +if (lean_is_exclusive(x_154)) { + lean_ctor_release(x_154, 0); + lean_ctor_release(x_154, 1); + x_192 = x_154; +} else { + lean_dec_ref(x_154); + x_192 = lean_box(0); +} +if (lean_is_scalar(x_192)) { + x_193 = lean_alloc_ctor(1, 2, 0); +} else { + x_193 = x_192; +} +lean_ctor_set(x_193, 0, x_190); +lean_ctor_set(x_193, 1, x_191); return x_193; } } -else -{ -lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; -lean_dec_ref(x_183); -lean_dec_ref(x_181); -lean_dec_ref(x_132); -lean_dec_ref(x_131); -lean_dec_ref(x_130); -lean_dec(x_129); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -x_207 = lean_ctor_get(x_184, 0); -lean_inc(x_207); -x_208 = lean_ctor_get(x_184, 1); -lean_inc(x_208); -if (lean_is_exclusive(x_184)) { - lean_ctor_release(x_184, 0); - lean_ctor_release(x_184, 1); - x_209 = x_184; -} else { - lean_dec_ref(x_184); - x_209 = lean_box(0); } -if (lean_is_scalar(x_209)) { - x_210 = lean_alloc_ctor(1, 2, 0); -} else { - x_210 = x_209; -} -lean_ctor_set(x_210, 0, x_207); -lean_ctor_set(x_210, 1, x_208); -return x_210; -} -} -else -{ -lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; -lean_dec_ref(x_132); -lean_dec_ref(x_131); -lean_dec_ref(x_130); -lean_dec(x_129); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -x_211 = lean_ctor_get(x_171, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_171, 1); -lean_inc(x_212); -if (lean_is_exclusive(x_171)) { - lean_ctor_release(x_171, 0); - lean_ctor_release(x_171, 1); - x_213 = x_171; -} else { - lean_dec_ref(x_171); - x_213 = lean_box(0); -} -if (lean_is_scalar(x_213)) { - x_214 = lean_alloc_ctor(1, 2, 0); -} else { - x_214 = x_213; -} -lean_ctor_set(x_214, 0, x_211); -lean_ctor_set(x_214, 1, x_212); -return x_214; -} -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -lean_object* x_14; -x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_14; } } LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_elabMIntro___lam__0(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) { @@ -7561,91 +7305,61 @@ x_22 = lean_st_ref_set(x_1, x_17, x_20); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { -lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_object* x_24; x_24 = lean_ctor_get(x_22, 0); lean_dec(x_24); -x_25 = lean_box(0); -x_26 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_15); -lean_ctor_set(x_22, 0, x_26); +lean_ctor_set(x_22, 0, x_15); return x_22; } else { -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_27 = lean_ctor_get(x_22, 1); -lean_inc(x_27); +lean_object* x_25; lean_object* x_26; +x_25 = lean_ctor_get(x_22, 1); +lean_inc(x_25); lean_dec(x_22); -x_28 = lean_box(0); -x_29 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_29, 0, x_28); -lean_ctor_set(x_29, 1, x_15); -x_30 = lean_alloc_ctor(0, 2, 0); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_15); +lean_ctor_set(x_26, 1, x_25); +return x_26; +} +} +else +{ +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; +x_27 = lean_ctor_get(x_17, 0); +x_28 = lean_ctor_get(x_17, 1); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_17); +x_29 = l_Lean_Expr_mvarId_x21(x_15); +x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_27); -return x_30; -} -} -else -{ -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_31 = lean_ctor_get(x_17, 0); -x_32 = lean_ctor_get(x_17, 1); +x_31 = lean_st_ref_set(x_1, x_30, x_28); +x_32 = lean_ctor_get(x_31, 1); lean_inc(x_32); -lean_inc(x_31); -lean_dec(x_17); -x_33 = l_Lean_Expr_mvarId_x21(x_15); -x_34 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_34, 0, x_33); -lean_ctor_set(x_34, 1, x_31); -x_35 = lean_st_ref_set(x_1, x_34, x_32); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); -if (lean_is_exclusive(x_35)) { - lean_ctor_release(x_35, 0); - lean_ctor_release(x_35, 1); - x_37 = x_35; +if (lean_is_exclusive(x_31)) { + lean_ctor_release(x_31, 0); + lean_ctor_release(x_31, 1); + x_33 = x_31; } else { - lean_dec_ref(x_35); - x_37 = lean_box(0); + lean_dec_ref(x_31); + x_33 = lean_box(0); } -x_38 = lean_box(0); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_38); -lean_ctor_set(x_39, 1, x_15); -if (lean_is_scalar(x_37)) { - x_40 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_33)) { + x_34 = lean_alloc_ctor(0, 2, 0); } else { - x_40 = x_37; + x_34 = x_33; } -lean_ctor_set(x_40, 0, x_39); -lean_ctor_set(x_40, 1, x_36); -return x_40; +lean_ctor_set(x_34, 0, x_15); +lean_ctor_set(x_34, 1, x_32); +return x_34; } } else { -uint8_t x_41; -x_41 = !lean_is_exclusive(x_14); -if (x_41 == 0) -{ return x_14; } -else -{ -lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_42 = lean_ctor_get(x_14, 0); -x_43 = lean_ctor_get(x_14, 1); -lean_inc(x_43); -lean_inc(x_42); -lean_dec(x_14); -x_44 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_44, 0, x_42); -lean_ctor_set(x_44, 1, x_43); -return x_44; -} -} } } LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_elabMIntro___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -7666,40 +7380,37 @@ lean_inc_ref(x_11); lean_inc(x_10); lean_inc_ref(x_9); lean_inc(x_6); -x_18 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1___redArg(x_2, x_3, x_17, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_16); +x_18 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1(x_2, x_3, x_17, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_16); if (lean_obj_tag(x_18) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +lean_object* x_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; x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); x_20 = lean_ctor_get(x_18, 1); lean_inc(x_20); lean_dec_ref(x_18); -x_21 = lean_ctor_get(x_19, 1); -lean_inc(x_21); -lean_dec(x_19); -x_22 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__6___redArg(x_4, x_21, x_10, x_20); -x_23 = lean_ctor_get(x_22, 1); -lean_inc(x_23); -lean_dec_ref(x_22); -x_24 = lean_st_ref_get(x_15, x_23); +x_21 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__6___redArg(x_4, x_19, x_10, x_20); +x_22 = lean_ctor_get(x_21, 1); +lean_inc(x_22); +lean_dec_ref(x_21); +x_23 = lean_st_ref_get(x_15, x_22); lean_dec(x_15); -x_25 = lean_ctor_get(x_24, 0); +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); lean_inc(x_25); -x_26 = lean_ctor_get(x_24, 1); -lean_inc(x_26); -lean_dec_ref(x_24); -x_27 = l_Lean_Elab_Tactic_replaceMainGoal___redArg(x_25, x_6, x_9, x_10, x_11, x_12, x_26); +lean_dec_ref(x_23); +x_26 = l_Lean_Elab_Tactic_replaceMainGoal___redArg(x_24, x_6, x_9, x_10, x_11, x_12, x_25); lean_dec(x_12); lean_dec_ref(x_11); lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_6); -return x_27; +return x_26; } else { -uint8_t x_28; +uint8_t x_27; lean_dec(x_15); lean_dec(x_12); lean_dec_ref(x_11); @@ -7707,23 +7418,23 @@ lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_6); lean_dec(x_4); -x_28 = !lean_is_exclusive(x_18); -if (x_28 == 0) +x_27 = !lean_is_exclusive(x_18); +if (x_27 == 0) { return x_18; } else { -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_18, 0); -x_30 = lean_ctor_get(x_18, 1); -lean_inc(x_30); +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_18, 0); +x_29 = lean_ctor_get(x_18, 1); lean_inc(x_29); +lean_inc(x_28); lean_dec(x_18); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +return x_30; } } } @@ -7746,40 +7457,37 @@ lean_inc_ref(x_11); lean_inc(x_10); lean_inc_ref(x_9); lean_inc(x_6); -x_18 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg(x_2, x_3, x_17, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_16); +x_18 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13(x_2, x_3, x_17, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_16); if (lean_obj_tag(x_18) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +lean_object* x_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; x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); x_20 = lean_ctor_get(x_18, 1); lean_inc(x_20); lean_dec_ref(x_18); -x_21 = lean_ctor_get(x_19, 1); -lean_inc(x_21); -lean_dec(x_19); -x_22 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__6___redArg(x_4, x_21, x_10, x_20); -x_23 = lean_ctor_get(x_22, 1); -lean_inc(x_23); -lean_dec_ref(x_22); -x_24 = lean_st_ref_get(x_15, x_23); +x_21 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__6___redArg(x_4, x_19, x_10, x_20); +x_22 = lean_ctor_get(x_21, 1); +lean_inc(x_22); +lean_dec_ref(x_21); +x_23 = lean_st_ref_get(x_15, x_22); lean_dec(x_15); -x_25 = lean_ctor_get(x_24, 0); +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); lean_inc(x_25); -x_26 = lean_ctor_get(x_24, 1); -lean_inc(x_26); -lean_dec_ref(x_24); -x_27 = l_Lean_Elab_Tactic_replaceMainGoal___redArg(x_25, x_6, x_9, x_10, x_11, x_12, x_26); +lean_dec_ref(x_23); +x_26 = l_Lean_Elab_Tactic_replaceMainGoal___redArg(x_24, x_6, x_9, x_10, x_11, x_12, x_25); lean_dec(x_12); lean_dec_ref(x_11); lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_6); -return x_27; +return x_26; } else { -uint8_t x_28; +uint8_t x_27; lean_dec(x_15); lean_dec(x_12); lean_dec_ref(x_11); @@ -7787,23 +7495,23 @@ lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_6); lean_dec(x_4); -x_28 = !lean_is_exclusive(x_18); -if (x_28 == 0) +x_27 = !lean_is_exclusive(x_18); +if (x_27 == 0) { return x_18; } else { -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_18, 0); -x_30 = lean_ctor_get(x_18, 1); -lean_inc(x_30); +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_18, 0); +x_29 = lean_ctor_get(x_18, 1); lean_inc(x_29); +lean_inc(x_28); lean_dec(x_18); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +return x_30; } } } @@ -8260,7 +7968,7 @@ x_14 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Ela return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1___redArg___lam__0___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1___lam__0___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -8283,7 +7991,7 @@ _start: { uint8_t x_19; lean_object* x_20; x_19 = lean_unbox(x_3); -x_20 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1___redArg___lam__0(x_1, x_2, x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +x_20 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__1___lam__0(x_1, x_2, x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); return x_20; } } @@ -8401,21 +8109,21 @@ lean_dec_ref(x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_16; -x_16 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_16 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec_ref(x_1); return x_16; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { uint8_t x_15; lean_object* x_16; x_15 = lean_unbox(x_4); -x_16 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___lam__1(x_1, x_2, x_3, x_15, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_16 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___lam__1(x_1, x_2, x_3, x_15, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); return x_16; } } @@ -8650,8 +8358,8 @@ l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___L l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__6_spec__6_spec__6___redArg___closed__1 = _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__6_spec__6_spec__6___redArg___closed__1(); l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__6_spec__6_spec__6___redArg___closed__2 = _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__6_spec__6_spec__6___redArg___closed__2(); lean_mark_persistent(l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__6_spec__6_spec__6___redArg___closed__2); -l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___redArg___closed__0); +l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_ProofMode_elabMIntro_spec__13___closed__0); l_Lean_Elab_Tactic_Do_ProofMode_elabMIntro___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_elabMIntro___closed__0(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_elabMIntro___closed__0); l_Lean_Elab_Tactic_Do_ProofMode_elabMIntro___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_elabMIntro___closed__1(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/MGoal.c b/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/MGoal.c index 2bd72eed2b..fa7c9fe64d 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/MGoal.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/MGoal.c @@ -22,11 +22,11 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkPure___boxed(le lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_Lean_mkAppN(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_renameInaccessibleHyps___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__0; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_TypeList_mkType___closed__0; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_parseMGoal_x3f___closed__2; static lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Elab_Tactic_Do_ProofMode_dropStateList_spec__0___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_ensureMGoal_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*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__1; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkPure___closed__12; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_findHyp_x3f___boxed(lean_object*, lean_object*); @@ -45,6 +45,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_addLocalVarInfo___lam__ static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkPure___closed__5; LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_ensureMGoal_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_getResetInfoTrees___at___Lean_Elab_withInfoContext_x27___at___Lean_Elab_Tactic_Do_ProofMode_addLocalVarInfo_spec__0_spec__0___redArg___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_renameInaccessibleHyps_go___lam__0(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_Level_succ___override(lean_object*); @@ -60,9 +61,9 @@ uint8_t lean_usize_dec_eq(size_t, size_t); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_renameInaccessibleHyps___closed__1; lean_object* l_Lean_Expr_mdata___override(lean_object*, lean_object*); lean_object* l___private_Lean_Log_0__Lean_MessageData_appendDescriptionWidgetIfNamed(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__5; lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getPos_x3f(lean_object*, uint8_t); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21___closed__0; static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logWarning___at___Lean_Elab_Tactic_Do_ProofMode_MGoal_checkProof_spec__0_spec__0_spec__0___lam__0___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_addLocalVarInfo(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getTailPos_x3f(lean_object*, uint8_t); @@ -74,12 +75,15 @@ static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_getFreshHypName___closed__3; uint8_t l_Lean_MessageData_hasSyntheticSorry(lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_TypeList_mkType___closed__1; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkPure___closed__6; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_emptyHypName___closed__0; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_withInfoContext_x27___at___Lean_Elab_Tactic_Do_ProofMode_addLocalVarInfo_spec__0___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__3; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_instInhabitedMGoal___closed__2; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_addHypInfo___closed__1; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__1; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_parseAnd_x3f___closed__1; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_instInhabitedMGoal___closed__0; uint8_t lean_string_dec_eq(lean_object*, lean_object*); @@ -99,9 +103,10 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(lean_object* size_t lean_usize_of_nat(lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_findHyp_x3f_go___closed__1; lean_object* l_Lean_Elab_Tactic_getMainGoal___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21___closed__1; lean_object* lean_st_ref_take(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_addLocalVarInfo___lam__0___boxed(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_Elab_Tactic_Do_ProofMode_emptyHypName___closed__1; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__5; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_checkProof___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_findHyp_x3f_go(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at___Lean_Elab_Tactic_Do_ProofMode_MGoal_findHyp_x3f_go_spec__0(lean_object*); @@ -113,9 +118,7 @@ lean_object* l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(lean_object*, le LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_addLocalVarInfo___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_parseAnd_x3f(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_findHyp_x3f(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_pushForallContextIntoHyps_wrap___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__4; LEAN_EXPORT lean_object* l_Lean_logWarning___at___Lean_Elab_Tactic_Do_ProofMode_MGoal_checkProof_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_check(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_checkProof(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -137,14 +140,12 @@ lean_object* l_Array_back_x3f___redArg(lean_object*); static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logWarning___at___Lean_Elab_Tactic_Do_ProofMode_MGoal_checkProof_spec__0_spec__0_spec__0___closed__1; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_renameInaccessibleHyps___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_addLocalVarInfo___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_strip___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_dropStateList___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Option_get___at___Lean_logAt___at___Lean_log___at___Lean_logWarning___at___Lean_Elab_Tactic_Do_ProofMode_MGoal_checkProof_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_MGoal_checkProof_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_ensureMGoal___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_ensureMGoal___boxed(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_Do_ProofMode_mkAnd___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkType(lean_object*, lean_object*); lean_object* l_Lean_PersistentArray_push___redArg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_checkProof___closed__2; @@ -162,6 +163,7 @@ static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_TypeList_mkNil___closed__0; lean_object* lean_expr_lower_loose_bvars(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SubExpr_Pos_pushNaryArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_appFn_x21(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_emptyHypName; LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logWarning___at___Lean_Elab_Tactic_Do_ProofMode_MGoal_checkProof_spec__0_spec__0_spec__0___lam__0___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_ensureMGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Elab_Tactic_Do_ProofMode_dropStateList_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -174,9 +176,7 @@ LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___a LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_renameInaccessibleHyps_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_addLocalVarInfo___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalContext_mkLocalDecl(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__6; lean_object* l_Lean_MessageData_ofExpr(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_renameInaccessibleHyps(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkPure___closed__9; static lean_object* l___private_Lean_Elab_Tactic_Do_ProofMode_MGoal_0__Lean_Elab_Tactic_Do_ProofMode_nameAnnotation; @@ -197,6 +197,7 @@ LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at__ static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_getFreshHypName___closed__0; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkPure___closed__3; lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_checkProof___closed__7; lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_withInfoContext_x27___at___Lean_Elab_Tactic_Do_ProofMode_addLocalVarInfo_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -208,6 +209,7 @@ lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_addLocalVarInfo___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_ProofMode_MGoal_0__Lean_Elab_Tactic_Do_ProofMode_nameAnnotation___closed__1; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_getFreshHypName___closed__1; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21___closed__1; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp___closed__2; LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logWarning___at___Lean_Elab_Tactic_Do_ProofMode_MGoal_checkProof_spec__0_spec__0(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_ensureMGoal_spec__1_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -256,14 +258,13 @@ lean_object* l_Lean_Name_mkStr1(lean_object*); lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_ensureMGoal_spec__1(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_Elab_Tactic_Do_ProofMode_MGoal_checkProof___closed__0; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__6; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkType___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_strip(lean_object*); lean_object* lean_array_get_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_pushForallContextIntoHyps(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logWarning___at___Lean_Elab_Tactic_Do_ProofMode_MGoal_checkProof_spec__0_spec__0_spec__0(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__2; lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_MGoal_checkProof_spec__4___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_getResetInfoTrees___at___Lean_Elab_withInfoContext_x27___at___Lean_Elab_Tactic_Do_ProofMode_addLocalVarInfo_spec__0_spec__0___redArg___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_parseAnd_x3f___boxed(lean_object*); @@ -271,6 +272,7 @@ static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logWarning___at___L lean_object* lean_nat_add(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkPure___closed__0; lean_object* l_Lean_Expr_lam___override(lean_object*, lean_object*, lean_object*, uint8_t); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_pushLeftConjunct___boxed(lean_object*); lean_object* l_Lean_Meta_mkConstWithFreshMVarLevels(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_parseMGoal_x3f(lean_object*); @@ -279,6 +281,7 @@ lean_object* l_Lean_Expr_consumeMData(lean_object*); static lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Elab_Tactic_Do_ProofMode_dropStateList_spec__0___redArg___closed__1; lean_object* lean_expr_instantiate1(lean_object*, lean_object*); lean_object* l_List_get_x21Internal___redArg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__4; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_renameInaccessibleHyps___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_withInfoContext_x27___at___Lean_Elab_Tactic_Do_ProofMode_addLocalVarInfo_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1650,6 +1653,31 @@ return x_121; } } } +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_emptyHypName___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("emptyHyp", 8, 8); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_emptyHypName___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_emptyHypName___closed__0; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_emptyHypName() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_emptyHypName___closed__1; +return x_1; +} +} static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp___closed__0() { _start: { @@ -1680,17 +1708,23 @@ return x_3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; -x_3 = l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp___closed__2; -x_4 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkPure(x_1, x_2, x_3); -return x_4; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_emptyHypName; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp___closed__2; +x_5 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkPure(x_1, x_2, x_4); +x_6 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_6, 0, x_3); +lean_ctor_set(x_6, 1, x_3); +lean_ctor_set(x_6, 2, x_5); +x_7 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_6); +return x_7; } } LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_parseEmptyHyp_x3f(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_isPure_x3f(x_1); +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_parseHyp_x3f(x_1); if (lean_obj_tag(x_2) == 0) { lean_object* x_3; @@ -1699,226 +1733,275 @@ return x_3; } else { -uint8_t x_4; -x_4 = !lean_is_exclusive(x_2); -if (x_4 == 0) +lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; lean_object* x_52; uint8_t x_53; +x_4 = lean_ctor_get(x_2, 0); +lean_inc(x_4); +lean_dec_ref(x_2); +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_4, 2); +lean_inc_ref(x_6); +lean_dec(x_4); +x_52 = l_Lean_Elab_Tactic_Do_ProofMode_emptyHypName; +x_53 = lean_name_eq(x_5, x_52); +if (x_53 == 0) { -lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_5 = lean_ctor_get(x_2, 0); -x_6 = lean_ctor_get(x_5, 1); -lean_inc(x_6); -x_7 = lean_ctor_get(x_6, 1); -lean_inc(x_7); -if (lean_obj_tag(x_7) == 4) +uint8_t x_54; +x_54 = l_Lean_Name_hasMacroScopes(x_5); +lean_dec(x_5); +x_7 = x_54; +goto block_51; +} +else +{ +lean_dec(x_5); +x_7 = x_53; +goto block_51; +} +block_51: +{ +if (x_7 == 0) { lean_object* x_8; -x_8 = lean_ctor_get(x_7, 0); -lean_inc(x_8); -lean_dec_ref(x_7); -if (lean_obj_tag(x_8) == 1) +lean_dec_ref(x_6); +x_8 = lean_box(0); +return x_8; +} +else { lean_object* x_9; -x_9 = lean_ctor_get(x_8, 0); -lean_inc(x_9); +x_9 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_isPure_x3f(x_6); if (lean_obj_tag(x_9) == 0) { -lean_object* x_10; uint8_t x_11; -x_10 = lean_ctor_get(x_5, 0); -lean_inc(x_10); -lean_dec(x_5); -x_11 = !lean_is_exclusive(x_6); +lean_object* x_10; +x_10 = lean_box(0); +return x_10; +} +else +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_9); if (x_11 == 0) { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; -x_12 = lean_ctor_get(x_6, 0); -x_13 = lean_ctor_get(x_6, 1); -lean_dec(x_13); -x_14 = lean_ctor_get(x_8, 1); -lean_inc_ref(x_14); -lean_dec_ref(x_8); -x_15 = l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp___closed__0; -x_16 = lean_string_dec_eq(x_14, x_15); +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_9, 0); +x_13 = lean_ctor_get(x_12, 1); +lean_inc(x_13); +x_14 = lean_ctor_get(x_13, 1); +lean_inc(x_14); +if (lean_obj_tag(x_14) == 4) +{ +lean_object* x_15; +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); lean_dec_ref(x_14); -if (x_16 == 0) +if (lean_obj_tag(x_15) == 1) { -lean_object* x_17; -lean_free_object(x_6); +lean_object* x_16; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; uint8_t x_18; +x_17 = lean_ctor_get(x_12, 0); +lean_inc(x_17); lean_dec(x_12); -lean_dec(x_10); -lean_free_object(x_2); -x_17 = lean_box(0); -return x_17; -} -else +x_18 = !lean_is_exclusive(x_13); +if (x_18 == 0) { -lean_ctor_set(x_6, 1, x_12); -lean_ctor_set(x_6, 0, x_10); -lean_ctor_set(x_2, 0, x_6); -return x_2; -} -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; -x_18 = lean_ctor_get(x_6, 0); -lean_inc(x_18); -lean_dec(x_6); -x_19 = lean_ctor_get(x_8, 1); -lean_inc_ref(x_19); -lean_dec_ref(x_8); -x_20 = l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp___closed__0; -x_21 = lean_string_dec_eq(x_19, x_20); -lean_dec_ref(x_19); -if (x_21 == 0) -{ -lean_object* x_22; -lean_dec(x_18); -lean_dec(x_10); -lean_free_object(x_2); -x_22 = lean_box(0); -return x_22; -} -else -{ -lean_object* x_23; -x_23 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_23, 0, x_10); -lean_ctor_set(x_23, 1, x_18); -lean_ctor_set(x_2, 0, x_23); -return x_2; -} -} -} -else +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_19 = lean_ctor_get(x_13, 0); +x_20 = lean_ctor_get(x_13, 1); +lean_dec(x_20); +x_21 = lean_ctor_get(x_15, 1); +lean_inc_ref(x_21); +lean_dec_ref(x_15); +x_22 = l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp___closed__0; +x_23 = lean_string_dec_eq(x_21, x_22); +lean_dec_ref(x_21); +if (x_23 == 0) { lean_object* x_24; -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_6); -lean_free_object(x_2); -lean_dec(x_5); +lean_free_object(x_13); +lean_dec(x_19); +lean_dec(x_17); +lean_free_object(x_9); x_24 = lean_box(0); return x_24; } -} else { -lean_object* x_25; -lean_dec(x_8); -lean_dec(x_6); -lean_free_object(x_2); -lean_dec(x_5); -x_25 = lean_box(0); -return x_25; +lean_ctor_set(x_13, 1, x_19); +lean_ctor_set(x_13, 0, x_17); +lean_ctor_set(x_9, 0, x_13); +return x_9; } } else { -lean_object* x_26; -lean_dec(x_7); -lean_dec(x_6); -lean_free_object(x_2); -lean_dec(x_5); -x_26 = lean_box(0); -return x_26; -} +lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_25 = lean_ctor_get(x_13, 0); +lean_inc(x_25); +lean_dec(x_13); +x_26 = lean_ctor_get(x_15, 1); +lean_inc_ref(x_26); +lean_dec_ref(x_15); +x_27 = l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp___closed__0; +x_28 = lean_string_dec_eq(x_26, x_27); +lean_dec_ref(x_26); +if (x_28 == 0) +{ +lean_object* x_29; +lean_dec(x_25); +lean_dec(x_17); +lean_free_object(x_9); +x_29 = lean_box(0); +return x_29; } else { -lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_27 = lean_ctor_get(x_2, 0); -lean_inc(x_27); -lean_dec(x_2); -x_28 = lean_ctor_get(x_27, 1); -lean_inc(x_28); -x_29 = lean_ctor_get(x_28, 1); -lean_inc(x_29); -if (lean_obj_tag(x_29) == 4) -{ lean_object* x_30; -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); -lean_dec_ref(x_29); -if (lean_obj_tag(x_30) == 1) +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_17); +lean_ctor_set(x_30, 1, x_25); +lean_ctor_set(x_9, 0, x_30); +return x_9; +} +} +} +else { lean_object* x_31; -x_31 = lean_ctor_get(x_30, 0); -lean_inc(x_31); -if (lean_obj_tag(x_31) == 0) -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; -x_32 = lean_ctor_get(x_27, 0); -lean_inc(x_32); -lean_dec(x_27); -x_33 = lean_ctor_get(x_28, 0); -lean_inc(x_33); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - lean_ctor_release(x_28, 1); - x_34 = x_28; -} else { - lean_dec_ref(x_28); - x_34 = lean_box(0); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_13); +lean_free_object(x_9); +lean_dec(x_12); +x_31 = lean_box(0); +return x_31; } -x_35 = lean_ctor_get(x_30, 1); -lean_inc_ref(x_35); -lean_dec_ref(x_30); -x_36 = l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp___closed__0; -x_37 = lean_string_dec_eq(x_35, x_36); -lean_dec_ref(x_35); -if (x_37 == 0) +} +else +{ +lean_object* x_32; +lean_dec(x_15); +lean_dec(x_13); +lean_free_object(x_9); +lean_dec(x_12); +x_32 = lean_box(0); +return x_32; +} +} +else +{ +lean_object* x_33; +lean_dec(x_14); +lean_dec(x_13); +lean_free_object(x_9); +lean_dec(x_12); +x_33 = lean_box(0); +return x_33; +} +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_9, 0); +lean_inc(x_34); +lean_dec(x_9); +x_35 = lean_ctor_get(x_34, 1); +lean_inc(x_35); +x_36 = lean_ctor_get(x_35, 1); +lean_inc(x_36); +if (lean_obj_tag(x_36) == 4) +{ +lean_object* x_37; +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +lean_dec_ref(x_36); +if (lean_obj_tag(x_37) == 1) { lean_object* x_38; +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +if (lean_obj_tag(x_38) == 0) +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; +x_39 = lean_ctor_get(x_34, 0); +lean_inc(x_39); lean_dec(x_34); -lean_dec(x_33); -lean_dec(x_32); -x_38 = lean_box(0); -return x_38; -} -else -{ -lean_object* x_39; lean_object* x_40; -if (lean_is_scalar(x_34)) { - x_39 = lean_alloc_ctor(0, 2, 0); +x_40 = lean_ctor_get(x_35, 0); +lean_inc(x_40); +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + lean_ctor_release(x_35, 1); + x_41 = x_35; } else { - x_39 = x_34; + lean_dec_ref(x_35); + x_41 = lean_box(0); } -lean_ctor_set(x_39, 0, x_32); -lean_ctor_set(x_39, 1, x_33); -x_40 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_40, 0, x_39); -return x_40; +x_42 = lean_ctor_get(x_37, 1); +lean_inc_ref(x_42); +lean_dec_ref(x_37); +x_43 = l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp___closed__0; +x_44 = lean_string_dec_eq(x_42, x_43); +lean_dec_ref(x_42); +if (x_44 == 0) +{ +lean_object* x_45; +lean_dec(x_41); +lean_dec(x_40); +lean_dec(x_39); +x_45 = lean_box(0); +return x_45; +} +else +{ +lean_object* x_46; lean_object* x_47; +if (lean_is_scalar(x_41)) { + x_46 = lean_alloc_ctor(0, 2, 0); +} else { + x_46 = x_41; +} +lean_ctor_set(x_46, 0, x_39); +lean_ctor_set(x_46, 1, x_40); +x_47 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_47, 0, x_46); +return x_47; } } else { -lean_object* x_41; -lean_dec(x_31); -lean_dec_ref(x_30); -lean_dec(x_28); -lean_dec(x_27); -x_41 = lean_box(0); -return x_41; +lean_object* x_48; +lean_dec(x_38); +lean_dec_ref(x_37); +lean_dec(x_35); +lean_dec(x_34); +x_48 = lean_box(0); +return x_48; } } else { -lean_object* x_42; -lean_dec(x_30); -lean_dec(x_28); -lean_dec(x_27); -x_42 = lean_box(0); -return x_42; +lean_object* x_49; +lean_dec(x_37); +lean_dec(x_35); +lean_dec(x_34); +x_49 = lean_box(0); +return x_49; } } else { -lean_object* x_43; -lean_dec(x_29); -lean_dec(x_28); -lean_dec(x_27); -x_43 = lean_box(0); -return x_43; +lean_object* x_50; +lean_dec(x_36); +lean_dec(x_35); +lean_dec(x_34); +x_50 = lean_box(0); +return x_50; +} +} +} } } } @@ -1962,7 +2045,7 @@ lean_dec(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21___closed__0() { _start: { lean_object* x_1; @@ -1970,11 +2053,11 @@ x_1 = lean_mk_string_unchecked("and", 3, 3); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21___closed__0; x_2 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkType___closed__2; x_3 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkType___closed__1; x_4 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkType___closed__0; @@ -1982,11 +2065,11 @@ x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; -x_5 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21___closed__1; +x_5 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21___closed__1; x_6 = lean_box(0); x_7 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_7, 0, x_1); @@ -1996,7 +2079,7 @@ x_9 = l_Lean_mkApp3(x_8, x_2, x_3, x_4); return x_9; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__0() { _start: { lean_object* x_1; @@ -2004,7 +2087,7 @@ x_1 = lean_mk_string_unchecked("bientails", 9, 9); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__1() { _start: { lean_object* x_1; @@ -2012,12 +2095,12 @@ x_1 = lean_mk_string_unchecked("refl", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__2() { _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_Tactic_Do_ProofMode_mkAnd___closed__1; -x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__1; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__0; x_3 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkType___closed__2; x_4 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkType___closed__1; x_5 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkType___closed__0; @@ -2025,7 +2108,7 @@ x_6 = l_Lean_Name_mkStr5(x_5, x_4, x_3, x_2, x_1); return x_6; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__3() { _start: { lean_object* x_1; @@ -2033,11 +2116,11 @@ x_1 = lean_mk_string_unchecked("and_true", 8, 8); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__3; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__3; x_2 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkType___closed__2; x_3 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkType___closed__1; x_4 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkType___closed__0; @@ -2045,7 +2128,7 @@ x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__5() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__5() { _start: { lean_object* x_1; @@ -2053,11 +2136,11 @@ x_1 = lean_mk_string_unchecked("true_and", 8, 8); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__6() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__5; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__5; x_2 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkType___closed__2; x_3 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkType___closed__1; x_4 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkType___closed__0; @@ -2065,7 +2148,7 @@ x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; @@ -2081,8 +2164,8 @@ if (lean_obj_tag(x_6) == 0) 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_inc_ref(x_2); lean_inc(x_1); -x_7 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_1, x_2, x_3, x_4); -x_8 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__2; +x_7 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_1, x_2, x_3, x_4); +x_8 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__2; x_9 = lean_box(0); x_10 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_10, 0, x_1); @@ -2100,7 +2183,7 @@ else lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_dec_ref(x_6); lean_dec_ref(x_4); -x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__4; +x_14 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__4; x_15 = lean_box(0); x_16 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_16, 0, x_1); @@ -2119,7 +2202,7 @@ 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_dec_ref(x_5); lean_dec_ref(x_3); -x_20 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__6; +x_20 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__6; x_21 = lean_box(0); x_22 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_22, 0, x_1); @@ -2268,7 +2351,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_parseAnd_x3f(lean_objec _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; -x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21___closed__1; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21___closed__1; x_3 = lean_unsigned_to_nat(3u); x_4 = l_Lean_Expr_isAppOfArity(x_1, x_2, x_3); if (x_4 == 0) @@ -3094,7 +3177,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_Tactic_Do_ProofMode_MGoal_findHyp_x3f_go___closed__2; x_2 = lean_unsigned_to_nat(8u); -x_3 = lean_unsigned_to_nat(131u); +x_3 = lean_unsigned_to_nat(140u); x_4 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_findHyp_x3f_go___closed__1; x_5 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_findHyp_x3f_go___closed__0; x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -3439,7 +3522,7 @@ return x_1; LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logWarning___at___Lean_Elab_Tactic_Do_ProofMode_MGoal_checkProof_spec__0_spec__0_spec__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t 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_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_81; uint8_t x_82; lean_object* x_83; lean_object* x_84; uint8_t x_85; lean_object* x_86; uint8_t x_87; lean_object* x_88; lean_object* x_110; uint8_t x_111; lean_object* x_112; lean_object* x_113; uint8_t x_114; uint8_t x_115; lean_object* x_116; lean_object* x_117; lean_object* x_121; lean_object* x_122; lean_object* x_123; uint8_t x_124; lean_object* x_125; uint8_t x_126; uint8_t x_127; uint8_t x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; uint8_t x_138; uint8_t x_139; uint8_t x_140; uint8_t x_142; uint8_t x_158; +uint8_t x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_81; lean_object* x_82; uint8_t x_83; uint8_t x_84; uint8_t x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_110; uint8_t x_111; lean_object* x_112; uint8_t x_113; lean_object* x_114; uint8_t x_115; lean_object* x_116; lean_object* x_117; lean_object* x_121; lean_object* x_122; uint8_t x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; uint8_t x_127; uint8_t x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; uint8_t x_137; lean_object* x_138; uint8_t x_139; uint8_t x_140; uint8_t x_142; uint8_t x_158; x_133 = 2; x_158 = l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(x_3, x_133); if (x_158 == 0) @@ -3481,13 +3564,13 @@ x_28 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_28, 0, x_20); lean_ctor_set(x_28, 1, x_14); x_29 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_29, 0, x_13); -lean_ctor_set(x_29, 1, x_10); -lean_ctor_set(x_29, 2, x_16); -lean_ctor_set(x_29, 3, x_11); +lean_ctor_set(x_29, 0, x_12); +lean_ctor_set(x_29, 1, x_15); +lean_ctor_set(x_29, 2, x_11); +lean_ctor_set(x_29, 3, x_16); lean_ctor_set(x_29, 4, x_28); -lean_ctor_set_uint8(x_29, sizeof(void*)*5, x_15); -lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 1, x_12); +lean_ctor_set_uint8(x_29, sizeof(void*)*5, x_13); +lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 1, x_10); lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 2, x_4); x_30 = l_Lean_MessageLog_add(x_29, x_27); lean_ctor_set(x_22, 6, x_30); @@ -3543,13 +3626,13 @@ x_47 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_47, 0, x_20); lean_ctor_set(x_47, 1, x_14); x_48 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_48, 0, x_13); -lean_ctor_set(x_48, 1, x_10); -lean_ctor_set(x_48, 2, x_16); -lean_ctor_set(x_48, 3, x_11); +lean_ctor_set(x_48, 0, x_12); +lean_ctor_set(x_48, 1, x_15); +lean_ctor_set(x_48, 2, x_11); +lean_ctor_set(x_48, 3, x_16); lean_ctor_set(x_48, 4, x_47); -lean_ctor_set_uint8(x_48, sizeof(void*)*5, x_15); -lean_ctor_set_uint8(x_48, sizeof(void*)*5 + 1, x_12); +lean_ctor_set_uint8(x_48, sizeof(void*)*5, x_13); +lean_ctor_set_uint8(x_48, sizeof(void*)*5 + 1, x_10); lean_ctor_set_uint8(x_48, sizeof(void*)*5 + 2, x_4); x_49 = l_Lean_MessageLog_add(x_48, x_44); x_50 = lean_alloc_ctor(0, 9, 0); @@ -3637,13 +3720,13 @@ x_71 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_71, 0, x_70); lean_ctor_set(x_71, 1, x_14); x_72 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_72, 0, x_13); -lean_ctor_set(x_72, 1, x_10); -lean_ctor_set(x_72, 2, x_16); -lean_ctor_set(x_72, 3, x_11); +lean_ctor_set(x_72, 0, x_12); +lean_ctor_set(x_72, 1, x_15); +lean_ctor_set(x_72, 2, x_11); +lean_ctor_set(x_72, 3, x_16); lean_ctor_set(x_72, 4, x_71); -lean_ctor_set_uint8(x_72, sizeof(void*)*5, x_15); -lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 1, x_12); +lean_ctor_set_uint8(x_72, sizeof(void*)*5, x_13); +lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 1, x_10); lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 2, x_4); x_73 = l_Lean_MessageLog_add(x_72, x_66); if (lean_is_scalar(x_69)) { @@ -3694,24 +3777,24 @@ lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean x_92 = lean_ctor_get(x_90, 0); x_93 = lean_ctor_get(x_90, 1); lean_inc_ref(x_86); -x_94 = l_Lean_FileMap_toPosition(x_86, x_84); -lean_dec(x_84); +x_94 = l_Lean_FileMap_toPosition(x_86, x_87); +lean_dec(x_87); x_95 = l_Lean_FileMap_toPosition(x_86, x_88); lean_dec(x_88); x_96 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_96, 0, x_95); x_97 = l_Lean_logAt___at___Lean_log___at___Lean_logWarning___at___Lean_Elab_Tactic_Do_ProofMode_MGoal_checkProof_spec__0_spec__0_spec__0___closed__0; -if (x_87 == 0) +if (x_85 == 0) { lean_free_object(x_90); lean_dec_ref(x_81); -x_10 = x_94; -x_11 = x_97; +x_10 = x_83; +x_11 = x_96; x_12 = x_82; -x_13 = x_83; +x_13 = x_84; x_14 = x_92; -x_15 = x_85; -x_16 = x_96; +x_15 = x_94; +x_16 = x_97; x_17 = x_7; x_18 = x_8; x_19 = x_93; @@ -3728,7 +3811,7 @@ lean_object* x_99; lean_dec_ref(x_96); lean_dec_ref(x_94); lean_dec(x_92); -lean_dec_ref(x_83); +lean_dec_ref(x_82); lean_dec_ref(x_7); x_99 = lean_box(0); lean_ctor_set(x_90, 0, x_99); @@ -3737,13 +3820,13 @@ return x_90; else { lean_free_object(x_90); -x_10 = x_94; -x_11 = x_97; +x_10 = x_83; +x_11 = x_96; x_12 = x_82; -x_13 = x_83; +x_13 = x_84; x_14 = x_92; -x_15 = x_85; -x_16 = x_96; +x_15 = x_94; +x_16 = x_97; x_17 = x_7; x_18 = x_8; x_19 = x_93; @@ -3760,23 +3843,23 @@ lean_inc(x_101); lean_inc(x_100); lean_dec(x_90); lean_inc_ref(x_86); -x_102 = l_Lean_FileMap_toPosition(x_86, x_84); -lean_dec(x_84); +x_102 = l_Lean_FileMap_toPosition(x_86, x_87); +lean_dec(x_87); x_103 = l_Lean_FileMap_toPosition(x_86, x_88); lean_dec(x_88); x_104 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_104, 0, x_103); x_105 = l_Lean_logAt___at___Lean_log___at___Lean_logWarning___at___Lean_Elab_Tactic_Do_ProofMode_MGoal_checkProof_spec__0_spec__0_spec__0___closed__0; -if (x_87 == 0) +if (x_85 == 0) { lean_dec_ref(x_81); -x_10 = x_102; -x_11 = x_105; +x_10 = x_83; +x_11 = x_104; x_12 = x_82; -x_13 = x_83; +x_13 = x_84; x_14 = x_100; -x_15 = x_85; -x_16 = x_104; +x_15 = x_102; +x_16 = x_105; x_17 = x_7; x_18 = x_8; x_19 = x_101; @@ -3793,7 +3876,7 @@ lean_object* x_107; lean_object* x_108; lean_dec_ref(x_104); lean_dec_ref(x_102); lean_dec(x_100); -lean_dec_ref(x_83); +lean_dec_ref(x_82); lean_dec_ref(x_7); x_107 = lean_box(0); x_108 = lean_alloc_ctor(0, 2, 0); @@ -3803,13 +3886,13 @@ return x_108; } else { -x_10 = x_102; -x_11 = x_105; +x_10 = x_83; +x_11 = x_104; x_12 = x_82; -x_13 = x_83; +x_13 = x_84; x_14 = x_100; -x_15 = x_85; -x_16 = x_104; +x_15 = x_102; +x_16 = x_105; x_17 = x_7; x_18 = x_8; x_19 = x_101; @@ -3821,18 +3904,18 @@ goto block_80; block_120: { lean_object* x_118; -x_118 = l_Lean_Syntax_getTailPos_x3f(x_116, x_114); -lean_dec(x_116); +x_118 = l_Lean_Syntax_getTailPos_x3f(x_114, x_113); +lean_dec(x_114); if (lean_obj_tag(x_118) == 0) { lean_inc(x_117); x_81 = x_110; -x_82 = x_111; -x_83 = x_112; -x_84 = x_117; -x_85 = x_114; -x_86 = x_113; -x_87 = x_115; +x_82 = x_112; +x_83 = x_111; +x_84 = x_113; +x_85 = x_115; +x_86 = x_116; +x_87 = x_117; x_88 = x_117; goto block_109; } @@ -3843,12 +3926,12 @@ x_119 = lean_ctor_get(x_118, 0); lean_inc(x_119); lean_dec_ref(x_118); x_81 = x_110; -x_82 = x_111; -x_83 = x_112; -x_84 = x_117; -x_85 = x_114; -x_86 = x_113; -x_87 = x_115; +x_82 = x_112; +x_83 = x_111; +x_84 = x_113; +x_85 = x_115; +x_86 = x_116; +x_87 = x_117; x_88 = x_119; goto block_109; } @@ -3856,20 +3939,20 @@ goto block_109; block_132: { lean_object* x_128; lean_object* x_129; -x_128 = l_Lean_replaceRef(x_1, x_122); -lean_dec(x_122); -x_129 = l_Lean_Syntax_getPos_x3f(x_128, x_124); +x_128 = l_Lean_replaceRef(x_1, x_124); +lean_dec(x_124); +x_129 = l_Lean_Syntax_getPos_x3f(x_128, x_123); if (lean_obj_tag(x_129) == 0) { lean_object* x_130; x_130 = lean_unsigned_to_nat(0u); x_110 = x_121; x_111 = x_127; -x_112 = x_123; -x_113 = x_125; -x_114 = x_124; -x_115 = x_126; -x_116 = x_128; +x_112 = x_122; +x_113 = x_123; +x_114 = x_128; +x_115 = x_125; +x_116 = x_126; x_117 = x_130; goto block_120; } @@ -3881,11 +3964,11 @@ lean_inc(x_131); lean_dec_ref(x_129); x_110 = x_121; x_111 = x_127; -x_112 = x_123; -x_113 = x_125; -x_114 = x_124; -x_115 = x_126; -x_116 = x_128; +x_112 = x_122; +x_113 = x_123; +x_114 = x_128; +x_115 = x_125; +x_116 = x_126; x_117 = x_131; goto block_120; } @@ -3894,10 +3977,10 @@ block_141: { if (x_140 == 0) { -x_121 = x_134; -x_122 = x_135; -x_123 = x_136; -x_124 = x_139; +x_121 = x_135; +x_122 = x_134; +x_123 = x_139; +x_124 = x_136; x_125 = x_137; x_126 = x_138; x_127 = x_3; @@ -3905,10 +3988,10 @@ goto block_132; } else { -x_121 = x_134; -x_122 = x_135; -x_123 = x_136; -x_124 = x_139; +x_121 = x_135; +x_122 = x_134; +x_123 = x_139; +x_124 = x_136; x_125 = x_137; x_126 = x_138; x_127 = x_133; @@ -3939,11 +4022,11 @@ x_152 = l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(x_3, x_151); if (x_152 == 0) { lean_dec(x_145); -x_134 = x_150; -x_135 = x_146; -x_136 = x_143; -x_137 = x_144; -x_138 = x_147; +x_134 = x_143; +x_135 = x_150; +x_136 = x_146; +x_137 = x_147; +x_138 = x_144; x_139 = x_142; x_140 = x_152; goto block_141; @@ -3954,11 +4037,11 @@ lean_object* x_153; uint8_t x_154; x_153 = l_Lean_logAt___at___Lean_log___at___Lean_logWarning___at___Lean_Elab_Tactic_Do_ProofMode_MGoal_checkProof_spec__0_spec__0_spec__0___closed__1; x_154 = l_Lean_Option_get___at___Lean_logAt___at___Lean_log___at___Lean_logWarning___at___Lean_Elab_Tactic_Do_ProofMode_MGoal_checkProof_spec__0_spec__0_spec__0_spec__0(x_145, x_153); lean_dec(x_145); -x_134 = x_150; -x_135 = x_146; -x_136 = x_143; -x_137 = x_144; -x_138 = x_147; +x_134 = x_143; +x_135 = x_150; +x_136 = x_146; +x_137 = x_147; +x_138 = x_144; x_139 = x_142; x_140 = x_154; goto block_141; @@ -5036,7 +5119,7 @@ lean_inc_ref(x_1); x_33 = l_Lean_Elab_Tactic_Do_ProofMode_pushForallContextIntoHyps_go(x_1, x_2, x_3, x_31); lean_inc_ref(x_1); x_34 = l_Lean_Elab_Tactic_Do_ProofMode_pushForallContextIntoHyps_go(x_1, x_2, x_3, x_32); -x_35 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_30, x_1, x_33, x_34); +x_35 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_30, x_1, x_33, x_34); return x_35; } } @@ -5487,7 +5570,7 @@ if (x_31 == 0) { lean_object* x_32; lean_object* x_33; x_32 = lean_ctor_get(x_30, 0); -x_33 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_19, x_20, x_32, x_26); +x_33 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_19, x_20, x_32, x_26); lean_ctor_set(x_30, 0, x_33); return x_28; } @@ -5499,7 +5582,7 @@ x_35 = lean_ctor_get(x_30, 1); lean_inc(x_35); lean_inc(x_34); lean_dec(x_30); -x_36 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_19, x_20, x_34, x_26); +x_36 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_19, x_20, x_34, x_26); x_37 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); @@ -5527,7 +5610,7 @@ if (lean_is_exclusive(x_38)) { lean_dec_ref(x_38); x_42 = lean_box(0); } -x_43 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_19, x_20, x_40, x_26); +x_43 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_19, x_20, x_40, x_26); if (lean_is_scalar(x_42)) { x_44 = lean_alloc_ctor(0, 2, 0); } else { @@ -7485,30 +7568,36 @@ l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkPure___closed__12 = _init_l_Lean_Elab_Ta lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkPure___closed__12); l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkPure___closed__13 = _init_l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkPure___closed__13(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkPure___closed__13); +l_Lean_Elab_Tactic_Do_ProofMode_emptyHypName___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_emptyHypName___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_emptyHypName___closed__0); +l_Lean_Elab_Tactic_Do_ProofMode_emptyHypName___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_emptyHypName___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_emptyHypName___closed__1); +l_Lean_Elab_Tactic_Do_ProofMode_emptyHypName = _init_l_Lean_Elab_Tactic_Do_ProofMode_emptyHypName(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_emptyHypName); l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp___closed__0(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp___closed__0); l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp___closed__1); l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp___closed__2 = _init_l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp___closed__2(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp___closed__2); -l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21___closed__0); -l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21___closed__1); -l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__0); -l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__1); -l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__2 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__2); -l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__3 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__3); -l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__4 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__4); -l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__5 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__5); -l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__6 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mkAnd___closed__6); +l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21___closed__0); +l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21___closed__1); +l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__0); +l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__1); +l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__2 = _init_l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__2); +l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__3 = _init_l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__3); +l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__4 = _init_l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__4); +l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__5 = _init_l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__5); +l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__6 = _init_l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd___closed__6); l_Lean_Elab_Tactic_Do_ProofMode_TypeList_mkType___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_TypeList_mkType___closed__0(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_TypeList_mkType___closed__0); l_Lean_Elab_Tactic_Do_ProofMode_TypeList_mkType___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_TypeList_mkType___closed__1(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Pure.c b/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Pure.c index 54f4c40dc2..0d94a7e71f 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Pure.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Pure.c @@ -91,7 +91,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_P static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_elabMPure___closed__0; static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mPureCore___redArg___closed__5; lean_object* l_Lean_Meta_synthInstance(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at___Lean_Elab_Tactic_Do_ProofMode_elabMPure_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_focusHypWithInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_tacticMpure__intro___closed__1; @@ -126,6 +125,7 @@ lean_object* lean_array_fget(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode___aux__Lean__Elab__Tactic__Do__ProofMode__Pure______macroRules__Lean__Elab__Tactic__Do__ProofMode__tacticMpure__intro__1___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mPureCore_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMPure_spec__4_spec__4_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode___aux__Lean__Elab__Tactic__Do__ProofMode__Pure______macroRules__Lean__Elab__Tactic__Do__ProofMode__tacticMpure__intro__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_ProofMode_elabMPure_spec__4_spec__4_spec__4(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); @@ -369,7 +369,7 @@ lean_inc_ref(x_10); lean_inc_ref(x_42); lean_inc_ref(x_9); x_48 = l_Lean_mkApp7(x_47, x_9, x_42, x_10, x_43, x_1, x_11, x_41); -x_49 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_12, x_9, x_42, x_10); +x_49 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_12, x_9, x_42, x_10); lean_ctor_set(x_32, 2, x_49); lean_ctor_set(x_26, 1, x_48); lean_ctor_set(x_38, 0, x_25); @@ -397,7 +397,7 @@ lean_inc_ref(x_10); lean_inc_ref(x_53); lean_inc_ref(x_9); x_59 = l_Lean_mkApp7(x_58, x_9, x_53, x_10, x_54, x_1, x_11, x_50); -x_60 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_12, x_9, x_53, x_10); +x_60 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_12, x_9, x_53, x_10); x_61 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_61, 0, x_51); lean_ctor_set(x_61, 1, x_52); @@ -444,7 +444,7 @@ lean_inc_ref(x_10); lean_inc_ref(x_66); lean_inc_ref(x_9); x_73 = l_Lean_mkApp7(x_72, x_9, x_66, x_10, x_67, x_1, x_11, x_62); -x_74 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_12, x_9, x_66, x_10); +x_74 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_12, x_9, x_66, x_10); if (lean_is_scalar(x_68)) { x_75 = lean_alloc_ctor(0, 4, 0); } else { @@ -559,7 +559,7 @@ lean_inc_ref(x_10); lean_inc_ref(x_93); lean_inc_ref(x_9); x_100 = l_Lean_mkApp7(x_99, x_9, x_93, x_10, x_94, x_1, x_11, x_88); -x_101 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_12, x_9, x_93, x_10); +x_101 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_12, x_9, x_93, x_10); if (lean_is_scalar(x_95)) { x_102 = lean_alloc_ctor(0, 4, 0); } else { @@ -691,7 +691,7 @@ lean_inc_ref(x_10); lean_inc_ref(x_123); lean_inc_ref(x_9); x_130 = l_Lean_mkApp7(x_129, x_9, x_123, x_10, x_124, x_1, x_11, x_118); -x_131 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_12, x_9, x_123, x_10); +x_131 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_12, x_9, x_123, x_10); if (lean_is_scalar(x_125)) { x_132 = lean_alloc_ctor(0, 4, 0); } else { diff --git a/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Revert.c b/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Revert.c index cfc31123b9..a8316df8af 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Revert.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Revert.c @@ -50,6 +50,7 @@ static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___redArg___la LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___redArg___lam__20(lean_object*, lean_object*); size_t lean_uint64_to_usize(uint64_t); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_ProofMode_elabMRevert_spec__1_spec__4_spec__5_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___redArg___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; @@ -315,7 +316,6 @@ lean_object* l_Id_instMonad___lam__0(lean_object*, lean_object*, lean_object*, l static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___redArg___lam__22___closed__14; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_instAddMessageContextMetaM; extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; uint8_t lean_usize_dec_lt(size_t, size_t); @@ -879,7 +879,7 @@ lean_inc_ref(x_1); x_17 = l_Lean_Elab_Tactic_Do_ProofMode_pushForallContextIntoHyps(x_1, x_16); lean_inc_ref(x_1); lean_inc(x_2); -x_18 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(x_2, x_1, x_17, x_3); +x_18 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_2, x_1, x_17, x_3); x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); x_20 = lean_ctor_get(x_18, 1); @@ -5973,7 +5973,7 @@ lean_inc_ref(x_45); x_49 = l_Lean_Elab_Tactic_Do_ProofMode_pushForallContextIntoHyps(x_45, x_47); lean_inc_ref(x_45); lean_inc(x_5); -x_50 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(x_5, x_45, x_49, x_37); +x_50 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_5, x_45, x_49, x_37); x_51 = lean_ctor_get(x_50, 0); lean_inc(x_51); x_52 = lean_ctor_get(x_50, 1); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Specialize.c b/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Specialize.c index 5bd7cdee9b..6fca62a3ec 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Specialize.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Do/ProofMode/Specialize.c @@ -137,7 +137,6 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_ lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); lean_object* l_Lean_Meta_synthInstance(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful_spec__1_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpPure___closed__11; lean_object* l_Lean_Elab_Term_instMonadTermElabM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -197,6 +196,7 @@ LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_P lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_initFn___closed__24____x40_Lean_Elab_Tactic_Do_ProofMode_Specialize___hyg_6_; static lean_object* l___private_Lean_Elab_Tactic_Do_ProofMode_Specialize_0__Lean_Elab_Tactic_Do_ProofMode_elabMSpecialize___regBuiltin_Lean_Elab_Tactic_Do_ProofMode_elabMSpecialize__1___closed__1; +lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeForall___closed__7; lean_object* l_Lean_Elab_Tactic_instInhabitedTacticM___lam__0___boxed(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_Do_ProofMode_elabMSpecialize___lam__0___closed__0; @@ -1508,7 +1508,7 @@ lean_inc(x_53); lean_inc_ref(x_1); lean_inc_ref(x_38); lean_inc(x_53); -x_54 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_53, x_38, x_1, x_2); +x_54 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_53, x_38, x_1, x_2); x_55 = l_Lean_Syntax_getId(x_3); lean_inc_ref(x_38); lean_inc(x_53); @@ -1712,7 +1712,7 @@ x_141 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_141, 0, x_139); lean_ctor_set(x_141, 1, x_140); lean_inc_ref(x_36); -x_142 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_53, x_38, x_1, x_36); +x_142 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_53, x_38, x_1, x_36); x_143 = l_Lean_MessageData_ofExpr(x_142); x_144 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_144, 0, x_141); @@ -3902,7 +3902,7 @@ x_121 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_121, 0, x_45); lean_ctor_set(x_121, 1, x_120); lean_inc_ref(x_27); -x_122 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_59, x_44, x_1, x_27); +x_122 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_59, x_44, x_1, x_27); x_123 = l_Lean_MessageData_ofExpr(x_122); x_124 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_124, 0, x_121); @@ -3978,7 +3978,7 @@ x_138 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_138, 0, x_136); lean_ctor_set(x_138, 1, x_137); lean_inc_ref(x_27); -x_139 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_59, x_44, x_1, x_27); +x_139 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_59, x_44, x_1, x_27); x_140 = l_Lean_MessageData_ofExpr(x_139); x_141 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_141, 0, x_138); @@ -4075,7 +4075,7 @@ x_161 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_161, 0, x_159); lean_ctor_set(x_161, 1, x_160); lean_inc_ref(x_27); -x_162 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_59, x_44, x_1, x_27); +x_162 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_59, x_44, x_1, x_27); x_163 = l_Lean_MessageData_ofExpr(x_162); x_164 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_164, 0, x_161); @@ -5006,19 +5006,19 @@ goto block_16; } else { -uint8_t x_51; -x_51 = !lean_is_exclusive(x_50); -if (x_51 == 0) +lean_object* x_51; +x_51 = lean_ctor_get(x_50, 1); +lean_inc(x_51); +if (lean_obj_tag(x_51) == 0) { -lean_object* x_52; lean_object* x_53; -x_52 = lean_ctor_get(x_50, 1); +uint8_t x_52; +x_52 = !lean_is_exclusive(x_50); +if (x_52 == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; x_53 = lean_ctor_get(x_50, 0); -lean_dec(x_53); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_54 = lean_ctor_get(x_37, 0); -lean_inc(x_54); +x_54 = lean_ctor_get(x_50, 1); +lean_dec(x_54); lean_inc_ref(x_36); lean_ctor_set(x_17, 0, x_36); x_55 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpPure___closed__6; @@ -5083,10 +5083,10 @@ lean_dec(x_73); x_74 = lean_ctor_get(x_37, 0); lean_dec(x_74); lean_inc(x_60); -lean_inc_ref(x_34); lean_inc_ref(x_1); +lean_inc_ref(x_34); lean_inc_ref(x_35); -x_75 = l_Lean_mkApp5(x_71, x_35, x_36, x_1, x_34, x_60); +x_75 = l_Lean_mkApp5(x_71, x_36, x_35, x_34, x_1, x_60); x_76 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeForall___closed__5; lean_inc(x_60); x_77 = lean_array_push(x_76, x_60); @@ -5097,8 +5097,8 @@ if (x_86 == 0) { lean_free_object(x_37); lean_dec(x_60); -lean_dec(x_54); lean_free_object(x_50); +lean_dec(x_53); lean_dec_ref(x_35); lean_dec_ref(x_22); lean_dec(x_11); @@ -5130,7 +5130,7 @@ x_93 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_93, 0, x_91); lean_ctor_set(x_93, 1, x_92); lean_inc_ref(x_78); -x_94 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_54, x_35, x_1, x_78); +x_94 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_53, x_35, x_1, x_78); x_95 = l_Lean_MessageData_ofExpr(x_94); x_96 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_96, 0, x_93); @@ -5186,10 +5186,10 @@ else lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t x_112; lean_dec(x_37); lean_inc(x_60); -lean_inc_ref(x_34); lean_inc_ref(x_1); +lean_inc_ref(x_34); lean_inc_ref(x_35); -x_101 = l_Lean_mkApp5(x_71, x_35, x_36, x_1, x_34, x_60); +x_101 = l_Lean_mkApp5(x_71, x_36, x_35, x_34, x_1, x_60); x_102 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeForall___closed__5; lean_inc(x_60); x_103 = lean_array_push(x_102, x_60); @@ -5199,8 +5199,8 @@ lean_dec(x_67); if (x_112 == 0) { lean_dec(x_60); -lean_dec(x_54); lean_free_object(x_50); +lean_dec(x_53); lean_dec_ref(x_35); lean_dec_ref(x_22); lean_dec(x_11); @@ -5232,7 +5232,7 @@ x_120 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_120, 0, x_118); lean_ctor_set(x_120, 1, x_119); lean_inc_ref(x_104); -x_121 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_54, x_35, x_1, x_104); +x_121 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_53, x_35, x_1, x_104); x_122 = l_Lean_MessageData_ofExpr(x_121); x_123 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_123, 0, x_120); @@ -5289,8 +5289,8 @@ else uint8_t x_128; lean_dec(x_62); lean_dec(x_60); -lean_dec(x_54); lean_free_object(x_50); +lean_dec(x_53); lean_dec_ref(x_37); lean_dec_ref(x_36); lean_dec_ref(x_35); @@ -5327,8 +5327,8 @@ return x_131; else { lean_object* x_132; lean_object* x_133; lean_object* x_134; uint8_t x_135; uint8_t x_140; -lean_dec(x_54); lean_free_object(x_50); +lean_dec(x_53); lean_dec_ref(x_37); lean_dec_ref(x_36); lean_dec_ref(x_35); @@ -5402,327 +5402,297 @@ return x_138; } else { -lean_free_object(x_50); -lean_dec_ref(x_52); -lean_dec_ref(x_37); -lean_dec_ref(x_36); -lean_dec_ref(x_35); -lean_dec_ref(x_34); -lean_dec(x_33); -lean_dec(x_32); -lean_dec(x_31); -lean_dec_ref(x_22); -lean_free_object(x_17); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_13 = x_12; -goto block_16; -} -} -else -{ -lean_object* x_142; -x_142 = lean_ctor_get(x_50, 1); +lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_142 = lean_ctor_get(x_50, 0); lean_inc(x_142); lean_dec(x_50); -if (lean_obj_tag(x_142) == 0) -{ -lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; -x_143 = lean_ctor_get(x_37, 0); -lean_inc(x_143); lean_inc_ref(x_36); lean_ctor_set(x_17, 0, x_36); -x_144 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpPure___closed__6; -x_145 = lean_box(0); +x_143 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpPure___closed__6; +x_144 = lean_box(0); lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_5); -x_146 = l_Lean_Elab_Tactic_elabTermWithHoles(x_3, x_17, x_144, x_49, x_145, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_146) == 0) +x_145 = l_Lean_Elab_Tactic_elabTermWithHoles(x_3, x_17, x_143, x_49, x_144, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_145) == 0) { -lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; -x_147 = lean_ctor_get(x_146, 0); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; +x_146 = lean_ctor_get(x_145, 0); +lean_inc(x_146); +x_147 = lean_ctor_get(x_145, 1); lean_inc(x_147); -x_148 = lean_ctor_get(x_146, 1); +lean_dec_ref(x_145); +x_148 = lean_ctor_get(x_146, 0); lean_inc(x_148); -lean_dec_ref(x_146); -x_149 = lean_ctor_get(x_147, 0); +x_149 = lean_ctor_get(x_146, 1); lean_inc(x_149); -x_150 = lean_ctor_get(x_147, 1); -lean_inc(x_150); -if (lean_is_exclusive(x_147)) { - lean_ctor_release(x_147, 0); - lean_ctor_release(x_147, 1); - x_151 = x_147; -} else { - lean_dec_ref(x_147); - x_151 = lean_box(0); -} -x_152 = l_Lean_Elab_Tactic_pushGoals___redArg(x_150, x_5, x_148); -lean_dec(x_5); -if (lean_obj_tag(x_152) == 0) -{ -lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; uint8_t x_173; -x_153 = lean_ctor_get(x_152, 1); -lean_inc(x_153); -lean_dec_ref(x_152); -x_154 = l_Lean_Elab_Tactic_Do_ProofMode_initFn___closed__4____x40_Lean_Elab_Tactic_Do_ProofMode_Specialize___hyg_6_; -x_155 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful_spec__0___redArg(x_154, x_10, x_153); -x_156 = lean_ctor_get(x_155, 0); -lean_inc(x_156); -x_157 = lean_ctor_get(x_155, 1); -lean_inc(x_157); -if (lean_is_exclusive(x_155)) { - lean_ctor_release(x_155, 0); - lean_ctor_release(x_155, 1); - x_158 = x_155; -} else { - lean_dec_ref(x_155); - x_158 = lean_box(0); -} -x_159 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeForall___closed__4; -lean_inc_ref(x_37); -x_160 = l_Lean_Expr_const___override(x_159, x_37); -if (lean_is_exclusive(x_37)) { - lean_ctor_release(x_37, 0); - lean_ctor_release(x_37, 1); - x_161 = x_37; -} else { - lean_dec_ref(x_37); - x_161 = lean_box(0); -} -lean_inc(x_149); -lean_inc_ref(x_34); -lean_inc_ref(x_1); -lean_inc_ref(x_35); -x_162 = l_Lean_mkApp5(x_160, x_35, x_36, x_1, x_34, x_149); -x_163 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeForall___closed__5; -lean_inc(x_149); -x_164 = lean_array_push(x_163, x_149); -x_165 = l_Lean_Expr_beta(x_34, x_164); -x_173 = lean_unbox(x_156); -lean_dec(x_156); -if (x_173 == 0) -{ -lean_dec(x_161); -lean_dec(x_149); -lean_dec(x_143); -lean_dec_ref(x_35); -lean_dec_ref(x_22); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_1); -x_166 = x_157; -goto block_172; -} -else -{ -lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; -x_174 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeForall___closed__7; -x_175 = l_Lean_MessageData_ofExpr(x_22); -x_176 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_176, 0, x_174); -lean_ctor_set(x_176, 1, x_175); -x_177 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful___closed__8; -if (lean_is_scalar(x_161)) { - x_178 = lean_alloc_ctor(7, 2, 0); -} else { - x_178 = x_161; - lean_ctor_set_tag(x_178, 7); -} -lean_ctor_set(x_178, 0, x_176); -lean_ctor_set(x_178, 1, x_177); -x_179 = l_Lean_MessageData_ofExpr(x_149); -x_180 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_180, 0, x_178); -lean_ctor_set(x_180, 1, x_179); -x_181 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful___closed__13; -x_182 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_182, 0, x_180); -lean_ctor_set(x_182, 1, x_181); -lean_inc_ref(x_165); -x_183 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_143, x_35, x_1, x_165); -x_184 = l_Lean_MessageData_ofExpr(x_183); -x_185 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_185, 0, x_182); -lean_ctor_set(x_185, 1, x_184); -x_186 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful___closed__9; -x_187 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_187, 0, x_185); -lean_ctor_set(x_187, 1, x_186); -x_188 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful_spec__3___redArg(x_154, x_187, x_8, x_9, x_10, x_11, x_157); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_189 = lean_ctor_get(x_188, 1); -lean_inc(x_189); -lean_dec_ref(x_188); -x_166 = x_189; -goto block_172; -} -block_172: -{ -lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; -if (lean_is_scalar(x_33)) { - x_167 = lean_alloc_ctor(0, 3, 0); -} else { - x_167 = x_33; -} -lean_ctor_set(x_167, 0, x_31); -lean_ctor_set(x_167, 1, x_32); -lean_ctor_set(x_167, 2, x_165); -x_168 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_167); -if (lean_is_scalar(x_151)) { - x_169 = lean_alloc_ctor(0, 2, 0); -} else { - x_169 = x_151; -} -lean_ctor_set(x_169, 0, x_168); -lean_ctor_set(x_169, 1, x_162); -x_170 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_170, 0, x_169); -if (lean_is_scalar(x_158)) { - x_171 = lean_alloc_ctor(0, 2, 0); -} else { - x_171 = x_158; -} -lean_ctor_set(x_171, 0, x_170); -lean_ctor_set(x_171, 1, x_166); -return x_171; -} -} -else -{ -lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; -lean_dec(x_151); -lean_dec(x_149); -lean_dec(x_143); -lean_dec_ref(x_37); -lean_dec_ref(x_36); -lean_dec_ref(x_35); -lean_dec_ref(x_34); -lean_dec(x_33); -lean_dec(x_32); -lean_dec(x_31); -lean_dec_ref(x_22); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_1); -x_190 = lean_ctor_get(x_152, 0); -lean_inc(x_190); -x_191 = lean_ctor_get(x_152, 1); -lean_inc(x_191); -if (lean_is_exclusive(x_152)) { - lean_ctor_release(x_152, 0); - lean_ctor_release(x_152, 1); - x_192 = x_152; -} else { - lean_dec_ref(x_152); - x_192 = lean_box(0); -} -if (lean_is_scalar(x_192)) { - x_193 = lean_alloc_ctor(1, 2, 0); -} else { - x_193 = x_192; -} -lean_ctor_set(x_193, 0, x_190); -lean_ctor_set(x_193, 1, x_191); -return x_193; -} -} -else -{ -lean_object* x_194; lean_object* x_195; lean_object* x_196; uint8_t x_197; uint8_t x_202; -lean_dec(x_143); -lean_dec_ref(x_37); -lean_dec_ref(x_36); -lean_dec_ref(x_35); -lean_dec_ref(x_34); -lean_dec(x_33); -lean_dec(x_32); -lean_dec(x_31); -lean_dec_ref(x_22); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_5); -lean_dec_ref(x_1); -x_194 = lean_ctor_get(x_146, 0); -lean_inc(x_194); -x_195 = lean_ctor_get(x_146, 1); -lean_inc(x_195); if (lean_is_exclusive(x_146)) { lean_ctor_release(x_146, 0); lean_ctor_release(x_146, 1); - x_196 = x_146; + x_150 = x_146; } else { lean_dec_ref(x_146); - x_196 = lean_box(0); + x_150 = lean_box(0); } -x_202 = l_Lean_Exception_isInterrupt(x_194); -if (x_202 == 0) +x_151 = l_Lean_Elab_Tactic_pushGoals___redArg(x_149, x_5, x_147); +lean_dec(x_5); +if (lean_obj_tag(x_151) == 0) { -uint8_t x_203; -x_203 = l_Lean_Exception_isRuntime(x_194); -x_197 = x_203; -goto block_201; +lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; uint8_t x_172; +x_152 = lean_ctor_get(x_151, 1); +lean_inc(x_152); +lean_dec_ref(x_151); +x_153 = l_Lean_Elab_Tactic_Do_ProofMode_initFn___closed__4____x40_Lean_Elab_Tactic_Do_ProofMode_Specialize___hyg_6_; +x_154 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful_spec__0___redArg(x_153, x_10, x_152); +x_155 = lean_ctor_get(x_154, 0); +lean_inc(x_155); +x_156 = lean_ctor_get(x_154, 1); +lean_inc(x_156); +if (lean_is_exclusive(x_154)) { + lean_ctor_release(x_154, 0); + lean_ctor_release(x_154, 1); + x_157 = x_154; +} else { + lean_dec_ref(x_154); + x_157 = lean_box(0); +} +x_158 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeForall___closed__4; +lean_inc_ref(x_37); +x_159 = l_Lean_Expr_const___override(x_158, x_37); +if (lean_is_exclusive(x_37)) { + lean_ctor_release(x_37, 0); + lean_ctor_release(x_37, 1); + x_160 = x_37; +} else { + lean_dec_ref(x_37); + x_160 = lean_box(0); +} +lean_inc(x_148); +lean_inc_ref(x_1); +lean_inc_ref(x_34); +lean_inc_ref(x_35); +x_161 = l_Lean_mkApp5(x_159, x_36, x_35, x_34, x_1, x_148); +x_162 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeForall___closed__5; +lean_inc(x_148); +x_163 = lean_array_push(x_162, x_148); +x_164 = l_Lean_Expr_beta(x_34, x_163); +x_172 = lean_unbox(x_155); +lean_dec(x_155); +if (x_172 == 0) +{ +lean_dec(x_160); +lean_dec(x_148); +lean_dec(x_142); +lean_dec_ref(x_35); +lean_dec_ref(x_22); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_1); +x_165 = x_156; +goto block_171; } else { -x_197 = x_202; -goto block_201; -} -block_201: -{ -if (x_197 == 0) -{ -lean_object* x_198; lean_object* x_199; -lean_dec(x_194); -x_198 = lean_box(0); -if (lean_is_scalar(x_196)) { - x_199 = lean_alloc_ctor(0, 2, 0); +lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; +x_173 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeForall___closed__7; +x_174 = l_Lean_MessageData_ofExpr(x_22); +x_175 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_175, 0, x_173); +lean_ctor_set(x_175, 1, x_174); +x_176 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful___closed__8; +if (lean_is_scalar(x_160)) { + x_177 = lean_alloc_ctor(7, 2, 0); } else { - x_199 = x_196; - lean_ctor_set_tag(x_199, 0); + x_177 = x_160; + lean_ctor_set_tag(x_177, 7); } -lean_ctor_set(x_199, 0, x_198); -lean_ctor_set(x_199, 1, x_195); +lean_ctor_set(x_177, 0, x_175); +lean_ctor_set(x_177, 1, x_176); +x_178 = l_Lean_MessageData_ofExpr(x_148); +x_179 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_179, 0, x_177); +lean_ctor_set(x_179, 1, x_178); +x_180 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful___closed__13; +x_181 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_181, 0, x_179); +lean_ctor_set(x_181, 1, x_180); +lean_inc_ref(x_164); +x_182 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_142, x_35, x_1, x_164); +x_183 = l_Lean_MessageData_ofExpr(x_182); +x_184 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_184, 0, x_181); +lean_ctor_set(x_184, 1, x_183); +x_185 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful___closed__9; +x_186 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_186, 0, x_184); +lean_ctor_set(x_186, 1, x_185); +x_187 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful_spec__3___redArg(x_153, x_186, x_8, x_9, x_10, x_11, x_156); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_188 = lean_ctor_get(x_187, 1); +lean_inc(x_188); +lean_dec_ref(x_187); +x_165 = x_188; +goto block_171; +} +block_171: +{ +lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; +if (lean_is_scalar(x_33)) { + x_166 = lean_alloc_ctor(0, 3, 0); +} else { + x_166 = x_33; +} +lean_ctor_set(x_166, 0, x_31); +lean_ctor_set(x_166, 1, x_32); +lean_ctor_set(x_166, 2, x_164); +x_167 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_166); +if (lean_is_scalar(x_150)) { + x_168 = lean_alloc_ctor(0, 2, 0); +} else { + x_168 = x_150; +} +lean_ctor_set(x_168, 0, x_167); +lean_ctor_set(x_168, 1, x_161); +x_169 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_169, 0, x_168); +if (lean_is_scalar(x_157)) { + x_170 = lean_alloc_ctor(0, 2, 0); +} else { + x_170 = x_157; +} +lean_ctor_set(x_170, 0, x_169); +lean_ctor_set(x_170, 1, x_165); +return x_170; +} +} +else +{ +lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +lean_dec(x_150); +lean_dec(x_148); +lean_dec(x_142); +lean_dec_ref(x_37); +lean_dec_ref(x_36); +lean_dec_ref(x_35); +lean_dec_ref(x_34); +lean_dec(x_33); +lean_dec(x_32); +lean_dec(x_31); +lean_dec_ref(x_22); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_1); +x_189 = lean_ctor_get(x_151, 0); +lean_inc(x_189); +x_190 = lean_ctor_get(x_151, 1); +lean_inc(x_190); +if (lean_is_exclusive(x_151)) { + lean_ctor_release(x_151, 0); + lean_ctor_release(x_151, 1); + x_191 = x_151; +} else { + lean_dec_ref(x_151); + x_191 = lean_box(0); +} +if (lean_is_scalar(x_191)) { + x_192 = lean_alloc_ctor(1, 2, 0); +} else { + x_192 = x_191; +} +lean_ctor_set(x_192, 0, x_189); +lean_ctor_set(x_192, 1, x_190); +return x_192; +} +} +else +{ +lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; uint8_t x_201; +lean_dec(x_142); +lean_dec_ref(x_37); +lean_dec_ref(x_36); +lean_dec_ref(x_35); +lean_dec_ref(x_34); +lean_dec(x_33); +lean_dec(x_32); +lean_dec(x_31); +lean_dec_ref(x_22); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_5); +lean_dec_ref(x_1); +x_193 = lean_ctor_get(x_145, 0); +lean_inc(x_193); +x_194 = lean_ctor_get(x_145, 1); +lean_inc(x_194); +if (lean_is_exclusive(x_145)) { + lean_ctor_release(x_145, 0); + lean_ctor_release(x_145, 1); + x_195 = x_145; +} else { + lean_dec_ref(x_145); + x_195 = lean_box(0); +} +x_201 = l_Lean_Exception_isInterrupt(x_193); +if (x_201 == 0) +{ +uint8_t x_202; +x_202 = l_Lean_Exception_isRuntime(x_193); +x_196 = x_202; +goto block_200; +} +else +{ +x_196 = x_201; +goto block_200; +} +block_200: +{ +if (x_196 == 0) +{ +lean_object* x_197; lean_object* x_198; +lean_dec(x_193); +x_197 = lean_box(0); +if (lean_is_scalar(x_195)) { + x_198 = lean_alloc_ctor(0, 2, 0); +} else { + x_198 = x_195; + lean_ctor_set_tag(x_198, 0); +} +lean_ctor_set(x_198, 0, x_197); +lean_ctor_set(x_198, 1, x_194); +return x_198; +} +else +{ +lean_object* x_199; +if (lean_is_scalar(x_195)) { + x_199 = lean_alloc_ctor(1, 2, 0); +} else { + x_199 = x_195; +} +lean_ctor_set(x_199, 0, x_193); +lean_ctor_set(x_199, 1, x_194); return x_199; } -else -{ -lean_object* x_200; -if (lean_is_scalar(x_196)) { - x_200 = lean_alloc_ctor(1, 2, 0); -} else { - x_200 = x_196; -} -lean_ctor_set(x_200, 0, x_194); -lean_ctor_set(x_200, 1, x_195); -return x_200; } } } } else { -lean_dec_ref(x_142); +lean_dec_ref(x_51); +lean_dec_ref(x_50); lean_dec_ref(x_37); lean_dec_ref(x_36); lean_dec_ref(x_35); @@ -5752,7 +5722,6 @@ goto block_16; } } } -} else { lean_dec(x_30); @@ -5962,11 +5931,16 @@ goto block_16; } else { -lean_object* x_204; lean_object* x_205; -x_204 = lean_ctor_get(x_17, 0); -lean_inc(x_204); +lean_object* x_203; lean_object* x_204; +x_203 = lean_ctor_get(x_17, 0); +lean_inc(x_203); lean_dec(x_17); -x_205 = lean_ctor_get(x_204, 2); +x_204 = lean_ctor_get(x_203, 2); +lean_inc_ref(x_204); +if (lean_obj_tag(x_204) == 5) +{ +lean_object* x_205; +x_205 = lean_ctor_get(x_204, 0); lean_inc_ref(x_205); if (lean_obj_tag(x_205) == 5) { @@ -5978,12 +5952,12 @@ if (lean_obj_tag(x_206) == 5) lean_object* x_207; x_207 = lean_ctor_get(x_206, 0); lean_inc_ref(x_207); -if (lean_obj_tag(x_207) == 5) +if (lean_obj_tag(x_207) == 4) { lean_object* x_208; x_208 = lean_ctor_get(x_207, 0); -lean_inc_ref(x_208); -if (lean_obj_tag(x_208) == 4) +lean_inc(x_208); +if (lean_obj_tag(x_208) == 1) { lean_object* x_209; x_209 = lean_ctor_get(x_208, 0); @@ -6003,37 +5977,35 @@ if (lean_obj_tag(x_211) == 1) lean_object* x_212; x_212 = lean_ctor_get(x_211, 0); lean_inc(x_212); -if (lean_obj_tag(x_212) == 1) +if (lean_obj_tag(x_212) == 0) { -lean_object* x_213; -x_213 = lean_ctor_get(x_212, 0); +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; uint8_t x_225; +x_213 = lean_ctor_get(x_203, 0); lean_inc(x_213); -if (lean_obj_tag(x_213) == 0) -{ -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; uint8_t x_226; -x_214 = lean_ctor_get(x_204, 0); +x_214 = lean_ctor_get(x_203, 1); lean_inc(x_214); -x_215 = lean_ctor_get(x_204, 1); -lean_inc(x_215); -if (lean_is_exclusive(x_204)) { - lean_ctor_release(x_204, 0); - lean_ctor_release(x_204, 1); - lean_ctor_release(x_204, 2); - x_216 = x_204; +if (lean_is_exclusive(x_203)) { + lean_ctor_release(x_203, 0); + lean_ctor_release(x_203, 1); + lean_ctor_release(x_203, 2); + x_215 = x_203; } else { - lean_dec_ref(x_204); - x_216 = lean_box(0); + lean_dec_ref(x_203); + x_215 = lean_box(0); } +x_216 = lean_ctor_get(x_204, 1); +lean_inc_ref(x_216); x_217 = lean_ctor_get(x_205, 1); lean_inc_ref(x_217); +lean_dec_ref(x_205); x_218 = lean_ctor_get(x_206, 1); lean_inc_ref(x_218); lean_dec_ref(x_206); x_219 = lean_ctor_get(x_207, 1); -lean_inc_ref(x_219); +lean_inc(x_219); lean_dec_ref(x_207); x_220 = lean_ctor_get(x_208, 1); -lean_inc(x_220); +lean_inc_ref(x_220); lean_dec_ref(x_208); x_221 = lean_ctor_get(x_209, 1); lean_inc_ref(x_221); @@ -6044,56 +6016,22 @@ lean_dec_ref(x_210); x_223 = lean_ctor_get(x_211, 1); lean_inc_ref(x_223); lean_dec_ref(x_211); -x_224 = lean_ctor_get(x_212, 1); -lean_inc_ref(x_224); -lean_dec_ref(x_212); -x_225 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful___closed__0; -x_226 = lean_string_dec_eq(x_224, x_225); -lean_dec_ref(x_224); -if (x_226 == 0) -{ +x_224 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful___closed__0; +x_225 = lean_string_dec_eq(x_223, x_224); lean_dec_ref(x_223); -lean_dec_ref(x_222); -lean_dec_ref(x_221); -lean_dec(x_220); -lean_dec_ref(x_219); -lean_dec_ref(x_218); -lean_dec_ref(x_217); -lean_dec(x_216); -lean_dec(x_215); -lean_dec(x_214); -lean_dec_ref(x_205); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_13 = x_12; -goto block_16; -} -else -{ -lean_object* x_227; uint8_t x_228; -x_227 = l_Lean_Elab_Tactic_Do_ProofMode_initFn___closed__2____x40_Lean_Elab_Tactic_Do_ProofMode_Specialize___hyg_6_; -x_228 = lean_string_dec_eq(x_223, x_227); -lean_dec_ref(x_223); -if (x_228 == 0) +if (x_225 == 0) { lean_dec_ref(x_222); lean_dec_ref(x_221); -lean_dec(x_220); -lean_dec_ref(x_219); +lean_dec_ref(x_220); +lean_dec(x_219); lean_dec_ref(x_218); lean_dec_ref(x_217); -lean_dec(x_216); +lean_dec_ref(x_216); lean_dec(x_215); lean_dec(x_214); -lean_dec_ref(x_205); +lean_dec(x_213); +lean_dec_ref(x_204); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -6109,21 +6047,22 @@ goto block_16; } else { -lean_object* x_229; uint8_t x_230; -x_229 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful___closed__1; -x_230 = lean_string_dec_eq(x_222, x_229); +lean_object* x_226; uint8_t x_227; +x_226 = l_Lean_Elab_Tactic_Do_ProofMode_initFn___closed__2____x40_Lean_Elab_Tactic_Do_ProofMode_Specialize___hyg_6_; +x_227 = lean_string_dec_eq(x_222, x_226); lean_dec_ref(x_222); -if (x_230 == 0) +if (x_227 == 0) { lean_dec_ref(x_221); -lean_dec(x_220); -lean_dec_ref(x_219); +lean_dec_ref(x_220); +lean_dec(x_219); lean_dec_ref(x_218); lean_dec_ref(x_217); -lean_dec(x_216); +lean_dec_ref(x_216); lean_dec(x_215); lean_dec(x_214); -lean_dec_ref(x_205); +lean_dec(x_213); +lean_dec_ref(x_204); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -6139,20 +6078,21 @@ goto block_16; } else { -lean_object* x_231; uint8_t x_232; -x_231 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeForall___closed__3; -x_232 = lean_string_dec_eq(x_221, x_231); +lean_object* x_228; uint8_t x_229; +x_228 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful___closed__1; +x_229 = lean_string_dec_eq(x_221, x_228); lean_dec_ref(x_221); -if (x_232 == 0) +if (x_229 == 0) { -lean_dec(x_220); -lean_dec_ref(x_219); +lean_dec_ref(x_220); +lean_dec(x_219); lean_dec_ref(x_218); lean_dec_ref(x_217); -lean_dec(x_216); +lean_dec_ref(x_216); lean_dec(x_215); lean_dec(x_214); -lean_dec_ref(x_205); +lean_dec(x_213); +lean_dec_ref(x_204); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -6168,15 +6108,72 @@ goto block_16; } else { -if (lean_obj_tag(x_220) == 0) +lean_object* x_230; uint8_t x_231; +x_230 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeForall___closed__3; +x_231 = lean_string_dec_eq(x_220, x_230); +lean_dec_ref(x_220); +if (x_231 == 0) +{ +lean_dec(x_219); +lean_dec_ref(x_218); +lean_dec_ref(x_217); +lean_dec_ref(x_216); +lean_dec(x_215); +lean_dec(x_214); +lean_dec(x_213); +lean_dec_ref(x_204); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_1); +x_13 = x_12; +goto block_16; +} +else +{ +if (lean_obj_tag(x_219) == 0) +{ +lean_dec_ref(x_218); +lean_dec_ref(x_217); +lean_dec_ref(x_216); +lean_dec(x_215); +lean_dec(x_214); +lean_dec(x_213); +lean_dec_ref(x_204); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_1); +x_13 = x_12; +goto block_16; +} +else +{ +lean_object* x_232; +x_232 = lean_ctor_get(x_219, 1); +lean_inc(x_232); +if (lean_obj_tag(x_232) == 0) { lean_dec_ref(x_219); lean_dec_ref(x_218); lean_dec_ref(x_217); -lean_dec(x_216); +lean_dec_ref(x_216); lean_dec(x_215); lean_dec(x_214); -lean_dec_ref(x_205); +lean_dec(x_213); +lean_dec_ref(x_204); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -6193,384 +6190,324 @@ goto block_16; else { lean_object* x_233; -x_233 = lean_ctor_get(x_220, 1); +x_233 = lean_ctor_get(x_232, 1); lean_inc(x_233); if (lean_obj_tag(x_233) == 0) { -lean_dec_ref(x_220); -lean_dec_ref(x_219); -lean_dec_ref(x_218); -lean_dec_ref(x_217); -lean_dec(x_216); -lean_dec(x_215); -lean_dec(x_214); -lean_dec_ref(x_205); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_13 = x_12; -goto block_16; -} -else -{ -lean_object* x_234; lean_object* x_235; -x_234 = lean_ctor_get(x_233, 1); +lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_234 = lean_ctor_get(x_232, 0); lean_inc(x_234); -if (lean_is_exclusive(x_233)) { - lean_ctor_release(x_233, 0); - lean_ctor_release(x_233, 1); - x_235 = x_233; +if (lean_is_exclusive(x_232)) { + lean_ctor_release(x_232, 0); + lean_ctor_release(x_232, 1); + x_235 = x_232; } else { - lean_dec_ref(x_233); + lean_dec_ref(x_232); x_235 = lean_box(0); } -if (lean_obj_tag(x_234) == 0) -{ -lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_236 = lean_ctor_get(x_220, 0); -lean_inc(x_236); -lean_inc_ref(x_219); -x_237 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_237, 0, x_219); -x_238 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpPure___closed__6; -x_239 = lean_box(0); +lean_inc_ref(x_218); +x_236 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_236, 0, x_218); +x_237 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpPure___closed__6; +x_238 = lean_box(0); lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_5); -x_240 = l_Lean_Elab_Tactic_elabTermWithHoles(x_3, x_237, x_238, x_232, x_239, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_240) == 0) +x_239 = l_Lean_Elab_Tactic_elabTermWithHoles(x_3, x_236, x_237, x_231, x_238, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_239) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; -x_241 = lean_ctor_get(x_240, 0); +lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; +x_240 = lean_ctor_get(x_239, 0); +lean_inc(x_240); +x_241 = lean_ctor_get(x_239, 1); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); +lean_dec_ref(x_239); +x_242 = lean_ctor_get(x_240, 0); lean_inc(x_242); -lean_dec_ref(x_240); -x_243 = lean_ctor_get(x_241, 0); +x_243 = lean_ctor_get(x_240, 1); lean_inc(x_243); -x_244 = lean_ctor_get(x_241, 1); -lean_inc(x_244); -if (lean_is_exclusive(x_241)) { - lean_ctor_release(x_241, 0); - lean_ctor_release(x_241, 1); - x_245 = x_241; -} else { - lean_dec_ref(x_241); - x_245 = lean_box(0); -} -x_246 = l_Lean_Elab_Tactic_pushGoals___redArg(x_244, x_5, x_242); -lean_dec(x_5); -if (lean_obj_tag(x_246) == 0) -{ -lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; uint8_t x_267; -x_247 = lean_ctor_get(x_246, 1); -lean_inc(x_247); -lean_dec_ref(x_246); -x_248 = l_Lean_Elab_Tactic_Do_ProofMode_initFn___closed__4____x40_Lean_Elab_Tactic_Do_ProofMode_Specialize___hyg_6_; -x_249 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful_spec__0___redArg(x_248, x_10, x_247); -x_250 = lean_ctor_get(x_249, 0); -lean_inc(x_250); -x_251 = lean_ctor_get(x_249, 1); -lean_inc(x_251); -if (lean_is_exclusive(x_249)) { - lean_ctor_release(x_249, 0); - lean_ctor_release(x_249, 1); - x_252 = x_249; -} else { - lean_dec_ref(x_249); - x_252 = lean_box(0); -} -x_253 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeForall___closed__4; -lean_inc_ref(x_220); -x_254 = l_Lean_Expr_const___override(x_253, x_220); -if (lean_is_exclusive(x_220)) { - lean_ctor_release(x_220, 0); - lean_ctor_release(x_220, 1); - x_255 = x_220; -} else { - lean_dec_ref(x_220); - x_255 = lean_box(0); -} -lean_inc(x_243); -lean_inc_ref(x_217); -lean_inc_ref(x_1); -lean_inc_ref(x_218); -x_256 = l_Lean_mkApp5(x_254, x_218, x_219, x_1, x_217, x_243); -x_257 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeForall___closed__5; -lean_inc(x_243); -x_258 = lean_array_push(x_257, x_243); -x_259 = l_Lean_Expr_beta(x_217, x_258); -x_267 = lean_unbox(x_250); -lean_dec(x_250); -if (x_267 == 0) -{ -lean_dec(x_255); -lean_dec(x_243); -lean_dec(x_236); -lean_dec(x_235); -lean_dec_ref(x_218); -lean_dec_ref(x_205); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_1); -x_260 = x_251; -goto block_266; -} -else -{ -lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; -x_268 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeForall___closed__7; -x_269 = l_Lean_MessageData_ofExpr(x_205); -if (lean_is_scalar(x_235)) { - x_270 = lean_alloc_ctor(7, 2, 0); -} else { - x_270 = x_235; - lean_ctor_set_tag(x_270, 7); -} -lean_ctor_set(x_270, 0, x_268); -lean_ctor_set(x_270, 1, x_269); -x_271 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful___closed__8; -if (lean_is_scalar(x_255)) { - x_272 = lean_alloc_ctor(7, 2, 0); -} else { - x_272 = x_255; - lean_ctor_set_tag(x_272, 7); -} -lean_ctor_set(x_272, 0, x_270); -lean_ctor_set(x_272, 1, x_271); -x_273 = l_Lean_MessageData_ofExpr(x_243); -x_274 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_274, 0, x_272); -lean_ctor_set(x_274, 1, x_273); -x_275 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful___closed__13; -x_276 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_276, 0, x_274); -lean_ctor_set(x_276, 1, x_275); -lean_inc_ref(x_259); -x_277 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_236, x_218, x_1, x_259); -x_278 = l_Lean_MessageData_ofExpr(x_277); -x_279 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_279, 0, x_276); -lean_ctor_set(x_279, 1, x_278); -x_280 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful___closed__9; -x_281 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_281, 0, x_279); -lean_ctor_set(x_281, 1, x_280); -x_282 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful_spec__3___redArg(x_248, x_281, x_8, x_9, x_10, x_11, x_251); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_283 = lean_ctor_get(x_282, 1); -lean_inc(x_283); -lean_dec_ref(x_282); -x_260 = x_283; -goto block_266; -} -block_266: -{ -lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; -if (lean_is_scalar(x_216)) { - x_261 = lean_alloc_ctor(0, 3, 0); -} else { - x_261 = x_216; -} -lean_ctor_set(x_261, 0, x_214); -lean_ctor_set(x_261, 1, x_215); -lean_ctor_set(x_261, 2, x_259); -x_262 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_261); -if (lean_is_scalar(x_245)) { - x_263 = lean_alloc_ctor(0, 2, 0); -} else { - x_263 = x_245; -} -lean_ctor_set(x_263, 0, x_262); -lean_ctor_set(x_263, 1, x_256); -x_264 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_264, 0, x_263); -if (lean_is_scalar(x_252)) { - x_265 = lean_alloc_ctor(0, 2, 0); -} else { - x_265 = x_252; -} -lean_ctor_set(x_265, 0, x_264); -lean_ctor_set(x_265, 1, x_260); -return x_265; -} -} -else -{ -lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; -lean_dec(x_245); -lean_dec(x_243); -lean_dec(x_236); -lean_dec(x_235); -lean_dec_ref(x_220); -lean_dec_ref(x_219); -lean_dec_ref(x_218); -lean_dec_ref(x_217); -lean_dec(x_216); -lean_dec(x_215); -lean_dec(x_214); -lean_dec_ref(x_205); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_1); -x_284 = lean_ctor_get(x_246, 0); -lean_inc(x_284); -x_285 = lean_ctor_get(x_246, 1); -lean_inc(x_285); -if (lean_is_exclusive(x_246)) { - lean_ctor_release(x_246, 0); - lean_ctor_release(x_246, 1); - x_286 = x_246; -} else { - lean_dec_ref(x_246); - x_286 = lean_box(0); -} -if (lean_is_scalar(x_286)) { - x_287 = lean_alloc_ctor(1, 2, 0); -} else { - x_287 = x_286; -} -lean_ctor_set(x_287, 0, x_284); -lean_ctor_set(x_287, 1, x_285); -return x_287; -} -} -else -{ -lean_object* x_288; lean_object* x_289; lean_object* x_290; uint8_t x_291; uint8_t x_296; -lean_dec(x_236); -lean_dec(x_235); -lean_dec_ref(x_220); -lean_dec_ref(x_219); -lean_dec_ref(x_218); -lean_dec_ref(x_217); -lean_dec(x_216); -lean_dec(x_215); -lean_dec(x_214); -lean_dec_ref(x_205); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_5); -lean_dec_ref(x_1); -x_288 = lean_ctor_get(x_240, 0); -lean_inc(x_288); -x_289 = lean_ctor_get(x_240, 1); -lean_inc(x_289); if (lean_is_exclusive(x_240)) { lean_ctor_release(x_240, 0); lean_ctor_release(x_240, 1); - x_290 = x_240; + x_244 = x_240; } else { lean_dec_ref(x_240); - x_290 = lean_box(0); + x_244 = lean_box(0); } -x_296 = l_Lean_Exception_isInterrupt(x_288); -if (x_296 == 0) +x_245 = l_Lean_Elab_Tactic_pushGoals___redArg(x_243, x_5, x_241); +lean_dec(x_5); +if (lean_obj_tag(x_245) == 0) { -uint8_t x_297; -x_297 = l_Lean_Exception_isRuntime(x_288); -x_291 = x_297; -goto block_295; -} -else -{ -x_291 = x_296; -goto block_295; -} -block_295: -{ -if (x_291 == 0) -{ -lean_object* x_292; lean_object* x_293; -lean_dec(x_288); -x_292 = lean_box(0); -if (lean_is_scalar(x_290)) { - x_293 = lean_alloc_ctor(0, 2, 0); +lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; uint8_t x_266; +x_246 = lean_ctor_get(x_245, 1); +lean_inc(x_246); +lean_dec_ref(x_245); +x_247 = l_Lean_Elab_Tactic_Do_ProofMode_initFn___closed__4____x40_Lean_Elab_Tactic_Do_ProofMode_Specialize___hyg_6_; +x_248 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful_spec__0___redArg(x_247, x_10, x_246); +x_249 = lean_ctor_get(x_248, 0); +lean_inc(x_249); +x_250 = lean_ctor_get(x_248, 1); +lean_inc(x_250); +if (lean_is_exclusive(x_248)) { + lean_ctor_release(x_248, 0); + lean_ctor_release(x_248, 1); + x_251 = x_248; } else { - x_293 = x_290; - lean_ctor_set_tag(x_293, 0); + lean_dec_ref(x_248); + x_251 = lean_box(0); } -lean_ctor_set(x_293, 0, x_292); -lean_ctor_set(x_293, 1, x_289); -return x_293; -} -else -{ -lean_object* x_294; -if (lean_is_scalar(x_290)) { - x_294 = lean_alloc_ctor(1, 2, 0); +x_252 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeForall___closed__4; +lean_inc_ref(x_219); +x_253 = l_Lean_Expr_const___override(x_252, x_219); +if (lean_is_exclusive(x_219)) { + lean_ctor_release(x_219, 0); + lean_ctor_release(x_219, 1); + x_254 = x_219; } else { - x_294 = x_290; + lean_dec_ref(x_219); + x_254 = lean_box(0); } -lean_ctor_set(x_294, 0, x_288); -lean_ctor_set(x_294, 1, x_289); -return x_294; -} -} -} -} -else +lean_inc(x_242); +lean_inc_ref(x_1); +lean_inc_ref(x_216); +lean_inc_ref(x_217); +x_255 = l_Lean_mkApp5(x_253, x_218, x_217, x_216, x_1, x_242); +x_256 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeForall___closed__5; +lean_inc(x_242); +x_257 = lean_array_push(x_256, x_242); +x_258 = l_Lean_Expr_beta(x_216, x_257); +x_266 = lean_unbox(x_249); +lean_dec(x_249); +if (x_266 == 0) { +lean_dec(x_254); +lean_dec(x_242); lean_dec(x_235); -lean_dec_ref(x_234); -lean_dec_ref(x_220); +lean_dec(x_234); +lean_dec_ref(x_217); +lean_dec_ref(x_204); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_1); +x_259 = x_250; +goto block_265; +} +else +{ +lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; +x_267 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeForall___closed__7; +x_268 = l_Lean_MessageData_ofExpr(x_204); +if (lean_is_scalar(x_235)) { + x_269 = lean_alloc_ctor(7, 2, 0); +} else { + x_269 = x_235; + lean_ctor_set_tag(x_269, 7); +} +lean_ctor_set(x_269, 0, x_267); +lean_ctor_set(x_269, 1, x_268); +x_270 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful___closed__8; +if (lean_is_scalar(x_254)) { + x_271 = lean_alloc_ctor(7, 2, 0); +} else { + x_271 = x_254; + lean_ctor_set_tag(x_271, 7); +} +lean_ctor_set(x_271, 0, x_269); +lean_ctor_set(x_271, 1, x_270); +x_272 = l_Lean_MessageData_ofExpr(x_242); +x_273 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_273, 0, x_271); +lean_ctor_set(x_273, 1, x_272); +x_274 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful___closed__13; +x_275 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_275, 0, x_273); +lean_ctor_set(x_275, 1, x_274); +lean_inc_ref(x_258); +x_276 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_234, x_217, x_1, x_258); +x_277 = l_Lean_MessageData_ofExpr(x_276); +x_278 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_277); +x_279 = l_Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful___closed__9; +x_280 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_280, 0, x_278); +lean_ctor_set(x_280, 1, x_279); +x_281 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_ProofMode_mSpecializeImpStateful_spec__3___redArg(x_247, x_280, x_8, x_9, x_10, x_11, x_250); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_282 = lean_ctor_get(x_281, 1); +lean_inc(x_282); +lean_dec_ref(x_281); +x_259 = x_282; +goto block_265; +} +block_265: +{ +lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; +if (lean_is_scalar(x_215)) { + x_260 = lean_alloc_ctor(0, 3, 0); +} else { + x_260 = x_215; +} +lean_ctor_set(x_260, 0, x_213); +lean_ctor_set(x_260, 1, x_214); +lean_ctor_set(x_260, 2, x_258); +x_261 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_260); +if (lean_is_scalar(x_244)) { + x_262 = lean_alloc_ctor(0, 2, 0); +} else { + x_262 = x_244; +} +lean_ctor_set(x_262, 0, x_261); +lean_ctor_set(x_262, 1, x_255); +x_263 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_263, 0, x_262); +if (lean_is_scalar(x_251)) { + x_264 = lean_alloc_ctor(0, 2, 0); +} else { + x_264 = x_251; +} +lean_ctor_set(x_264, 0, x_263); +lean_ctor_set(x_264, 1, x_259); +return x_264; +} +} +else +{ +lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; +lean_dec(x_244); +lean_dec(x_242); +lean_dec(x_235); +lean_dec(x_234); lean_dec_ref(x_219); lean_dec_ref(x_218); lean_dec_ref(x_217); -lean_dec(x_216); +lean_dec_ref(x_216); lean_dec(x_215); lean_dec(x_214); -lean_dec_ref(x_205); +lean_dec(x_213); +lean_dec_ref(x_204); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); lean_dec_ref(x_1); -x_13 = x_12; -goto block_16; +x_283 = lean_ctor_get(x_245, 0); +lean_inc(x_283); +x_284 = lean_ctor_get(x_245, 1); +lean_inc(x_284); +if (lean_is_exclusive(x_245)) { + lean_ctor_release(x_245, 0); + lean_ctor_release(x_245, 1); + x_285 = x_245; +} else { + lean_dec_ref(x_245); + x_285 = lean_box(0); +} +if (lean_is_scalar(x_285)) { + x_286 = lean_alloc_ctor(1, 2, 0); +} else { + x_286 = x_285; +} +lean_ctor_set(x_286, 0, x_283); +lean_ctor_set(x_286, 1, x_284); +return x_286; } } +else +{ +lean_object* x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; uint8_t x_295; +lean_dec(x_235); +lean_dec(x_234); +lean_dec_ref(x_219); +lean_dec_ref(x_218); +lean_dec_ref(x_217); +lean_dec_ref(x_216); +lean_dec(x_215); +lean_dec(x_214); +lean_dec(x_213); +lean_dec_ref(x_204); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_5); +lean_dec_ref(x_1); +x_287 = lean_ctor_get(x_239, 0); +lean_inc(x_287); +x_288 = lean_ctor_get(x_239, 1); +lean_inc(x_288); +if (lean_is_exclusive(x_239)) { + lean_ctor_release(x_239, 0); + lean_ctor_release(x_239, 1); + x_289 = x_239; +} else { + lean_dec_ref(x_239); + x_289 = lean_box(0); } +x_295 = l_Lean_Exception_isInterrupt(x_287); +if (x_295 == 0) +{ +uint8_t x_296; +x_296 = l_Lean_Exception_isRuntime(x_287); +x_290 = x_296; +goto block_294; } +else +{ +x_290 = x_295; +goto block_294; +} +block_294: +{ +if (x_290 == 0) +{ +lean_object* x_291; lean_object* x_292; +lean_dec(x_287); +x_291 = lean_box(0); +if (lean_is_scalar(x_289)) { + x_292 = lean_alloc_ctor(0, 2, 0); +} else { + x_292 = x_289; + lean_ctor_set_tag(x_292, 0); +} +lean_ctor_set(x_292, 0, x_291); +lean_ctor_set(x_292, 1, x_288); +return x_292; +} +else +{ +lean_object* x_293; +if (lean_is_scalar(x_289)) { + x_293 = lean_alloc_ctor(1, 2, 0); +} else { + x_293 = x_289; +} +lean_ctor_set(x_293, 0, x_287); +lean_ctor_set(x_293, 1, x_288); +return x_293; } } } } else { +lean_dec_ref(x_233); +lean_dec_ref(x_232); +lean_dec_ref(x_219); +lean_dec_ref(x_218); +lean_dec_ref(x_217); +lean_dec_ref(x_216); +lean_dec(x_215); +lean_dec(x_214); lean_dec(x_213); -lean_dec_ref(x_212); -lean_dec_ref(x_211); -lean_dec_ref(x_210); -lean_dec_ref(x_209); -lean_dec_ref(x_208); -lean_dec_ref(x_207); -lean_dec_ref(x_206); -lean_dec_ref(x_205); -lean_dec(x_204); +lean_dec_ref(x_204); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -6585,6 +6522,12 @@ x_13 = x_12; goto block_16; } } +} +} +} +} +} +} else { lean_dec(x_212); @@ -6595,7 +6538,8 @@ lean_dec_ref(x_208); lean_dec_ref(x_207); lean_dec_ref(x_206); lean_dec_ref(x_205); -lean_dec(x_204); +lean_dec_ref(x_204); +lean_dec(x_203); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -6619,7 +6563,8 @@ lean_dec_ref(x_208); lean_dec_ref(x_207); lean_dec_ref(x_206); lean_dec_ref(x_205); -lean_dec(x_204); +lean_dec_ref(x_204); +lean_dec(x_203); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -6642,7 +6587,8 @@ lean_dec_ref(x_208); lean_dec_ref(x_207); lean_dec_ref(x_206); lean_dec_ref(x_205); -lean_dec(x_204); +lean_dec_ref(x_204); +lean_dec(x_203); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -6664,7 +6610,8 @@ lean_dec_ref(x_208); lean_dec_ref(x_207); lean_dec_ref(x_206); lean_dec_ref(x_205); -lean_dec(x_204); +lean_dec_ref(x_204); +lean_dec(x_203); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -6681,11 +6628,12 @@ goto block_16; } else { -lean_dec_ref(x_208); +lean_dec(x_208); lean_dec_ref(x_207); lean_dec_ref(x_206); lean_dec_ref(x_205); -lean_dec(x_204); +lean_dec_ref(x_204); +lean_dec(x_203); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -6705,7 +6653,8 @@ else lean_dec_ref(x_207); lean_dec_ref(x_206); lean_dec_ref(x_205); -lean_dec(x_204); +lean_dec_ref(x_204); +lean_dec(x_203); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -6724,7 +6673,8 @@ else { lean_dec_ref(x_206); lean_dec_ref(x_205); -lean_dec(x_204); +lean_dec_ref(x_204); +lean_dec(x_203); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -6742,7 +6692,26 @@ goto block_16; else { lean_dec_ref(x_205); -lean_dec(x_204); +lean_dec_ref(x_204); +lean_dec(x_203); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_1); +x_13 = x_12; +goto block_16; +} +} +else +{ +lean_dec_ref(x_204); +lean_dec(x_203); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -6853,9 +6822,9 @@ x_17 = l_Lean_Expr_const___override(x_16, x_4); lean_inc_ref(x_7); lean_inc_ref(x_6); lean_inc(x_5); -x_18 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_5, x_6, x_7, x_8); +x_18 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_5, x_6, x_7, x_8); lean_inc_ref(x_6); -x_19 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_5, x_6, x_7, x_9); +x_19 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_5, x_6, x_7, x_9); x_20 = l_Lean_mkApp6(x_17, x_6, x_18, x_19, x_10, x_11, x_13); x_21 = lean_apply_1(x_12, x_20); return x_21; @@ -8441,7 +8410,7 @@ lean_inc(x_56); lean_dec(x_53); lean_inc_ref(x_32); lean_inc(x_31); -x_57 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_31, x_32, x_24, x_55); +x_57 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_31, x_32, x_24, x_55); lean_ctor_set(x_3, 2, x_57); x_58 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_3); x_59 = lean_box(0); @@ -8625,7 +8594,7 @@ lean_inc(x_102); lean_dec(x_99); lean_inc_ref(x_32); lean_inc(x_31); -x_103 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_31, x_32, x_24, x_101); +x_103 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_31, x_32, x_24, x_101); lean_ctor_set(x_3, 2, x_103); x_104 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_3); x_105 = lean_box(0); @@ -8855,7 +8824,7 @@ lean_inc(x_150); lean_dec(x_147); lean_inc_ref(x_126); lean_inc(x_125); -x_151 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_125, x_126, x_24, x_149); +x_151 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_125, x_126, x_24, x_149); x_152 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_152, 0, x_125); lean_ctor_set(x_152, 1, x_126); @@ -10598,7 +10567,7 @@ lean_inc(x_77); lean_dec_ref(x_76); lean_inc_ref(x_5); lean_inc(x_4); -x_78 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_4, x_5, x_8, x_70); +x_78 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_4, x_5, x_8, x_70); x_79 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_79, 0, x_4); lean_ctor_set(x_79, 1, x_5); @@ -10848,7 +10817,7 @@ lean_inc(x_128); lean_dec_ref(x_127); lean_inc_ref(x_5); lean_inc(x_4); -x_129 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd_x21(x_4, x_5, x_8, x_121); +x_129 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd_x21(x_4, x_5, x_8, x_121); x_130 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_130, 0, x_4); lean_ctor_set(x_130, 1, x_5); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Do/Spec.c b/stage0/stdlib/Lean/Elab/Tactic/Do/Spec.c index 21245453ac..b4adc36915 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Do/Spec.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Do/Spec.c @@ -14,28 +14,30 @@ extern "C" { #endif lean_object* l_Lean_mkFreshId___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__9___boxed(lean_object**); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__8; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Core_instMonadTraceCoreM; lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); lean_object* l_Lean_Expr_fvarId_x3f(lean_object*); lean_object* l_Lean_Meta_projectCore_x3f___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_findSpec_spec__11___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___lam__0___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*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0___closed__0; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__3; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__4; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__17_spec__17_spec__17_spec__19(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_assumption(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__17_spec__17_spec__17___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabTermIntoSpecTheorem(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_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___redArg___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instMonadExceptOfExceptionCoreM; lean_object* l_Lean_Elab_Term_resolveId_x3f(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__7(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__7; lean_object* l_Lean_Core_instMonadCoreM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__3; uint64_t l_Lean_Meta_Context_configKey(lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_findSpec___closed__10; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__17_spec__17_spec__17___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -46,7 +48,7 @@ static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__9 size_t lean_usize_shift_right(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_Elab_Tactic_Do_findSpec_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabSpec___closed__12; -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__10; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___lam__0___closed__0; static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__21___closed__1; LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0_spec__3___closed__2; @@ -68,7 +70,6 @@ lean_object* l_Array_reverse___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__5(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_Elab_Tactic_Do_elabSpec___closed__19; static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__5; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___lam__0(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mStartMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -77,30 +78,29 @@ lean_object* l_Lean_MetavarContext_getDecl(lean_object*, lean_object*); uint8_t lean_usize_dec_le(size_t, size_t); uint8_t l_Array_isEmpty___redArg(lean_object*); uint8_t l_Lean_Exception_isInterrupt(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__1; lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__10(lean_object*, uint8_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_Do_dischargeFailEntails___redArg___closed__8; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_findSpec_spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__12(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_String_toNat_x3f(lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__11____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___redArg___lam__1___closed__1; static lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_findSpec_spec__11___lam__0___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_findSpec(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__6(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_uint64_to_usize(uint64_t); uint64_t lean_uint64_lor(uint64_t, uint64_t); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__17____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; lean_object* l_Lean_Elab_Tactic_elabTermWithHoles(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fswap(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; +static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__1; static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__16___closed__0; LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_elabTermIntoSpecTheorem_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isApp(lean_object*); @@ -110,6 +110,8 @@ extern lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__11; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_sort___override(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_trySynthInstance(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_qpartition___redArg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofList(lean_object*); lean_object* l_Lean_Meta_mkLambdaFVars___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*); @@ -118,11 +120,12 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_ static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__22____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_filterOldMVars___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___closed__1; size_t lean_usize_mul(size_t, size_t); static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___lam__0(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; lean_object* l_ReaderT_instFunctorOfMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -134,6 +137,7 @@ lean_object* l_Lean_Expr_proj___override(lean_object*, lean_object*, lean_object LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___Lean_Elab_Tactic_Do_findSpec_spec__0___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__15___closed__0; static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__7___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0___boxed(lean_object**); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_addLocalVarInfo(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -141,14 +145,10 @@ static lean_object* l_Lean_Elab_Tactic_Do_elabSpec___closed__14; lean_object* l_Lean_instMonadTraceOfMonadLift___redArg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabMSpecNoBind___lam__0___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8_spec__8___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0_spec__3___closed__1; -static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__0; LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at___Lean_Elab_Tactic_Do_elabSpec_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__11___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__2; static lean_object* l_Lean_Elab_Tactic_Do_elabTermIntoSpecTheorem___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__8(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -163,19 +163,17 @@ lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_assumptionPure(lean_object*, static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__6___closed__0; lean_object* l_Lean_Elab_Term_throwTypeMismatchError___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isAppOf(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__0; lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__7; uint8_t l_Lean_Name_quickLt(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__2; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__14(lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_cleanupAnnotations(lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__19___closed__0; -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_findSpec_spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabTermIntoSpecTheorem___closed__5; @@ -223,9 +221,8 @@ static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__1 LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_findSpec_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__2___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Core_instMonadOptionsCoreM___lam__0___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__8; uint8_t l_Lean_Expr_hasMVar(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0_spec__1_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___redArg___lam__0___closed__0; @@ -233,7 +230,6 @@ static lean_object* l_List_mapTR_loop___at___Lean_Elab_Tactic_Do_findSpec_spec__ LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_findSpec_spec__3_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__0(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25___closed__0; lean_object* l_Lean_mkApp6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_reprFast(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__2(lean_object*, lean_object*, lean_object*); @@ -244,9 +240,9 @@ static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__2 LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__23___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25(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_Elab_Tactic_Do_mSpec___redArg___lam__24___closed__0; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__17_spec__17_spec__17_spec__17___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getMainGoal___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_findSpec_spec__9(size_t, size_t, lean_object*); @@ -268,12 +264,9 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_findSpec_s LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8_spec__8_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__12(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__10(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__13_spec__13_spec__13___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6___redArg___lam__0___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__11(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*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mkPreTag(lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__6; @@ -284,14 +277,14 @@ lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__20____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; lean_object* l_Lean_MessageData_ofSyntax(lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_findSpec___closed__11; -static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__2; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__17___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8_spec__8_spec__8___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__0; LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_findSpec_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabSpec___closed__2; -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__4; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6(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_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__9___closed__0; lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -302,7 +295,6 @@ static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_ static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__3; static lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_findSpec_spec__6___closed__2; static lean_object* l_List_mapTR_loop___at___Lean_Elab_Tactic_Do_findSpec_spec__10___closed__6; -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__3; static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__20___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withMVarContextImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -310,11 +302,11 @@ lean_object* l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(lean_object*, le lean_object* l_Lean_throwError___redArg(lean_object*, lean_object*, lean_object*); lean_object* l_instMonadEIO(lean_object*); lean_object* l_Lean_Meta_isDefEqGuarded(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___lam__0(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_Elab_Tactic_Do_dischargeMGoal___redArg___lam__0___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__13___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__2; static lean_object* l_Lean_Elab_Tactic_Do_elabSpec___closed__13; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__14___boxed(lean_object**); lean_object* l_Lean_MessageData_ofFormat(lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_elabMSpecNoBind___regBuiltin_Lean_Elab_Tactic_Do_elabMSpecNoBind__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__24(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -323,10 +315,8 @@ static lean_object* l_Lean_Elab_Tactic_Do_mkPreTag___closed__2; static lean_object* l_Lean_Elab_Tactic_Do_elabSpec___closed__1; static lean_object* l_List_mapTR_loop___at___Lean_Elab_Tactic_Do_findSpec_spec__10___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__17_spec__17_spec__17_spec__17_spec__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getLevel(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___lam__0___closed__0; static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__21____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; static lean_object* l_Lean_Elab_Tactic_Do_elabSpec___closed__4; lean_object* l_Lean_Elab_Tactic_replaceMainGoal___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -345,38 +335,30 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_findSpec_s LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_mkProj_x27___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_to_list(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___lam__0___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_insertionSort_traverse___at___Lean_Elab_Tactic_Do_findSpec_spec__7(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__6(lean_object*, uint8_t, lean_object*, lean_object*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabSpec___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___lam__0___boxed(lean_object**); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__30____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; static lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___redArg___lam__1___closed__0; -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__2; lean_object* l_Lean_Meta_instantiateMVarsIfMVarApp___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_findSpec_spec__6___closed__1; -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__2; +static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__6___closed__0; lean_object* l_Lean_Expr_constName_x21(lean_object*); extern lean_object* l_Lean_instInhabitedExpr; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_instMonadQuotationOfMonadFunctorOfMonadLift___redArg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__4; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__0(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__0(uint8_t, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__5; -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__6; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___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_PersistentArray_push___redArg(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__0; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__5; LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_findSpec_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__14___closed__2; -static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___lam__0(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_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static uint64_t l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__5___redArg___closed__0; @@ -388,21 +370,24 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___l LEAN_EXPORT uint8_t l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__13_spec__13_spec__13_spec__13___redArg___lam__0(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabSpec___closed__5; uint8_t lean_name_eq(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__3; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__1; LEAN_EXPORT lean_object* l_Array_insertionSort_swapLoop___at___Array_insertionSort_traverse___at___Lean_Elab_Tactic_Do_findSpec_spec__7_spec__7(lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_instMonadExceptOf___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__14___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static double l_Lean_addTrace___at___Lean_Elab_Tactic_Do_findSpec_spec__6___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8(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_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__9; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__2; static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__7; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__4; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_matchesNull(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_mkPreTag___closed__0; lean_object* l_Array_extract___redArg(lean_object*, lean_object*, lean_object*); @@ -410,15 +395,14 @@ lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(lean_o LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isIdent(lean_object*); static lean_object* l_List_mapTR_loop___at___Lean_Elab_Tactic_Do_findSpec_spec__10___closed__3; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8(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_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___Lean_Elab_Tactic_Do_findSpec_spec__0(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__26____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg(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_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__1; lean_object* l_Lean_Expr_appFn_x21(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_findSpec_spec__3___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabSpec___closed__7; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_findSpec_spec__11___lam__0___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -426,15 +410,15 @@ lean_object* l_ReaderT_instMonadExceptOf___redArg___lam__0___boxed(lean_object*, static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__9____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__19____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; lean_object* l_Lean_Elab_Tactic_getMainTag___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__15(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__5___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__2; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__1; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__2; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___Lean_Elab_Tactic_Do_findSpec_spec__0___redArg___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__9; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__15___boxed(lean_object**); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__10; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__16____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; lean_object* l_StateRefT_x27_lift___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -445,6 +429,7 @@ lean_object* l_Lean_MessageData_ofExpr(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecProof_instantiate(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24(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___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_elabMSpecNoBind___regBuiltin_Lean_Elab_Tactic_Do_elabMSpecNoBind__1___closed__2; extern lean_object* l_Lean_Core_instMonadQuotationCoreM; lean_object* l_Lean_Meta_withLocalDeclD___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -458,21 +443,25 @@ static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__14___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppNumArgs(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__4; static lean_object* l_Lean_Elab_Tactic_Do_elabSpec___closed__15; lean_object* l_Lean_Name_mkStr6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Substring_nextn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Context_config(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__0; static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__5___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__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*); static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__10; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__9(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__9(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_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_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__13(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_Do_elabSpec___closed__20; static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; static lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___redArg___closed__1; LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_findSpec_spec__5___redArg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; +static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___closed__0; static lean_object* l_Lean_Elab_Tactic_Do_findSpec___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__3(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_Do_dischargePostEntails___redArg___lam__7___closed__0; @@ -483,7 +472,6 @@ lean_object* l_Lean_Expr_constLevels_x21(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__14(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__15___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__13_spec__13_spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25___closed__1; static lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___redArg___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__16___boxed(lean_object**); static lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___redArg___closed__2; @@ -491,7 +479,7 @@ lean_object* l_Lean_Expr_appFnCleanup___redArg(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_findSpec_spec__9___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__1(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_findSpec___closed__13; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__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*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_Elab_Tactic_Do_elabTermIntoSpecTheorem___closed__3; static lean_object* l_List_mapTR_loop___at___Lean_Elab_Tactic_Do_findSpec_spec__10___closed__5; static lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_findSpec_spec__11___lam__0___closed__0; @@ -506,15 +494,15 @@ lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___redArg___lam__2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0_spec__3___lam__0___boxed(lean_object**); static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkCollisionNode___redArg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Core_instMonadNameGeneratorCoreM; lean_object* l_Lean_Meta_decLevel(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__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*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__1(uint8_t, lean_object*, uint8_t); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l_Lean_Meta_synthInstance_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0___closed__0; lean_object* l_ReaderT_instMonadFunctor___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__13_spec__13_spec__13_spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__1(lean_object*, lean_object*); @@ -523,6 +511,7 @@ static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__1 LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0_spec__1_spec__1___redArg___lam__0(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_Name_mkStr2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__17_spec__17_spec__17_spec__19___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__13_spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabSpec___closed__8; lean_object* l_Lean_indentExpr(lean_object*); @@ -559,7 +548,6 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_fi static lean_object* l_Lean_Elab_Tactic_Do_findSpec___closed__9; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__24___redArg(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__0; lean_object* l_List_reverse___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__18___closed__0; @@ -570,20 +558,21 @@ static size_t l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabSpec(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_Do_SpecAttr_mkSpecTheoremFromStx(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__15(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_Elab_Tactic_Do_findSpec_spec__0_spec__0___redArg(lean_object*, size_t, lean_object*); lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabMSpecNoBind___closed__0; uint64_t lean_uint64_shift_left(uint64_t, uint64_t); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___lam__0___closed__1; static lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___redArg___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__17_spec__17_spec__17___redArg___closed__0; lean_object* l_Lean_instAddErrorMessageContextOfAddMessageContextOfMonad___redArg(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___Lean_Elab_Tactic_Do_findSpec_spec__0___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_throwTypeMismatchError___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__11___boxed(lean_object**); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; lean_object* l_Lean_monadNameGeneratorLift___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -591,6 +580,7 @@ static size_t l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0_spec__1_spec__1(lean_object*, lean_object*, uint8_t, 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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_mkProj_x27___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_Elab_Tactic_Do_findSpec_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___lam__0___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___redArg___lam__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*); static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__14____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__24____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; @@ -606,7 +596,11 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_ lean_object* l_Lean_instantiateMVarsCore(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_getCollisionNodeSize___redArg(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__5; +static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___lam__0___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); static lean_object* l_Lean_Elab_Tactic_Do_findSpec___closed__3; lean_object* l_Lean_Meta_DiscrTree_getMatch___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -619,6 +613,7 @@ static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_ lean_object* l_Lean_Expr_fvar___override(lean_object*); size_t lean_array_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__16___boxed(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_Do_dischargeFailEntails___redArg___closed__3; static lean_object* l_Lean_Elab_Tactic_Do_elabSpec___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__0(lean_object*); @@ -637,7 +632,6 @@ static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__8 lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Core_instMonadCoreM___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_findSpec___closed__8; -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__7; static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__12; static lean_object* l_Lean_Elab_Tactic_Do_findSpec___closed__7; lean_object* lean_string_append(lean_object*, lean_object*); @@ -647,32 +641,31 @@ static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__17_spec__17_spec__17_spec__17_spec__17___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_Expr_headBeta(lean_object*); lean_object* lean_array_get_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_pushForallContextIntoHyps(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__14___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__9___closed__0; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); extern lean_object* l_Lean_Meta_instAddMessageContextMetaM; extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__7___closed__1; uint8_t lean_usize_dec_lt(size_t, size_t); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__4; static lean_object* l_Lean_Elab_Tactic_Do_elabSpec___closed__18; static lean_object* l_List_mapTR_loop___at___Lean_Elab_Tactic_Do_findSpec_spec__10___closed__1; lean_object* l_Lean_Meta_isDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__16(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_Elab_Tactic_Do_findSpec_spec__0_spec__0(lean_object*, lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLambdaFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__0; uint64_t l_Lean_Meta_TransparencyMode_toUInt64(uint8_t); lean_object* lean_nat_add(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__3; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__17_spec__17_spec__17_spec__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8_spec__8_spec__8(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_findSpec_spec__11___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*); @@ -680,34 +673,32 @@ uint8_t l_Lean_Exception_isRuntime(lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabSpec___closed__21; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__1; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_findSpec_spec__11___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_elabTermIntoSpecTheorem_spec__1(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_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__5___closed__1; static lean_object* l_Lean_Elab_Tactic_Do_findSpec___closed__12; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__0___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_(lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_findSpec_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__13_spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint64_t l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(lean_object*); lean_object* l_Lean_Expr_consumeMData(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6___lam__0___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___boxed(lean_object**); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__17___closed__0; static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__15____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__13_spec__13_spec__13_spec__13___redArg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l_ReaderT_instMonadLift___lam__0___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofName(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__3; static lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_findSpec_spec__11___closed__1; lean_object* l_Lean_Meta_instMonadMetaM___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_mapTR_loop___at___Lean_Elab_Tactic_Do_findSpec_spec__10___closed__4; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_transferHypNames(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_elabSpec___closed__17; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); @@ -718,17 +709,19 @@ static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_ static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0_spec__3___closed__3; static lean_object* l_Lean_Elab_Tactic_Do_elabSpec___closed__6; static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__10___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__12___boxed(lean_object**); +static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8_spec__8_spec__8___redArg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__23(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); size_t lean_usize_land(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6___redArg(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_whnfR(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0_spec__3___lam__0(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__23___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__6___boxed(lean_object**); +static lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___closed__1; LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getNumHeadLambdas(lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_elabTermIntoSpecTheorem_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -10588,16 +10581,7 @@ return x_3; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__0(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_ctor_get(x_1, 1); -lean_inc(x_2); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__1(uint8_t x_1, lean_object* x_2, uint8_t x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__0(uint8_t x_1, lean_object* x_2, uint8_t x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; @@ -10610,12 +10594,12 @@ x_7 = lean_apply_2(x_2, lean_box(0), x_6); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6) { _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; x_7 = lean_box(x_6); -x_8 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__1___boxed), 3, 2); +x_8 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__0___boxed), 3, 2); lean_closure_set(x_8, 0, x_7); lean_closure_set(x_8, 1, x_1); x_9 = lean_alloc_closure((void*)(l_Lean_Meta_isDefEqGuarded), 7, 2); @@ -10626,21 +10610,17 @@ x_11 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_10, x_8); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = lean_apply_1(x_4, x_1); x_7 = lean_apply_1(x_2, x_6); -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); -x_10 = lean_apply_2(x_3, lean_box(0), x_9); -return x_10; +x_8 = lean_apply_2(x_3, lean_box(0), x_7); +return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -10648,7 +10628,7 @@ x_4 = lean_apply_2(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__0() { _start: { lean_object* x_1; @@ -10656,7 +10636,7 @@ x_1 = lean_mk_string_unchecked("SPred", 5, 5); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__1() { _start: { lean_object* x_1; @@ -10664,13 +10644,13 @@ x_1 = lean_mk_string_unchecked("trans", 5, 5); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5(lean_object* x_1, lean_object* x_2, lean_object* 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) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4(lean_object* x_1, lean_object* x_2, lean_object* 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_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_12 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__0; +x_12 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__0; x_13 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__2___closed__0; -x_14 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__1; +x_14 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__1; x_15 = l_Lean_Name_mkStr5(x_1, x_2, x_12, x_13, x_14); x_16 = l_Lean_Expr_const___override(x_15, x_3); x_17 = l_Lean_Expr_betaRev(x_4, x_5, x_6, x_6); @@ -10680,7 +10660,7 @@ x_20 = l_Lean_mkApp6(x_16, x_9, x_10, x_17, x_18, x_11, x_19); return x_20; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -10688,7 +10668,7 @@ x_4 = lean_apply_2(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__6___closed__0() { _start: { lean_object* x_1; @@ -10696,11 +10676,11 @@ x_1 = lean_mk_string_unchecked("mono", 4, 4); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7(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, uint8_t x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__6(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, uint8_t x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { _start: { lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_20 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___closed__0; +x_20 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__6___closed__0; lean_inc_ref(x_2); lean_inc_ref(x_1); x_21 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_20); @@ -10708,7 +10688,7 @@ lean_inc(x_4); x_22 = l_Lean_Expr_const___override(x_21, x_4); x_23 = l_Lean_mkApp6(x_22, x_5, x_6, x_7, x_8, x_9, x_19); x_24 = lean_box(x_12); -x_25 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___boxed), 11, 10); +x_25 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___boxed), 11, 10); lean_closure_set(x_25, 0, x_1); lean_closure_set(x_25, 1, x_2); lean_closure_set(x_25, 2, x_4); @@ -10719,7 +10699,7 @@ lean_closure_set(x_25, 6, x_13); lean_closure_set(x_25, 7, x_23); lean_closure_set(x_25, 8, x_14); lean_closure_set(x_25, 9, x_15); -x_26 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__6), 3, 2); +x_26 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5), 3, 2); lean_closure_set(x_26, 0, x_16); lean_closure_set(x_26, 1, x_25); x_27 = lean_box(0); @@ -10728,7 +10708,7 @@ x_29 = lean_apply_4(x_18, lean_box(0), lean_box(0), x_28, x_26); return x_29; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___closed__0() { _start: { lean_object* x_1; @@ -10736,7 +10716,7 @@ x_1 = lean_mk_string_unchecked("PredTrans", 9, 9); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___closed__1() { _start: { lean_object* x_1; @@ -10744,17 +10724,17 @@ x_1 = lean_mk_string_unchecked("apply", 5, 5); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, uint8_t x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, uint8_t x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, uint8_t x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, uint8_t x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25) { _start: { lean_object* x_26; lean_object* x_27; lean_object* x_41; lean_inc_ref(x_2); -x_26 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__3___boxed), 5, 3); +x_26 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__2___boxed), 5, 3); lean_closure_set(x_26, 0, x_1); lean_closure_set(x_26, 1, x_24); lean_closure_set(x_26, 2, x_2); lean_inc_ref(x_26); -x_41 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4), 3, 2); +x_41 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__3), 3, 2); lean_closure_set(x_41, 0, x_26); lean_closure_set(x_41, 1, x_3); if (x_5 == 0) @@ -10820,8 +10800,8 @@ goto block_45; block_40: { lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_28 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___closed__0; -x_29 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___closed__1; +x_28 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___closed__0; +x_29 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___closed__1; lean_inc_ref(x_8); lean_inc_ref(x_7); x_30 = l_Lean_Name_mkStr4(x_7, x_8, x_28, x_29); @@ -10848,7 +10828,7 @@ lean_inc_ref(x_14); lean_inc_ref(x_13); lean_inc_ref(x_11); lean_inc_ref(x_10); -x_37 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___boxed), 19, 18); +x_37 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__6___boxed), 19, 18); lean_closure_set(x_37, 0, x_7); lean_closure_set(x_37, 1, x_8); lean_closure_set(x_37, 2, x_28); @@ -10881,13 +10861,13 @@ return x_44; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_12 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__0; +x_12 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__0; x_13 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__2___closed__0; -x_14 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__1; +x_14 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__1; x_15 = l_Lean_Name_mkStr5(x_1, x_2, x_12, x_13, x_14); x_16 = lean_box(0); x_17 = lean_alloc_ctor(1, 2, 0); @@ -10901,7 +10881,7 @@ lean_closure_set(x_19, 2, x_5); lean_closure_set(x_19, 3, x_6); lean_closure_set(x_19, 4, x_7); lean_closure_set(x_19, 5, x_11); -x_20 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4), 3, 2); +x_20 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__3), 3, 2); lean_closure_set(x_20, 0, x_8); lean_closure_set(x_20, 1, x_19); x_21 = lean_box(0); @@ -10910,7 +10890,7 @@ x_23 = lean_apply_4(x_10, lean_box(0), lean_box(0), x_22, x_20); return x_23; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__9___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___closed__0() { _start: { lean_object* x_1; @@ -10919,7 +10899,7 @@ lean_closure_set(x_1, 0, lean_box(0)); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24) { _start: { 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; uint8_t x_36; @@ -10928,7 +10908,7 @@ lean_inc(x_25); x_26 = lean_ctor_get(x_24, 1); lean_inc(x_26); lean_dec_ref(x_24); -x_27 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__9___closed__0; +x_27 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___closed__0; x_28 = lean_box(x_4); x_29 = lean_box(x_14); lean_inc(x_20); @@ -10943,7 +10923,7 @@ lean_inc_ref(x_5); lean_inc(x_26); lean_inc_ref(x_3); lean_inc_ref(x_2); -x_30 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___boxed), 25, 23); +x_30 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___boxed), 25, 23); lean_closure_set(x_30, 0, x_1); lean_closure_set(x_30, 1, x_2); lean_closure_set(x_30, 2, x_27); @@ -10968,7 +10948,7 @@ lean_closure_set(x_30, 20, x_19); lean_closure_set(x_30, 21, x_25); lean_closure_set(x_30, 22, x_20); lean_inc_ref(x_30); -x_31 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4), 3, 2); +x_31 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__3), 3, 2); lean_closure_set(x_31, 0, x_30); lean_closure_set(x_31, 1, x_27); x_36 = lean_unbox(x_25); @@ -11001,7 +10981,7 @@ lean_inc_ref(x_16); lean_inc_ref(x_21); lean_inc_ref(x_15); lean_inc(x_7); -x_37 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__11), 11, 10); +x_37 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__10), 11, 10); lean_closure_set(x_37, 0, x_5); lean_closure_set(x_37, 1, x_6); lean_closure_set(x_37, 2, x_7); @@ -11068,7 +11048,7 @@ return x_34; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__10(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, lean_object* x_8) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__9(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, lean_object* x_8) { _start: { lean_object* x_9; uint8_t x_10; @@ -11228,7 +11208,167 @@ return x_58; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__12(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, lean_object* x_8) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__11(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, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24) { +_start: +{ +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; 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_inc_ref(x_4); +lean_inc_ref(x_3); +lean_inc_ref(x_2); +lean_inc_ref(x_24); +lean_inc_ref(x_1); +x_25 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__1___boxed), 6, 5); +lean_closure_set(x_25, 0, x_1); +lean_closure_set(x_25, 1, x_24); +lean_closure_set(x_25, 2, x_2); +lean_closure_set(x_25, 3, x_3); +lean_closure_set(x_25, 4, x_4); +x_26 = 0; +x_27 = l_Lean_Expr_betaRev(x_5, x_6, x_26, x_26); +x_28 = l_Lean_Expr_betaRev(x_7, x_6, x_26, x_26); +x_29 = lean_box(x_8); +x_30 = lean_box(x_26); +lean_inc_ref(x_19); +lean_inc_ref(x_3); +lean_inc_ref(x_27); +lean_inc_ref(x_4); +x_31 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___boxed), 24, 23); +lean_closure_set(x_31, 0, x_28); +lean_closure_set(x_31, 1, x_1); +lean_closure_set(x_31, 2, x_4); +lean_closure_set(x_31, 3, x_29); +lean_closure_set(x_31, 4, x_9); +lean_closure_set(x_31, 5, x_10); +lean_closure_set(x_31, 6, x_11); +lean_closure_set(x_31, 7, x_12); +lean_closure_set(x_31, 8, x_13); +lean_closure_set(x_31, 9, x_14); +lean_closure_set(x_31, 10, x_24); +lean_closure_set(x_31, 11, x_2); +lean_closure_set(x_31, 12, x_6); +lean_closure_set(x_31, 13, x_30); +lean_closure_set(x_31, 14, x_15); +lean_closure_set(x_31, 15, x_27); +lean_closure_set(x_31, 16, x_16); +lean_closure_set(x_31, 17, x_17); +lean_closure_set(x_31, 18, x_3); +lean_closure_set(x_31, 19, x_18); +lean_closure_set(x_31, 20, x_19); +lean_closure_set(x_31, 21, x_20); +lean_closure_set(x_31, 22, x_21); +x_32 = lean_alloc_closure((void*)(l_Lean_Meta_isDefEqGuarded), 7, 2); +lean_closure_set(x_32, 0, x_27); +lean_closure_set(x_32, 1, x_19); +x_33 = lean_apply_2(x_3, lean_box(0), x_32); +lean_inc_ref(x_4); +x_34 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_33, x_25); +x_35 = lean_box(x_8); +x_36 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__9___boxed), 8, 2); +lean_closure_set(x_36, 0, x_35); +lean_closure_set(x_36, 1, x_34); +x_37 = lean_apply_2(x_22, lean_box(0), x_36); +x_38 = lean_apply_1(x_23, lean_box(0)); +lean_inc_ref(x_4); +x_39 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_37, x_38); +x_40 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_39, x_31); +return x_40; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__12(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24) { +_start: +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_25 = lean_box(x_7); +lean_inc_ref(x_4); +lean_inc_ref(x_3); +x_26 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__11___boxed), 24, 23); +lean_closure_set(x_26, 0, x_1); +lean_closure_set(x_26, 1, x_2); +lean_closure_set(x_26, 2, x_3); +lean_closure_set(x_26, 3, x_4); +lean_closure_set(x_26, 4, x_24); +lean_closure_set(x_26, 5, x_5); +lean_closure_set(x_26, 6, x_6); +lean_closure_set(x_26, 7, x_25); +lean_closure_set(x_26, 8, x_8); +lean_closure_set(x_26, 9, x_9); +lean_closure_set(x_26, 10, x_10); +lean_closure_set(x_26, 11, x_11); +lean_closure_set(x_26, 12, x_12); +lean_closure_set(x_26, 13, x_13); +lean_closure_set(x_26, 14, x_14); +lean_closure_set(x_26, 15, x_15); +lean_closure_set(x_26, 16, x_16); +lean_closure_set(x_26, 17, x_17); +lean_closure_set(x_26, 18, x_18); +lean_closure_set(x_26, 19, x_19); +lean_closure_set(x_26, 20, x_20); +lean_closure_set(x_26, 21, x_21); +lean_closure_set(x_26, 22, x_22); +x_27 = lean_alloc_closure((void*)(l_Lean_Meta_instantiateMVarsIfMVarApp___boxed), 6, 1); +lean_closure_set(x_27, 0, x_23); +x_28 = lean_apply_2(x_3, lean_box(0), x_27); +x_29 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_28, x_26); +return x_29; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__13(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 = lean_alloc_closure((void*)(l_Lean_Meta_instantiateMVarsIfMVarApp___boxed), 6, 1); +lean_closure_set(x_6, 0, x_1); +x_7 = lean_apply_2(x_2, lean_box(0), x_6); +x_8 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_7, x_4); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__14(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_apply_1(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__16(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, uint8_t x_9) { +_start: +{ +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +lean_dec_ref(x_8); +lean_dec_ref(x_7); +x_10 = lean_box(0); +x_11 = lean_box(0); +x_12 = lean_alloc_closure((void*)(l_Lean_Elab_Term_throwTypeMismatchError___boxed), 12, 7); +lean_closure_set(x_12, 0, lean_box(0)); +lean_closure_set(x_12, 1, x_10); +lean_closure_set(x_12, 2, x_1); +lean_closure_set(x_12, 3, x_2); +lean_closure_set(x_12, 4, x_3); +lean_closure_set(x_12, 5, x_11); +lean_closure_set(x_12, 6, x_10); +x_13 = lean_apply_2(x_4, lean_box(0), x_12); +x_14 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_13, x_6); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_15 = lean_box(0); +x_16 = lean_apply_2(x_7, lean_box(0), x_15); +x_17 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_16, x_8); +return x_17; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__15(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, lean_object* x_8) { _start: { lean_object* x_9; uint8_t x_10; @@ -11385,176 +11525,7 @@ return x_61; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__13(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, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24) { -_start: -{ -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; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; -lean_inc_ref(x_4); -lean_inc_ref(x_3); -lean_inc_ref(x_2); -lean_inc_ref(x_24); -lean_inc_ref(x_1); -x_25 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__2___boxed), 6, 5); -lean_closure_set(x_25, 0, x_1); -lean_closure_set(x_25, 1, x_24); -lean_closure_set(x_25, 2, x_2); -lean_closure_set(x_25, 3, x_3); -lean_closure_set(x_25, 4, x_4); -x_26 = 0; -x_27 = l_Lean_Expr_betaRev(x_5, x_6, x_26, x_26); -x_28 = l_Lean_Expr_betaRev(x_7, x_6, x_26, x_26); -x_29 = lean_box(x_8); -x_30 = lean_box(x_26); -lean_inc_ref(x_19); -lean_inc_ref(x_3); -lean_inc_ref(x_27); -lean_inc_ref(x_4); -x_31 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__9___boxed), 24, 23); -lean_closure_set(x_31, 0, x_28); -lean_closure_set(x_31, 1, x_1); -lean_closure_set(x_31, 2, x_4); -lean_closure_set(x_31, 3, x_29); -lean_closure_set(x_31, 4, x_9); -lean_closure_set(x_31, 5, x_10); -lean_closure_set(x_31, 6, x_11); -lean_closure_set(x_31, 7, x_12); -lean_closure_set(x_31, 8, x_13); -lean_closure_set(x_31, 9, x_14); -lean_closure_set(x_31, 10, x_24); -lean_closure_set(x_31, 11, x_2); -lean_closure_set(x_31, 12, x_6); -lean_closure_set(x_31, 13, x_30); -lean_closure_set(x_31, 14, x_15); -lean_closure_set(x_31, 15, x_27); -lean_closure_set(x_31, 16, x_16); -lean_closure_set(x_31, 17, x_17); -lean_closure_set(x_31, 18, x_3); -lean_closure_set(x_31, 19, x_18); -lean_closure_set(x_31, 20, x_19); -lean_closure_set(x_31, 21, x_20); -lean_closure_set(x_31, 22, x_21); -x_32 = lean_alloc_closure((void*)(l_Lean_Meta_isDefEqGuarded), 7, 2); -lean_closure_set(x_32, 0, x_27); -lean_closure_set(x_32, 1, x_19); -x_33 = lean_apply_2(x_3, lean_box(0), x_32); -lean_inc_ref(x_4); -x_34 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_33, x_25); -x_35 = lean_box(x_8); -x_36 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__10___boxed), 8, 2); -lean_closure_set(x_36, 0, x_35); -lean_closure_set(x_36, 1, x_34); -lean_inc_ref(x_22); -x_37 = lean_apply_2(x_22, lean_box(0), x_36); -x_38 = lean_apply_1(x_23, lean_box(0)); -lean_inc_ref(x_4); -lean_inc_ref(x_38); -x_39 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_37, x_38); -x_40 = lean_box(x_8); -x_41 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__12___boxed), 8, 2); -lean_closure_set(x_41, 0, x_40); -lean_closure_set(x_41, 1, x_39); -x_42 = lean_apply_2(x_22, lean_box(0), x_41); -lean_inc_ref(x_4); -x_43 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_42, x_38); -x_44 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_43, x_31); -return x_44; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__14(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24) { -_start: -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_25 = lean_box(x_7); -lean_inc_ref(x_4); -lean_inc_ref(x_3); -x_26 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__13___boxed), 24, 23); -lean_closure_set(x_26, 0, x_1); -lean_closure_set(x_26, 1, x_2); -lean_closure_set(x_26, 2, x_3); -lean_closure_set(x_26, 3, x_4); -lean_closure_set(x_26, 4, x_24); -lean_closure_set(x_26, 5, x_5); -lean_closure_set(x_26, 6, x_6); -lean_closure_set(x_26, 7, x_25); -lean_closure_set(x_26, 8, x_8); -lean_closure_set(x_26, 9, x_9); -lean_closure_set(x_26, 10, x_10); -lean_closure_set(x_26, 11, x_11); -lean_closure_set(x_26, 12, x_12); -lean_closure_set(x_26, 13, x_13); -lean_closure_set(x_26, 14, x_14); -lean_closure_set(x_26, 15, x_15); -lean_closure_set(x_26, 16, x_16); -lean_closure_set(x_26, 17, x_17); -lean_closure_set(x_26, 18, x_18); -lean_closure_set(x_26, 19, x_19); -lean_closure_set(x_26, 20, x_20); -lean_closure_set(x_26, 21, x_21); -lean_closure_set(x_26, 22, x_22); -x_27 = lean_alloc_closure((void*)(l_Lean_Meta_instantiateMVarsIfMVarApp___boxed), 6, 1); -lean_closure_set(x_27, 0, x_23); -x_28 = lean_apply_2(x_3, lean_box(0), x_27); -x_29 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_28, x_26); -return x_29; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__15(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 = lean_alloc_closure((void*)(l_Lean_Meta_instantiateMVarsIfMVarApp___boxed), 6, 1); -lean_closure_set(x_6, 0, x_1); -x_7 = lean_apply_2(x_2, lean_box(0), x_6); -x_8 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_7, x_4); -return x_8; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__16(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = lean_apply_1(x_1, x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__18(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, uint8_t x_9) { -_start: -{ -if (x_9 == 0) -{ -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -lean_dec_ref(x_8); -lean_dec_ref(x_7); -x_10 = lean_box(0); -x_11 = lean_box(0); -x_12 = lean_alloc_closure((void*)(l_Lean_Elab_Term_throwTypeMismatchError___boxed), 12, 7); -lean_closure_set(x_12, 0, lean_box(0)); -lean_closure_set(x_12, 1, x_10); -lean_closure_set(x_12, 2, x_1); -lean_closure_set(x_12, 3, x_2); -lean_closure_set(x_12, 4, x_3); -lean_closure_set(x_12, 5, x_11); -lean_closure_set(x_12, 6, x_10); -x_13 = lean_apply_2(x_4, lean_box(0), x_12); -x_14 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_13, x_6); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; -lean_dec_ref(x_6); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_15 = lean_box(0); -x_16 = lean_apply_2(x_7, lean_box(0), x_15); -x_17 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_16, x_8); -return x_17; -} -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___closed__0() { _start: { lean_object* x_1; @@ -11562,16 +11533,16 @@ x_1 = lean_mk_string_unchecked("target not a Triple application ", 32, 32); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___closed__2() { _start: { lean_object* x_1; lean_object* x_2; @@ -11580,7 +11551,7 @@ x_2 = l_Lean_Expr_sort___override(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_30; uint8_t x_31; @@ -11842,7 +11813,7 @@ lean_inc_ref(x_60); x_61 = lean_ctor_get(x_5, 1); lean_inc_ref(x_61); x_62 = l_Lean_Expr_consumeMData(x_59); -x_63 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__2; +x_63 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___closed__2; x_64 = l_Lean_Expr_getAppNumArgs(x_62); lean_inc(x_64); x_65 = lean_mk_array(x_64, x_63); @@ -11865,7 +11836,7 @@ lean_inc(x_19); lean_inc_ref(x_10); lean_inc_ref(x_3); lean_inc_ref(x_9); -x_74 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__14___boxed), 24, 23); +x_74 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__12___boxed), 24, 23); lean_closure_set(x_74, 0, x_9); lean_closure_set(x_74, 1, x_69); lean_closure_set(x_74, 2, x_3); @@ -11891,12 +11862,12 @@ lean_closure_set(x_74, 21, x_61); lean_closure_set(x_74, 22, x_32); lean_inc_ref(x_10); lean_inc_ref(x_3); -x_75 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__15___boxed), 5, 4); +x_75 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__13___boxed), 5, 4); lean_closure_set(x_75, 0, x_35); lean_closure_set(x_75, 1, x_3); lean_closure_set(x_75, 2, x_10); lean_closure_set(x_75, 3, x_74); -x_76 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__16), 2, 1); +x_76 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__14), 2, 1); lean_closure_set(x_76, 0, x_75); x_77 = l_Lean_Elab_Tactic_Do_findSpec___closed__2; x_78 = l_Lean_Expr_constLevels_x21(x_51); @@ -11908,7 +11879,7 @@ lean_inc_ref(x_10); lean_inc_ref(x_3); lean_inc_ref(x_80); lean_inc_ref(x_11); -x_81 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__18___boxed), 9, 8); +x_81 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__16___boxed), 9, 8); lean_closure_set(x_81, 0, x_11); lean_closure_set(x_81, 1, x_80); lean_closure_set(x_81, 2, x_19); @@ -11922,7 +11893,7 @@ lean_closure_set(x_82, 0, x_11); lean_closure_set(x_82, 1, x_80); x_83 = lean_apply_2(x_3, lean_box(0), x_82); x_84 = lean_box(x_55); -x_85 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__12___boxed), 8, 2); +x_85 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__15___boxed), 8, 2); lean_closure_set(x_85, 0, x_84); lean_closure_set(x_85, 1, x_83); x_86 = lean_apply_2(x_60, lean_box(0), x_85); @@ -11942,7 +11913,7 @@ return x_89; block_29: { 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; -x_22 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__1; +x_22 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___closed__1; x_23 = l_Lean_MessageData_ofExpr(x_20); if (lean_is_scalar(x_21)) { x_24 = lean_alloc_ctor(7, 2, 0); @@ -11967,13 +11938,13 @@ return x_28; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__18(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_inc_ref(x_9); lean_inc_ref(x_3); -x_16 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___boxed), 15, 14); +x_16 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___boxed), 15, 14); lean_closure_set(x_16, 0, x_1); lean_closure_set(x_16, 1, x_2); lean_closure_set(x_16, 2, x_3); @@ -11995,7 +11966,7 @@ x_19 = lean_apply_4(x_9, lean_box(0), lean_box(0), x_18, x_16); return x_19; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__20(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19(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; @@ -12003,7 +11974,7 @@ x_6 = l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___redArg(x_1, x_2, x_3, x_5, x_4 return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__21(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__20(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; @@ -12016,7 +11987,7 @@ x_18 = lean_unsigned_to_nat(4u); lean_inc_ref(x_10); lean_inc_ref(x_4); lean_inc_ref(x_3); -x_19 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17), 15, 14); +x_19 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__18), 15, 14); lean_closure_set(x_19, 0, x_1); lean_closure_set(x_19, 1, x_2); lean_closure_set(x_19, 2, x_3); @@ -12034,7 +12005,7 @@ lean_closure_set(x_19, 13, x_16); lean_inc_ref(x_3); lean_inc_ref(x_4); lean_inc_ref(x_10); -x_20 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__20), 5, 4); +x_20 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19), 5, 4); lean_closure_set(x_20, 0, x_10); lean_closure_set(x_20, 1, x_4); lean_closure_set(x_20, 2, x_3); @@ -12048,7 +12019,7 @@ lean_dec(x_22); return x_23; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__22(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__21(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; @@ -12061,7 +12032,7 @@ lean_dec(x_17); x_20 = l_Lean_Expr_getRevArg_x21(x_1, x_19); lean_inc_ref(x_20); lean_inc_ref(x_8); -x_21 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__21___boxed), 15, 14); +x_21 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__20___boxed), 15, 14); lean_closure_set(x_21, 0, x_2); lean_closure_set(x_21, 1, x_3); lean_closure_set(x_21, 2, x_4); @@ -12081,19 +12052,19 @@ x_23 = lean_apply_4(x_8, lean_box(0), lean_box(0), x_22, x_21); return x_23; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24___closed__0() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___closed__1; -x_2 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___closed__1; +x_2 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___closed__0; x_3 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; x_4 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_findSpec_spec__11___lam__0___closed__2; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24___closed__1() { _start: { lean_object* x_1; @@ -12101,16 +12072,16 @@ x_1 = lean_mk_string_unchecked("target not a PredTrans.apply application ", 41, return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25___closed__1; +x_1 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24___closed__1; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; @@ -12124,7 +12095,7 @@ lean_inc_ref(x_3); lean_inc_ref(x_2); lean_inc_ref(x_1); lean_inc_ref(x_14); -x_15 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__22___boxed), 14, 13); +x_15 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__21___boxed), 14, 13); lean_closure_set(x_15, 0, x_14); lean_closure_set(x_15, 1, x_1); lean_closure_set(x_15, 2, x_2); @@ -12141,16 +12112,16 @@ lean_closure_set(x_15, 12, x_11); x_16 = l_Lean_Expr_getAppFn(x_14); x_17 = l_Lean_Expr_constName_x21(x_16); lean_dec_ref(x_16); -x_18 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25___closed__0; +x_18 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24___closed__0; x_19 = lean_name_eq(x_17, x_18); lean_dec(x_17); 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; lean_dec_ref(x_6); -x_20 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__16), 2, 1); +x_20 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__14), 2, 1); lean_closure_set(x_20, 0, x_15); -x_21 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25___closed__2; +x_21 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24___closed__2; x_22 = l_Lean_indentExpr(x_14); x_23 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_23, 0, x_21); @@ -12171,7 +12142,7 @@ lean_dec_ref(x_14); lean_dec_ref(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_29 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__16), 2, 1); +x_29 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__14), 2, 1); lean_closure_set(x_29, 0, x_15); x_30 = lean_box(0); x_31 = lean_apply_2(x_6, lean_box(0), x_30); @@ -12321,7 +12292,7 @@ lean_dec(x_29); x_30 = !lean_is_exclusive(x_28); 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; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; x_31 = lean_ctor_get(x_28, 0); x_32 = lean_ctor_get(x_28, 2); x_33 = lean_ctor_get(x_28, 3); @@ -12363,556 +12334,521 @@ lean_ctor_set(x_49, 1, x_46); lean_ctor_set(x_49, 2, x_48); x_50 = lean_ctor_get(x_1, 0); lean_inc_ref(x_50); -x_51 = lean_ctor_get(x_50, 0); +x_51 = lean_ctor_get(x_4, 3); lean_inc_ref(x_51); x_52 = lean_ctor_get(x_1, 1); lean_inc_ref(x_52); x_53 = lean_ctor_get(x_50, 1); lean_inc_ref(x_53); lean_dec_ref(x_50); -x_54 = lean_ctor_get(x_51, 0); -lean_inc_ref(x_54); +x_54 = l_Lean_instInhabitedExpr; +x_55 = l_Lean_Expr_consumeMData(x_51); lean_dec_ref(x_51); -x_55 = lean_ctor_get(x_4, 3); -lean_inc_ref(x_55); -x_56 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__0___boxed), 1, 0); -x_57 = l_Lean_instInhabitedExpr; -lean_inc_ref(x_1); -lean_inc_ref(x_2); -lean_inc_ref(x_3); -x_58 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25), 12, 11); -lean_closure_set(x_58, 0, x_26); -lean_closure_set(x_58, 1, x_49); -lean_closure_set(x_58, 2, x_3); -lean_closure_set(x_58, 3, x_2); -lean_closure_set(x_58, 4, x_57); -lean_closure_set(x_58, 5, x_53); -lean_closure_set(x_58, 6, x_52); -lean_closure_set(x_58, 7, x_1); -lean_closure_set(x_58, 8, x_6); -lean_closure_set(x_58, 9, x_7); -lean_closure_set(x_58, 10, x_5); -x_59 = l_Lean_Expr_consumeMData(x_55); +x_56 = l_Lean_Expr_getNumHeadLambdas(x_55); lean_dec_ref(x_55); -x_60 = l_Lean_Expr_getNumHeadLambdas(x_59); -lean_dec_ref(x_59); -x_61 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___redArg(x_1, x_2, x_3, x_4, x_60, x_58); -lean_dec(x_60); -x_62 = lean_apply_4(x_54, lean_box(0), lean_box(0), x_56, x_61); -return x_62; +lean_inc_ref(x_1); +lean_inc_ref(x_2); +lean_inc_ref(x_3); +x_57 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24), 12, 11); +lean_closure_set(x_57, 0, x_26); +lean_closure_set(x_57, 1, x_49); +lean_closure_set(x_57, 2, x_3); +lean_closure_set(x_57, 3, x_2); +lean_closure_set(x_57, 4, x_54); +lean_closure_set(x_57, 5, x_53); +lean_closure_set(x_57, 6, x_52); +lean_closure_set(x_57, 7, x_1); +lean_closure_set(x_57, 8, x_6); +lean_closure_set(x_57, 9, x_7); +lean_closure_set(x_57, 10, x_5); +x_58 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___redArg(x_1, x_2, x_3, x_4, x_56, x_57); +lean_dec(x_56); +return x_58; } else { -lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; -x_63 = lean_ctor_get(x_28, 0); -x_64 = lean_ctor_get(x_28, 2); -x_65 = lean_ctor_get(x_28, 3); -x_66 = lean_ctor_get(x_28, 4); -lean_inc(x_66); -lean_inc(x_65); -lean_inc(x_64); -lean_inc(x_63); +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_59 = lean_ctor_get(x_28, 0); +x_60 = lean_ctor_get(x_28, 2); +x_61 = lean_ctor_get(x_28, 3); +x_62 = lean_ctor_get(x_28, 4); +lean_inc(x_62); +lean_inc(x_61); +lean_inc(x_60); +lean_inc(x_59); lean_dec(x_28); -x_67 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__6; -x_68 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__7; -lean_inc_ref(x_63); -x_69 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_69, 0, x_63); -x_70 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_70, 0, x_63); -x_71 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_71, 0, x_69); -lean_ctor_set(x_71, 1, x_70); -x_72 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_72, 0, x_66); -x_73 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_73, 0, x_65); -x_74 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_74, 0, x_64); -x_75 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_75, 0, x_71); -lean_ctor_set(x_75, 1, x_67); -lean_ctor_set(x_75, 2, x_74); -lean_ctor_set(x_75, 3, x_73); -lean_ctor_set(x_75, 4, x_72); -lean_ctor_set(x_26, 1, x_68); -lean_ctor_set(x_26, 0, x_75); -x_76 = l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__5; -x_77 = l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__7; -x_78 = lean_ctor_get(x_77, 0); -lean_inc_ref(x_78); -x_79 = l_Lean_Meta_instAddMessageContextMetaM; +x_63 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__6; +x_64 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__7; +lean_inc_ref(x_59); +x_65 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_65, 0, x_59); +x_66 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_66, 0, x_59); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_65); +lean_ctor_set(x_67, 1, x_66); +x_68 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_68, 0, x_62); +x_69 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_69, 0, x_61); +x_70 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_70, 0, x_60); +x_71 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_71, 0, x_67); +lean_ctor_set(x_71, 1, x_63); +lean_ctor_set(x_71, 2, x_70); +lean_ctor_set(x_71, 3, x_69); +lean_ctor_set(x_71, 4, x_68); +lean_ctor_set(x_26, 1, x_64); +lean_ctor_set(x_26, 0, x_71); +x_72 = l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__5; +x_73 = l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__7; +x_74 = lean_ctor_get(x_73, 0); +lean_inc_ref(x_74); +x_75 = l_Lean_Meta_instAddMessageContextMetaM; lean_inc_ref(x_26); -x_80 = l_Lean_instAddErrorMessageContextOfAddMessageContextOfMonad___redArg(x_79, x_26); -x_81 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_81, 0, x_76); -lean_ctor_set(x_81, 1, x_78); -lean_ctor_set(x_81, 2, x_80); -x_82 = lean_ctor_get(x_1, 0); -lean_inc_ref(x_82); -x_83 = lean_ctor_get(x_82, 0); -lean_inc_ref(x_83); -x_84 = lean_ctor_get(x_1, 1); -lean_inc_ref(x_84); -x_85 = lean_ctor_get(x_82, 1); -lean_inc_ref(x_85); -lean_dec_ref(x_82); -x_86 = lean_ctor_get(x_83, 0); -lean_inc_ref(x_86); +x_76 = l_Lean_instAddErrorMessageContextOfAddMessageContextOfMonad___redArg(x_75, x_26); +x_77 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_77, 0, x_72); +lean_ctor_set(x_77, 1, x_74); +lean_ctor_set(x_77, 2, x_76); +x_78 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_78); +x_79 = lean_ctor_get(x_4, 3); +lean_inc_ref(x_79); +x_80 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_80); +x_81 = lean_ctor_get(x_78, 1); +lean_inc_ref(x_81); +lean_dec_ref(x_78); +x_82 = l_Lean_instInhabitedExpr; +x_83 = l_Lean_Expr_consumeMData(x_79); +lean_dec_ref(x_79); +x_84 = l_Lean_Expr_getNumHeadLambdas(x_83); lean_dec_ref(x_83); -x_87 = lean_ctor_get(x_4, 3); -lean_inc_ref(x_87); -x_88 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__0___boxed), 1, 0); -x_89 = l_Lean_instInhabitedExpr; lean_inc_ref(x_1); lean_inc_ref(x_2); lean_inc_ref(x_3); -x_90 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25), 12, 11); -lean_closure_set(x_90, 0, x_26); -lean_closure_set(x_90, 1, x_81); -lean_closure_set(x_90, 2, x_3); -lean_closure_set(x_90, 3, x_2); -lean_closure_set(x_90, 4, x_89); -lean_closure_set(x_90, 5, x_85); -lean_closure_set(x_90, 6, x_84); -lean_closure_set(x_90, 7, x_1); -lean_closure_set(x_90, 8, x_6); -lean_closure_set(x_90, 9, x_7); -lean_closure_set(x_90, 10, x_5); -x_91 = l_Lean_Expr_consumeMData(x_87); -lean_dec_ref(x_87); -x_92 = l_Lean_Expr_getNumHeadLambdas(x_91); -lean_dec_ref(x_91); -x_93 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___redArg(x_1, x_2, x_3, x_4, x_92, x_90); -lean_dec(x_92); -x_94 = lean_apply_4(x_86, lean_box(0), lean_box(0), x_88, x_93); -return x_94; +x_85 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24), 12, 11); +lean_closure_set(x_85, 0, x_26); +lean_closure_set(x_85, 1, x_77); +lean_closure_set(x_85, 2, x_3); +lean_closure_set(x_85, 3, x_2); +lean_closure_set(x_85, 4, x_82); +lean_closure_set(x_85, 5, x_81); +lean_closure_set(x_85, 6, x_80); +lean_closure_set(x_85, 7, x_1); +lean_closure_set(x_85, 8, x_6); +lean_closure_set(x_85, 9, x_7); +lean_closure_set(x_85, 10, x_5); +x_86 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___redArg(x_1, x_2, x_3, x_4, x_84, x_85); +lean_dec(x_84); +return x_86; } } else { -lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; -x_95 = lean_ctor_get(x_26, 0); -lean_inc(x_95); +lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; +x_87 = lean_ctor_get(x_26, 0); +lean_inc(x_87); lean_dec(x_26); -x_96 = lean_ctor_get(x_95, 0); -lean_inc_ref(x_96); -x_97 = lean_ctor_get(x_95, 2); -lean_inc_ref(x_97); -x_98 = lean_ctor_get(x_95, 3); -lean_inc_ref(x_98); -x_99 = lean_ctor_get(x_95, 4); -lean_inc_ref(x_99); -if (lean_is_exclusive(x_95)) { - lean_ctor_release(x_95, 0); - lean_ctor_release(x_95, 1); - lean_ctor_release(x_95, 2); - lean_ctor_release(x_95, 3); - lean_ctor_release(x_95, 4); - x_100 = x_95; +x_88 = lean_ctor_get(x_87, 0); +lean_inc_ref(x_88); +x_89 = lean_ctor_get(x_87, 2); +lean_inc_ref(x_89); +x_90 = lean_ctor_get(x_87, 3); +lean_inc_ref(x_90); +x_91 = lean_ctor_get(x_87, 4); +lean_inc_ref(x_91); +if (lean_is_exclusive(x_87)) { + lean_ctor_release(x_87, 0); + lean_ctor_release(x_87, 1); + lean_ctor_release(x_87, 2); + lean_ctor_release(x_87, 3); + lean_ctor_release(x_87, 4); + x_92 = x_87; } else { - lean_dec_ref(x_95); - x_100 = lean_box(0); + lean_dec_ref(x_87); + x_92 = lean_box(0); } -x_101 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__6; -x_102 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__7; -lean_inc_ref(x_96); -x_103 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_103, 0, x_96); -x_104 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_104, 0, x_96); -x_105 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_105, 0, x_103); -lean_ctor_set(x_105, 1, x_104); -x_106 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_106, 0, x_99); -x_107 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_107, 0, x_98); -x_108 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_108, 0, x_97); -if (lean_is_scalar(x_100)) { - x_109 = lean_alloc_ctor(0, 5, 0); +x_93 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__6; +x_94 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__7; +lean_inc_ref(x_88); +x_95 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_95, 0, x_88); +x_96 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_96, 0, x_88); +x_97 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_97, 0, x_95); +lean_ctor_set(x_97, 1, x_96); +x_98 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_98, 0, x_91); +x_99 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_99, 0, x_90); +x_100 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_100, 0, x_89); +if (lean_is_scalar(x_92)) { + x_101 = lean_alloc_ctor(0, 5, 0); } else { - x_109 = x_100; + x_101 = x_92; } -lean_ctor_set(x_109, 0, x_105); -lean_ctor_set(x_109, 1, x_101); -lean_ctor_set(x_109, 2, x_108); -lean_ctor_set(x_109, 3, x_107); -lean_ctor_set(x_109, 4, x_106); -x_110 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_110, 0, x_109); -lean_ctor_set(x_110, 1, x_102); -x_111 = l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__5; -x_112 = l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__7; -x_113 = lean_ctor_get(x_112, 0); -lean_inc_ref(x_113); -x_114 = l_Lean_Meta_instAddMessageContextMetaM; +lean_ctor_set(x_101, 0, x_97); +lean_ctor_set(x_101, 1, x_93); +lean_ctor_set(x_101, 2, x_100); +lean_ctor_set(x_101, 3, x_99); +lean_ctor_set(x_101, 4, x_98); +x_102 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_102, 0, x_101); +lean_ctor_set(x_102, 1, x_94); +x_103 = l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__5; +x_104 = l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__7; +x_105 = lean_ctor_get(x_104, 0); +lean_inc_ref(x_105); +x_106 = l_Lean_Meta_instAddMessageContextMetaM; +lean_inc_ref(x_102); +x_107 = l_Lean_instAddErrorMessageContextOfAddMessageContextOfMonad___redArg(x_106, x_102); +x_108 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_108, 0, x_103); +lean_ctor_set(x_108, 1, x_105); +lean_ctor_set(x_108, 2, x_107); +x_109 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_109); +x_110 = lean_ctor_get(x_4, 3); lean_inc_ref(x_110); -x_115 = l_Lean_instAddErrorMessageContextOfAddMessageContextOfMonad___redArg(x_114, x_110); -x_116 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_116, 0, x_111); -lean_ctor_set(x_116, 1, x_113); -lean_ctor_set(x_116, 2, x_115); -x_117 = lean_ctor_get(x_1, 0); -lean_inc_ref(x_117); -x_118 = lean_ctor_get(x_117, 0); -lean_inc_ref(x_118); -x_119 = lean_ctor_get(x_1, 1); -lean_inc_ref(x_119); -x_120 = lean_ctor_get(x_117, 1); -lean_inc_ref(x_120); -lean_dec_ref(x_117); -x_121 = lean_ctor_get(x_118, 0); -lean_inc_ref(x_121); -lean_dec_ref(x_118); -x_122 = lean_ctor_get(x_4, 3); -lean_inc_ref(x_122); -x_123 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__0___boxed), 1, 0); -x_124 = l_Lean_instInhabitedExpr; +x_111 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_111); +x_112 = lean_ctor_get(x_109, 1); +lean_inc_ref(x_112); +lean_dec_ref(x_109); +x_113 = l_Lean_instInhabitedExpr; +x_114 = l_Lean_Expr_consumeMData(x_110); +lean_dec_ref(x_110); +x_115 = l_Lean_Expr_getNumHeadLambdas(x_114); +lean_dec_ref(x_114); lean_inc_ref(x_1); lean_inc_ref(x_2); lean_inc_ref(x_3); -x_125 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25), 12, 11); -lean_closure_set(x_125, 0, x_110); -lean_closure_set(x_125, 1, x_116); -lean_closure_set(x_125, 2, x_3); -lean_closure_set(x_125, 3, x_2); -lean_closure_set(x_125, 4, x_124); -lean_closure_set(x_125, 5, x_120); -lean_closure_set(x_125, 6, x_119); -lean_closure_set(x_125, 7, x_1); -lean_closure_set(x_125, 8, x_6); -lean_closure_set(x_125, 9, x_7); -lean_closure_set(x_125, 10, x_5); -x_126 = l_Lean_Expr_consumeMData(x_122); -lean_dec_ref(x_122); -x_127 = l_Lean_Expr_getNumHeadLambdas(x_126); -lean_dec_ref(x_126); -x_128 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___redArg(x_1, x_2, x_3, x_4, x_127, x_125); -lean_dec(x_127); -x_129 = lean_apply_4(x_121, lean_box(0), lean_box(0), x_123, x_128); -return x_129; +x_116 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24), 12, 11); +lean_closure_set(x_116, 0, x_102); +lean_closure_set(x_116, 1, x_108); +lean_closure_set(x_116, 2, x_3); +lean_closure_set(x_116, 3, x_2); +lean_closure_set(x_116, 4, x_113); +lean_closure_set(x_116, 5, x_112); +lean_closure_set(x_116, 6, x_111); +lean_closure_set(x_116, 7, x_1); +lean_closure_set(x_116, 8, x_6); +lean_closure_set(x_116, 9, x_7); +lean_closure_set(x_116, 10, x_5); +x_117 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___redArg(x_1, x_2, x_3, x_4, x_115, x_116); +lean_dec(x_115); +return x_117; } } else { -lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; -x_130 = lean_ctor_get(x_10, 0); -x_131 = lean_ctor_get(x_10, 2); -x_132 = lean_ctor_get(x_10, 3); -x_133 = lean_ctor_get(x_10, 4); -lean_inc(x_133); -lean_inc(x_132); -lean_inc(x_131); -lean_inc(x_130); +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_118 = lean_ctor_get(x_10, 0); +x_119 = lean_ctor_get(x_10, 2); +x_120 = lean_ctor_get(x_10, 3); +x_121 = lean_ctor_get(x_10, 4); +lean_inc(x_121); +lean_inc(x_120); +lean_inc(x_119); +lean_inc(x_118); lean_dec(x_10); -x_134 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__2; -x_135 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__3; -lean_inc_ref(x_130); -x_136 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_136, 0, x_130); -x_137 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_137, 0, x_130); -x_138 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_138, 0, x_136); -lean_ctor_set(x_138, 1, x_137); -x_139 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_139, 0, x_133); -x_140 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_140, 0, x_132); -x_141 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_141, 0, x_131); -x_142 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_142, 0, x_138); -lean_ctor_set(x_142, 1, x_134); -lean_ctor_set(x_142, 2, x_141); -lean_ctor_set(x_142, 3, x_140); -lean_ctor_set(x_142, 4, x_139); -lean_ctor_set(x_8, 1, x_135); -lean_ctor_set(x_8, 0, x_142); -x_143 = l_ReaderT_instMonad___redArg(x_8); -x_144 = lean_ctor_get(x_143, 0); -lean_inc_ref(x_144); -if (lean_is_exclusive(x_143)) { - lean_ctor_release(x_143, 0); - lean_ctor_release(x_143, 1); - x_145 = x_143; +x_122 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__2; +x_123 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__3; +lean_inc_ref(x_118); +x_124 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_124, 0, x_118); +x_125 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_125, 0, x_118); +x_126 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_126, 0, x_124); +lean_ctor_set(x_126, 1, x_125); +x_127 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_127, 0, x_121); +x_128 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_128, 0, x_120); +x_129 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_129, 0, x_119); +x_130 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_130, 0, x_126); +lean_ctor_set(x_130, 1, x_122); +lean_ctor_set(x_130, 2, x_129); +lean_ctor_set(x_130, 3, x_128); +lean_ctor_set(x_130, 4, x_127); +lean_ctor_set(x_8, 1, x_123); +lean_ctor_set(x_8, 0, x_130); +x_131 = l_ReaderT_instMonad___redArg(x_8); +x_132 = lean_ctor_get(x_131, 0); +lean_inc_ref(x_132); +if (lean_is_exclusive(x_131)) { + lean_ctor_release(x_131, 0); + lean_ctor_release(x_131, 1); + x_133 = x_131; } else { - lean_dec_ref(x_143); - x_145 = lean_box(0); + lean_dec_ref(x_131); + x_133 = lean_box(0); } -x_146 = lean_ctor_get(x_144, 0); -lean_inc_ref(x_146); -x_147 = lean_ctor_get(x_144, 2); -lean_inc_ref(x_147); -x_148 = lean_ctor_get(x_144, 3); +x_134 = lean_ctor_get(x_132, 0); +lean_inc_ref(x_134); +x_135 = lean_ctor_get(x_132, 2); +lean_inc_ref(x_135); +x_136 = lean_ctor_get(x_132, 3); +lean_inc_ref(x_136); +x_137 = lean_ctor_get(x_132, 4); +lean_inc_ref(x_137); +if (lean_is_exclusive(x_132)) { + lean_ctor_release(x_132, 0); + lean_ctor_release(x_132, 1); + lean_ctor_release(x_132, 2); + lean_ctor_release(x_132, 3); + lean_ctor_release(x_132, 4); + x_138 = x_132; +} else { + lean_dec_ref(x_132); + x_138 = lean_box(0); +} +x_139 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__6; +x_140 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__7; +lean_inc_ref(x_134); +x_141 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_141, 0, x_134); +x_142 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_142, 0, x_134); +x_143 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_143, 0, x_141); +lean_ctor_set(x_143, 1, x_142); +x_144 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_144, 0, x_137); +x_145 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_145, 0, x_136); +x_146 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_146, 0, x_135); +if (lean_is_scalar(x_138)) { + x_147 = lean_alloc_ctor(0, 5, 0); +} else { + x_147 = x_138; +} +lean_ctor_set(x_147, 0, x_143); +lean_ctor_set(x_147, 1, x_139); +lean_ctor_set(x_147, 2, x_146); +lean_ctor_set(x_147, 3, x_145); +lean_ctor_set(x_147, 4, x_144); +if (lean_is_scalar(x_133)) { + x_148 = lean_alloc_ctor(0, 2, 0); +} else { + x_148 = x_133; +} +lean_ctor_set(x_148, 0, x_147); +lean_ctor_set(x_148, 1, x_140); +x_149 = l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__5; +x_150 = l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__7; +x_151 = lean_ctor_get(x_150, 0); +lean_inc_ref(x_151); +x_152 = l_Lean_Meta_instAddMessageContextMetaM; lean_inc_ref(x_148); -x_149 = lean_ctor_get(x_144, 4); -lean_inc_ref(x_149); -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); - x_150 = x_144; -} else { - lean_dec_ref(x_144); - x_150 = lean_box(0); -} -x_151 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__6; -x_152 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__7; -lean_inc_ref(x_146); -x_153 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_153, 0, x_146); -x_154 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_154, 0, x_146); -x_155 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_155, 0, x_153); -lean_ctor_set(x_155, 1, x_154); -x_156 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_156, 0, x_149); -x_157 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_157, 0, x_148); -x_158 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_158, 0, x_147); -if (lean_is_scalar(x_150)) { - x_159 = lean_alloc_ctor(0, 5, 0); -} else { - x_159 = x_150; -} -lean_ctor_set(x_159, 0, x_155); -lean_ctor_set(x_159, 1, x_151); -lean_ctor_set(x_159, 2, x_158); -lean_ctor_set(x_159, 3, x_157); -lean_ctor_set(x_159, 4, x_156); -if (lean_is_scalar(x_145)) { - x_160 = lean_alloc_ctor(0, 2, 0); -} else { - x_160 = x_145; -} -lean_ctor_set(x_160, 0, x_159); -lean_ctor_set(x_160, 1, x_152); -x_161 = l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__5; -x_162 = l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__7; -x_163 = lean_ctor_get(x_162, 0); -lean_inc_ref(x_163); -x_164 = l_Lean_Meta_instAddMessageContextMetaM; -lean_inc_ref(x_160); -x_165 = l_Lean_instAddErrorMessageContextOfAddMessageContextOfMonad___redArg(x_164, x_160); -x_166 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_166, 0, x_161); -lean_ctor_set(x_166, 1, x_163); -lean_ctor_set(x_166, 2, x_165); -x_167 = lean_ctor_get(x_1, 0); -lean_inc_ref(x_167); -x_168 = lean_ctor_get(x_167, 0); -lean_inc_ref(x_168); -x_169 = lean_ctor_get(x_1, 1); -lean_inc_ref(x_169); -x_170 = lean_ctor_get(x_167, 1); -lean_inc_ref(x_170); -lean_dec_ref(x_167); -x_171 = lean_ctor_get(x_168, 0); -lean_inc_ref(x_171); -lean_dec_ref(x_168); -x_172 = lean_ctor_get(x_4, 3); -lean_inc_ref(x_172); -x_173 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__0___boxed), 1, 0); -x_174 = l_Lean_instInhabitedExpr; +x_153 = l_Lean_instAddErrorMessageContextOfAddMessageContextOfMonad___redArg(x_152, x_148); +x_154 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_154, 0, x_149); +lean_ctor_set(x_154, 1, x_151); +lean_ctor_set(x_154, 2, x_153); +x_155 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_155); +x_156 = lean_ctor_get(x_4, 3); +lean_inc_ref(x_156); +x_157 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_157); +x_158 = lean_ctor_get(x_155, 1); +lean_inc_ref(x_158); +lean_dec_ref(x_155); +x_159 = l_Lean_instInhabitedExpr; +x_160 = l_Lean_Expr_consumeMData(x_156); +lean_dec_ref(x_156); +x_161 = l_Lean_Expr_getNumHeadLambdas(x_160); +lean_dec_ref(x_160); lean_inc_ref(x_1); lean_inc_ref(x_2); lean_inc_ref(x_3); -x_175 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25), 12, 11); -lean_closure_set(x_175, 0, x_160); -lean_closure_set(x_175, 1, x_166); -lean_closure_set(x_175, 2, x_3); -lean_closure_set(x_175, 3, x_2); -lean_closure_set(x_175, 4, x_174); -lean_closure_set(x_175, 5, x_170); -lean_closure_set(x_175, 6, x_169); -lean_closure_set(x_175, 7, x_1); -lean_closure_set(x_175, 8, x_6); -lean_closure_set(x_175, 9, x_7); -lean_closure_set(x_175, 10, x_5); -x_176 = l_Lean_Expr_consumeMData(x_172); -lean_dec_ref(x_172); -x_177 = l_Lean_Expr_getNumHeadLambdas(x_176); -lean_dec_ref(x_176); -x_178 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___redArg(x_1, x_2, x_3, x_4, x_177, x_175); -lean_dec(x_177); -x_179 = lean_apply_4(x_171, lean_box(0), lean_box(0), x_173, x_178); -return x_179; +x_162 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24), 12, 11); +lean_closure_set(x_162, 0, x_148); +lean_closure_set(x_162, 1, x_154); +lean_closure_set(x_162, 2, x_3); +lean_closure_set(x_162, 3, x_2); +lean_closure_set(x_162, 4, x_159); +lean_closure_set(x_162, 5, x_158); +lean_closure_set(x_162, 6, x_157); +lean_closure_set(x_162, 7, x_1); +lean_closure_set(x_162, 8, x_6); +lean_closure_set(x_162, 9, x_7); +lean_closure_set(x_162, 10, x_5); +x_163 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___redArg(x_1, x_2, x_3, x_4, x_161, x_162); +lean_dec(x_161); +return x_163; } } else { -lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; -x_180 = lean_ctor_get(x_8, 0); -lean_inc(x_180); +lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; +x_164 = lean_ctor_get(x_8, 0); +lean_inc(x_164); lean_dec(x_8); +x_165 = lean_ctor_get(x_164, 0); +lean_inc_ref(x_165); +x_166 = lean_ctor_get(x_164, 2); +lean_inc_ref(x_166); +x_167 = lean_ctor_get(x_164, 3); +lean_inc_ref(x_167); +x_168 = lean_ctor_get(x_164, 4); +lean_inc_ref(x_168); +if (lean_is_exclusive(x_164)) { + lean_ctor_release(x_164, 0); + lean_ctor_release(x_164, 1); + lean_ctor_release(x_164, 2); + lean_ctor_release(x_164, 3); + lean_ctor_release(x_164, 4); + x_169 = x_164; +} else { + lean_dec_ref(x_164); + x_169 = lean_box(0); +} +x_170 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__2; +x_171 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__3; +lean_inc_ref(x_165); +x_172 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_172, 0, x_165); +x_173 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_173, 0, x_165); +x_174 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_174, 0, x_172); +lean_ctor_set(x_174, 1, x_173); +x_175 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_175, 0, x_168); +x_176 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_176, 0, x_167); +x_177 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_177, 0, x_166); +if (lean_is_scalar(x_169)) { + x_178 = lean_alloc_ctor(0, 5, 0); +} else { + x_178 = x_169; +} +lean_ctor_set(x_178, 0, x_174); +lean_ctor_set(x_178, 1, x_170); +lean_ctor_set(x_178, 2, x_177); +lean_ctor_set(x_178, 3, x_176); +lean_ctor_set(x_178, 4, x_175); +x_179 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_179, 0, x_178); +lean_ctor_set(x_179, 1, x_171); +x_180 = l_ReaderT_instMonad___redArg(x_179); x_181 = lean_ctor_get(x_180, 0); lean_inc_ref(x_181); -x_182 = lean_ctor_get(x_180, 2); -lean_inc_ref(x_182); -x_183 = lean_ctor_get(x_180, 3); -lean_inc_ref(x_183); -x_184 = lean_ctor_get(x_180, 4); -lean_inc_ref(x_184); if (lean_is_exclusive(x_180)) { lean_ctor_release(x_180, 0); lean_ctor_release(x_180, 1); - lean_ctor_release(x_180, 2); - lean_ctor_release(x_180, 3); - lean_ctor_release(x_180, 4); - x_185 = x_180; + x_182 = x_180; } else { lean_dec_ref(x_180); - x_185 = lean_box(0); + x_182 = lean_box(0); } -x_186 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__2; -x_187 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__3; -lean_inc_ref(x_181); -x_188 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_188, 0, x_181); -x_189 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_189, 0, x_181); -x_190 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_190, 0, x_188); -lean_ctor_set(x_190, 1, x_189); -x_191 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_191, 0, x_184); -x_192 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_192, 0, x_183); -x_193 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_193, 0, x_182); -if (lean_is_scalar(x_185)) { - x_194 = lean_alloc_ctor(0, 5, 0); +x_183 = lean_ctor_get(x_181, 0); +lean_inc_ref(x_183); +x_184 = lean_ctor_get(x_181, 2); +lean_inc_ref(x_184); +x_185 = lean_ctor_get(x_181, 3); +lean_inc_ref(x_185); +x_186 = lean_ctor_get(x_181, 4); +lean_inc_ref(x_186); +if (lean_is_exclusive(x_181)) { + lean_ctor_release(x_181, 0); + lean_ctor_release(x_181, 1); + lean_ctor_release(x_181, 2); + lean_ctor_release(x_181, 3); + lean_ctor_release(x_181, 4); + x_187 = x_181; } else { - x_194 = x_185; + lean_dec_ref(x_181); + x_187 = lean_box(0); } -lean_ctor_set(x_194, 0, x_190); -lean_ctor_set(x_194, 1, x_186); -lean_ctor_set(x_194, 2, x_193); -lean_ctor_set(x_194, 3, x_192); -lean_ctor_set(x_194, 4, x_191); -x_195 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_195, 0, x_194); -lean_ctor_set(x_195, 1, x_187); -x_196 = l_ReaderT_instMonad___redArg(x_195); -x_197 = lean_ctor_get(x_196, 0); -lean_inc_ref(x_197); -if (lean_is_exclusive(x_196)) { - lean_ctor_release(x_196, 0); - lean_ctor_release(x_196, 1); - x_198 = x_196; +x_188 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__6; +x_189 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__7; +lean_inc_ref(x_183); +x_190 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_190, 0, x_183); +x_191 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_191, 0, x_183); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +x_193 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_193, 0, x_186); +x_194 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_194, 0, x_185); +x_195 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_195, 0, x_184); +if (lean_is_scalar(x_187)) { + x_196 = lean_alloc_ctor(0, 5, 0); } else { - lean_dec_ref(x_196); - x_198 = lean_box(0); + x_196 = x_187; } -x_199 = lean_ctor_get(x_197, 0); -lean_inc_ref(x_199); -x_200 = lean_ctor_get(x_197, 2); +lean_ctor_set(x_196, 0, x_192); +lean_ctor_set(x_196, 1, x_188); +lean_ctor_set(x_196, 2, x_195); +lean_ctor_set(x_196, 3, x_194); +lean_ctor_set(x_196, 4, x_193); +if (lean_is_scalar(x_182)) { + x_197 = lean_alloc_ctor(0, 2, 0); +} else { + x_197 = x_182; +} +lean_ctor_set(x_197, 0, x_196); +lean_ctor_set(x_197, 1, x_189); +x_198 = l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__5; +x_199 = l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__7; +x_200 = lean_ctor_get(x_199, 0); lean_inc_ref(x_200); -x_201 = lean_ctor_get(x_197, 3); -lean_inc_ref(x_201); -x_202 = lean_ctor_get(x_197, 4); -lean_inc_ref(x_202); -if (lean_is_exclusive(x_197)) { - lean_ctor_release(x_197, 0); - lean_ctor_release(x_197, 1); - lean_ctor_release(x_197, 2); - lean_ctor_release(x_197, 3); - lean_ctor_release(x_197, 4); - x_203 = x_197; -} else { - lean_dec_ref(x_197); - x_203 = lean_box(0); -} -x_204 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__6; -x_205 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___closed__7; -lean_inc_ref(x_199); -x_206 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_206, 0, x_199); -x_207 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_207, 0, x_199); -x_208 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_208, 0, x_206); -lean_ctor_set(x_208, 1, x_207); -x_209 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_209, 0, x_202); -x_210 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_210, 0, x_201); -x_211 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_211, 0, x_200); -if (lean_is_scalar(x_203)) { - x_212 = lean_alloc_ctor(0, 5, 0); -} else { - x_212 = x_203; -} -lean_ctor_set(x_212, 0, x_208); -lean_ctor_set(x_212, 1, x_204); -lean_ctor_set(x_212, 2, x_211); -lean_ctor_set(x_212, 3, x_210); -lean_ctor_set(x_212, 4, x_209); -if (lean_is_scalar(x_198)) { - x_213 = lean_alloc_ctor(0, 2, 0); -} else { - x_213 = x_198; -} -lean_ctor_set(x_213, 0, x_212); -lean_ctor_set(x_213, 1, x_205); -x_214 = l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__5; -x_215 = l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__7; -x_216 = lean_ctor_get(x_215, 0); -lean_inc_ref(x_216); -x_217 = l_Lean_Meta_instAddMessageContextMetaM; -lean_inc_ref(x_213); -x_218 = l_Lean_instAddErrorMessageContextOfAddMessageContextOfMonad___redArg(x_217, x_213); -x_219 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_219, 0, x_214); -lean_ctor_set(x_219, 1, x_216); -lean_ctor_set(x_219, 2, x_218); -x_220 = lean_ctor_get(x_1, 0); -lean_inc_ref(x_220); -x_221 = lean_ctor_get(x_220, 0); -lean_inc_ref(x_221); -x_222 = lean_ctor_get(x_1, 1); -lean_inc_ref(x_222); -x_223 = lean_ctor_get(x_220, 1); -lean_inc_ref(x_223); -lean_dec_ref(x_220); -x_224 = lean_ctor_get(x_221, 0); -lean_inc_ref(x_224); -lean_dec_ref(x_221); -x_225 = lean_ctor_get(x_4, 3); -lean_inc_ref(x_225); -x_226 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__0___boxed), 1, 0); -x_227 = l_Lean_instInhabitedExpr; +x_201 = l_Lean_Meta_instAddMessageContextMetaM; +lean_inc_ref(x_197); +x_202 = l_Lean_instAddErrorMessageContextOfAddMessageContextOfMonad___redArg(x_201, x_197); +x_203 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_203, 0, x_198); +lean_ctor_set(x_203, 1, x_200); +lean_ctor_set(x_203, 2, x_202); +x_204 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_204); +x_205 = lean_ctor_get(x_4, 3); +lean_inc_ref(x_205); +x_206 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_206); +x_207 = lean_ctor_get(x_204, 1); +lean_inc_ref(x_207); +lean_dec_ref(x_204); +x_208 = l_Lean_instInhabitedExpr; +x_209 = l_Lean_Expr_consumeMData(x_205); +lean_dec_ref(x_205); +x_210 = l_Lean_Expr_getNumHeadLambdas(x_209); +lean_dec_ref(x_209); lean_inc_ref(x_1); lean_inc_ref(x_2); lean_inc_ref(x_3); -x_228 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25), 12, 11); -lean_closure_set(x_228, 0, x_213); -lean_closure_set(x_228, 1, x_219); -lean_closure_set(x_228, 2, x_3); -lean_closure_set(x_228, 3, x_2); -lean_closure_set(x_228, 4, x_227); -lean_closure_set(x_228, 5, x_223); -lean_closure_set(x_228, 6, x_222); -lean_closure_set(x_228, 7, x_1); -lean_closure_set(x_228, 8, x_6); -lean_closure_set(x_228, 9, x_7); -lean_closure_set(x_228, 10, x_5); -x_229 = l_Lean_Expr_consumeMData(x_225); -lean_dec_ref(x_225); -x_230 = l_Lean_Expr_getNumHeadLambdas(x_229); -lean_dec_ref(x_229); -x_231 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___redArg(x_1, x_2, x_3, x_4, x_230, x_228); -lean_dec(x_230); -x_232 = lean_apply_4(x_224, lean_box(0), lean_box(0), x_226, x_231); -return x_232; +x_211 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24), 12, 11); +lean_closure_set(x_211, 0, x_197); +lean_closure_set(x_211, 1, x_203); +lean_closure_set(x_211, 2, x_3); +lean_closure_set(x_211, 3, x_2); +lean_closure_set(x_211, 4, x_208); +lean_closure_set(x_211, 5, x_207); +lean_closure_set(x_211, 6, x_206); +lean_closure_set(x_211, 7, x_1); +lean_closure_set(x_211, 8, x_6); +lean_closure_set(x_211, 9, x_7); +lean_closure_set(x_211, 10, x_5); +x_212 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___redArg(x_1, x_2, x_3, x_4, x_210, x_211); +lean_dec(x_210); +return x_212; } } } @@ -12924,53 +12860,44 @@ x_9 = l_Lean_Elab_Tactic_Do_mSpec___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__0___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__0(x_1); -lean_dec_ref(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; uint8_t x_5; lean_object* x_6; x_4 = lean_unbox(x_1); x_5 = lean_unbox(x_3); -x_6 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__1(x_4, x_2, x_5); +x_6 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__0(x_4, x_2, x_5); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__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) { _start: { uint8_t x_7; lean_object* x_8; x_7 = lean_unbox(x_6); -x_8 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__2(x_1, x_2, x_3, x_4, x_5, x_7); +x_8 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_7); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__2___boxed(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; -x_6 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__3(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__2(x_1, x_2, x_3, x_4, x_5); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___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; lean_object* x_13; x_12 = lean_unbox(x_6); -x_13 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5(x_1, x_2, x_3, x_4, x_5, x_12, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4(x_1, x_2, x_3, x_4, x_5, x_12, x_7, x_8, x_9, x_10, x_11); lean_dec_ref(x_5); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__6___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -12994,11 +12921,11 @@ _start: { uint8_t x_20; lean_object* x_21; x_20 = lean_unbox(x_12); -x_21 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_20, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +x_21 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_20, x_13, x_14, x_15, x_16, x_17, x_18, x_19); return x_21; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -13031,11 +12958,11 @@ x_26 = lean_unbox(x_5); x_27 = lean_unbox(x_6); x_28 = lean_unbox(x_16); x_29 = lean_unbox(x_22); -x_30 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8(x_1, x_2, x_3, x_4, x_26, x_27, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_28, x_17, x_18, x_19, x_20, x_21, x_29, x_23, x_24, x_25); +x_30 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7(x_1, x_2, x_3, x_4, x_26, x_27, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_28, x_17, x_18, x_19, x_20, x_21, x_29, x_23, x_24, x_25); return x_30; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__9___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -13065,29 +12992,20 @@ _start: uint8_t x_25; uint8_t x_26; lean_object* x_27; x_25 = lean_unbox(x_4); x_26 = lean_unbox(x_14); -x_27 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__9(x_1, x_2, x_3, x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_26, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24); +x_27 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8(x_1, x_2, x_3, x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_26, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24); return x_27; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; lean_object* x_10; x_9 = lean_unbox(x_1); -x_10 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__10(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__9(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__12___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -uint8_t x_9; lean_object* x_10; -x_9 = lean_unbox(x_1); -x_10 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__12(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__13___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__11___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -13116,11 +13034,11 @@ _start: { uint8_t x_25; lean_object* x_26; x_25 = lean_unbox(x_8); -x_26 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__13(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_25, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24); +x_26 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__11(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_25, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24); return x_26; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__14___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__12___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -13149,50 +13067,59 @@ _start: { uint8_t x_25; lean_object* x_26; x_25 = lean_unbox(x_7); -x_26 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__14(x_1, x_2, x_3, x_4, x_5, x_6, x_25, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24); +x_26 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__12(x_1, x_2, x_3, x_4, x_5, x_6, x_25, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24); return x_26; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__15___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__13___boxed(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; -x_6 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__15(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__13(x_1, x_2, x_3, x_4, x_5); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__18___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__16___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_10; lean_object* x_11; x_10 = lean_unbox(x_9); -x_11 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__18(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_10); +x_11 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__16(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_10); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__15___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_1); +x_10 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__15(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_16; -x_16 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_16 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec(x_6); return x_16; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__21___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__20___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_16; -x_16 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__21(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_16 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__20(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec(x_13); return x_16; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__22___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__21___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { lean_object* x_15; -x_15 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__22(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_15 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__21(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec_ref(x_1); return x_15; } @@ -15716,7 +15643,7 @@ x_12 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___a return x_12; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0___closed__0() { _start: { lean_object* x_1; @@ -15724,7 +15651,7 @@ x_1 = lean_mk_string_unchecked("Frame", 5, 5); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0___closed__1() { _start: { lean_object* x_1; @@ -15732,7 +15659,7 @@ x_1 = lean_mk_string_unchecked("frame", 5, 5); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24) { _start: { lean_object* x_25; @@ -15745,70 +15672,59 @@ lean_inc_ref(x_2); x_25 = lean_apply_12(x_1, x_2, x_15, x_3, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24); if (lean_obj_tag(x_25) == 0) { -lean_object* x_26; lean_object* x_27; uint8_t x_28; +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; uint8_t x_31; lean_object* x_32; x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); x_27 = lean_ctor_get(x_25, 1); lean_inc(x_27); lean_dec_ref(x_25); -x_28 = !lean_is_exclusive(x_26); -if (x_28 == 0) -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; uint8_t x_34; lean_object* x_35; -x_29 = lean_ctor_get(x_26, 0); -x_30 = lean_ctor_get(x_26, 1); -x_31 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__7___closed__0; -x_32 = lean_array_push(x_31, x_15); -x_33 = 1; -x_34 = 1; -x_35 = l_Lean_Meta_mkLambdaFVars(x_32, x_30, x_4, x_33, x_4, x_33, x_34, x_20, x_21, x_22, x_23, x_27); +x_28 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__7___closed__0; +x_29 = lean_array_push(x_28, x_15); +x_30 = 1; +x_31 = 1; +x_32 = l_Lean_Meta_mkLambdaFVars(x_29, x_26, x_4, x_30, x_4, x_30, x_31, x_20, x_21, x_22, x_23, x_27); lean_dec(x_23); lean_dec_ref(x_22); lean_dec(x_21); lean_dec_ref(x_20); -lean_dec_ref(x_32); -if (lean_obj_tag(x_35) == 0) +lean_dec_ref(x_29); +if (lean_obj_tag(x_32) == 0) { -uint8_t x_36; -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) +uint8_t x_33; +x_33 = !lean_is_exclusive(x_32); +if (x_33 == 0) { -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_37 = lean_ctor_get(x_35, 0); -x_38 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0___closed__0; -x_39 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0___closed__1; -x_40 = l_Lean_Name_mkStr6(x_5, x_6, x_7, x_8, x_38, x_39); -x_41 = l_Lean_Expr_const___override(x_40, x_9); -x_42 = l_Lean_mkApp7(x_41, x_10, x_11, x_12, x_13, x_2, x_14, x_37); -lean_ctor_set(x_26, 1, x_42); -lean_ctor_set(x_35, 0, x_26); -return x_35; +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_34 = lean_ctor_get(x_32, 0); +x_35 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0___closed__0; +x_36 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0___closed__1; +x_37 = l_Lean_Name_mkStr6(x_5, x_6, x_7, x_8, x_35, x_36); +x_38 = l_Lean_Expr_const___override(x_37, x_9); +x_39 = l_Lean_mkApp7(x_38, x_10, x_11, x_12, x_13, x_2, x_14, x_34); +lean_ctor_set(x_32, 0, x_39); +return x_32; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_43 = lean_ctor_get(x_35, 0); -x_44 = lean_ctor_get(x_35, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_35); -x_45 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0___closed__0; -x_46 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0___closed__1; -x_47 = l_Lean_Name_mkStr6(x_5, x_6, x_7, x_8, x_45, x_46); -x_48 = l_Lean_Expr_const___override(x_47, x_9); -x_49 = l_Lean_mkApp7(x_48, x_10, x_11, x_12, x_13, x_2, x_14, x_43); -lean_ctor_set(x_26, 1, x_49); -x_50 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_50, 0, x_26); -lean_ctor_set(x_50, 1, x_44); -return x_50; +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_40 = lean_ctor_get(x_32, 0); +x_41 = lean_ctor_get(x_32, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_32); +x_42 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0___closed__0; +x_43 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0___closed__1; +x_44 = l_Lean_Name_mkStr6(x_5, x_6, x_7, x_8, x_42, x_43); +x_45 = l_Lean_Expr_const___override(x_44, x_9); +x_46 = l_Lean_mkApp7(x_45, x_10, x_11, x_12, x_13, x_2, x_14, x_40); +x_47 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_47, 1, x_41); +return x_47; } } else { -uint8_t x_51; -lean_free_object(x_26); -lean_dec(x_29); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -15820,112 +15736,7 @@ lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_2); -x_51 = !lean_is_exclusive(x_35); -if (x_51 == 0) -{ -return x_35; -} -else -{ -lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_52 = lean_ctor_get(x_35, 0); -x_53 = lean_ctor_get(x_35, 1); -lean_inc(x_53); -lean_inc(x_52); -lean_dec(x_35); -x_54 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_53); -return x_54; -} -} -} -else -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; uint8_t x_60; lean_object* x_61; -x_55 = lean_ctor_get(x_26, 0); -x_56 = lean_ctor_get(x_26, 1); -lean_inc(x_56); -lean_inc(x_55); -lean_dec(x_26); -x_57 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__7___closed__0; -x_58 = lean_array_push(x_57, x_15); -x_59 = 1; -x_60 = 1; -x_61 = l_Lean_Meta_mkLambdaFVars(x_58, x_56, x_4, x_59, x_4, x_59, x_60, x_20, x_21, x_22, x_23, x_27); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec(x_21); -lean_dec_ref(x_20); -lean_dec_ref(x_58); -if (lean_obj_tag(x_61) == 0) -{ -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; -x_62 = lean_ctor_get(x_61, 0); -lean_inc(x_62); -x_63 = lean_ctor_get(x_61, 1); -lean_inc(x_63); -if (lean_is_exclusive(x_61)) { - lean_ctor_release(x_61, 0); - lean_ctor_release(x_61, 1); - x_64 = x_61; -} else { - lean_dec_ref(x_61); - x_64 = lean_box(0); -} -x_65 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0___closed__0; -x_66 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0___closed__1; -x_67 = l_Lean_Name_mkStr6(x_5, x_6, x_7, x_8, x_65, x_66); -x_68 = l_Lean_Expr_const___override(x_67, x_9); -x_69 = l_Lean_mkApp7(x_68, x_10, x_11, x_12, x_13, x_2, x_14, x_62); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_55); -lean_ctor_set(x_70, 1, x_69); -if (lean_is_scalar(x_64)) { - x_71 = lean_alloc_ctor(0, 2, 0); -} else { - x_71 = x_64; -} -lean_ctor_set(x_71, 0, x_70); -lean_ctor_set(x_71, 1, x_63); -return x_71; -} -else -{ -lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -lean_dec(x_55); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_2); -x_72 = lean_ctor_get(x_61, 0); -lean_inc(x_72); -x_73 = lean_ctor_get(x_61, 1); -lean_inc(x_73); -if (lean_is_exclusive(x_61)) { - lean_ctor_release(x_61, 0); - lean_ctor_release(x_61, 1); - x_74 = x_61; -} else { - lean_dec_ref(x_61); - x_74 = lean_box(0); -} -if (lean_is_scalar(x_74)) { - x_75 = lean_alloc_ctor(1, 2, 0); -} else { - x_75 = x_74; -} -lean_ctor_set(x_75, 0, x_72); -lean_ctor_set(x_75, 1, x_73); -return x_75; -} +return x_32; } } else @@ -15950,28 +15761,28 @@ return x_25; } } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__0() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__2; +x_1 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___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_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__0; x_2 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; x_3 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_findSpec_spec__11___lam__0___closed__2; x_4 = l_Lean_Name_mkStr3(x_3, x_2, x_1); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__2() { _start: { lean_object* x_1; @@ -15979,20 +15790,20 @@ x_1 = lean_mk_string_unchecked("HasFrame", 8, 8); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__3() { _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_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__2; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__2; x_2 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; -x_3 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__0; +x_3 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__0; x_4 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; x_5 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_findSpec_spec__11___lam__0___closed__2; x_6 = l_Lean_Name_mkStr5(x_5, x_4, x_3, x_2, x_1); return x_6; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -16001,17 +15812,17 @@ x_2 = l_Lean_Name_mkStr1(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__5() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__4; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__4; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { uint8_t x_13; @@ -16023,36 +15834,37 @@ x_14 = lean_ctor_get(x_1, 0); x_15 = lean_ctor_get(x_1, 1); x_16 = lean_ctor_get(x_1, 2); x_17 = lean_ctor_get(x_1, 3); -x_18 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__0; +x_18 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__0; x_19 = 0; x_20 = lean_box(0); lean_inc_ref(x_8); x_21 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_18, x_19, x_20, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_21) == 0) { -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_22 = lean_ctor_get(x_21, 0); -lean_inc(x_22); -x_23 = lean_ctor_get(x_21, 1); -lean_inc(x_23); -lean_dec_ref(x_21); -x_24 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_findSpec_spec__11___lam__0___closed__2; -x_25 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; -x_26 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__0; -x_27 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__1; -x_28 = lean_box(0); +uint8_t x_22; +x_22 = !lean_is_exclusive(x_21); +if (x_22 == 0) +{ +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; +x_23 = lean_ctor_get(x_21, 0); +x_24 = lean_ctor_get(x_21, 1); +x_25 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_findSpec_spec__11___lam__0___closed__2; +x_26 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; +x_27 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__0; +x_28 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__1; +x_29 = lean_box(0); lean_inc(x_14); -x_29 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_29, 0, x_14); -lean_ctor_set(x_29, 1, x_28); -lean_inc_ref(x_29); -x_30 = l_Lean_Expr_const___override(x_27, x_29); +lean_ctor_set_tag(x_21, 1); +lean_ctor_set(x_21, 1, x_29); +lean_ctor_set(x_21, 0, x_14); +lean_inc_ref(x_21); +x_30 = l_Lean_Expr_const___override(x_28, x_21); lean_inc_ref(x_15); x_31 = l_Lean_Expr_app___override(x_30, x_15); x_32 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_32, 0, x_31); lean_inc_ref(x_8); -x_33 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_32, x_19, x_20, x_8, x_9, x_10, x_11, x_23); +x_33 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_32, x_19, x_20, x_8, x_9, x_10, x_11, x_24); if (lean_obj_tag(x_33) == 0) { 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; @@ -16062,127 +15874,109 @@ x_35 = lean_ctor_get(x_33, 1); lean_inc(x_35); lean_dec_ref(x_33); x_36 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; -x_37 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__3; -lean_inc_ref(x_29); -x_38 = l_Lean_Expr_const___override(x_37, x_29); -lean_inc(x_22); +x_37 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__3; +lean_inc_ref(x_21); +x_38 = l_Lean_Expr_const___override(x_37, x_21); +lean_inc(x_23); lean_inc(x_34); lean_inc_ref(x_16); lean_inc_ref(x_15); -x_39 = l_Lean_mkApp4(x_38, x_15, x_16, x_34, x_22); +x_39 = l_Lean_mkApp4(x_38, x_15, x_16, x_34, x_23); x_40 = lean_box(0); lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); -x_41 = l_Lean_Meta_synthInstance_x3f(x_39, x_40, x_8, x_9, x_10, x_11, x_35); +x_41 = l_Lean_Meta_trySynthInstance(x_39, x_40, x_8, x_9, x_10, x_11, x_35); if (lean_obj_tag(x_41) == 0) { lean_object* x_42; x_42 = lean_ctor_get(x_41, 0); lean_inc(x_42); -if (lean_obj_tag(x_42) == 0) +if (lean_obj_tag(x_42) == 1) { -lean_object* x_43; lean_object* x_44; -lean_dec(x_34); -lean_dec_ref(x_29); -lean_dec(x_22); -lean_free_object(x_1); -lean_dec_ref(x_17); -lean_dec_ref(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_3); +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; x_43 = lean_ctor_get(x_41, 1); lean_inc(x_43); lean_dec_ref(x_41); -x_44 = lean_apply_9(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_43); -return x_44; -} -else -{ -lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_45 = lean_ctor_get(x_41, 1); -lean_inc(x_45); -lean_dec_ref(x_41); -x_46 = lean_ctor_get(x_42, 0); -lean_inc(x_46); +x_44 = lean_ctor_get(x_42, 0); +lean_inc(x_44); lean_dec_ref(x_42); -x_47 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__5; +x_45 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__5; lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); -lean_inc(x_22); -x_48 = l_Lean_Meta_isExprDefEq(x_47, x_22, x_8, x_9, x_10, x_11, x_45); -if (lean_obj_tag(x_48) == 0) +lean_inc(x_23); +x_46 = l_Lean_Meta_isExprDefEq(x_45, x_23, x_8, x_9, x_10, x_11, x_43); +if (lean_obj_tag(x_46) == 0) { -lean_object* x_49; uint8_t x_50; -x_49 = lean_ctor_get(x_48, 0); -lean_inc(x_49); -x_50 = lean_unbox(x_49); -if (x_50 == 0) +lean_object* x_47; uint8_t x_48; +x_47 = lean_ctor_get(x_46, 0); +lean_inc(x_47); +x_48 = lean_unbox(x_47); +if (x_48 == 0) { -lean_object* x_51; lean_object* x_52; +lean_object* x_49; lean_object* x_50; lean_dec_ref(x_2); -x_51 = lean_ctor_get(x_48, 1); -lean_inc(x_51); -lean_dec_ref(x_48); +x_49 = lean_ctor_get(x_46, 1); +lean_inc(x_49); +lean_dec_ref(x_46); lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); lean_inc_ref(x_16); -x_52 = l_Lean_Elab_Tactic_Do_ProofMode_transferHypNames(x_16, x_34, x_8, x_9, x_10, x_11, x_51); -if (lean_obj_tag(x_52) == 0) +x_50 = l_Lean_Elab_Tactic_Do_ProofMode_transferHypNames(x_16, x_34, x_8, x_9, x_10, x_11, x_49); +if (lean_obj_tag(x_50) == 0) { -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); -lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -lean_dec_ref(x_52); -x_55 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__5___closed__1; -x_56 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_55, x_10, x_11, x_54); -if (lean_obj_tag(x_56) == 0) +lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_51 = lean_ctor_get(x_50, 0); +lean_inc(x_51); +x_52 = lean_ctor_get(x_50, 1); +lean_inc(x_52); +lean_dec_ref(x_50); +x_53 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__5___closed__1; +x_54 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_53, x_10, x_11, x_52); +if (lean_obj_tag(x_54) == 0) { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_56, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_56, 1); -lean_inc(x_58); -lean_dec_ref(x_56); +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +lean_dec_ref(x_54); lean_inc_ref(x_17); -lean_inc(x_53); +lean_inc(x_51); lean_inc_ref(x_15); -lean_ctor_set(x_1, 2, x_53); -lean_inc(x_22); -x_59 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0___boxed), 24, 14); -lean_closure_set(x_59, 0, x_3); -lean_closure_set(x_59, 1, x_22); -lean_closure_set(x_59, 2, x_1); -lean_closure_set(x_59, 3, x_49); -lean_closure_set(x_59, 4, x_24); -lean_closure_set(x_59, 5, x_25); -lean_closure_set(x_59, 6, x_26); -lean_closure_set(x_59, 7, x_36); -lean_closure_set(x_59, 8, x_29); -lean_closure_set(x_59, 9, x_15); -lean_closure_set(x_59, 10, x_16); -lean_closure_set(x_59, 11, x_53); -lean_closure_set(x_59, 12, x_17); -lean_closure_set(x_59, 13, x_46); -x_60 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0_spec__1___redArg(x_57, x_22, x_59, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_58); -return x_60; +lean_ctor_set(x_1, 2, x_51); +lean_inc(x_23); +x_57 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0___boxed), 24, 14); +lean_closure_set(x_57, 0, x_3); +lean_closure_set(x_57, 1, x_23); +lean_closure_set(x_57, 2, x_1); +lean_closure_set(x_57, 3, x_47); +lean_closure_set(x_57, 4, x_25); +lean_closure_set(x_57, 5, x_26); +lean_closure_set(x_57, 6, x_27); +lean_closure_set(x_57, 7, x_36); +lean_closure_set(x_57, 8, x_21); +lean_closure_set(x_57, 9, x_15); +lean_closure_set(x_57, 10, x_16); +lean_closure_set(x_57, 11, x_51); +lean_closure_set(x_57, 12, x_17); +lean_closure_set(x_57, 13, x_44); +x_58 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0_spec__1___redArg(x_55, x_23, x_57, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_56); +return x_58; } else { -uint8_t x_61; -lean_dec(x_53); -lean_dec(x_49); -lean_dec(x_46); -lean_dec_ref(x_29); -lean_dec(x_22); +uint8_t x_59; +lean_dec(x_51); +lean_dec(x_47); +lean_dec(x_44); +lean_dec_ref(x_21); +lean_dec(x_23); lean_free_object(x_1); lean_dec_ref(x_17); lean_dec_ref(x_16); @@ -16197,33 +15991,77 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); -x_61 = !lean_is_exclusive(x_56); -if (x_61 == 0) +x_59 = !lean_is_exclusive(x_54); +if (x_59 == 0) { -return x_56; +return x_54; } else { -lean_object* x_62; lean_object* x_63; lean_object* x_64; -x_62 = lean_ctor_get(x_56, 0); -x_63 = lean_ctor_get(x_56, 1); -lean_inc(x_63); -lean_inc(x_62); -lean_dec(x_56); -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; +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = lean_ctor_get(x_54, 0); +x_61 = lean_ctor_get(x_54, 1); +lean_inc(x_61); +lean_inc(x_60); +lean_dec(x_54); +x_62 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_62, 0, x_60); +lean_ctor_set(x_62, 1, x_61); +return x_62; } } } else { +lean_dec(x_47); +lean_dec(x_44); +lean_dec_ref(x_21); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +return x_50; +} +} +else +{ +lean_object* x_63; lean_object* x_64; +lean_dec(x_47); +lean_dec(x_44); +lean_dec(x_34); +lean_dec_ref(x_21); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_3); +x_63 = lean_ctor_get(x_46, 1); +lean_inc(x_63); +lean_dec_ref(x_46); +x_64 = lean_apply_9(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_63); +return x_64; +} +} +else +{ uint8_t x_65; -lean_dec(x_49); -lean_dec(x_46); -lean_dec_ref(x_29); -lean_dec(x_22); +lean_dec(x_44); +lean_dec(x_34); +lean_dec_ref(x_21); +lean_dec(x_23); lean_free_object(x_1); lean_dec_ref(x_17); lean_dec_ref(x_16); @@ -16238,19 +16076,20 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); -x_65 = !lean_is_exclusive(x_52); +lean_dec_ref(x_2); +x_65 = !lean_is_exclusive(x_46); if (x_65 == 0) { -return x_52; +return x_46; } else { lean_object* x_66; lean_object* x_67; lean_object* x_68; -x_66 = lean_ctor_get(x_52, 0); -x_67 = lean_ctor_get(x_52, 1); +x_66 = lean_ctor_get(x_46, 0); +x_67 = lean_ctor_get(x_46, 1); lean_inc(x_67); lean_inc(x_66); -lean_dec(x_52); +lean_dec(x_46); x_68 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_68, 0, x_66); lean_ctor_set(x_68, 1, x_67); @@ -16261,20 +16100,19 @@ return x_68; else { lean_object* x_69; lean_object* x_70; -lean_dec(x_49); -lean_dec(x_46); +lean_dec(x_42); lean_dec(x_34); -lean_dec_ref(x_29); -lean_dec(x_22); +lean_dec_ref(x_21); +lean_dec(x_23); lean_free_object(x_1); lean_dec_ref(x_17); lean_dec_ref(x_16); lean_dec_ref(x_15); lean_dec(x_14); lean_dec_ref(x_3); -x_69 = lean_ctor_get(x_48, 1); +x_69 = lean_ctor_get(x_41, 1); lean_inc(x_69); -lean_dec_ref(x_48); +lean_dec_ref(x_41); x_70 = lean_apply_9(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_69); return x_70; } @@ -16282,10 +16120,9 @@ return x_70; else { uint8_t x_71; -lean_dec(x_46); lean_dec(x_34); -lean_dec_ref(x_29); -lean_dec(x_22); +lean_dec_ref(x_21); +lean_dec(x_23); lean_free_object(x_1); lean_dec_ref(x_17); lean_dec_ref(x_16); @@ -16301,19 +16138,19 @@ lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); -x_71 = !lean_is_exclusive(x_48); +x_71 = !lean_is_exclusive(x_41); if (x_71 == 0) { -return x_48; +return x_41; } else { lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_48, 0); -x_73 = lean_ctor_get(x_48, 1); +x_72 = lean_ctor_get(x_41, 0); +x_73 = lean_ctor_get(x_41, 1); lean_inc(x_73); lean_inc(x_72); -lean_dec(x_48); +lean_dec(x_41); x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_72); lean_ctor_set(x_74, 1, x_73); @@ -16321,13 +16158,10 @@ return x_74; } } } -} else { -uint8_t x_75; -lean_dec(x_34); -lean_dec_ref(x_29); -lean_dec(x_22); +lean_dec_ref(x_21); +lean_dec(x_23); lean_free_object(x_1); lean_dec_ref(x_17); lean_dec_ref(x_16); @@ -16343,69 +16177,233 @@ lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); -x_75 = !lean_is_exclusive(x_41); -if (x_75 == 0) -{ -return x_41; -} -else -{ -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_41, 0); -x_77 = lean_ctor_get(x_41, 1); -lean_inc(x_77); -lean_inc(x_76); -lean_dec(x_41); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -return x_78; -} -} -} -else -{ -uint8_t x_79; -lean_dec_ref(x_29); -lean_dec(x_22); -lean_free_object(x_1); -lean_dec_ref(x_17); -lean_dec_ref(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_79 = !lean_is_exclusive(x_33); -if (x_79 == 0) -{ return x_33; } +} else { -lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_80 = lean_ctor_get(x_33, 0); -x_81 = lean_ctor_get(x_33, 1); -lean_inc(x_81); -lean_inc(x_80); -lean_dec(x_33); +lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_75 = lean_ctor_get(x_21, 0); +x_76 = lean_ctor_get(x_21, 1); +lean_inc(x_76); +lean_inc(x_75); +lean_dec(x_21); +x_77 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_findSpec_spec__11___lam__0___closed__2; +x_78 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; +x_79 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__0; +x_80 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__1; +x_81 = lean_box(0); +lean_inc(x_14); x_82 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 0, x_14); lean_ctor_set(x_82, 1, x_81); -return x_82; +lean_inc_ref(x_82); +x_83 = l_Lean_Expr_const___override(x_80, x_82); +lean_inc_ref(x_15); +x_84 = l_Lean_Expr_app___override(x_83, x_15); +x_85 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_85, 0, x_84); +lean_inc_ref(x_8); +x_86 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_85, x_19, x_20, x_8, x_9, x_10, x_11, x_76); +if (lean_obj_tag(x_86) == 0) +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; +x_87 = lean_ctor_get(x_86, 0); +lean_inc(x_87); +x_88 = lean_ctor_get(x_86, 1); +lean_inc(x_88); +lean_dec_ref(x_86); +x_89 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; +x_90 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__3; +lean_inc_ref(x_82); +x_91 = l_Lean_Expr_const___override(x_90, x_82); +lean_inc(x_75); +lean_inc(x_87); +lean_inc_ref(x_16); +lean_inc_ref(x_15); +x_92 = l_Lean_mkApp4(x_91, x_15, x_16, x_87, x_75); +x_93 = lean_box(0); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_94 = l_Lean_Meta_trySynthInstance(x_92, x_93, x_8, x_9, x_10, x_11, x_88); +if (lean_obj_tag(x_94) == 0) +{ +lean_object* x_95; +x_95 = lean_ctor_get(x_94, 0); +lean_inc(x_95); +if (lean_obj_tag(x_95) == 1) +{ +lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; +x_96 = lean_ctor_get(x_94, 1); +lean_inc(x_96); +lean_dec_ref(x_94); +x_97 = lean_ctor_get(x_95, 0); +lean_inc(x_97); +lean_dec_ref(x_95); +x_98 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__5; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_75); +x_99 = l_Lean_Meta_isExprDefEq(x_98, x_75, x_8, x_9, x_10, x_11, x_96); +if (lean_obj_tag(x_99) == 0) +{ +lean_object* x_100; uint8_t x_101; +x_100 = lean_ctor_get(x_99, 0); +lean_inc(x_100); +x_101 = lean_unbox(x_100); +if (x_101 == 0) +{ +lean_object* x_102; lean_object* x_103; +lean_dec_ref(x_2); +x_102 = lean_ctor_get(x_99, 1); +lean_inc(x_102); +lean_dec_ref(x_99); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_16); +x_103 = l_Lean_Elab_Tactic_Do_ProofMode_transferHypNames(x_16, x_87, x_8, x_9, x_10, x_11, x_102); +if (lean_obj_tag(x_103) == 0) +{ +lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; +x_104 = lean_ctor_get(x_103, 0); +lean_inc(x_104); +x_105 = lean_ctor_get(x_103, 1); +lean_inc(x_105); +lean_dec_ref(x_103); +x_106 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__5___closed__1; +x_107 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_106, x_10, x_11, x_105); +if (lean_obj_tag(x_107) == 0) +{ +lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; +x_108 = lean_ctor_get(x_107, 0); +lean_inc(x_108); +x_109 = lean_ctor_get(x_107, 1); +lean_inc(x_109); +lean_dec_ref(x_107); +lean_inc_ref(x_17); +lean_inc(x_104); +lean_inc_ref(x_15); +lean_ctor_set(x_1, 2, x_104); +lean_inc(x_75); +x_110 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0___boxed), 24, 14); +lean_closure_set(x_110, 0, x_3); +lean_closure_set(x_110, 1, x_75); +lean_closure_set(x_110, 2, x_1); +lean_closure_set(x_110, 3, x_100); +lean_closure_set(x_110, 4, x_77); +lean_closure_set(x_110, 5, x_78); +lean_closure_set(x_110, 6, x_79); +lean_closure_set(x_110, 7, x_89); +lean_closure_set(x_110, 8, x_82); +lean_closure_set(x_110, 9, x_15); +lean_closure_set(x_110, 10, x_16); +lean_closure_set(x_110, 11, x_104); +lean_closure_set(x_110, 12, x_17); +lean_closure_set(x_110, 13, x_97); +x_111 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0_spec__1___redArg(x_108, x_75, x_110, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_109); +return x_111; } +else +{ +lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; +lean_dec(x_104); +lean_dec(x_100); +lean_dec(x_97); +lean_dec_ref(x_82); +lean_dec(x_75); +lean_free_object(x_1); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_112 = lean_ctor_get(x_107, 0); +lean_inc(x_112); +x_113 = lean_ctor_get(x_107, 1); +lean_inc(x_113); +if (lean_is_exclusive(x_107)) { + lean_ctor_release(x_107, 0); + lean_ctor_release(x_107, 1); + x_114 = x_107; +} else { + lean_dec_ref(x_107); + x_114 = lean_box(0); +} +if (lean_is_scalar(x_114)) { + x_115 = lean_alloc_ctor(1, 2, 0); +} else { + x_115 = x_114; +} +lean_ctor_set(x_115, 0, x_112); +lean_ctor_set(x_115, 1, x_113); +return x_115; } } else { -uint8_t x_83; +lean_dec(x_100); +lean_dec(x_97); +lean_dec_ref(x_82); +lean_dec(x_75); +lean_free_object(x_1); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +return x_103; +} +} +else +{ +lean_object* x_116; lean_object* x_117; +lean_dec(x_100); +lean_dec(x_97); +lean_dec(x_87); +lean_dec_ref(x_82); +lean_dec(x_75); +lean_free_object(x_1); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_3); +x_116 = lean_ctor_get(x_99, 1); +lean_inc(x_116); +lean_dec_ref(x_99); +x_117 = lean_apply_9(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_116); +return x_117; +} +} +else +{ +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; +lean_dec(x_97); +lean_dec(x_87); +lean_dec_ref(x_82); +lean_dec(x_75); lean_free_object(x_1); lean_dec_ref(x_17); lean_dec_ref(x_16); @@ -16421,247 +16419,308 @@ lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); -x_83 = !lean_is_exclusive(x_21); -if (x_83 == 0) -{ -return x_21; +x_118 = lean_ctor_get(x_99, 0); +lean_inc(x_118); +x_119 = lean_ctor_get(x_99, 1); +lean_inc(x_119); +if (lean_is_exclusive(x_99)) { + lean_ctor_release(x_99, 0); + lean_ctor_release(x_99, 1); + x_120 = x_99; +} else { + lean_dec_ref(x_99); + x_120 = lean_box(0); +} +if (lean_is_scalar(x_120)) { + x_121 = lean_alloc_ctor(1, 2, 0); +} else { + x_121 = x_120; +} +lean_ctor_set(x_121, 0, x_118); +lean_ctor_set(x_121, 1, x_119); +return x_121; +} } else { -lean_object* x_84; lean_object* x_85; lean_object* x_86; -x_84 = lean_ctor_get(x_21, 0); -x_85 = lean_ctor_get(x_21, 1); -lean_inc(x_85); -lean_inc(x_84); -lean_dec(x_21); -x_86 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_86, 0, x_84); -lean_ctor_set(x_86, 1, x_85); +lean_object* x_122; lean_object* x_123; +lean_dec(x_95); +lean_dec(x_87); +lean_dec_ref(x_82); +lean_dec(x_75); +lean_free_object(x_1); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_3); +x_122 = lean_ctor_get(x_94, 1); +lean_inc(x_122); +lean_dec_ref(x_94); +x_123 = lean_apply_9(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_122); +return x_123; +} +} +else +{ +lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; +lean_dec(x_87); +lean_dec_ref(x_82); +lean_dec(x_75); +lean_free_object(x_1); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_124 = lean_ctor_get(x_94, 0); +lean_inc(x_124); +x_125 = lean_ctor_get(x_94, 1); +lean_inc(x_125); +if (lean_is_exclusive(x_94)) { + lean_ctor_release(x_94, 0); + lean_ctor_release(x_94, 1); + x_126 = x_94; +} else { + lean_dec_ref(x_94); + x_126 = lean_box(0); +} +if (lean_is_scalar(x_126)) { + x_127 = lean_alloc_ctor(1, 2, 0); +} else { + x_127 = x_126; +} +lean_ctor_set(x_127, 0, x_124); +lean_ctor_set(x_127, 1, x_125); +return x_127; +} +} +else +{ +lean_dec_ref(x_82); +lean_dec(x_75); +lean_free_object(x_1); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); return x_86; } } } else { -lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; uint8_t x_92; lean_object* x_93; lean_object* x_94; -x_87 = lean_ctor_get(x_1, 0); -x_88 = lean_ctor_get(x_1, 1); -x_89 = lean_ctor_get(x_1, 2); -x_90 = lean_ctor_get(x_1, 3); -lean_inc(x_90); -lean_inc(x_89); -lean_inc(x_88); -lean_inc(x_87); -lean_dec(x_1); -x_91 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__0; -x_92 = 0; -x_93 = lean_box(0); -lean_inc_ref(x_8); -x_94 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_91, x_92, x_93, x_8, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_94) == 0) -{ -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_94, 0); -lean_inc(x_95); -x_96 = lean_ctor_get(x_94, 1); -lean_inc(x_96); -lean_dec_ref(x_94); -x_97 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_findSpec_spec__11___lam__0___closed__2; -x_98 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; -x_99 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__0; -x_100 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__1; -x_101 = lean_box(0); -lean_inc(x_87); -x_102 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_102, 0, x_87); -lean_ctor_set(x_102, 1, x_101); -lean_inc_ref(x_102); -x_103 = l_Lean_Expr_const___override(x_100, x_102); -lean_inc_ref(x_88); -x_104 = l_Lean_Expr_app___override(x_103, x_88); -x_105 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_105, 0, x_104); -lean_inc_ref(x_8); -x_106 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_105, x_92, x_93, x_8, x_9, x_10, x_11, x_96); -if (lean_obj_tag(x_106) == 0) -{ -lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; -x_107 = lean_ctor_get(x_106, 0); -lean_inc(x_107); -x_108 = lean_ctor_get(x_106, 1); -lean_inc(x_108); -lean_dec_ref(x_106); -x_109 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; -x_110 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__3; -lean_inc_ref(x_102); -x_111 = l_Lean_Expr_const___override(x_110, x_102); -lean_inc(x_95); -lean_inc(x_107); -lean_inc_ref(x_89); -lean_inc_ref(x_88); -x_112 = l_Lean_mkApp4(x_111, x_88, x_89, x_107, x_95); -x_113 = lean_box(0); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -x_114 = l_Lean_Meta_synthInstance_x3f(x_112, x_113, x_8, x_9, x_10, x_11, x_108); -if (lean_obj_tag(x_114) == 0) -{ -lean_object* x_115; -x_115 = lean_ctor_get(x_114, 0); -lean_inc(x_115); -if (lean_obj_tag(x_115) == 0) -{ -lean_object* x_116; lean_object* x_117; -lean_dec(x_107); -lean_dec_ref(x_102); -lean_dec(x_95); -lean_dec_ref(x_90); -lean_dec_ref(x_89); -lean_dec_ref(x_88); -lean_dec(x_87); +lean_free_object(x_1); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); lean_dec_ref(x_3); -x_116 = lean_ctor_get(x_114, 1); -lean_inc(x_116); -lean_dec_ref(x_114); -x_117 = lean_apply_9(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_116); -return x_117; +lean_dec_ref(x_2); +return x_21; +} } else { -lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; -x_118 = lean_ctor_get(x_114, 1); -lean_inc(x_118); -lean_dec_ref(x_114); -x_119 = lean_ctor_get(x_115, 0); -lean_inc(x_119); -lean_dec_ref(x_115); -x_120 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__5; -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_95); -x_121 = l_Lean_Meta_isExprDefEq(x_120, x_95, x_8, x_9, x_10, x_11, x_118); -if (lean_obj_tag(x_121) == 0) -{ -lean_object* x_122; uint8_t x_123; -x_122 = lean_ctor_get(x_121, 0); -lean_inc(x_122); -x_123 = lean_unbox(x_122); -if (x_123 == 0) -{ -lean_object* x_124; lean_object* x_125; -lean_dec_ref(x_2); -x_124 = lean_ctor_get(x_121, 1); -lean_inc(x_124); -lean_dec_ref(x_121); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_89); -x_125 = l_Lean_Elab_Tactic_Do_ProofMode_transferHypNames(x_89, x_107, x_8, x_9, x_10, x_11, x_124); -if (lean_obj_tag(x_125) == 0) -{ -lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; -x_126 = lean_ctor_get(x_125, 0); -lean_inc(x_126); -x_127 = lean_ctor_get(x_125, 1); -lean_inc(x_127); -lean_dec_ref(x_125); -x_128 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__5___closed__1; -x_129 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_128, x_10, x_11, x_127); -if (lean_obj_tag(x_129) == 0) -{ -lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; -x_130 = lean_ctor_get(x_129, 0); -lean_inc(x_130); -x_131 = lean_ctor_get(x_129, 1); +lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; uint8_t x_133; lean_object* x_134; lean_object* x_135; +x_128 = lean_ctor_get(x_1, 0); +x_129 = lean_ctor_get(x_1, 1); +x_130 = lean_ctor_get(x_1, 2); +x_131 = lean_ctor_get(x_1, 3); lean_inc(x_131); -lean_dec_ref(x_129); -lean_inc_ref(x_90); -lean_inc(x_126); -lean_inc_ref(x_88); -x_132 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_132, 0, x_87); -lean_ctor_set(x_132, 1, x_88); -lean_ctor_set(x_132, 2, x_126); -lean_ctor_set(x_132, 3, x_90); -lean_inc(x_95); -x_133 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0___boxed), 24, 14); -lean_closure_set(x_133, 0, x_3); -lean_closure_set(x_133, 1, x_95); -lean_closure_set(x_133, 2, x_132); -lean_closure_set(x_133, 3, x_122); -lean_closure_set(x_133, 4, x_97); -lean_closure_set(x_133, 5, x_98); -lean_closure_set(x_133, 6, x_99); -lean_closure_set(x_133, 7, x_109); -lean_closure_set(x_133, 8, x_102); -lean_closure_set(x_133, 9, x_88); -lean_closure_set(x_133, 10, x_89); -lean_closure_set(x_133, 11, x_126); -lean_closure_set(x_133, 12, x_90); -lean_closure_set(x_133, 13, x_119); -x_134 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0_spec__1___redArg(x_130, x_95, x_133, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_131); -return x_134; -} -else +lean_inc(x_130); +lean_inc(x_129); +lean_inc(x_128); +lean_dec(x_1); +x_132 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__0; +x_133 = 0; +x_134 = lean_box(0); +lean_inc_ref(x_8); +x_135 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_132, x_133, x_134, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_135) == 0) { -lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; -lean_dec(x_126); -lean_dec(x_122); -lean_dec(x_119); -lean_dec_ref(x_102); -lean_dec(x_95); -lean_dec_ref(x_90); -lean_dec_ref(x_89); -lean_dec_ref(x_88); -lean_dec(x_87); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -x_135 = lean_ctor_get(x_129, 0); -lean_inc(x_135); -x_136 = lean_ctor_get(x_129, 1); +lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; +x_136 = lean_ctor_get(x_135, 0); lean_inc(x_136); -if (lean_is_exclusive(x_129)) { - lean_ctor_release(x_129, 0); - lean_ctor_release(x_129, 1); - x_137 = x_129; +x_137 = lean_ctor_get(x_135, 1); +lean_inc(x_137); +if (lean_is_exclusive(x_135)) { + lean_ctor_release(x_135, 0); + lean_ctor_release(x_135, 1); + x_138 = x_135; } else { - lean_dec_ref(x_129); - x_137 = lean_box(0); + lean_dec_ref(x_135); + x_138 = lean_box(0); } -if (lean_is_scalar(x_137)) { - x_138 = lean_alloc_ctor(1, 2, 0); +x_139 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_findSpec_spec__11___lam__0___closed__2; +x_140 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; +x_141 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__0; +x_142 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__1; +x_143 = lean_box(0); +lean_inc(x_128); +if (lean_is_scalar(x_138)) { + x_144 = lean_alloc_ctor(1, 2, 0); } else { - x_138 = x_137; -} -lean_ctor_set(x_138, 0, x_135); -lean_ctor_set(x_138, 1, x_136); -return x_138; + x_144 = x_138; + lean_ctor_set_tag(x_144, 1); } +lean_ctor_set(x_144, 0, x_128); +lean_ctor_set(x_144, 1, x_143); +lean_inc_ref(x_144); +x_145 = l_Lean_Expr_const___override(x_142, x_144); +lean_inc_ref(x_129); +x_146 = l_Lean_Expr_app___override(x_145, x_129); +x_147 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_147, 0, x_146); +lean_inc_ref(x_8); +x_148 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_147, x_133, x_134, x_8, x_9, x_10, x_11, x_137); +if (lean_obj_tag(x_148) == 0) +{ +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; +x_149 = lean_ctor_get(x_148, 0); +lean_inc(x_149); +x_150 = lean_ctor_get(x_148, 1); +lean_inc(x_150); +lean_dec_ref(x_148); +x_151 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; +x_152 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__3; +lean_inc_ref(x_144); +x_153 = l_Lean_Expr_const___override(x_152, x_144); +lean_inc(x_136); +lean_inc(x_149); +lean_inc_ref(x_130); +lean_inc_ref(x_129); +x_154 = l_Lean_mkApp4(x_153, x_129, x_130, x_149, x_136); +x_155 = lean_box(0); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_156 = l_Lean_Meta_trySynthInstance(x_154, x_155, x_8, x_9, x_10, x_11, x_150); +if (lean_obj_tag(x_156) == 0) +{ +lean_object* x_157; +x_157 = lean_ctor_get(x_156, 0); +lean_inc(x_157); +if (lean_obj_tag(x_157) == 1) +{ +lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; +x_158 = lean_ctor_get(x_156, 1); +lean_inc(x_158); +lean_dec_ref(x_156); +x_159 = lean_ctor_get(x_157, 0); +lean_inc(x_159); +lean_dec_ref(x_157); +x_160 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__5; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_136); +x_161 = l_Lean_Meta_isExprDefEq(x_160, x_136, x_8, x_9, x_10, x_11, x_158); +if (lean_obj_tag(x_161) == 0) +{ +lean_object* x_162; uint8_t x_163; +x_162 = lean_ctor_get(x_161, 0); +lean_inc(x_162); +x_163 = lean_unbox(x_162); +if (x_163 == 0) +{ +lean_object* x_164; lean_object* x_165; +lean_dec_ref(x_2); +x_164 = lean_ctor_get(x_161, 1); +lean_inc(x_164); +lean_dec_ref(x_161); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_130); +x_165 = l_Lean_Elab_Tactic_Do_ProofMode_transferHypNames(x_130, x_149, x_8, x_9, x_10, x_11, x_164); +if (lean_obj_tag(x_165) == 0) +{ +lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; +x_166 = lean_ctor_get(x_165, 0); +lean_inc(x_166); +x_167 = lean_ctor_get(x_165, 1); +lean_inc(x_167); +lean_dec_ref(x_165); +x_168 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__5___closed__1; +x_169 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_168, x_10, x_11, x_167); +if (lean_obj_tag(x_169) == 0) +{ +lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; +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_ref(x_169); +lean_inc_ref(x_131); +lean_inc(x_166); +lean_inc_ref(x_129); +x_172 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_172, 0, x_128); +lean_ctor_set(x_172, 1, x_129); +lean_ctor_set(x_172, 2, x_166); +lean_ctor_set(x_172, 3, x_131); +lean_inc(x_136); +x_173 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0___boxed), 24, 14); +lean_closure_set(x_173, 0, x_3); +lean_closure_set(x_173, 1, x_136); +lean_closure_set(x_173, 2, x_172); +lean_closure_set(x_173, 3, x_162); +lean_closure_set(x_173, 4, x_139); +lean_closure_set(x_173, 5, x_140); +lean_closure_set(x_173, 6, x_141); +lean_closure_set(x_173, 7, x_151); +lean_closure_set(x_173, 8, x_144); +lean_closure_set(x_173, 9, x_129); +lean_closure_set(x_173, 10, x_130); +lean_closure_set(x_173, 11, x_166); +lean_closure_set(x_173, 12, x_131); +lean_closure_set(x_173, 13, x_159); +x_174 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0_spec__1___redArg(x_170, x_136, x_173, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_171); +return x_174; } else { -lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; -lean_dec(x_122); -lean_dec(x_119); -lean_dec_ref(x_102); -lean_dec(x_95); -lean_dec_ref(x_90); -lean_dec_ref(x_89); -lean_dec_ref(x_88); -lean_dec(x_87); +lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; +lean_dec(x_166); +lean_dec(x_162); +lean_dec(x_159); +lean_dec_ref(x_144); +lean_dec(x_136); +lean_dec_ref(x_131); +lean_dec_ref(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -16671,59 +16730,81 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); -x_139 = lean_ctor_get(x_125, 0); -lean_inc(x_139); -x_140 = lean_ctor_get(x_125, 1); -lean_inc(x_140); -if (lean_is_exclusive(x_125)) { - lean_ctor_release(x_125, 0); - lean_ctor_release(x_125, 1); - x_141 = x_125; +x_175 = lean_ctor_get(x_169, 0); +lean_inc(x_175); +x_176 = lean_ctor_get(x_169, 1); +lean_inc(x_176); +if (lean_is_exclusive(x_169)) { + lean_ctor_release(x_169, 0); + lean_ctor_release(x_169, 1); + x_177 = x_169; } else { - lean_dec_ref(x_125); - x_141 = lean_box(0); + lean_dec_ref(x_169); + x_177 = lean_box(0); } -if (lean_is_scalar(x_141)) { - x_142 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_177)) { + x_178 = lean_alloc_ctor(1, 2, 0); } else { - x_142 = x_141; + x_178 = x_177; } -lean_ctor_set(x_142, 0, x_139); -lean_ctor_set(x_142, 1, x_140); -return x_142; +lean_ctor_set(x_178, 0, x_175); +lean_ctor_set(x_178, 1, x_176); +return x_178; } } else { -lean_object* x_143; lean_object* x_144; -lean_dec(x_122); -lean_dec(x_119); -lean_dec(x_107); -lean_dec_ref(x_102); -lean_dec(x_95); -lean_dec_ref(x_90); -lean_dec_ref(x_89); -lean_dec_ref(x_88); -lean_dec(x_87); +lean_dec(x_162); +lean_dec(x_159); +lean_dec_ref(x_144); +lean_dec(x_136); +lean_dec_ref(x_131); +lean_dec_ref(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); lean_dec_ref(x_3); -x_143 = lean_ctor_get(x_121, 1); -lean_inc(x_143); -lean_dec_ref(x_121); -x_144 = lean_apply_9(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_143); -return x_144; +return x_165; } } else { -lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; -lean_dec(x_119); -lean_dec(x_107); -lean_dec_ref(x_102); -lean_dec(x_95); -lean_dec_ref(x_90); -lean_dec_ref(x_89); -lean_dec_ref(x_88); -lean_dec(x_87); +lean_object* x_179; lean_object* x_180; +lean_dec(x_162); +lean_dec(x_159); +lean_dec(x_149); +lean_dec_ref(x_144); +lean_dec(x_136); +lean_dec_ref(x_131); +lean_dec_ref(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_3); +x_179 = lean_ctor_get(x_161, 1); +lean_inc(x_179); +lean_dec_ref(x_161); +x_180 = lean_apply_9(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_179); +return x_180; +} +} +else +{ +lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; +lean_dec(x_159); +lean_dec(x_149); +lean_dec_ref(x_144); +lean_dec(x_136); +lean_dec_ref(x_131); +lean_dec_ref(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -16734,39 +16815,116 @@ lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); -x_145 = lean_ctor_get(x_121, 0); -lean_inc(x_145); -x_146 = lean_ctor_get(x_121, 1); -lean_inc(x_146); -if (lean_is_exclusive(x_121)) { - lean_ctor_release(x_121, 0); - lean_ctor_release(x_121, 1); - x_147 = x_121; +x_181 = lean_ctor_get(x_161, 0); +lean_inc(x_181); +x_182 = lean_ctor_get(x_161, 1); +lean_inc(x_182); +if (lean_is_exclusive(x_161)) { + lean_ctor_release(x_161, 0); + lean_ctor_release(x_161, 1); + x_183 = x_161; } else { - lean_dec_ref(x_121); - x_147 = lean_box(0); + lean_dec_ref(x_161); + x_183 = lean_box(0); } -if (lean_is_scalar(x_147)) { - x_148 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_183)) { + x_184 = lean_alloc_ctor(1, 2, 0); } else { - x_148 = x_147; + x_184 = x_183; } -lean_ctor_set(x_148, 0, x_145); -lean_ctor_set(x_148, 1, x_146); +lean_ctor_set(x_184, 0, x_181); +lean_ctor_set(x_184, 1, x_182); +return x_184; +} +} +else +{ +lean_object* x_185; lean_object* x_186; +lean_dec(x_157); +lean_dec(x_149); +lean_dec_ref(x_144); +lean_dec(x_136); +lean_dec_ref(x_131); +lean_dec_ref(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_3); +x_185 = lean_ctor_get(x_156, 1); +lean_inc(x_185); +lean_dec_ref(x_156); +x_186 = lean_apply_9(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_185); +return x_186; +} +} +else +{ +lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; +lean_dec(x_149); +lean_dec_ref(x_144); +lean_dec(x_136); +lean_dec_ref(x_131); +lean_dec_ref(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_187 = lean_ctor_get(x_156, 0); +lean_inc(x_187); +x_188 = lean_ctor_get(x_156, 1); +lean_inc(x_188); +if (lean_is_exclusive(x_156)) { + lean_ctor_release(x_156, 0); + lean_ctor_release(x_156, 1); + x_189 = x_156; +} else { + lean_dec_ref(x_156); + x_189 = lean_box(0); +} +if (lean_is_scalar(x_189)) { + x_190 = lean_alloc_ctor(1, 2, 0); +} else { + x_190 = x_189; +} +lean_ctor_set(x_190, 0, x_187); +lean_ctor_set(x_190, 1, x_188); +return x_190; +} +} +else +{ +lean_dec_ref(x_144); +lean_dec(x_136); +lean_dec_ref(x_131); +lean_dec_ref(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); return x_148; } } -} else { -lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; -lean_dec(x_107); -lean_dec_ref(x_102); -lean_dec(x_95); -lean_dec_ref(x_90); -lean_dec_ref(x_89); -lean_dec_ref(x_88); -lean_dec(x_87); +lean_dec_ref(x_131); +lean_dec_ref(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -16777,119 +16935,12 @@ lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); -x_149 = lean_ctor_get(x_114, 0); -lean_inc(x_149); -x_150 = lean_ctor_get(x_114, 1); -lean_inc(x_150); -if (lean_is_exclusive(x_114)) { - lean_ctor_release(x_114, 0); - lean_ctor_release(x_114, 1); - x_151 = x_114; -} else { - lean_dec_ref(x_114); - x_151 = lean_box(0); -} -if (lean_is_scalar(x_151)) { - x_152 = lean_alloc_ctor(1, 2, 0); -} else { - x_152 = x_151; -} -lean_ctor_set(x_152, 0, x_149); -lean_ctor_set(x_152, 1, x_150); -return x_152; -} -} -else -{ -lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; -lean_dec_ref(x_102); -lean_dec(x_95); -lean_dec_ref(x_90); -lean_dec_ref(x_89); -lean_dec_ref(x_88); -lean_dec(x_87); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_153 = lean_ctor_get(x_106, 0); -lean_inc(x_153); -x_154 = lean_ctor_get(x_106, 1); -lean_inc(x_154); -if (lean_is_exclusive(x_106)) { - lean_ctor_release(x_106, 0); - lean_ctor_release(x_106, 1); - x_155 = x_106; -} else { - lean_dec_ref(x_106); - x_155 = lean_box(0); -} -if (lean_is_scalar(x_155)) { - x_156 = lean_alloc_ctor(1, 2, 0); -} else { - x_156 = x_155; -} -lean_ctor_set(x_156, 0, x_153); -lean_ctor_set(x_156, 1, x_154); -return x_156; -} -} -else -{ -lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; -lean_dec_ref(x_90); -lean_dec_ref(x_89); -lean_dec_ref(x_88); -lean_dec(x_87); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_157 = lean_ctor_get(x_94, 0); -lean_inc(x_157); -x_158 = lean_ctor_get(x_94, 1); -lean_inc(x_158); -if (lean_is_exclusive(x_94)) { - lean_ctor_release(x_94, 0); - lean_ctor_release(x_94, 1); - x_159 = x_94; -} else { - lean_dec_ref(x_94); - x_159 = lean_box(0); -} -if (lean_is_scalar(x_159)) { - x_160 = lean_alloc_ctor(1, 2, 0); -} else { - x_160 = x_159; -} -lean_ctor_set(x_160, 0, x_157); -lean_ctor_set(x_160, 1, x_158); -return x_160; +return x_135; } } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -lean_object* x_14; -x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_14; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { lean_object* x_14; @@ -16897,27 +16948,19 @@ x_14 = lean_apply_10(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_inc_ref(x_2); -x_12 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6___redArg___lam__0___boxed), 13, 1); +x_12 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6___lam__0___boxed), 13, 1); lean_closure_set(x_12, 0, x_2); lean_inc_ref(x_1); x_13 = lean_apply_1(x_2, x_1); -x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg(x_1, x_13, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6(x_1, x_13, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; -x_13 = l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -return x_13; -} -} LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8_spec__8_spec__8___redArg___lam__0(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: { @@ -17005,7 +17048,7 @@ x_10 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroFor return x_10; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___lam__0___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___lam__0___closed__0() { _start: { lean_object* x_1; @@ -17013,19 +17056,19 @@ x_1 = lean_mk_string_unchecked("entails_cons_intro", 18, 18); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___lam__0___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___lam__0___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___lam__0___closed__0; -x_2 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___lam__0___closed__0; +x_2 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__0; x_3 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; x_4 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_findSpec_spec__11___lam__0___closed__2; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, 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) { _start: { lean_object* x_19; lean_object* x_20; lean_object* x_21; @@ -17074,272 +17117,120 @@ uint8_t x_31; x_31 = !lean_is_exclusive(x_30); if (x_31 == 0) { -lean_object* x_32; uint8_t x_33; +lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_object* x_35; x_32 = lean_ctor_get(x_30, 0); -x_33 = !lean_is_exclusive(x_32); -if (x_33 == 0) -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; -x_34 = lean_ctor_get(x_30, 1); -x_35 = lean_ctor_get(x_32, 0); -x_36 = lean_ctor_get(x_32, 1); -x_37 = 1; -x_38 = l_Lean_Meta_mkLambdaFVars(x_26, x_36, x_27, x_3, x_27, x_3, x_37, x_14, x_15, x_16, x_17, x_34); +x_33 = lean_ctor_get(x_30, 1); +x_34 = 1; +x_35 = l_Lean_Meta_mkLambdaFVars(x_26, x_32, x_27, x_3, x_27, x_3, x_34, x_14, x_15, x_16, x_17, x_33); lean_dec(x_17); lean_dec_ref(x_16); lean_dec(x_15); lean_dec_ref(x_14); lean_dec_ref(x_26); -if (lean_obj_tag(x_38) == 0) +if (lean_obj_tag(x_35) == 0) { -uint8_t x_39; -x_39 = !lean_is_exclusive(x_38); -if (x_39 == 0) +uint8_t x_36; +x_36 = !lean_is_exclusive(x_35); +if (x_36 == 0) { -lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_40 = lean_ctor_get(x_38, 0); -x_41 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___lam__0___closed__1; -x_42 = lean_box(0); +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_37 = lean_ctor_get(x_35, 0); +x_38 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___lam__0___closed__1; +x_39 = lean_box(0); lean_ctor_set_tag(x_30, 1); -lean_ctor_set(x_30, 1, x_42); +lean_ctor_set(x_30, 1, x_39); lean_ctor_set(x_30, 0, x_7); -x_43 = l_Lean_Expr_const___override(x_41, x_30); -x_44 = l_Lean_mkApp5(x_43, x_5, x_1, x_4, x_6, x_40); -lean_ctor_set(x_32, 1, x_44); -lean_ctor_set(x_38, 0, x_32); -return x_38; +x_40 = l_Lean_Expr_const___override(x_38, x_30); +x_41 = l_Lean_mkApp5(x_40, x_5, x_1, x_4, x_6, x_37); +lean_ctor_set(x_35, 0, x_41); +return x_35; } else { -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_45 = lean_ctor_get(x_38, 0); -x_46 = lean_ctor_get(x_38, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_38); -x_47 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___lam__0___closed__1; -x_48 = lean_box(0); -lean_ctor_set_tag(x_30, 1); -lean_ctor_set(x_30, 1, x_48); -lean_ctor_set(x_30, 0, x_7); -x_49 = l_Lean_Expr_const___override(x_47, x_30); -x_50 = l_Lean_mkApp5(x_49, x_5, x_1, x_4, x_6, x_45); -lean_ctor_set(x_32, 1, x_50); -x_51 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_51, 0, x_32); -lean_ctor_set(x_51, 1, x_46); -return x_51; -} -} -else -{ -uint8_t x_52; -lean_free_object(x_32); +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_42 = lean_ctor_get(x_35, 0); +x_43 = lean_ctor_get(x_35, 1); +lean_inc(x_43); +lean_inc(x_42); lean_dec(x_35); -lean_free_object(x_30); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_52 = !lean_is_exclusive(x_38); -if (x_52 == 0) -{ -return x_38; -} -else -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_53 = lean_ctor_get(x_38, 0); -x_54 = lean_ctor_get(x_38, 1); -lean_inc(x_54); -lean_inc(x_53); -lean_dec(x_38); -x_55 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_55, 0, x_53); -lean_ctor_set(x_55, 1, x_54); -return x_55; -} -} -} -else -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_object* x_60; -x_56 = lean_ctor_get(x_30, 1); -x_57 = lean_ctor_get(x_32, 0); -x_58 = lean_ctor_get(x_32, 1); -lean_inc(x_58); -lean_inc(x_57); -lean_dec(x_32); -x_59 = 1; -x_60 = l_Lean_Meta_mkLambdaFVars(x_26, x_58, x_27, x_3, x_27, x_3, x_59, x_14, x_15, x_16, x_17, x_56); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_26); -if (lean_obj_tag(x_60) == 0) -{ -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; -x_61 = lean_ctor_get(x_60, 0); -lean_inc(x_61); -x_62 = lean_ctor_get(x_60, 1); -lean_inc(x_62); -if (lean_is_exclusive(x_60)) { - lean_ctor_release(x_60, 0); - lean_ctor_release(x_60, 1); - x_63 = x_60; -} else { - lean_dec_ref(x_60); - x_63 = lean_box(0); -} -x_64 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___lam__0___closed__1; -x_65 = lean_box(0); +x_44 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___lam__0___closed__1; +x_45 = lean_box(0); lean_ctor_set_tag(x_30, 1); -lean_ctor_set(x_30, 1, x_65); +lean_ctor_set(x_30, 1, x_45); lean_ctor_set(x_30, 0, x_7); -x_66 = l_Lean_Expr_const___override(x_64, x_30); -x_67 = l_Lean_mkApp5(x_66, x_5, x_1, x_4, x_6, x_61); -x_68 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_68, 0, x_57); -lean_ctor_set(x_68, 1, x_67); -if (lean_is_scalar(x_63)) { - x_69 = lean_alloc_ctor(0, 2, 0); -} else { - x_69 = x_63; +x_46 = l_Lean_Expr_const___override(x_44, x_30); +x_47 = l_Lean_mkApp5(x_46, x_5, x_1, x_4, x_6, x_42); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_48, 1, x_43); +return x_48; } -lean_ctor_set(x_69, 0, x_68); -lean_ctor_set(x_69, 1, x_62); -return x_69; } else { -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; -lean_dec(x_57); lean_free_object(x_30); lean_dec(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec_ref(x_1); -x_70 = lean_ctor_get(x_60, 0); -lean_inc(x_70); -x_71 = lean_ctor_get(x_60, 1); -lean_inc(x_71); -if (lean_is_exclusive(x_60)) { - lean_ctor_release(x_60, 0); - lean_ctor_release(x_60, 1); - x_72 = x_60; -} else { - lean_dec_ref(x_60); - x_72 = lean_box(0); -} -if (lean_is_scalar(x_72)) { - x_73 = lean_alloc_ctor(1, 2, 0); -} else { - x_73 = x_72; -} -lean_ctor_set(x_73, 0, x_70); -lean_ctor_set(x_73, 1, x_71); -return x_73; -} +return x_35; } } else { -lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; uint8_t x_79; lean_object* x_80; -x_74 = lean_ctor_get(x_30, 0); -x_75 = lean_ctor_get(x_30, 1); -lean_inc(x_75); -lean_inc(x_74); +lean_object* x_49; lean_object* x_50; uint8_t x_51; lean_object* x_52; +x_49 = lean_ctor_get(x_30, 0); +x_50 = lean_ctor_get(x_30, 1); +lean_inc(x_50); +lean_inc(x_49); lean_dec(x_30); -x_76 = lean_ctor_get(x_74, 0); -lean_inc(x_76); -x_77 = lean_ctor_get(x_74, 1); -lean_inc(x_77); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - lean_ctor_release(x_74, 1); - x_78 = x_74; -} else { - lean_dec_ref(x_74); - x_78 = lean_box(0); -} -x_79 = 1; -x_80 = l_Lean_Meta_mkLambdaFVars(x_26, x_77, x_27, x_3, x_27, x_3, x_79, x_14, x_15, x_16, x_17, x_75); +x_51 = 1; +x_52 = l_Lean_Meta_mkLambdaFVars(x_26, x_49, x_27, x_3, x_27, x_3, x_51, x_14, x_15, x_16, x_17, x_50); lean_dec(x_17); lean_dec_ref(x_16); lean_dec(x_15); lean_dec_ref(x_14); lean_dec_ref(x_26); -if (lean_obj_tag(x_80) == 0) +if (lean_obj_tag(x_52) == 0) { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; -x_81 = lean_ctor_get(x_80, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_80, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_80)) { - lean_ctor_release(x_80, 0); - lean_ctor_release(x_80, 1); - x_83 = x_80; +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; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_52, 1); +lean_inc(x_54); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_55 = x_52; } else { - lean_dec_ref(x_80); - x_83 = lean_box(0); + lean_dec_ref(x_52); + x_55 = lean_box(0); } -x_84 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___lam__0___closed__1; -x_85 = lean_box(0); -x_86 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_86, 0, x_7); -lean_ctor_set(x_86, 1, x_85); -x_87 = l_Lean_Expr_const___override(x_84, x_86); -x_88 = l_Lean_mkApp5(x_87, x_5, x_1, x_4, x_6, x_81); -if (lean_is_scalar(x_78)) { - x_89 = lean_alloc_ctor(0, 2, 0); +x_56 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___lam__0___closed__1; +x_57 = lean_box(0); +x_58 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_58, 0, x_7); +lean_ctor_set(x_58, 1, x_57); +x_59 = l_Lean_Expr_const___override(x_56, x_58); +x_60 = l_Lean_mkApp5(x_59, x_5, x_1, x_4, x_6, x_53); +if (lean_is_scalar(x_55)) { + x_61 = lean_alloc_ctor(0, 2, 0); } else { - x_89 = x_78; + x_61 = x_55; } -lean_ctor_set(x_89, 0, x_76); -lean_ctor_set(x_89, 1, x_88); -if (lean_is_scalar(x_83)) { - x_90 = lean_alloc_ctor(0, 2, 0); -} else { - x_90 = x_83; -} -lean_ctor_set(x_90, 0, x_89); -lean_ctor_set(x_90, 1, x_82); -return x_90; +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_54); +return x_61; } else { -lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; -lean_dec(x_78); -lean_dec(x_76); lean_dec(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec_ref(x_1); -x_91 = lean_ctor_get(x_80, 0); -lean_inc(x_91); -x_92 = lean_ctor_get(x_80, 1); -lean_inc(x_92); -if (lean_is_exclusive(x_80)) { - lean_ctor_release(x_80, 0); - lean_ctor_release(x_80, 1); - x_93 = x_80; -} else { - lean_dec_ref(x_80); - x_93 = lean_box(0); -} -if (lean_is_scalar(x_93)) { - x_94 = lean_alloc_ctor(1, 2, 0); -} else { - x_94 = x_93; -} -lean_ctor_set(x_94, 0, x_91); -lean_ctor_set(x_94, 1, x_92); -return x_94; +return x_52; } } } @@ -17360,7 +17251,7 @@ return x_30; } else { -uint8_t x_95; +uint8_t x_62; lean_dec(x_17); lean_dec_ref(x_16); lean_dec(x_15); @@ -17376,28 +17267,28 @@ lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec_ref(x_1); -x_95 = !lean_is_exclusive(x_21); -if (x_95 == 0) +x_62 = !lean_is_exclusive(x_21); +if (x_62 == 0) { return x_21; } else { -lean_object* x_96; lean_object* x_97; lean_object* x_98; -x_96 = lean_ctor_get(x_21, 0); -x_97 = lean_ctor_get(x_21, 1); -lean_inc(x_97); -lean_inc(x_96); +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_21, 0); +x_64 = lean_ctor_get(x_21, 1); +lean_inc(x_64); +lean_inc(x_63); lean_dec(x_21); -x_98 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_98, 0, x_96); -lean_ctor_set(x_98, 1, x_97); -return x_98; +x_65 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_65, 0, x_63); +lean_ctor_set(x_65, 1, x_64); +return x_65; } } } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__0() { _start: { lean_object* x_1; @@ -17405,7 +17296,7 @@ x_1 = lean_mk_string_unchecked("List", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__1() { _start: { lean_object* x_1; @@ -17413,17 +17304,17 @@ x_1 = lean_mk_string_unchecked("cons", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__1; -x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__1; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__0; x_3 = l_Lean_Name_mkStr2(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__3() { _start: { lean_object* x_1; @@ -17431,16 +17322,16 @@ x_1 = lean_mk_string_unchecked("Ambient state list not a cons ", 30, 30); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__3; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__3; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__5() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__5() { _start: { lean_object* x_1; @@ -17448,17 +17339,17 @@ x_1 = lean_mk_string_unchecked("binderIdent", 11, 11); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__6() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__5; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__5; x_2 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; x_3 = l_Lean_Name_mkStr2(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__7() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__7() { _start: { lean_object* x_1; @@ -17466,16 +17357,16 @@ x_1 = lean_mk_string_unchecked("s", 1, 1); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__8() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__7; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__7; x_2 = l_Lean_Name_mkStr1(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__9() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__9() { _start: { lean_object* x_1; @@ -17483,16 +17374,16 @@ x_1 = lean_mk_string_unchecked("ident", 5, 5); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__10() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__9; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__9; x_2 = l_Lean_Name_mkStr1(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; @@ -17513,19 +17404,20 @@ lean_inc_ref(x_20); x_23 = lean_whnf(x_20, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_23) == 0) { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; -x_24 = lean_ctor_get(x_23, 0); -lean_inc(x_24); -x_25 = lean_ctor_get(x_23, 1); -lean_inc(x_25); -lean_dec_ref(x_23); -x_26 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__2; -x_27 = lean_unsigned_to_nat(3u); -x_28 = l_Lean_Expr_isAppOfArity(x_24, x_26, x_27); -if (x_28 == 0) +uint8_t x_24; +x_24 = !lean_is_exclusive(x_23); +if (x_24 == 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_dec(x_24); +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; +x_25 = lean_ctor_get(x_23, 0); +x_26 = lean_ctor_get(x_23, 1); +x_27 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__2; +x_28 = lean_unsigned_to_nat(3u); +x_29 = l_Lean_Expr_isAppOfArity(x_25, x_27, x_28); +if (x_29 == 0) +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +lean_dec(x_25); lean_dec_ref(x_22); lean_dec_ref(x_21); lean_dec(x_19); @@ -17535,16 +17427,16 @@ lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec(x_2); -x_29 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__4; -x_30 = l_Lean_MessageData_ofExpr(x_20); -x_31 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); +x_30 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__4; +x_31 = l_Lean_MessageData_ofExpr(x_20); +lean_ctor_set_tag(x_23, 7); +lean_ctor_set(x_23, 1, x_31); +lean_ctor_set(x_23, 0, x_30); x_32 = l_List_mapTR_loop___at___Lean_Elab_Tactic_Do_findSpec_spec__10___closed__2; x_33 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 0, x_23); lean_ctor_set(x_33, 1, x_32); -x_34 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_findSpec_spec__3___redArg(x_33, x_8, x_9, x_10, x_11, x_25); +x_34 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_findSpec_spec__3___redArg(x_33, x_8, x_9, x_10, x_11, x_26); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -17555,16 +17447,17 @@ goto block_18; else { lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint8_t x_41; +lean_free_object(x_23); lean_dec_ref(x_20); -x_35 = l_Lean_Expr_appFn_x21(x_24); +x_35 = l_Lean_Expr_appFn_x21(x_25); x_36 = l_Lean_Expr_appArg_x21(x_35); lean_dec_ref(x_35); -x_37 = l_Lean_Expr_appArg_x21(x_24); -lean_dec(x_24); -x_38 = lean_box(x_28); +x_37 = l_Lean_Expr_appArg_x21(x_25); +lean_dec(x_25); +x_38 = lean_box(x_29); lean_inc(x_2); lean_inc_ref(x_36); -x_39 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___lam__0___boxed), 18, 12); +x_39 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___lam__0___boxed), 18, 12); lean_closure_set(x_39, 0, x_36); lean_closure_set(x_39, 1, x_2); lean_closure_set(x_39, 2, x_38); @@ -17577,15 +17470,15 @@ lean_closure_set(x_39, 8, x_4); lean_closure_set(x_39, 9, x_5); lean_closure_set(x_39, 10, x_6); lean_closure_set(x_39, 11, x_7); -x_40 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__6; +x_40 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__6; lean_inc(x_2); x_41 = l_Lean_Syntax_isOfKind(x_2, x_40); if (x_41 == 0) { lean_object* x_42; lean_object* x_43; lean_dec(x_2); -x_42 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__8; -x_43 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_42, x_10, x_11, x_25); +x_42 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__8; +x_43 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_42, x_10, x_11, x_26); if (lean_obj_tag(x_43) == 0) { lean_object* x_44; lean_object* x_45; lean_object* x_46; @@ -17633,15 +17526,15 @@ lean_object* x_51; lean_object* x_52; lean_object* x_53; uint8_t x_54; x_51 = lean_unsigned_to_nat(0u); x_52 = l_Lean_Syntax_getArg(x_2, x_51); lean_dec(x_2); -x_53 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__10; +x_53 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__10; lean_inc(x_52); x_54 = l_Lean_Syntax_isOfKind(x_52, x_53); if (x_54 == 0) { lean_object* x_55; lean_object* x_56; lean_dec(x_52); -x_55 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__8; -x_56 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_55, x_10, x_11, x_25); +x_55 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__8; +x_56 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_55, x_10, x_11, x_26); if (lean_obj_tag(x_56) == 0) { lean_object* x_57; lean_object* x_58; lean_object* x_59; @@ -17688,7 +17581,7 @@ else lean_object* x_64; lean_object* x_65; x_64 = l_Lean_Syntax_getId(x_52); lean_dec(x_52); -x_65 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8_spec__8___redArg(x_64, x_36, x_39, x_8, x_9, x_10, x_11, x_25); +x_65 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8_spec__8___redArg(x_64, x_36, x_39, x_8, x_9, x_10, x_11, x_26); x_13 = x_65; goto block_18; } @@ -17697,7 +17590,195 @@ goto block_18; } else { -uint8_t x_66; +lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint8_t x_70; +x_66 = lean_ctor_get(x_23, 0); +x_67 = lean_ctor_get(x_23, 1); +lean_inc(x_67); +lean_inc(x_66); +lean_dec(x_23); +x_68 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__2; +x_69 = lean_unsigned_to_nat(3u); +x_70 = l_Lean_Expr_isAppOfArity(x_66, x_68, x_69); +if (x_70 == 0) +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +lean_dec(x_66); +lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec(x_19); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +x_71 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__4; +x_72 = l_Lean_MessageData_ofExpr(x_20); +x_73 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_73, 0, x_71); +lean_ctor_set(x_73, 1, x_72); +x_74 = l_List_mapTR_loop___at___Lean_Elab_Tactic_Do_findSpec_spec__10___closed__2; +x_75 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_75, 0, x_73); +lean_ctor_set(x_75, 1, x_74); +x_76 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_findSpec_spec__3___redArg(x_75, x_8, x_9, x_10, x_11, x_67); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_13 = x_76; +goto block_18; +} +else +{ +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; +lean_dec_ref(x_20); +x_77 = l_Lean_Expr_appFn_x21(x_66); +x_78 = l_Lean_Expr_appArg_x21(x_77); +lean_dec_ref(x_77); +x_79 = l_Lean_Expr_appArg_x21(x_66); +lean_dec(x_66); +x_80 = lean_box(x_70); +lean_inc(x_2); +lean_inc_ref(x_78); +x_81 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___lam__0___boxed), 18, 12); +lean_closure_set(x_81, 0, x_78); +lean_closure_set(x_81, 1, x_2); +lean_closure_set(x_81, 2, x_80); +lean_closure_set(x_81, 3, x_21); +lean_closure_set(x_81, 4, x_79); +lean_closure_set(x_81, 5, x_22); +lean_closure_set(x_81, 6, x_19); +lean_closure_set(x_81, 7, x_3); +lean_closure_set(x_81, 8, x_4); +lean_closure_set(x_81, 9, x_5); +lean_closure_set(x_81, 10, x_6); +lean_closure_set(x_81, 11, x_7); +x_82 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__6; +lean_inc(x_2); +x_83 = l_Lean_Syntax_isOfKind(x_2, x_82); +if (x_83 == 0) +{ +lean_object* x_84; lean_object* x_85; +lean_dec(x_2); +x_84 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__8; +x_85 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_84, x_10, x_11, x_67); +if (lean_obj_tag(x_85) == 0) +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_86 = lean_ctor_get(x_85, 0); +lean_inc(x_86); +x_87 = lean_ctor_get(x_85, 1); +lean_inc(x_87); +lean_dec_ref(x_85); +x_88 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8_spec__8___redArg(x_86, x_78, x_81, x_8, x_9, x_10, x_11, x_87); +x_13 = x_88; +goto block_18; +} +else +{ +lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; +lean_dec_ref(x_81); +lean_dec_ref(x_78); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_89 = lean_ctor_get(x_85, 0); +lean_inc(x_89); +x_90 = lean_ctor_get(x_85, 1); +lean_inc(x_90); +if (lean_is_exclusive(x_85)) { + lean_ctor_release(x_85, 0); + lean_ctor_release(x_85, 1); + x_91 = x_85; +} else { + lean_dec_ref(x_85); + x_91 = lean_box(0); +} +if (lean_is_scalar(x_91)) { + x_92 = lean_alloc_ctor(1, 2, 0); +} else { + x_92 = x_91; +} +lean_ctor_set(x_92, 0, x_89); +lean_ctor_set(x_92, 1, x_90); +return x_92; +} +} +else +{ +lean_object* x_93; lean_object* x_94; lean_object* x_95; uint8_t x_96; +x_93 = lean_unsigned_to_nat(0u); +x_94 = l_Lean_Syntax_getArg(x_2, x_93); +lean_dec(x_2); +x_95 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__10; +lean_inc(x_94); +x_96 = l_Lean_Syntax_isOfKind(x_94, x_95); +if (x_96 == 0) +{ +lean_object* x_97; lean_object* x_98; +lean_dec(x_94); +x_97 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__8; +x_98 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_97, x_10, x_11, x_67); +if (lean_obj_tag(x_98) == 0) +{ +lean_object* x_99; lean_object* x_100; lean_object* x_101; +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +x_100 = lean_ctor_get(x_98, 1); +lean_inc(x_100); +lean_dec_ref(x_98); +x_101 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8_spec__8___redArg(x_99, x_78, x_81, x_8, x_9, x_10, x_11, x_100); +x_13 = x_101; +goto block_18; +} +else +{ +lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; +lean_dec_ref(x_81); +lean_dec_ref(x_78); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_102 = lean_ctor_get(x_98, 0); +lean_inc(x_102); +x_103 = lean_ctor_get(x_98, 1); +lean_inc(x_103); +if (lean_is_exclusive(x_98)) { + lean_ctor_release(x_98, 0); + lean_ctor_release(x_98, 1); + x_104 = x_98; +} else { + lean_dec_ref(x_98); + x_104 = lean_box(0); +} +if (lean_is_scalar(x_104)) { + x_105 = lean_alloc_ctor(1, 2, 0); +} else { + x_105 = x_104; +} +lean_ctor_set(x_105, 0, x_102); +lean_ctor_set(x_105, 1, x_103); +return x_105; +} +} +else +{ +lean_object* x_106; lean_object* x_107; +x_106 = l_Lean_Syntax_getId(x_94); +lean_dec(x_94); +x_107 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8_spec__8___redArg(x_106, x_78, x_81, x_8, x_9, x_10, x_11, x_67); +x_13 = x_107; +goto block_18; +} +} +} +} +} +else +{ lean_dec_ref(x_22); lean_dec_ref(x_21); lean_dec_ref(x_20); @@ -17712,25 +17793,8 @@ lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec(x_2); -x_66 = !lean_is_exclusive(x_23); -if (x_66 == 0) -{ return x_23; } -else -{ -lean_object* x_67; lean_object* x_68; lean_object* x_69; -x_67 = lean_ctor_get(x_23, 0); -x_68 = lean_ctor_get(x_23, 1); -lean_inc(x_68); -lean_inc(x_67); -lean_dec(x_23); -x_69 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_69, 0, x_67); -lean_ctor_set(x_69, 1, x_68); -return x_69; -} -} block_18: { if (lean_obj_tag(x_13) == 0) @@ -17762,23 +17826,15 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -lean_object* x_14; -x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_14; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg(x_3, x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8(x_3, x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_13; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__0() { _start: { lean_object* x_1; @@ -17786,7 +17842,7 @@ x_1 = lean_mk_string_unchecked("Parser", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__1() { _start: { lean_object* x_1; @@ -17794,7 +17850,7 @@ x_1 = lean_mk_string_unchecked("Term", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__2() { _start: { lean_object* x_1; @@ -17802,19 +17858,19 @@ x_1 = lean_mk_string_unchecked("hole", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__2; -x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__1; -x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__2; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__1; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__0; x_4 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__4() { _start: { lean_object* x_1; @@ -17822,7 +17878,7 @@ x_1 = lean_mk_string_unchecked("_", 1, 1); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_14; @@ -17849,14 +17905,14 @@ x_20 = lean_ctor_get(x_10, 5); lean_inc(x_20); x_21 = lean_unsigned_to_nat(1u); x_22 = lean_nat_sub(x_2, x_21); -x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___lam__0___boxed), 12, 2); +x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___lam__0___boxed), 12, 2); lean_closure_set(x_23, 0, x_22); lean_closure_set(x_23, 1, x_3); x_24 = l_Lean_SourceInfo_fromRef(x_20, x_14); lean_dec(x_20); -x_25 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__6; -x_26 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__3; -x_27 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__4; +x_25 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__6; +x_26 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__3; +x_27 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__4; lean_inc(x_24); lean_ctor_set_tag(x_16, 2); lean_ctor_set(x_16, 1, x_27); @@ -17864,7 +17920,7 @@ lean_ctor_set(x_16, 0, x_24); lean_inc(x_24); x_28 = l_Lean_Syntax_node1(x_24, x_26, x_16); x_29 = l_Lean_Syntax_node1(x_24, x_25, x_28); -x_30 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg(x_1, x_29, x_23, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_18); +x_30 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8(x_1, x_29, x_23, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_18); return x_30; } else @@ -17877,14 +17933,14 @@ x_32 = lean_ctor_get(x_10, 5); lean_inc(x_32); x_33 = lean_unsigned_to_nat(1u); x_34 = lean_nat_sub(x_2, x_33); -x_35 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___lam__0___boxed), 12, 2); +x_35 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___lam__0___boxed), 12, 2); lean_closure_set(x_35, 0, x_34); lean_closure_set(x_35, 1, x_3); x_36 = l_Lean_SourceInfo_fromRef(x_32, x_14); lean_dec(x_32); -x_37 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__6; -x_38 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__3; -x_39 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__4; +x_37 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__6; +x_38 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__3; +x_39 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__4; lean_inc(x_36); x_40 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_40, 0, x_36); @@ -17892,20 +17948,12 @@ lean_ctor_set(x_40, 1, x_39); lean_inc(x_36); x_41 = l_Lean_Syntax_node1(x_36, x_38, x_40); x_42 = l_Lean_Syntax_node1(x_36, x_37, x_41); -x_43 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg(x_1, x_42, x_35, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_31); +x_43 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8(x_1, x_42, x_35, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_31); return x_43; } } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -lean_object* x_14; -x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_14; -} -} LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__0(lean_object* x_1) { _start: { @@ -17916,17 +17964,13 @@ return x_1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +lean_object* x_14; lean_object* x_15; lean_object* x_16; x_14 = lean_apply_1(x_3, x_1); x_15 = lean_apply_1(x_2, x_14); -x_16 = lean_box(0); -x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_16); -lean_ctor_set(x_17, 1, x_15); -x_18 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_18, 0, x_17); -lean_ctor_set(x_18, 1, x_13); -return x_18; +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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__3(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t 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, 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, lean_object* x_26, lean_object* x_27, lean_object* x_28, lean_object* x_29) { @@ -17949,23 +17993,23 @@ lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); -goto block_57; +goto block_71; } else { lean_dec_ref(x_2); if (x_17 == 0) { -lean_object* x_58; lean_object* x_59; -x_58 = l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__14___closed__2; -x_59 = l_Lean_Name_append(x_18, x_58); -x_30 = x_59; -goto block_54; +lean_object* x_72; lean_object* x_73; +x_72 = l_Lean_Elab_Tactic_Do_dischargePostEntails___redArg___lam__14___closed__2; +x_73 = l_Lean_Name_append(x_18, x_72); +x_30 = x_73; +goto block_68; } else { x_30 = x_18; -goto block_54; +goto block_68; } } } @@ -17983,9 +18027,9 @@ lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); -goto block_57; +goto block_71; } -block_54: +block_68: { lean_object* x_31; lean_inc(x_28); @@ -18003,23 +18047,24 @@ lean_inc_ref(x_5); x_31 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0(x_5, x_6, x_7, x_8, x_30, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28, x_29); if (lean_obj_tag(x_31) == 0) { -lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_32 = lean_ctor_get(x_31, 0); -lean_inc(x_32); -x_33 = lean_ctor_get(x_31, 1); -lean_inc(x_33); -lean_dec_ref(x_31); -x_34 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___closed__0; -x_35 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___closed__1; +uint8_t x_32; +x_32 = !lean_is_exclusive(x_31); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_33 = lean_ctor_get(x_31, 0); +x_34 = lean_ctor_get(x_31, 1); +x_35 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___closed__0; +x_36 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___closed__1; lean_inc_ref(x_10); lean_inc_ref(x_9); -x_36 = l_Lean_Name_mkStr4(x_9, x_10, x_34, x_35); -x_37 = lean_box(0); -x_38 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_38, 0, x_11); -lean_ctor_set(x_38, 1, x_37); -lean_inc_ref(x_38); -x_39 = l_Lean_Expr_const___override(x_36, x_38); +x_37 = l_Lean_Name_mkStr4(x_9, x_10, x_35, x_36); +x_38 = lean_box(0); +lean_ctor_set_tag(x_31, 1); +lean_ctor_set(x_31, 1, x_38); +lean_ctor_set(x_31, 0, x_11); +lean_inc_ref(x_31); +x_39 = l_Lean_Expr_const___override(x_37, x_31); lean_inc_ref(x_7); lean_inc_ref(x_12); lean_inc_ref(x_5); @@ -18031,18 +18076,18 @@ lean_inc_ref(x_12); lean_inc_ref(x_5); lean_inc_ref(x_6); x_41 = l_Lean_mkApp4(x_39, x_6, x_5, x_12, x_8); -x_42 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___closed__0; +x_42 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__6___closed__0; lean_inc_ref(x_10); lean_inc_ref(x_9); -x_43 = l_Lean_Name_mkStr4(x_9, x_10, x_34, x_42); -lean_inc_ref(x_38); -x_44 = l_Lean_Expr_const___override(x_43, x_38); -x_45 = l_Lean_mkApp6(x_44, x_6, x_5, x_12, x_7, x_8, x_32); +x_43 = l_Lean_Name_mkStr4(x_9, x_10, x_35, x_42); +lean_inc_ref(x_31); +x_44 = l_Lean_Expr_const___override(x_43, x_31); +x_45 = l_Lean_mkApp6(x_44, x_6, x_5, x_12, x_7, x_8, x_33); x_46 = lean_box(x_14); -x_47 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___boxed), 11, 10); +x_47 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___boxed), 11, 10); lean_closure_set(x_47, 0, x_9); lean_closure_set(x_47, 1, x_10); -lean_closure_set(x_47, 2, x_38); +lean_closure_set(x_47, 2, x_31); lean_closure_set(x_47, 3, x_40); lean_closure_set(x_47, 4, x_13); lean_closure_set(x_47, 5, x_46); @@ -18051,7 +18096,7 @@ lean_closure_set(x_47, 7, x_45); lean_closure_set(x_47, 8, x_15); lean_closure_set(x_47, 9, x_16); x_48 = lean_box(0); -x_49 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__1(x_1, x_19, x_47, x_48, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28, x_33); +x_49 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__1(x_1, x_19, x_47, x_48, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28, x_34); lean_dec(x_28); lean_dec_ref(x_27); lean_dec(x_26); @@ -18064,7 +18109,68 @@ return x_49; } else { -uint8_t x_50; +lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_50 = lean_ctor_get(x_31, 0); +x_51 = lean_ctor_get(x_31, 1); +lean_inc(x_51); +lean_inc(x_50); +lean_dec(x_31); +x_52 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___closed__0; +x_53 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___closed__1; +lean_inc_ref(x_10); +lean_inc_ref(x_9); +x_54 = l_Lean_Name_mkStr4(x_9, x_10, x_52, x_53); +x_55 = lean_box(0); +x_56 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_56, 0, x_11); +lean_ctor_set(x_56, 1, x_55); +lean_inc_ref(x_56); +x_57 = l_Lean_Expr_const___override(x_54, x_56); +lean_inc_ref(x_7); +lean_inc_ref(x_12); +lean_inc_ref(x_5); +lean_inc_ref(x_6); +lean_inc_ref(x_57); +x_58 = l_Lean_mkApp4(x_57, x_6, x_5, x_12, x_7); +lean_inc_ref(x_8); +lean_inc_ref(x_12); +lean_inc_ref(x_5); +lean_inc_ref(x_6); +x_59 = l_Lean_mkApp4(x_57, x_6, x_5, x_12, x_8); +x_60 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__6___closed__0; +lean_inc_ref(x_10); +lean_inc_ref(x_9); +x_61 = l_Lean_Name_mkStr4(x_9, x_10, x_52, x_60); +lean_inc_ref(x_56); +x_62 = l_Lean_Expr_const___override(x_61, x_56); +x_63 = l_Lean_mkApp6(x_62, x_6, x_5, x_12, x_7, x_8, x_50); +x_64 = lean_box(x_14); +x_65 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___boxed), 11, 10); +lean_closure_set(x_65, 0, x_9); +lean_closure_set(x_65, 1, x_10); +lean_closure_set(x_65, 2, x_56); +lean_closure_set(x_65, 3, x_58); +lean_closure_set(x_65, 4, x_13); +lean_closure_set(x_65, 5, x_64); +lean_closure_set(x_65, 6, x_59); +lean_closure_set(x_65, 7, x_63); +lean_closure_set(x_65, 8, x_15); +lean_closure_set(x_65, 9, x_16); +x_66 = lean_box(0); +x_67 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__1(x_1, x_19, x_65, x_66, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28, x_51); +lean_dec(x_28); +lean_dec_ref(x_27); +lean_dec(x_26); +lean_dec_ref(x_25); +lean_dec(x_24); +lean_dec_ref(x_23); +lean_dec(x_22); +lean_dec_ref(x_21); +return x_67; +} +} +else +{ lean_dec(x_28); lean_dec_ref(x_27); lean_dec(x_26); @@ -18086,31 +18192,14 @@ lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_1); -x_50 = !lean_is_exclusive(x_31); -if (x_50 == 0) -{ return x_31; } -else +} +block_71: { -lean_object* x_51; lean_object* x_52; lean_object* x_53; -x_51 = lean_ctor_get(x_31, 0); -x_52 = lean_ctor_get(x_31, 1); -lean_inc(x_52); -lean_inc(x_51); -lean_dec(x_31); -x_53 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_53, 0, x_51); -lean_ctor_set(x_53, 1, x_52); -return x_53; -} -} -} -block_57: -{ -lean_object* x_55; lean_object* x_56; -x_55 = lean_box(0); -x_56 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__1(x_1, x_19, x_2, x_55, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28, x_29); +lean_object* x_69; lean_object* x_70; +x_69 = lean_box(0); +x_70 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__1(x_1, x_19, x_2, x_69, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28, x_29); lean_dec(x_28); lean_dec_ref(x_27); lean_dec(x_26); @@ -18119,11 +18208,11 @@ lean_dec(x_24); lean_dec_ref(x_23); lean_dec(x_22); lean_dec_ref(x_21); -return x_56; +return x_70; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26, lean_object* x_27, lean_object* x_28) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26, lean_object* x_27, lean_object* x_28) { _start: { lean_object* x_29; @@ -18149,7 +18238,7 @@ x_35 = l_Lean_Meta_Context_config(x_24); x_36 = !lean_is_exclusive(x_35); if (x_36 == 0) { -uint8_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; uint8_t x_45; uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; uint8_t x_50; +uint8_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; uint8_t x_45; uint8_t x_46; lean_object* x_47; uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; x_37 = lean_ctor_get_uint8(x_24, sizeof(void*)*7); x_38 = lean_ctor_get(x_24, 1); lean_inc(x_38); @@ -18165,113 +18254,85 @@ x_43 = lean_ctor_get(x_24, 6); lean_inc(x_43); x_44 = lean_ctor_get_uint8(x_24, sizeof(void*)*7 + 1); x_45 = lean_ctor_get_uint8(x_24, sizeof(void*)*7 + 2); -lean_ctor_set_uint8(x_35, 7, x_3); -x_46 = l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(x_35); -x_47 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_47, 0, x_35); -lean_ctor_set_uint64(x_47, sizeof(void*)*1, x_46); -lean_inc(x_43); -lean_inc(x_42); -lean_inc(x_41); -lean_inc_ref(x_40); -lean_inc_ref(x_39); -lean_inc(x_38); -x_48 = lean_alloc_ctor(0, 7, 3); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_38); -lean_ctor_set(x_48, 2, x_39); -lean_ctor_set(x_48, 3, x_40); -lean_ctor_set(x_48, 4, x_41); -lean_ctor_set(x_48, 5, x_42); -lean_ctor_set(x_48, 6, x_43); -lean_ctor_set_uint8(x_48, sizeof(void*)*7, x_37); -lean_ctor_set_uint8(x_48, sizeof(void*)*7 + 1, x_44); -lean_ctor_set_uint8(x_48, sizeof(void*)*7 + 2, x_45); -x_49 = l_Lean_Meta_Context_config(x_48); -lean_dec_ref(x_48); -x_50 = !lean_is_exclusive(x_49); -if (x_50 == 0) -{ -uint8_t x_51; lean_object* x_52; uint64_t x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_51 = 0; -x_52 = l_Lean_Expr_betaRev(x_30, x_4, x_51, x_51); -lean_ctor_set_uint8(x_49, 0, x_3); -lean_ctor_set_uint8(x_49, 1, x_3); -lean_ctor_set_uint8(x_49, 2, x_3); -lean_ctor_set_uint8(x_49, 3, x_3); -x_53 = l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(x_49); -x_54 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_54, 0, x_49); -lean_ctor_set_uint64(x_54, sizeof(void*)*1, x_53); -x_55 = lean_alloc_ctor(0, 7, 3); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_55, 1, x_38); -lean_ctor_set(x_55, 2, x_39); -lean_ctor_set(x_55, 3, x_40); -lean_ctor_set(x_55, 4, x_41); -lean_ctor_set(x_55, 5, x_42); -lean_ctor_set(x_55, 6, x_43); -lean_ctor_set_uint8(x_55, sizeof(void*)*7, x_37); -lean_ctor_set_uint8(x_55, sizeof(void*)*7 + 1, x_44); -lean_ctor_set_uint8(x_55, sizeof(void*)*7 + 2, x_45); +x_46 = 0; +x_47 = l_Lean_Expr_betaRev(x_30, x_3, x_46, x_46); +lean_ctor_set_uint8(x_35, 0, x_4); +lean_ctor_set_uint8(x_35, 1, x_4); +lean_ctor_set_uint8(x_35, 2, x_4); +lean_ctor_set_uint8(x_35, 3, x_4); +x_48 = l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(x_35); +x_49 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_49, 0, x_35); +lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_48); +x_50 = lean_alloc_ctor(0, 7, 3); +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_38); +lean_ctor_set(x_50, 2, x_39); +lean_ctor_set(x_50, 3, x_40); +lean_ctor_set(x_50, 4, x_41); +lean_ctor_set(x_50, 5, x_42); +lean_ctor_set(x_50, 6, x_43); +lean_ctor_set_uint8(x_50, sizeof(void*)*7, x_37); +lean_ctor_set_uint8(x_50, sizeof(void*)*7 + 1, x_44); +lean_ctor_set_uint8(x_50, sizeof(void*)*7 + 2, x_45); lean_inc(x_27); lean_inc_ref(x_26); lean_inc(x_25); -lean_inc_ref(x_55); +lean_inc_ref(x_50); lean_inc_ref(x_5); -lean_inc_ref(x_52); -x_56 = l_Lean_Meta_isExprDefEqGuarded(x_52, x_5, x_55, x_25, x_26, x_27, x_34); -if (lean_obj_tag(x_56) == 0) +lean_inc_ref(x_47); +x_51 = l_Lean_Meta_isExprDefEqGuarded(x_47, x_5, x_50, x_25, x_26, x_27, x_34); +if (lean_obj_tag(x_51) == 0) { -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_56, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_56, 1); -lean_inc(x_58); -lean_dec_ref(x_56); +lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_52 = lean_ctor_get(x_51, 0); +lean_inc(x_52); +x_53 = lean_ctor_get(x_51, 1); +lean_inc(x_53); +lean_dec_ref(x_51); lean_inc(x_27); lean_inc_ref(x_26); lean_inc(x_25); lean_inc_ref(x_6); lean_inc(x_33); -x_59 = l_Lean_Meta_isExprDefEqGuarded(x_33, x_6, x_55, x_25, x_26, x_27, x_58); -if (lean_obj_tag(x_59) == 0) +x_54 = l_Lean_Meta_isExprDefEqGuarded(x_33, x_6, x_50, x_25, x_26, x_27, x_53); +if (lean_obj_tag(x_54) == 0) { -lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; uint8_t x_90; -x_60 = lean_ctor_get(x_59, 0); -lean_inc(x_60); -x_61 = lean_ctor_get(x_59, 1); -lean_inc(x_61); -lean_dec_ref(x_59); -x_62 = l_Lean_Expr_betaRev(x_7, x_4, x_51, x_51); -x_90 = lean_unbox(x_57); -if (x_90 == 0) +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_95; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +lean_dec_ref(x_54); +x_57 = l_Lean_Expr_betaRev(x_7, x_3, x_46, x_46); +x_95 = lean_unbox(x_52); +if (x_95 == 0) { -if (x_3 == 0) +if (x_4 == 0) { lean_dec_ref(x_18); lean_dec_ref(x_17); lean_dec_ref(x_5); -goto block_89; +goto block_94; } else { -uint8_t x_91; -x_91 = lean_unbox(x_60); -if (x_91 == 0) +uint8_t x_96; +x_96 = lean_unbox(x_55); +if (x_96 == 0) { -lean_object* x_92; +lean_object* x_97; lean_inc(x_16); -x_92 = lean_apply_1(x_18, x_16); -x_63 = x_92; -goto block_84; +x_97 = lean_apply_1(x_18, x_16); +x_58 = x_97; +goto block_89; } else { lean_dec_ref(x_18); lean_inc(x_16); -x_63 = x_16; -goto block_84; +x_58 = x_16; +goto block_89; } } } @@ -18280,129 +18341,150 @@ else lean_dec_ref(x_18); lean_dec_ref(x_17); lean_dec_ref(x_5); -goto block_89; +goto block_94; } -block_84: +block_89: { -lean_object* x_64; lean_object* x_65; -lean_inc_ref(x_52); +lean_object* x_59; lean_object* x_60; +lean_inc_ref(x_47); lean_inc_ref(x_5); lean_inc_ref(x_15); lean_inc(x_13); -x_64 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_64, 0, x_13); -lean_ctor_set(x_64, 1, x_15); -lean_ctor_set(x_64, 2, x_5); -lean_ctor_set(x_64, 3, x_52); +x_59 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_59, 0, x_13); +lean_ctor_set(x_59, 1, x_15); +lean_ctor_set(x_59, 2, x_5); +lean_ctor_set(x_59, 3, x_47); lean_inc(x_27); lean_inc_ref(x_26); lean_inc(x_25); lean_inc_ref(x_24); -x_65 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__5___redArg(x_64, x_63, x_24, x_25, x_26, x_27, x_61); -if (lean_obj_tag(x_65) == 0) +x_60 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__5___redArg(x_59, x_58, x_24, x_25, x_26, x_27, x_56); +if (lean_obj_tag(x_60) == 0) { -lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; uint8_t x_77; uint8_t x_78; lean_object* x_79; -x_66 = lean_ctor_get(x_65, 0); -lean_inc(x_66); -x_67 = lean_ctor_get(x_65, 1); -lean_inc(x_67); -lean_dec_ref(x_65); -x_68 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__0; -x_69 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__2___closed__0; -x_70 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__1; +uint8_t x_61; +x_61 = !lean_is_exclusive(x_60); +if (x_61 == 0) +{ +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; uint8_t x_72; uint8_t x_73; lean_object* x_74; +x_62 = lean_ctor_get(x_60, 0); +x_63 = lean_ctor_get(x_60, 1); +x_64 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__0; +x_65 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__2___closed__0; +x_66 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__1; lean_inc_ref(x_12); lean_inc_ref(x_11); -x_71 = l_Lean_Name_mkStr5(x_11, x_12, x_68, x_69, x_70); -x_72 = lean_box(0); +x_67 = l_Lean_Name_mkStr5(x_11, x_12, x_64, x_65, x_66); +x_68 = lean_box(0); lean_inc(x_13); -x_73 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_73, 0, x_13); -lean_ctor_set(x_73, 1, x_72); -x_74 = l_Lean_Expr_const___override(x_71, x_73); -lean_inc_ref(x_52); +lean_ctor_set_tag(x_60, 1); +lean_ctor_set(x_60, 1, x_68); +lean_ctor_set(x_60, 0, x_13); +x_69 = l_Lean_Expr_const___override(x_67, x_60); +lean_inc_ref(x_47); lean_inc_ref(x_15); -x_75 = lean_alloc_closure((void*)(l_Lean_mkApp6), 7, 6); -lean_closure_set(x_75, 0, x_74); -lean_closure_set(x_75, 1, x_15); -lean_closure_set(x_75, 2, x_5); -lean_closure_set(x_75, 3, x_52); -lean_closure_set(x_75, 4, x_17); -lean_closure_set(x_75, 5, x_66); -x_76 = lean_box(0); -x_77 = lean_unbox(x_60); -lean_dec(x_60); -x_78 = lean_unbox(x_57); -lean_dec(x_57); -x_79 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__3(x_62, x_8, x_77, x_3, x_9, x_10, x_33, x_6, x_11, x_12, x_13, x_14, x_4, x_51, x_15, x_52, x_78, x_16, x_75, x_76, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_67); -return x_79; +x_70 = lean_alloc_closure((void*)(l_Lean_mkApp6), 7, 6); +lean_closure_set(x_70, 0, x_69); +lean_closure_set(x_70, 1, x_15); +lean_closure_set(x_70, 2, x_5); +lean_closure_set(x_70, 3, x_47); +lean_closure_set(x_70, 4, x_17); +lean_closure_set(x_70, 5, x_62); +x_71 = lean_box(0); +x_72 = lean_unbox(x_55); +lean_dec(x_55); +x_73 = lean_unbox(x_52); +lean_dec(x_52); +x_74 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__3(x_57, x_8, x_72, x_4, x_9, x_10, x_33, x_6, x_11, x_12, x_13, x_14, x_3, x_46, x_15, x_47, x_73, x_16, x_70, x_71, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_63); +return x_74; } else { -uint8_t x_80; -lean_dec_ref(x_62); +lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; uint8_t x_86; uint8_t x_87; lean_object* x_88; +x_75 = lean_ctor_get(x_60, 0); +x_76 = lean_ctor_get(x_60, 1); +lean_inc(x_76); +lean_inc(x_75); lean_dec(x_60); -lean_dec(x_57); -lean_dec_ref(x_52); -lean_dec(x_33); -lean_dec(x_27); -lean_dec_ref(x_26); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec(x_21); -lean_dec_ref(x_20); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_80 = !lean_is_exclusive(x_65); -if (x_80 == 0) -{ -return x_65; -} -else -{ -lean_object* x_81; lean_object* x_82; lean_object* x_83; -x_81 = lean_ctor_get(x_65, 0); -x_82 = lean_ctor_get(x_65, 1); -lean_inc(x_82); -lean_inc(x_81); -lean_dec(x_65); -x_83 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_83, 0, x_81); -lean_ctor_set(x_83, 1, x_82); -return x_83; -} -} -} -block_89: -{ -lean_object* x_85; uint8_t x_86; uint8_t x_87; lean_object* x_88; +x_77 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__0; +x_78 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__2___closed__0; +x_79 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__1; +lean_inc_ref(x_12); +lean_inc_ref(x_11); +x_80 = l_Lean_Name_mkStr5(x_11, x_12, x_77, x_78, x_79); +x_81 = lean_box(0); +lean_inc(x_13); +x_82 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_82, 0, x_13); +lean_ctor_set(x_82, 1, x_81); +x_83 = l_Lean_Expr_const___override(x_80, x_82); +lean_inc_ref(x_47); +lean_inc_ref(x_15); +x_84 = lean_alloc_closure((void*)(l_Lean_mkApp6), 7, 6); +lean_closure_set(x_84, 0, x_83); +lean_closure_set(x_84, 1, x_15); +lean_closure_set(x_84, 2, x_5); +lean_closure_set(x_84, 3, x_47); +lean_closure_set(x_84, 4, x_17); +lean_closure_set(x_84, 5, x_75); x_85 = lean_box(0); -x_86 = lean_unbox(x_60); -lean_dec(x_60); -x_87 = lean_unbox(x_57); -lean_dec(x_57); -lean_inc_ref(x_8); -x_88 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__3(x_62, x_8, x_86, x_3, x_9, x_10, x_33, x_6, x_11, x_12, x_13, x_14, x_4, x_51, x_15, x_52, x_87, x_16, x_8, x_85, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_61); +x_86 = lean_unbox(x_55); +lean_dec(x_55); +x_87 = lean_unbox(x_52); +lean_dec(x_52); +x_88 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__3(x_57, x_8, x_86, x_4, x_9, x_10, x_33, x_6, x_11, x_12, x_13, x_14, x_3, x_46, x_15, x_47, x_87, x_16, x_84, x_85, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_76); return x_88; } } else { -uint8_t x_93; -lean_dec(x_57); -lean_dec_ref(x_52); +lean_dec_ref(x_57); +lean_dec(x_55); +lean_dec(x_52); +lean_dec_ref(x_47); +lean_dec(x_33); +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec(x_23); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec_ref(x_17); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +return x_60; +} +} +block_94: +{ +lean_object* x_90; uint8_t x_91; uint8_t x_92; lean_object* x_93; +x_90 = lean_box(0); +x_91 = lean_unbox(x_55); +lean_dec(x_55); +x_92 = lean_unbox(x_52); +lean_dec(x_52); +lean_inc_ref(x_8); +x_93 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__3(x_57, x_8, x_91, x_4, x_9, x_10, x_33, x_6, x_11, x_12, x_13, x_14, x_3, x_46, x_15, x_47, x_92, x_16, x_8, x_90, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_56); +return x_93; +} +} +else +{ +uint8_t x_98; +lean_dec(x_52); +lean_dec_ref(x_47); lean_dec(x_33); lean_dec(x_27); lean_dec_ref(x_26); @@ -18426,190 +18508,205 @@ lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_93 = !lean_is_exclusive(x_59); -if (x_93 == 0) +lean_dec_ref(x_3); +x_98 = !lean_is_exclusive(x_54); +if (x_98 == 0) { -return x_59; +return x_54; } else { -lean_object* x_94; lean_object* x_95; lean_object* x_96; -x_94 = lean_ctor_get(x_59, 0); -x_95 = lean_ctor_get(x_59, 1); -lean_inc(x_95); -lean_inc(x_94); -lean_dec(x_59); -x_96 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_96, 0, x_94); -lean_ctor_set(x_96, 1, x_95); -return x_96; -} -} -} -else -{ -uint8_t x_97; -lean_dec_ref(x_55); -lean_dec_ref(x_52); -lean_dec(x_33); -lean_dec(x_27); -lean_dec_ref(x_26); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec(x_21); -lean_dec_ref(x_20); -lean_dec_ref(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_97 = !lean_is_exclusive(x_56); -if (x_97 == 0) -{ -return x_56; -} -else -{ -lean_object* x_98; lean_object* x_99; lean_object* x_100; -x_98 = lean_ctor_get(x_56, 0); -x_99 = lean_ctor_get(x_56, 1); +lean_object* x_99; lean_object* x_100; lean_object* x_101; +x_99 = lean_ctor_get(x_54, 0); +x_100 = lean_ctor_get(x_54, 1); +lean_inc(x_100); lean_inc(x_99); -lean_inc(x_98); -lean_dec(x_56); -x_100 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_100, 0, x_98); -lean_ctor_set(x_100, 1, x_99); -return x_100; +lean_dec(x_54); +x_101 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_101, 0, x_99); +lean_ctor_set(x_101, 1, x_100); +return x_101; } } } else { -uint8_t x_101; uint8_t x_102; uint8_t x_103; uint8_t x_104; uint8_t x_105; uint8_t x_106; uint8_t x_107; uint8_t x_108; uint8_t x_109; uint8_t x_110; uint8_t x_111; uint8_t x_112; uint8_t x_113; uint8_t x_114; uint8_t x_115; uint8_t x_116; lean_object* x_117; lean_object* x_118; uint64_t x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; -x_101 = lean_ctor_get_uint8(x_49, 4); -x_102 = lean_ctor_get_uint8(x_49, 5); -x_103 = lean_ctor_get_uint8(x_49, 6); -x_104 = lean_ctor_get_uint8(x_49, 7); -x_105 = lean_ctor_get_uint8(x_49, 8); -x_106 = lean_ctor_get_uint8(x_49, 9); -x_107 = lean_ctor_get_uint8(x_49, 10); -x_108 = lean_ctor_get_uint8(x_49, 11); -x_109 = lean_ctor_get_uint8(x_49, 12); -x_110 = lean_ctor_get_uint8(x_49, 13); -x_111 = lean_ctor_get_uint8(x_49, 14); -x_112 = lean_ctor_get_uint8(x_49, 15); -x_113 = lean_ctor_get_uint8(x_49, 16); -x_114 = lean_ctor_get_uint8(x_49, 17); -x_115 = lean_ctor_get_uint8(x_49, 18); -lean_dec(x_49); -x_116 = 0; -x_117 = l_Lean_Expr_betaRev(x_30, x_4, x_116, x_116); -x_118 = lean_alloc_ctor(0, 0, 19); -lean_ctor_set_uint8(x_118, 0, x_3); -lean_ctor_set_uint8(x_118, 1, x_3); -lean_ctor_set_uint8(x_118, 2, x_3); -lean_ctor_set_uint8(x_118, 3, x_3); -lean_ctor_set_uint8(x_118, 4, x_101); -lean_ctor_set_uint8(x_118, 5, x_102); -lean_ctor_set_uint8(x_118, 6, x_103); -lean_ctor_set_uint8(x_118, 7, x_104); -lean_ctor_set_uint8(x_118, 8, x_105); -lean_ctor_set_uint8(x_118, 9, x_106); -lean_ctor_set_uint8(x_118, 10, x_107); -lean_ctor_set_uint8(x_118, 11, x_108); -lean_ctor_set_uint8(x_118, 12, x_109); -lean_ctor_set_uint8(x_118, 13, x_110); -lean_ctor_set_uint8(x_118, 14, x_111); -lean_ctor_set_uint8(x_118, 15, x_112); -lean_ctor_set_uint8(x_118, 16, x_113); -lean_ctor_set_uint8(x_118, 17, x_114); -lean_ctor_set_uint8(x_118, 18, x_115); -x_119 = l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(x_118); -x_120 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_120, 0, x_118); -lean_ctor_set_uint64(x_120, sizeof(void*)*1, x_119); -x_121 = lean_alloc_ctor(0, 7, 3); -lean_ctor_set(x_121, 0, x_120); -lean_ctor_set(x_121, 1, x_38); -lean_ctor_set(x_121, 2, x_39); -lean_ctor_set(x_121, 3, x_40); -lean_ctor_set(x_121, 4, x_41); -lean_ctor_set(x_121, 5, x_42); -lean_ctor_set(x_121, 6, x_43); -lean_ctor_set_uint8(x_121, sizeof(void*)*7, x_37); -lean_ctor_set_uint8(x_121, sizeof(void*)*7 + 1, x_44); -lean_ctor_set_uint8(x_121, sizeof(void*)*7 + 2, x_45); +uint8_t x_102; +lean_dec_ref(x_50); +lean_dec_ref(x_47); +lean_dec(x_33); +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec(x_23); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec_ref(x_18); +lean_dec_ref(x_17); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +x_102 = !lean_is_exclusive(x_51); +if (x_102 == 0) +{ +return x_51; +} +else +{ +lean_object* x_103; lean_object* x_104; lean_object* x_105; +x_103 = lean_ctor_get(x_51, 0); +x_104 = lean_ctor_get(x_51, 1); +lean_inc(x_104); +lean_inc(x_103); +lean_dec(x_51); +x_105 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_105, 0, x_103); +lean_ctor_set(x_105, 1, x_104); +return x_105; +} +} +} +else +{ +uint8_t x_106; uint8_t x_107; uint8_t x_108; uint8_t x_109; uint8_t x_110; uint8_t x_111; uint8_t x_112; uint8_t x_113; uint8_t x_114; uint8_t x_115; uint8_t x_116; uint8_t x_117; uint8_t x_118; uint8_t x_119; uint8_t x_120; uint8_t 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; uint8_t x_128; uint8_t x_129; uint8_t x_130; lean_object* x_131; lean_object* x_132; uint64_t x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; +x_106 = lean_ctor_get_uint8(x_35, 4); +x_107 = lean_ctor_get_uint8(x_35, 5); +x_108 = lean_ctor_get_uint8(x_35, 6); +x_109 = lean_ctor_get_uint8(x_35, 7); +x_110 = lean_ctor_get_uint8(x_35, 8); +x_111 = lean_ctor_get_uint8(x_35, 9); +x_112 = lean_ctor_get_uint8(x_35, 10); +x_113 = lean_ctor_get_uint8(x_35, 11); +x_114 = lean_ctor_get_uint8(x_35, 12); +x_115 = lean_ctor_get_uint8(x_35, 13); +x_116 = lean_ctor_get_uint8(x_35, 14); +x_117 = lean_ctor_get_uint8(x_35, 15); +x_118 = lean_ctor_get_uint8(x_35, 16); +x_119 = lean_ctor_get_uint8(x_35, 17); +x_120 = lean_ctor_get_uint8(x_35, 18); +lean_dec(x_35); +x_121 = lean_ctor_get_uint8(x_24, sizeof(void*)*7); +x_122 = lean_ctor_get(x_24, 1); +lean_inc(x_122); +x_123 = lean_ctor_get(x_24, 2); +lean_inc_ref(x_123); +x_124 = lean_ctor_get(x_24, 3); +lean_inc_ref(x_124); +x_125 = lean_ctor_get(x_24, 4); +lean_inc(x_125); +x_126 = lean_ctor_get(x_24, 5); +lean_inc(x_126); +x_127 = lean_ctor_get(x_24, 6); +lean_inc(x_127); +x_128 = lean_ctor_get_uint8(x_24, sizeof(void*)*7 + 1); +x_129 = lean_ctor_get_uint8(x_24, sizeof(void*)*7 + 2); +x_130 = 0; +x_131 = l_Lean_Expr_betaRev(x_30, x_3, x_130, x_130); +x_132 = lean_alloc_ctor(0, 0, 19); +lean_ctor_set_uint8(x_132, 0, x_4); +lean_ctor_set_uint8(x_132, 1, x_4); +lean_ctor_set_uint8(x_132, 2, x_4); +lean_ctor_set_uint8(x_132, 3, x_4); +lean_ctor_set_uint8(x_132, 4, x_106); +lean_ctor_set_uint8(x_132, 5, x_107); +lean_ctor_set_uint8(x_132, 6, x_108); +lean_ctor_set_uint8(x_132, 7, x_109); +lean_ctor_set_uint8(x_132, 8, x_110); +lean_ctor_set_uint8(x_132, 9, x_111); +lean_ctor_set_uint8(x_132, 10, x_112); +lean_ctor_set_uint8(x_132, 11, x_113); +lean_ctor_set_uint8(x_132, 12, x_114); +lean_ctor_set_uint8(x_132, 13, x_115); +lean_ctor_set_uint8(x_132, 14, x_116); +lean_ctor_set_uint8(x_132, 15, x_117); +lean_ctor_set_uint8(x_132, 16, x_118); +lean_ctor_set_uint8(x_132, 17, x_119); +lean_ctor_set_uint8(x_132, 18, x_120); +x_133 = l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(x_132); +x_134 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_134, 0, x_132); +lean_ctor_set_uint64(x_134, sizeof(void*)*1, x_133); +x_135 = lean_alloc_ctor(0, 7, 3); +lean_ctor_set(x_135, 0, x_134); +lean_ctor_set(x_135, 1, x_122); +lean_ctor_set(x_135, 2, x_123); +lean_ctor_set(x_135, 3, x_124); +lean_ctor_set(x_135, 4, x_125); +lean_ctor_set(x_135, 5, x_126); +lean_ctor_set(x_135, 6, x_127); +lean_ctor_set_uint8(x_135, sizeof(void*)*7, x_121); +lean_ctor_set_uint8(x_135, sizeof(void*)*7 + 1, x_128); +lean_ctor_set_uint8(x_135, sizeof(void*)*7 + 2, x_129); lean_inc(x_27); lean_inc_ref(x_26); lean_inc(x_25); -lean_inc_ref(x_121); +lean_inc_ref(x_135); lean_inc_ref(x_5); -lean_inc_ref(x_117); -x_122 = l_Lean_Meta_isExprDefEqGuarded(x_117, x_5, x_121, x_25, x_26, x_27, x_34); -if (lean_obj_tag(x_122) == 0) +lean_inc_ref(x_131); +x_136 = l_Lean_Meta_isExprDefEqGuarded(x_131, x_5, x_135, x_25, x_26, x_27, x_34); +if (lean_obj_tag(x_136) == 0) { -lean_object* x_123; lean_object* x_124; lean_object* x_125; -x_123 = lean_ctor_get(x_122, 0); -lean_inc(x_123); -x_124 = lean_ctor_get(x_122, 1); -lean_inc(x_124); -lean_dec_ref(x_122); +lean_object* x_137; lean_object* x_138; lean_object* x_139; +x_137 = lean_ctor_get(x_136, 0); +lean_inc(x_137); +x_138 = lean_ctor_get(x_136, 1); +lean_inc(x_138); +lean_dec_ref(x_136); lean_inc(x_27); lean_inc_ref(x_26); lean_inc(x_25); lean_inc_ref(x_6); lean_inc(x_33); -x_125 = l_Lean_Meta_isExprDefEqGuarded(x_33, x_6, x_121, x_25, x_26, x_27, x_124); -if (lean_obj_tag(x_125) == 0) +x_139 = l_Lean_Meta_isExprDefEqGuarded(x_33, x_6, x_135, x_25, x_26, x_27, x_138); +if (lean_obj_tag(x_139) == 0) { -lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; uint8_t x_156; -x_126 = lean_ctor_get(x_125, 0); -lean_inc(x_126); -x_127 = lean_ctor_get(x_125, 1); -lean_inc(x_127); -lean_dec_ref(x_125); -x_128 = l_Lean_Expr_betaRev(x_7, x_4, x_116, x_116); -x_156 = lean_unbox(x_123); -if (x_156 == 0) +lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; uint8_t x_167; +x_140 = lean_ctor_get(x_139, 0); +lean_inc(x_140); +x_141 = lean_ctor_get(x_139, 1); +lean_inc(x_141); +lean_dec_ref(x_139); +x_142 = l_Lean_Expr_betaRev(x_7, x_3, x_130, x_130); +x_167 = lean_unbox(x_137); +if (x_167 == 0) { -if (x_3 == 0) +if (x_4 == 0) { lean_dec_ref(x_18); lean_dec_ref(x_17); lean_dec_ref(x_5); -goto block_155; +goto block_166; } else { -uint8_t x_157; -x_157 = lean_unbox(x_126); -if (x_157 == 0) +uint8_t x_168; +x_168 = lean_unbox(x_140); +if (x_168 == 0) { -lean_object* x_158; +lean_object* x_169; lean_inc(x_16); -x_158 = lean_apply_1(x_18, x_16); -x_129 = x_158; -goto block_150; +x_169 = lean_apply_1(x_18, x_16); +x_143 = x_169; +goto block_161; } else { lean_dec_ref(x_18); lean_inc(x_16); -x_129 = x_16; -goto block_150; +x_143 = x_16; +goto block_161; } } } @@ -18618,500 +18715,80 @@ else lean_dec_ref(x_18); lean_dec_ref(x_17); lean_dec_ref(x_5); -goto block_155; +goto block_166; } -block_150: +block_161: { -lean_object* x_130; lean_object* x_131; -lean_inc_ref(x_117); +lean_object* x_144; lean_object* x_145; +lean_inc_ref(x_131); lean_inc_ref(x_5); lean_inc_ref(x_15); lean_inc(x_13); -x_130 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_130, 0, x_13); -lean_ctor_set(x_130, 1, x_15); -lean_ctor_set(x_130, 2, x_5); -lean_ctor_set(x_130, 3, x_117); +x_144 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_144, 0, x_13); +lean_ctor_set(x_144, 1, x_15); +lean_ctor_set(x_144, 2, x_5); +lean_ctor_set(x_144, 3, x_131); lean_inc(x_27); lean_inc_ref(x_26); lean_inc(x_25); lean_inc_ref(x_24); -x_131 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__5___redArg(x_130, x_129, x_24, x_25, x_26, x_27, x_127); -if (lean_obj_tag(x_131) == 0) +x_145 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__5___redArg(x_144, x_143, x_24, x_25, x_26, x_27, x_141); +if (lean_obj_tag(x_145) == 0) { -lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; uint8_t x_143; uint8_t x_144; lean_object* x_145; -x_132 = lean_ctor_get(x_131, 0); -lean_inc(x_132); -x_133 = lean_ctor_get(x_131, 1); -lean_inc(x_133); -lean_dec_ref(x_131); -x_134 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__0; -x_135 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__2___closed__0; -x_136 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__1; -lean_inc_ref(x_12); -lean_inc_ref(x_11); -x_137 = l_Lean_Name_mkStr5(x_11, x_12, x_134, x_135, x_136); -x_138 = lean_box(0); -lean_inc(x_13); -x_139 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_139, 0, x_13); -lean_ctor_set(x_139, 1, x_138); -x_140 = l_Lean_Expr_const___override(x_137, x_139); -lean_inc_ref(x_117); -lean_inc_ref(x_15); -x_141 = lean_alloc_closure((void*)(l_Lean_mkApp6), 7, 6); -lean_closure_set(x_141, 0, x_140); -lean_closure_set(x_141, 1, x_15); -lean_closure_set(x_141, 2, x_5); -lean_closure_set(x_141, 3, x_117); -lean_closure_set(x_141, 4, x_17); -lean_closure_set(x_141, 5, x_132); -x_142 = lean_box(0); -x_143 = lean_unbox(x_126); -lean_dec(x_126); -x_144 = lean_unbox(x_123); -lean_dec(x_123); -x_145 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__3(x_128, x_8, x_143, x_3, x_9, x_10, x_33, x_6, x_11, x_12, x_13, x_14, x_4, x_116, x_15, x_117, x_144, x_16, x_141, x_142, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_133); -return x_145; -} -else -{ -lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; -lean_dec_ref(x_128); -lean_dec(x_126); -lean_dec(x_123); -lean_dec_ref(x_117); -lean_dec(x_33); -lean_dec(x_27); -lean_dec_ref(x_26); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec(x_21); -lean_dec_ref(x_20); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_146 = lean_ctor_get(x_131, 0); +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; uint8_t x_158; uint8_t x_159; lean_object* x_160; +x_146 = lean_ctor_get(x_145, 0); lean_inc(x_146); -x_147 = lean_ctor_get(x_131, 1); +x_147 = lean_ctor_get(x_145, 1); lean_inc(x_147); -if (lean_is_exclusive(x_131)) { - lean_ctor_release(x_131, 0); - lean_ctor_release(x_131, 1); - x_148 = x_131; +if (lean_is_exclusive(x_145)) { + lean_ctor_release(x_145, 0); + lean_ctor_release(x_145, 1); + x_148 = x_145; } else { - lean_dec_ref(x_131); + lean_dec_ref(x_145); x_148 = lean_box(0); } -if (lean_is_scalar(x_148)) { - x_149 = lean_alloc_ctor(1, 2, 0); -} else { - x_149 = x_148; -} -lean_ctor_set(x_149, 0, x_146); -lean_ctor_set(x_149, 1, x_147); -return x_149; -} -} -block_155: -{ -lean_object* x_151; uint8_t x_152; uint8_t x_153; lean_object* x_154; -x_151 = lean_box(0); -x_152 = lean_unbox(x_126); -lean_dec(x_126); -x_153 = lean_unbox(x_123); -lean_dec(x_123); -lean_inc_ref(x_8); -x_154 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__3(x_128, x_8, x_152, x_3, x_9, x_10, x_33, x_6, x_11, x_12, x_13, x_14, x_4, x_116, x_15, x_117, x_153, x_16, x_8, x_151, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_127); -return x_154; -} -} -else -{ -lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; -lean_dec(x_123); -lean_dec_ref(x_117); -lean_dec(x_33); -lean_dec(x_27); -lean_dec_ref(x_26); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec(x_21); -lean_dec_ref(x_20); -lean_dec_ref(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_159 = lean_ctor_get(x_125, 0); -lean_inc(x_159); -x_160 = lean_ctor_get(x_125, 1); -lean_inc(x_160); -if (lean_is_exclusive(x_125)) { - lean_ctor_release(x_125, 0); - lean_ctor_release(x_125, 1); - x_161 = x_125; -} else { - lean_dec_ref(x_125); - x_161 = lean_box(0); -} -if (lean_is_scalar(x_161)) { - x_162 = lean_alloc_ctor(1, 2, 0); -} else { - x_162 = x_161; -} -lean_ctor_set(x_162, 0, x_159); -lean_ctor_set(x_162, 1, x_160); -return x_162; -} -} -else -{ -lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; -lean_dec_ref(x_121); -lean_dec_ref(x_117); -lean_dec(x_33); -lean_dec(x_27); -lean_dec_ref(x_26); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec(x_21); -lean_dec_ref(x_20); -lean_dec_ref(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_163 = lean_ctor_get(x_122, 0); -lean_inc(x_163); -x_164 = lean_ctor_get(x_122, 1); -lean_inc(x_164); -if (lean_is_exclusive(x_122)) { - lean_ctor_release(x_122, 0); - lean_ctor_release(x_122, 1); - x_165 = x_122; -} else { - lean_dec_ref(x_122); - x_165 = lean_box(0); -} -if (lean_is_scalar(x_165)) { - x_166 = lean_alloc_ctor(1, 2, 0); -} else { - x_166 = x_165; -} -lean_ctor_set(x_166, 0, x_163); -lean_ctor_set(x_166, 1, x_164); -return x_166; -} -} -} -else -{ -uint8_t x_167; uint8_t x_168; uint8_t x_169; uint8_t x_170; uint8_t x_171; uint8_t x_172; uint8_t x_173; uint8_t x_174; uint8_t x_175; uint8_t x_176; uint8_t x_177; uint8_t x_178; uint8_t x_179; uint8_t x_180; uint8_t x_181; uint8_t x_182; uint8_t x_183; uint8_t x_184; uint8_t 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; uint8_t x_192; uint8_t x_193; lean_object* x_194; uint64_t x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; uint8_t x_199; uint8_t x_200; uint8_t x_201; uint8_t x_202; uint8_t x_203; uint8_t x_204; uint8_t x_205; uint8_t x_206; uint8_t x_207; uint8_t x_208; uint8_t x_209; uint8_t x_210; uint8_t x_211; uint8_t x_212; uint8_t x_213; lean_object* x_214; uint8_t x_215; lean_object* x_216; lean_object* x_217; uint64_t x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; -x_167 = lean_ctor_get_uint8(x_35, 0); -x_168 = lean_ctor_get_uint8(x_35, 1); -x_169 = lean_ctor_get_uint8(x_35, 2); -x_170 = lean_ctor_get_uint8(x_35, 3); -x_171 = lean_ctor_get_uint8(x_35, 4); -x_172 = lean_ctor_get_uint8(x_35, 5); -x_173 = lean_ctor_get_uint8(x_35, 6); -x_174 = lean_ctor_get_uint8(x_35, 8); -x_175 = lean_ctor_get_uint8(x_35, 9); -x_176 = lean_ctor_get_uint8(x_35, 10); -x_177 = lean_ctor_get_uint8(x_35, 11); -x_178 = lean_ctor_get_uint8(x_35, 12); -x_179 = lean_ctor_get_uint8(x_35, 13); -x_180 = lean_ctor_get_uint8(x_35, 14); -x_181 = lean_ctor_get_uint8(x_35, 15); -x_182 = lean_ctor_get_uint8(x_35, 16); -x_183 = lean_ctor_get_uint8(x_35, 17); -x_184 = lean_ctor_get_uint8(x_35, 18); -lean_dec(x_35); -x_185 = lean_ctor_get_uint8(x_24, sizeof(void*)*7); -x_186 = lean_ctor_get(x_24, 1); -lean_inc(x_186); -x_187 = lean_ctor_get(x_24, 2); -lean_inc_ref(x_187); -x_188 = lean_ctor_get(x_24, 3); -lean_inc_ref(x_188); -x_189 = lean_ctor_get(x_24, 4); -lean_inc(x_189); -x_190 = lean_ctor_get(x_24, 5); -lean_inc(x_190); -x_191 = lean_ctor_get(x_24, 6); -lean_inc(x_191); -x_192 = lean_ctor_get_uint8(x_24, sizeof(void*)*7 + 1); -x_193 = lean_ctor_get_uint8(x_24, sizeof(void*)*7 + 2); -x_194 = lean_alloc_ctor(0, 0, 19); -lean_ctor_set_uint8(x_194, 0, x_167); -lean_ctor_set_uint8(x_194, 1, x_168); -lean_ctor_set_uint8(x_194, 2, x_169); -lean_ctor_set_uint8(x_194, 3, x_170); -lean_ctor_set_uint8(x_194, 4, x_171); -lean_ctor_set_uint8(x_194, 5, x_172); -lean_ctor_set_uint8(x_194, 6, x_173); -lean_ctor_set_uint8(x_194, 7, x_3); -lean_ctor_set_uint8(x_194, 8, x_174); -lean_ctor_set_uint8(x_194, 9, x_175); -lean_ctor_set_uint8(x_194, 10, x_176); -lean_ctor_set_uint8(x_194, 11, x_177); -lean_ctor_set_uint8(x_194, 12, x_178); -lean_ctor_set_uint8(x_194, 13, x_179); -lean_ctor_set_uint8(x_194, 14, x_180); -lean_ctor_set_uint8(x_194, 15, x_181); -lean_ctor_set_uint8(x_194, 16, x_182); -lean_ctor_set_uint8(x_194, 17, x_183); -lean_ctor_set_uint8(x_194, 18, x_184); -x_195 = l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(x_194); -x_196 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_196, 0, x_194); -lean_ctor_set_uint64(x_196, sizeof(void*)*1, x_195); -lean_inc(x_191); -lean_inc(x_190); -lean_inc(x_189); -lean_inc_ref(x_188); -lean_inc_ref(x_187); -lean_inc(x_186); -x_197 = lean_alloc_ctor(0, 7, 3); -lean_ctor_set(x_197, 0, x_196); -lean_ctor_set(x_197, 1, x_186); -lean_ctor_set(x_197, 2, x_187); -lean_ctor_set(x_197, 3, x_188); -lean_ctor_set(x_197, 4, x_189); -lean_ctor_set(x_197, 5, x_190); -lean_ctor_set(x_197, 6, x_191); -lean_ctor_set_uint8(x_197, sizeof(void*)*7, x_185); -lean_ctor_set_uint8(x_197, sizeof(void*)*7 + 1, x_192); -lean_ctor_set_uint8(x_197, sizeof(void*)*7 + 2, x_193); -x_198 = l_Lean_Meta_Context_config(x_197); -lean_dec_ref(x_197); -x_199 = lean_ctor_get_uint8(x_198, 4); -x_200 = lean_ctor_get_uint8(x_198, 5); -x_201 = lean_ctor_get_uint8(x_198, 6); -x_202 = lean_ctor_get_uint8(x_198, 7); -x_203 = lean_ctor_get_uint8(x_198, 8); -x_204 = lean_ctor_get_uint8(x_198, 9); -x_205 = lean_ctor_get_uint8(x_198, 10); -x_206 = lean_ctor_get_uint8(x_198, 11); -x_207 = lean_ctor_get_uint8(x_198, 12); -x_208 = lean_ctor_get_uint8(x_198, 13); -x_209 = lean_ctor_get_uint8(x_198, 14); -x_210 = lean_ctor_get_uint8(x_198, 15); -x_211 = lean_ctor_get_uint8(x_198, 16); -x_212 = lean_ctor_get_uint8(x_198, 17); -x_213 = lean_ctor_get_uint8(x_198, 18); -if (lean_is_exclusive(x_198)) { - x_214 = x_198; -} else { - lean_dec_ref(x_198); - x_214 = lean_box(0); -} -x_215 = 0; -x_216 = l_Lean_Expr_betaRev(x_30, x_4, x_215, x_215); -if (lean_is_scalar(x_214)) { - x_217 = lean_alloc_ctor(0, 0, 19); -} else { - x_217 = x_214; -} -lean_ctor_set_uint8(x_217, 0, x_3); -lean_ctor_set_uint8(x_217, 1, x_3); -lean_ctor_set_uint8(x_217, 2, x_3); -lean_ctor_set_uint8(x_217, 3, x_3); -lean_ctor_set_uint8(x_217, 4, x_199); -lean_ctor_set_uint8(x_217, 5, x_200); -lean_ctor_set_uint8(x_217, 6, x_201); -lean_ctor_set_uint8(x_217, 7, x_202); -lean_ctor_set_uint8(x_217, 8, x_203); -lean_ctor_set_uint8(x_217, 9, x_204); -lean_ctor_set_uint8(x_217, 10, x_205); -lean_ctor_set_uint8(x_217, 11, x_206); -lean_ctor_set_uint8(x_217, 12, x_207); -lean_ctor_set_uint8(x_217, 13, x_208); -lean_ctor_set_uint8(x_217, 14, x_209); -lean_ctor_set_uint8(x_217, 15, x_210); -lean_ctor_set_uint8(x_217, 16, x_211); -lean_ctor_set_uint8(x_217, 17, x_212); -lean_ctor_set_uint8(x_217, 18, x_213); -x_218 = l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(x_217); -x_219 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_219, 0, x_217); -lean_ctor_set_uint64(x_219, sizeof(void*)*1, x_218); -x_220 = lean_alloc_ctor(0, 7, 3); -lean_ctor_set(x_220, 0, x_219); -lean_ctor_set(x_220, 1, x_186); -lean_ctor_set(x_220, 2, x_187); -lean_ctor_set(x_220, 3, x_188); -lean_ctor_set(x_220, 4, x_189); -lean_ctor_set(x_220, 5, x_190); -lean_ctor_set(x_220, 6, x_191); -lean_ctor_set_uint8(x_220, sizeof(void*)*7, x_185); -lean_ctor_set_uint8(x_220, sizeof(void*)*7 + 1, x_192); -lean_ctor_set_uint8(x_220, sizeof(void*)*7 + 2, x_193); -lean_inc(x_27); -lean_inc_ref(x_26); -lean_inc(x_25); -lean_inc_ref(x_220); -lean_inc_ref(x_5); -lean_inc_ref(x_216); -x_221 = l_Lean_Meta_isExprDefEqGuarded(x_216, x_5, x_220, x_25, x_26, x_27, x_34); -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_221, 0); -lean_inc(x_222); -x_223 = lean_ctor_get(x_221, 1); -lean_inc(x_223); -lean_dec_ref(x_221); -lean_inc(x_27); -lean_inc_ref(x_26); -lean_inc(x_25); -lean_inc_ref(x_6); -lean_inc(x_33); -x_224 = l_Lean_Meta_isExprDefEqGuarded(x_33, x_6, x_220, x_25, x_26, x_27, x_223); -if (lean_obj_tag(x_224) == 0) -{ -lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; uint8_t x_255; -x_225 = lean_ctor_get(x_224, 0); -lean_inc(x_225); -x_226 = lean_ctor_get(x_224, 1); -lean_inc(x_226); -lean_dec_ref(x_224); -x_227 = l_Lean_Expr_betaRev(x_7, x_4, x_215, x_215); -x_255 = lean_unbox(x_222); -if (x_255 == 0) -{ -if (x_3 == 0) -{ -lean_dec_ref(x_18); -lean_dec_ref(x_17); -lean_dec_ref(x_5); -goto block_254; -} -else -{ -uint8_t x_256; -x_256 = lean_unbox(x_225); -if (x_256 == 0) -{ -lean_object* x_257; -lean_inc(x_16); -x_257 = lean_apply_1(x_18, x_16); -x_228 = x_257; -goto block_249; -} -else -{ -lean_dec_ref(x_18); -lean_inc(x_16); -x_228 = x_16; -goto block_249; -} -} -} -else -{ -lean_dec_ref(x_18); -lean_dec_ref(x_17); -lean_dec_ref(x_5); -goto block_254; -} -block_249: -{ -lean_object* x_229; lean_object* x_230; -lean_inc_ref(x_216); -lean_inc_ref(x_5); -lean_inc_ref(x_15); -lean_inc(x_13); -x_229 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_229, 0, x_13); -lean_ctor_set(x_229, 1, x_15); -lean_ctor_set(x_229, 2, x_5); -lean_ctor_set(x_229, 3, x_216); -lean_inc(x_27); -lean_inc_ref(x_26); -lean_inc(x_25); -lean_inc_ref(x_24); -x_230 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__5___redArg(x_229, x_228, x_24, x_25, x_26, x_27, x_226); -if (lean_obj_tag(x_230) == 0) -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; uint8_t x_242; uint8_t x_243; lean_object* x_244; -x_231 = lean_ctor_get(x_230, 0); -lean_inc(x_231); -x_232 = lean_ctor_get(x_230, 1); -lean_inc(x_232); -lean_dec_ref(x_230); -x_233 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__0; -x_234 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__2___closed__0; -x_235 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__1; +x_149 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__0; +x_150 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___redArg___lam__2___closed__0; +x_151 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__1; lean_inc_ref(x_12); lean_inc_ref(x_11); -x_236 = l_Lean_Name_mkStr5(x_11, x_12, x_233, x_234, x_235); -x_237 = lean_box(0); +x_152 = l_Lean_Name_mkStr5(x_11, x_12, x_149, x_150, x_151); +x_153 = lean_box(0); lean_inc(x_13); -x_238 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_238, 0, x_13); -lean_ctor_set(x_238, 1, x_237); -x_239 = l_Lean_Expr_const___override(x_236, x_238); -lean_inc_ref(x_216); +if (lean_is_scalar(x_148)) { + x_154 = lean_alloc_ctor(1, 2, 0); +} else { + x_154 = x_148; + lean_ctor_set_tag(x_154, 1); +} +lean_ctor_set(x_154, 0, x_13); +lean_ctor_set(x_154, 1, x_153); +x_155 = l_Lean_Expr_const___override(x_152, x_154); +lean_inc_ref(x_131); lean_inc_ref(x_15); -x_240 = lean_alloc_closure((void*)(l_Lean_mkApp6), 7, 6); -lean_closure_set(x_240, 0, x_239); -lean_closure_set(x_240, 1, x_15); -lean_closure_set(x_240, 2, x_5); -lean_closure_set(x_240, 3, x_216); -lean_closure_set(x_240, 4, x_17); -lean_closure_set(x_240, 5, x_231); -x_241 = lean_box(0); -x_242 = lean_unbox(x_225); -lean_dec(x_225); -x_243 = lean_unbox(x_222); -lean_dec(x_222); -x_244 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__3(x_227, x_8, x_242, x_3, x_9, x_10, x_33, x_6, x_11, x_12, x_13, x_14, x_4, x_215, x_15, x_216, x_243, x_16, x_240, x_241, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_232); -return x_244; +x_156 = lean_alloc_closure((void*)(l_Lean_mkApp6), 7, 6); +lean_closure_set(x_156, 0, x_155); +lean_closure_set(x_156, 1, x_15); +lean_closure_set(x_156, 2, x_5); +lean_closure_set(x_156, 3, x_131); +lean_closure_set(x_156, 4, x_17); +lean_closure_set(x_156, 5, x_146); +x_157 = lean_box(0); +x_158 = lean_unbox(x_140); +lean_dec(x_140); +x_159 = lean_unbox(x_137); +lean_dec(x_137); +x_160 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__3(x_142, x_8, x_158, x_4, x_9, x_10, x_33, x_6, x_11, x_12, x_13, x_14, x_3, x_130, x_15, x_131, x_159, x_16, x_156, x_157, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_147); +return x_160; } else { -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -lean_dec_ref(x_227); -lean_dec(x_225); -lean_dec(x_222); -lean_dec_ref(x_216); +lean_dec_ref(x_142); +lean_dec(x_140); +lean_dec(x_137); +lean_dec_ref(x_131); lean_dec(x_33); lean_dec(x_27); lean_dec_ref(x_26); @@ -19133,47 +18810,28 @@ lean_dec_ref(x_9); lean_dec_ref(x_8); lean_dec_ref(x_6); lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_245 = lean_ctor_get(x_230, 0); -lean_inc(x_245); -x_246 = lean_ctor_get(x_230, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_230)) { - lean_ctor_release(x_230, 0); - lean_ctor_release(x_230, 1); - x_247 = x_230; -} else { - lean_dec_ref(x_230); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; +lean_dec_ref(x_3); +return x_145; } } -block_254: +block_166: { -lean_object* x_250; uint8_t x_251; uint8_t x_252; lean_object* x_253; -x_250 = lean_box(0); -x_251 = lean_unbox(x_225); -lean_dec(x_225); -x_252 = lean_unbox(x_222); -lean_dec(x_222); +lean_object* x_162; uint8_t x_163; uint8_t x_164; lean_object* x_165; +x_162 = lean_box(0); +x_163 = lean_unbox(x_140); +lean_dec(x_140); +x_164 = lean_unbox(x_137); +lean_dec(x_137); lean_inc_ref(x_8); -x_253 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__3(x_227, x_8, x_251, x_3, x_9, x_10, x_33, x_6, x_11, x_12, x_13, x_14, x_4, x_215, x_15, x_216, x_252, x_16, x_8, x_250, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_226); -return x_253; +x_165 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__3(x_142, x_8, x_163, x_4, x_9, x_10, x_33, x_6, x_11, x_12, x_13, x_14, x_3, x_130, x_15, x_131, x_164, x_16, x_8, x_162, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_141); +return x_165; } } else { -lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; -lean_dec(x_222); -lean_dec_ref(x_216); +lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; +lean_dec(x_137); +lean_dec_ref(x_131); lean_dec(x_33); lean_dec(x_27); lean_dec_ref(x_26); @@ -19197,34 +18855,34 @@ lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_258 = lean_ctor_get(x_224, 0); -lean_inc(x_258); -x_259 = lean_ctor_get(x_224, 1); -lean_inc(x_259); -if (lean_is_exclusive(x_224)) { - lean_ctor_release(x_224, 0); - lean_ctor_release(x_224, 1); - x_260 = x_224; +lean_dec_ref(x_3); +x_170 = lean_ctor_get(x_139, 0); +lean_inc(x_170); +x_171 = lean_ctor_get(x_139, 1); +lean_inc(x_171); +if (lean_is_exclusive(x_139)) { + lean_ctor_release(x_139, 0); + lean_ctor_release(x_139, 1); + x_172 = x_139; } else { - lean_dec_ref(x_224); - x_260 = lean_box(0); + lean_dec_ref(x_139); + x_172 = lean_box(0); } -if (lean_is_scalar(x_260)) { - x_261 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_172)) { + x_173 = lean_alloc_ctor(1, 2, 0); } else { - x_261 = x_260; + x_173 = x_172; } -lean_ctor_set(x_261, 0, x_258); -lean_ctor_set(x_261, 1, x_259); -return x_261; +lean_ctor_set(x_173, 0, x_170); +lean_ctor_set(x_173, 1, x_171); +return x_173; } } else { -lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; -lean_dec_ref(x_220); -lean_dec_ref(x_216); +lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; +lean_dec_ref(x_135); +lean_dec_ref(x_131); lean_dec(x_33); lean_dec(x_27); lean_dec_ref(x_26); @@ -19248,33 +18906,32 @@ lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_262 = lean_ctor_get(x_221, 0); -lean_inc(x_262); -x_263 = lean_ctor_get(x_221, 1); -lean_inc(x_263); -if (lean_is_exclusive(x_221)) { - lean_ctor_release(x_221, 0); - lean_ctor_release(x_221, 1); - x_264 = x_221; +lean_dec_ref(x_3); +x_174 = lean_ctor_get(x_136, 0); +lean_inc(x_174); +x_175 = lean_ctor_get(x_136, 1); +lean_inc(x_175); +if (lean_is_exclusive(x_136)) { + lean_ctor_release(x_136, 0); + lean_ctor_release(x_136, 1); + x_176 = x_136; } else { - lean_dec_ref(x_221); - x_264 = lean_box(0); + lean_dec_ref(x_136); + x_176 = lean_box(0); } -if (lean_is_scalar(x_264)) { - x_265 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_176)) { + x_177 = lean_alloc_ctor(1, 2, 0); } else { - x_265 = x_264; + x_177 = x_176; } -lean_ctor_set(x_265, 0, x_262); -lean_ctor_set(x_265, 1, x_263); -return x_265; +lean_ctor_set(x_177, 0, x_174); +lean_ctor_set(x_177, 1, x_175); +return x_177; } } } else { -uint8_t x_266; lean_dec(x_30); lean_dec(x_27); lean_dec_ref(x_26); @@ -19298,30 +18955,12 @@ lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_266 = !lean_is_exclusive(x_32); -if (x_266 == 0) -{ +lean_dec_ref(x_3); return x_32; } -else -{ -lean_object* x_267; lean_object* x_268; lean_object* x_269; -x_267 = lean_ctor_get(x_32, 0); -x_268 = lean_ctor_get(x_32, 1); -lean_inc(x_268); -lean_inc(x_267); -lean_dec(x_32); -x_269 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_269, 0, x_267); -lean_ctor_set(x_269, 1, x_268); -return x_269; -} -} } else { -uint8_t x_270; lean_dec(x_27); lean_dec_ref(x_26); lean_dec(x_25); @@ -19344,27 +18983,10 @@ lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); -lean_dec_ref(x_4); +lean_dec_ref(x_3); lean_dec_ref(x_2); -x_270 = !lean_is_exclusive(x_29); -if (x_270 == 0) -{ return x_29; } -else -{ -lean_object* x_271; lean_object* x_272; lean_object* x_273; -x_271 = lean_ctor_get(x_29, 0); -x_272 = lean_ctor_get(x_29, 1); -lean_inc(x_272); -lean_inc(x_271); -lean_dec(x_29); -x_273 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_273, 0, x_271); -lean_ctor_set(x_273, 1, x_272); -return x_273; -} -} } } LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { @@ -19664,7 +19286,7 @@ lean_inc(x_73); x_74 = lean_ctor_get_uint8(x_14, sizeof(void*)*7 + 1); x_75 = lean_ctor_get_uint8(x_14, sizeof(void*)*7 + 2); x_76 = l_Lean_Expr_consumeMData(x_64); -x_77 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__2; +x_77 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___closed__2; x_78 = l_Lean_Expr_getAppNumArgs(x_76); lean_inc(x_78); x_79 = lean_mk_array(x_78, x_77); @@ -19805,7 +19427,7 @@ lean_inc(x_96); x_97 = lean_ctor_get(x_95, 1); lean_inc(x_97); lean_dec_ref(x_95); -x_98 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__2(x_40, x_37, x_60, x_86, x_63, x_83, x_25, x_5, x_46, x_52, x_57, x_58, x_61, x_6, x_62, x_7, x_64, x_8, x_96, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_97); +x_98 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__2(x_40, x_37, x_86, x_60, x_63, x_83, x_25, x_5, x_46, x_52, x_57, x_58, x_61, x_6, x_62, x_7, x_64, x_8, x_96, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_97); lean_dec(x_96); return x_98; } @@ -19860,7 +19482,7 @@ else lean_object* x_103; lean_object* x_104; lean_dec_ref(x_90); x_103 = lean_box(0); -x_104 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__2(x_40, x_37, x_60, x_86, x_63, x_83, x_25, x_5, x_46, x_52, x_57, x_58, x_61, x_6, x_62, x_7, x_64, x_8, x_103, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_92); +x_104 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__2(x_40, x_37, x_86, x_60, x_63, x_83, x_25, x_5, x_46, x_52, x_57, x_58, x_61, x_6, x_62, x_7, x_64, x_8, x_103, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_92); return x_104; } } @@ -19903,7 +19525,7 @@ lean_inc(x_144); x_145 = lean_ctor_get_uint8(x_14, sizeof(void*)*7 + 1); x_146 = lean_ctor_get_uint8(x_14, sizeof(void*)*7 + 2); x_147 = l_Lean_Expr_consumeMData(x_64); -x_148 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__2; +x_148 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___closed__2; x_149 = l_Lean_Expr_getAppNumArgs(x_147); lean_inc(x_149); x_150 = lean_mk_array(x_149, x_148); @@ -20065,7 +19687,7 @@ lean_inc(x_167); x_168 = lean_ctor_get(x_166, 1); lean_inc(x_168); lean_dec_ref(x_166); -x_169 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__2(x_40, x_37, x_60, x_157, x_63, x_154, x_25, x_5, x_46, x_52, x_57, x_58, x_61, x_6, x_62, x_7, x_64, x_8, x_167, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_168); +x_169 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__2(x_40, x_37, x_157, x_60, x_63, x_154, x_25, x_5, x_46, x_52, x_57, x_58, x_61, x_6, x_62, x_7, x_64, x_8, x_167, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_168); lean_dec(x_167); return x_169; } @@ -20122,7 +19744,7 @@ else lean_object* x_174; lean_object* x_175; lean_dec_ref(x_161); x_174 = lean_box(0); -x_175 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__2(x_40, x_37, x_60, x_157, x_63, x_154, x_25, x_5, x_46, x_52, x_57, x_58, x_61, x_6, x_62, x_7, x_64, x_8, x_174, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_163); +x_175 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__2(x_40, x_37, x_157, x_60, x_63, x_154, x_25, x_5, x_46, x_52, x_57, x_58, x_61, x_6, x_62, x_7, x_64, x_8, x_174, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_163); return x_175; } } @@ -20138,7 +19760,7 @@ return x_175; block_34: { 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_28 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__1; +x_28 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___closed__1; x_29 = l_Lean_MessageData_ofExpr(x_26); if (lean_is_scalar(x_27)) { x_30 = lean_alloc_ctor(7, 2, 0); @@ -20208,7 +19830,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_ _start: { lean_object* x_12; -x_12 = l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6___redArg(x_2, x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6(x_2, x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_12; } } @@ -20263,7 +19885,7 @@ lean_dec(x_19); x_33 = lean_nat_sub(x_28, x_32); lean_dec(x_32); lean_dec(x_28); -x_34 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg(x_7, x_33, x_31, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_26); +x_34 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8(x_7, x_33, x_31, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_26); lean_dec(x_33); return x_34; } @@ -20317,7 +19939,7 @@ lean_dec_ref(x_16); x_18 = l_Lean_Expr_getAppFn(x_17); x_19 = l_Lean_Expr_constName_x21(x_18); lean_dec_ref(x_18); -x_20 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25___closed__0; +x_20 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24___closed__0; x_21 = lean_name_eq(x_19, x_20); lean_dec(x_19); if (x_21 == 0) @@ -20333,7 +19955,7 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_22 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25___closed__2; +x_22 = l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24___closed__2; x_23 = l_Lean_indentExpr(x_17); x_24 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_24, 0, x_22); @@ -20394,62 +20016,10 @@ x_18 = l_Lean_Expr_consumeMData(x_14); lean_dec_ref(x_14); x_19 = l_Lean_Expr_getNumHeadLambdas(x_18); lean_dec_ref(x_18); -x_20 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg(x_1, x_19, x_17, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_20 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8(x_1, x_19, x_17, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_19); -if (lean_obj_tag(x_20) == 0) -{ -uint8_t x_21; -x_21 = !lean_is_exclusive(x_20); -if (x_21 == 0) -{ -lean_object* x_22; lean_object* x_23; -x_22 = lean_ctor_get(x_20, 0); -x_23 = lean_ctor_get(x_22, 1); -lean_inc(x_23); -lean_dec(x_22); -lean_ctor_set(x_20, 0, x_23); return x_20; } -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_24 = lean_ctor_get(x_20, 0); -x_25 = lean_ctor_get(x_20, 1); -lean_inc(x_25); -lean_inc(x_24); -lean_dec(x_20); -x_26 = lean_ctor_get(x_24, 1); -lean_inc(x_26); -lean_dec(x_24); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_26); -lean_ctor_set(x_27, 1, x_25); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_20); -if (x_28 == 0) -{ -return x_20; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_20, 0); -x_30 = lean_ctor_get(x_20, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_20); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; -} -} -} } LEAN_EXPORT uint8_t l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__13_spec__13_spec__13_spec__13___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: @@ -21868,7 +21438,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_Elab_Tactic_Do_elabMSpecNoBind___closed__0; x_2 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; -x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__0; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__0; x_4 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_Spec___hyg_6_; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; @@ -22173,7 +21743,7 @@ lean_dec_ref(x_3); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -22202,15 +21772,15 @@ _start: { uint8_t x_25; lean_object* x_26; x_25 = lean_unbox(x_4); -x_26 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0(x_1, x_2, x_3, x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24); +x_26 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0(x_1, x_2, x_3, x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24); return x_26; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { lean_object* x_14; -x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec_ref(x_3); lean_dec_ref(x_2); return x_14; @@ -22236,7 +21806,7 @@ x_14 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Ela return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___lam__0___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___lam__0___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -22259,37 +21829,28 @@ _start: { uint8_t x_19; lean_object* x_20; x_19 = lean_unbox(x_3); -x_20 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___lam__0(x_1, x_2, x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +x_20 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___lam__0(x_1, x_2, x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); return x_20; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_1); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_2); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -lean_object* x_14; -x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -lean_dec(x_3); -return x_14; -} -} LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__0___boxed(lean_object* x_1) { _start: { @@ -22388,8 +21949,8 @@ lean_object* x_28 = _args[27]; _start: { uint8_t x_29; lean_object* x_30; -x_29 = lean_unbox(x_3); -x_30 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__2(x_1, x_2, x_29, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28); +x_29 = lean_unbox(x_4); +x_30 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0___lam__2(x_1, x_2, x_3, x_29, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28); return x_30; } } @@ -22992,30 +22553,30 @@ l_Lean_Elab_Tactic_Do_mkPreTag___closed__1 = _init_l_Lean_Elab_Tactic_Do_mkPreTa lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkPreTag___closed__1); l_Lean_Elab_Tactic_Do_mkPreTag___closed__2 = _init_l_Lean_Elab_Tactic_Do_mkPreTag___closed__2(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkPreTag___closed__2); -l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__0 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__0); -l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__1 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__5___closed__1); +l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__0 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__0); +l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__1 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__4___closed__1); +l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__6___closed__0 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__6___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__6___closed__0); l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___closed__0 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___closed__0(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___closed__0); +l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___closed__1 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__7___closed__1); l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___closed__0 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___closed__0(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___closed__0); -l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___closed__1 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__8___closed__1); -l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__9___closed__0 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__9___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__9___closed__0); -l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__0 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__0); -l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__1 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__1); -l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__2 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__19___closed__2); -l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25___closed__0 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25___closed__0); -l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25___closed__1 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25___closed__1); -l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25___closed__2 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__25___closed__2); +l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___closed__0 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___closed__0); +l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___closed__1 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___closed__1); +l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___closed__2 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__17___closed__2); +l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24___closed__0 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24___closed__0); +l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24___closed__1 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24___closed__1); +l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24___closed__2 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___lam__24___closed__2); l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__0 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__0(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__0); l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__1 = _init_l_Lean_Elab_Tactic_Do_mSpec___redArg___closed__1(); @@ -23045,58 +22606,58 @@ lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0_spec__3___closed__5 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0_spec__3___closed__5(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__0_spec__3___closed__5); l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__5___redArg___closed__0 = _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__5___redArg___closed__0(); -l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0___closed__0); -l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___lam__0___closed__1); -l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__0); -l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__1); -l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__2 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__2); -l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__3 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__3); -l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__4 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__4); -l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__5 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___redArg___closed__5); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___lam__0___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___lam__0___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___lam__0___closed__0); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___lam__0___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___lam__0___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___lam__0___closed__1); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__0); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__1); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__2 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__2); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__3 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__3); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__4 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__4); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__5 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__5); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__6 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__6); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__7 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__7(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__7); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__8 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__8(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__8); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__9 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__9(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__9); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__10 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__10(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___redArg___closed__10); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__0); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__1); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__2 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__2); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__3 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__3); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__4 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___redArg___closed__4); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0___closed__0); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___lam__0___closed__1); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__0); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__1); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__2 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__2); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__3 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__3); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__4 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__4); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__5 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__6_spec__6___closed__5); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___lam__0___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___lam__0___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___lam__0___closed__0); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___lam__0___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___lam__0___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___lam__0___closed__1); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__0); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__1); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__2 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__2); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__3 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__3); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__4 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__4); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__5 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__5); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__6 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__6); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__7 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__7); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__8 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__8); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__9 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__9); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__10 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__10(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8_spec__8___closed__10); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__0); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__1); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__2 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__2); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__3 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__3); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__4 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__0_spec__8___closed__4); l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__17_spec__17_spec__17___redArg___closed__0 = _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__17_spec__17_spec__17___redArg___closed__0(); lean_mark_persistent(l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__17_spec__17_spec__17___redArg___closed__0); l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__24___redArg___closed__0 = _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_elabMSpecNoBind_spec__24___redArg___closed__0(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen.c b/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen.c index 7a097344b0..d35e955bfe 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.Tactic.Do.VCGen -// Imports: Init.Guard Std.Do.WP Std.Do.Triple Lean.Meta.Tactic.Split Lean.Elab.Tactic.Simp Lean.Elab.Tactic.Meta Lean.Elab.Tactic.Do.ProofMode.Basic Lean.Elab.Tactic.Do.ProofMode.Intro Lean.Elab.Tactic.Do.ProofMode.Cases Lean.Elab.Tactic.Do.ProofMode.Specialize Lean.Elab.Tactic.Do.ProofMode.Pure Lean.Elab.Tactic.Do.LetElim Lean.Elab.Tactic.Do.Spec Lean.Elab.Tactic.Do.Attr Lean.Elab.Tactic.Do.Syntax Lean.Meta.Tactic.SplitIf +// Imports: Std.Do.WP Std.Do.Triple Lean.Elab.Tactic.Simp Lean.Elab.Tactic.Do.ProofMode.Basic Lean.Elab.Tactic.Do.ProofMode.Intro Lean.Elab.Tactic.Do.ProofMode.Revert Lean.Elab.Tactic.Do.ProofMode.Cases Lean.Elab.Tactic.Do.ProofMode.Specialize Lean.Elab.Tactic.Do.ProofMode.Pure Lean.Elab.Tactic.Do.LetElim Lean.Elab.Tactic.Do.Spec Lean.Elab.Tactic.Do.Attr Lean.Elab.Tactic.Do.Syntax Lean.Elab.Tactic.Do.VCGen.Basic Lean.Elab.Tactic.Do.VCGen.Split #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,1640 +13,1386 @@ #ifdef __cplusplus extern "C" { #endif -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__21____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__19; -LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__0; -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__9___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__4(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_Do_VCGen_genVCs_onWPApp___lam__4___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__5(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_fvarId_x3f(lean_object*); -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__2; -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__5; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__4; -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__4___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_tryGoal___lam__2(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__2(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_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__22; -static lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4___redArg___closed__0; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__11; -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__8; -static lean_object* l_Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_; -LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__3(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_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; -LEAN_EXPORT lean_object* l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__8; +lean_object* l_Lean_Meta_mkEqHEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___boxed(lean_object**); +lean_object* l_Lean_Meta_inferArgumentTypesN(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__15___closed__1; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__9; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__10; +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0(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_Elab_Tactic_Do_elabConfig___redArg___closed__0; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__9; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__3___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_assumption(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14_spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__20; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_resolveId_x3f(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_liftSimpM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__8(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__5___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_Do_VCGen_genVCs_onWPApp___lam__11___closed__5; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__0; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__13; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__9; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_reduceProjBeta_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__10; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__0(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_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__0; lean_object* l_Lean_Core_instMonadCoreM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__4___boxed(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_Do_VCGen_genVCs_onJumpSite___closed__6; uint64_t l_Lean_Meta_Context_configKey(lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__6; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_emitVC___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_emitVC___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_Lean_mkAppN(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_genVCs_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__10; size_t lean_usize_shift_right(size_t, size_t); -static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__3; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_liftSimpM___boxed(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_Do_elabConfig___redArg___closed__10; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___boxed(lean_object**); -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_genVCs_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_burnOne___redArg(lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__0; -LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___lam__0(uint8_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___redArg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_genVCs(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_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__15; -static lean_object* l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__3; -LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__2; -static lean_object* l_Lean_Elab_Tactic_Do_step___closed__7; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__8___boxed(lean_object**); -static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__19; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenStep___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__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_Lean_Elab_Tactic_Do_burnOne___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__0___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*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__6; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__13(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_Do_elabMVCGen___lam__2___closed__5; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__25(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__1; +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_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_Do_VCGen_genVCs___lam__0___closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__3(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_Do_VCGen_genVCs_onWPApp___lam__11___closed__14; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__12; +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__36___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__22_spec__22(lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__36(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__5___lam__0(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__9; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__3___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_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___closed__2; -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1_spec__1___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38_spec__38___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___boxed(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_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__7; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__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_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext(lean_object*, lean_object*, uint8_t, 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_Do_VCGen_genVCs_onJumpSite___lam__12___closed__8; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_reverse___redArg(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4___boxed(lean_object**); -static lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__3___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_addSubGoalAsVC(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__6; -static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__12; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onGoal(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_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__7; lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mStartMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__0; -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_genVCs_spec__0___boxed(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_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___boxed__const__1; lean_object* l_Lean_mkApp7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_getDecl(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__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*, lean_object*, lean_object*); uint8_t lean_usize_dec_le(size_t, size_t); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isProp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mStart(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentD(lean_object*); -uint8_t l_Array_isEmpty___redArg(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_zipWithMAux___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__9___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*); uint8_t l_Lean_Exception_isInterrupt(lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__0; +static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__3___closed__0; +lean_object* l_Lean_mkApp8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__5; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__21; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__7(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_Do_elabConfig___redArg___closed__12; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__9; +lean_object* l_Lean_Elab_Tactic_Do_knownJP_x3f___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__1___lam__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30(lean_object*, lean_object*, uint8_t, 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_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__14; +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_findSpec(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static double l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__0; -static lean_object* l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__1___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_uint64_to_usize(uint64_t); uint64_t lean_uint64_lor(uint64_t, uint64_t); -static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__5; -lean_object* l_Lean_Elab_Tactic_mkConfigItemViews(lean_object*); uint8_t l_Lean_Expr_isLet(lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__23; +LEAN_EXPORT lean_object* l_Array_isEqvAux___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___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_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__1; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___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*); uint8_t l_Lean_Expr_isApp(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1(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_Do_step___closed__2; -static lean_object* l_Lean_Elab_Tactic_Do_step___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Do_decEqFuel____x40_Lean_Elab_Tactic_Do_VCGen___hyg_120_(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___boxed(lean_object**); lean_object* l_Lean_Syntax_getId(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3___redArg(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_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4___closed__0; extern lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onLambda(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3_spec__3___redArg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_isLocalIdent_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__5___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__0; +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__5; +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_sort___override(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4___closed__1; +lean_object* l_Lean_Meta_trySynthInstance(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_qpartition___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_; +lean_object* l_Lean_MessageData_ofList(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__4; lean_object* lean_array_push(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__25; -static lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__8; -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__10; -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__3; -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_step_tryGoal_spec__0___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__7; +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30(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_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__3; +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, 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_Tactic_filterOldMVars___redArg(lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_mul(size_t, size_t); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__4(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_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0___closed__2; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onImp(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_Do_elabMVCGen___lam__0___closed__16; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__6___boxed(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_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__1; -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__15; -extern lean_object* l_Lean_unknownIdentifierMessageTag; -static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__15___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onLet___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__29____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -static lean_object* l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step___closed__10; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14___redArg___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Lean_Name_isAnonymous(lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__6___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_Do_VCGen_genVCs_onJumpSite___lam__12___closed__17; +LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__1___redArg___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___closed__0; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__16; +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__6; +static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__0; +uint8_t lean_usize_dec_eq(size_t, size_t); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__18; lean_object* l_ReaderT_instFunctorOfMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__3___closed__0; lean_object* l___private_Lean_Log_0__Lean_MessageData_appendDescriptionWidgetIfNamed(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__18; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__20____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__9(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__14___boxed(lean_object**); lean_object* l_Lean_replaceRef(lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_getSpecTheorems___redArg(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1___closed__0; +uint8_t l_Lean_LocalDecl_isNondep(lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__7___lam__0(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__2; lean_object* lean_mk_array(lean_object*, lean_object*); -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__1; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__9; -static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__2; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__8___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_Do_elabMVCGen___lam__0___closed__10; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onFail___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg___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_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__0___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__9___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*); +static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__15___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getPos_x3f(lean_object*, uint8_t); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwError___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step_onGoal___closed__5; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__20; +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_addLocalVarInfo(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__4; +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getTailPos_x3f(lean_object*, uint8_t); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__6; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__2___boxed(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_Elab_Tactic_Do_step_onWPApp___lam__15___closed__16; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_elabCDotFunctionAlias_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__18; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__11(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_Do_step___closed__9; -static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__0(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_Do_VCGen_genVCs_onWPApp___lam__11___closed__11; +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2_spec__2___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__2(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_Do_VCGen_genVCs_onJumpSite___lam__12___closed__11; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_getTag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__1(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_Do_step_onGoal___closed__6; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__4; lean_object* l_Lean_Expr_fvarId_x21(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__14___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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__7; -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__0; -static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__24; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_burnOne(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Environment_find_x3f(lean_object*, lean_object*, uint8_t); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__26____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -static lean_object* l_Lean_Elab_Tactic_Do_step___closed__16; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__22____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_burnOne___redArg___boxed(lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__25____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__17; -static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__8; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__5___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_isEqvAux___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7_spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__7___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__25___lam__0(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_Do_VCGen_genVCs_onWPApp___lam__11___closed__3; +LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__2; +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3; +static lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__5; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__9; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_MessageData_hasSyntheticSorry(lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg(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_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__7; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__0; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_assumptionPure(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__6; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10___redArg___lam__0(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_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__0; -static lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__0___closed__1; -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__2; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__7(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__0; +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_rwIfOrMatcher(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isAppOf(lean_object*, lean_object*); lean_object* l_Lean_mkApp10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__6___boxed(lean_object**); +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Name_quickLt(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_altInfos(lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_instDecidableEqFuel___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_cleanupAnnotations(lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__4___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_evalExpr_x27___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__3; -lean_object* l_Lean_MessageData_note(lean_object*); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__10___redArg___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0___redArg(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__3___closed__0; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15(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_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__6; lean_object* l_Lean_mkApp4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___boxed(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_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__5; -static lean_object* l_Lean_Elab_Tactic_Do_step___closed__14; -static size_t l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0___redArg___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ifOutOfFuel___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___boxed(lean_object**); +lean_object* l_Lean_instInhabitedPersistentArrayNode(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__6; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__8; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__2(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_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__5(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_Do_ifOutOfFuel___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___boxed(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_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__20; +static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___closed__1; uint8_t lean_string_dec_eq(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_getNumJoinParams(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__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*); -static lean_object* l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__9(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_Do_VCGen_genVCs___lam__0___closed__11; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__9; +static lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4___closed__1; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___lam__0(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_Do_VCGen_genVCs___lam__0___closed__7; lean_object* l_Lean_Exception_toMessageData(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_foldl___at___Array_appendList_spec__0(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__8; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_mkArray0(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__2(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_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__7___closed__0; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__9___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal(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_Do_elabMVCGen___lam__3___closed__0; +LEAN_EXPORT lean_object* l_List_mapTR_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__13(lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__4; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_run(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__5(size_t, size_t, 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_Do_VCGen_genVCs_onJumpSite___lam__13___closed__4; +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__1; +static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__7___closed__0; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__14; +static double l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__0; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__10; +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__18; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_appArg_x21(lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__2; +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_instMonad___redArg(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4___closed__0; -static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__3; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___lam__0___boxed(lean_object*, lean_object*); -uint8_t l_Lean_Expr_hasSyntheticSorry(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__2(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_Do_step_onWPApp___lam__15___closed__24; -LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0_spec__0___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7_spec__7___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__13(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__14____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__6; -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_getConfigItems(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__3(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_Do_step_onGoal___closed__4; -static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__0; -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__6___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_evalUnsafe____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273____boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__21___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__4; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__4; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3_spec__3(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__0___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14___boxed(lean_object**); +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__25; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__5; +static lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__4; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3_spec__3___redArg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__16(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__6(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_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__1; +LEAN_EXPORT lean_object* l_Array_filterMapM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__22___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__4; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__6; +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__5(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(lean_object*, lean_object*, lean_object*); -uint8_t l_Lean_Expr_isLambda(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__21; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__1; -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_genVCs_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___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_Nat_reprFast(lean_object*); +lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_withUserNamesImpl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_isTypeCorrect(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7_spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__11; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0(uint8_t, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; +lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAux___redArg(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__2; +LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__6___boxed(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_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__8; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__5; lean_object* l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mvcgen_warning; -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_step_tryGoal_spec__0___boxed(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_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__15; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__6; +extern lean_object* l_Lean_Elab_Tactic_Do_mvcgen_warning; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__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*, lean_object*); lean_object* l_Lean_mkAppRev(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___lam__0___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*); -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__12; -LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14_spec__14___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwError___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_liftSimpM___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_getSpecSimpTheorems___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__9____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__7___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__1___lam__0___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +size_t lean_usize_of_nat(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__7; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_liftSimpM___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_expr_abstract(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__8___boxed(lean_object**); lean_object* l_Lean_Elab_Tactic_getMainGoal___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp(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_Do_VCGen_genVCs_onGoal___closed__1; +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__2(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__6; +static lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__11(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_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__5; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__0; +static lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__3___closed__1; lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_mkProj_x27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__10; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3_spec__3(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0(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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__2; -static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__21; -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_reduceProjBeta_x3f_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__5(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__24____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__6; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__16____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__6___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__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_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__0; +static lean_object* l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30___redArg___closed__0; +LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__0___boxed(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__4; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__6; lean_object* lean_st_ref_take(lean_object*, lean_object*); lean_object* l_Lean_Expr_getRevArg_x21(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__6___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withSharing_spec__0___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*); -static lean_object* l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__0; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__10(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__6(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4(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_Do_step_onGoal___closed__2; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__1; +lean_object* l_Lean_Meta_Simp_Result_mkEqMPR(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__8(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_Do_VCGen_genVCs_onJumpSite___closed__4; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__8(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__22_spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__1___lam__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_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___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_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__1(lean_object*, uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_expr_eqv(lean_object*, lean_object*); +lean_object* l_Lean_Meta_Match_Extension_getMatcherInfo_x3f(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__29(size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_mkPreTag(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__2(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23(lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__6(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_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__3___closed__1; +LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__25___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint64_t lean_uint64_shift_right(uint64_t, uint64_t); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_tryGoal___lam__1(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__1; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__17___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__7; +static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__8; +static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__9; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5(uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofSyntax(lean_object*); -lean_object* l_Lean_Syntax_node6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__7___boxed(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_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__4; lean_object* lean_nat_div(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__0(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_MVarId_getType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__0___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_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_empty(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__9___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_elimLets(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3_spec__3___redArg___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg(uint8_t, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step___closed__4; -static lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__0___closed__0; +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__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_Do_VCGen_genVCs_onJoinPoint___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__4; +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FVarId_getValue_x3f___redArg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__2; -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__1; -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__1___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__8; -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__22; -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__28; +static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__2; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__18; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__7(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_mkHEqRefl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__7___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__8(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_resTy(lean_object*); +LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__35(lean_object*, lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withMVarContextImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__7___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_instMonadEIO(lean_object*); -static uint64_t l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__10___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_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_; -LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Syntax_getKind(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__1___closed__1; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__7; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__36___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__2; +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__2(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__8; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__26___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(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_Do_elabMVCGen___lam__4___closed__7; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__16; lean_object* l_Lean_MessageData_ofFormat(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__5; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__8; static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__1; -lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__12; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static uint64_t l_Lean_Elab_Tactic_Do_step___closed__17; -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__27; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_genVCs_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__10____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -LEAN_EXPORT lean_object* l_Lean_throwError___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_evalUnsafe____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__7; +lean_object* l_Lean_Meta_check(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__1___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__17; lean_object* l_Lean_Meta_getLevel(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__1; -static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__1; -static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__23; -static lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__4(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_withSynthesizeImp(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__4; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg___lam__0(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_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__16___redArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_replaceMainGoal___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__14; +LEAN_EXPORT lean_object* l_Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2___boxed(lean_object*, lean_object*, lean_object*); double lean_float_of_nat(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__18; -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4___lam__0(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_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__6(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_instInhabitedOfMonad___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_emitVC___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_instInhabitedForall___redArg___lam__0___boxed(lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__3; -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__2___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_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__0___closed__0; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_pop(lean_object*); lean_object* l_Lean_Meta_mkAppM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0(lean_object*, lean_object*, size_t, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__0; -static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__4; -static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__13; +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(uint8_t, uint8_t); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__17; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_splitIfTarget_x3f(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__3; +static lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_mkAndN(lean_object*); lean_object* lean_st_mk_ref(lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceMatcher_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__4(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_Do_step___closed__13; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_to_list(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_mkEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__3; uint8_t l_Lean_MessageData_hasTag(lean_object*, lean_object*); -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___closed__1; -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__26; +static lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); -lean_object* l_Lean_Syntax_node3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__7; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onFail___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_zipWithMAux___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___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*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_genVCs_spec__1___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_runTactic(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__10___redArg(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_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__3; -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0___redArg(lean_object*, size_t, lean_object*); +lean_object* l_Array_ofSubarray___redArg(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__2; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__5; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__10; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__5; LEAN_EXPORT lean_object* l_Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1(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_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__4; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAuxAux___redArg(uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_elabConfig(uint8_t, 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_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__14; +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_constName_x21(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_assignMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedExpr; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_realizeGlobalConstNoOverloadWithInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0___closed__1; -static lean_object* l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__2; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step___closed__6; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__28____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__23____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__4; -LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Do_isDuplicable(lean_object*); -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_burnOne___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_getPropHyps(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__13___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_Array_filterMapM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__22___closed__0; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__8; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__9(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__11___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentArray_push___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2(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_Elab_Tactic_Do_step_onWPApp___lam__15___closed__19; -static lean_object* l_Lean_Elab_Tactic_Do_step___closed__8; -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__2; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__8____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -lean_object* l_Lean_Syntax_getSepArgs(lean_object*); -lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__3; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__2; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__2; -LEAN_EXPORT lean_object* l_Lean_throwError___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_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_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___lam__0___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0(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_Do_elabConfig___redArg___closed__9; +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30___redArg___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_Do_VCGen_genVCs_onJumpSite___lam__12___boxed__const__1; +lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_lambdaTelescopeImp(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__4; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__15(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_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__1; +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__19; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__2; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__8___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__1___boxed(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_Do_VCGen_genVCs_onJumpSite___lam__12___closed__19; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_letE___override(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); +lean_object* l_Lean_Meta_mapErrorImp___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28(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_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__26; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLetFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_evalUnsafe___redArg____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__21; uint8_t lean_name_eq(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Option_register___at___Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67__spec__0(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_Split_splitMatch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__7; -lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___closed__1; -static lean_object* l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_pruneSolvedGoals(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Elab_Tactic_Do_isJP(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4___boxed(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_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__1; +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__9___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__7___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___closed__0; +LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7_spec__7___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_warningAsError; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onFail(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Elab_pp_macroStack; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__8(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_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*); +static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___closed__1; +static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__3; +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__20; -static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__11; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__11(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__8; +static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__6; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_withJP___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__4; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step___closed__0; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__10___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___closed__0; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__13; -LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__3(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_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__15; +lean_object* l_Lean_mkNot(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__6; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__3___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_extract___redArg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_isMatcherAppCore_x3f(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0(uint8_t, uint8_t, lean_object*); -static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0___closed__0; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__4; +static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__2; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_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*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__2___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_Do_elabMVCGen___lam__0___closed__13; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__14; -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__6; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38___lam__0(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_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__1; +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__14; +LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg___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*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__8; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__3; +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__11; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__4(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_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__0___closed__1; +lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg(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_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__13; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_appFn_x21(lean_object*); lean_object* lean_mk_syntax_ident(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__2___redArg___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint(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_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__18___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__1___boxed(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_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__2; -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_step_tryGoal_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ifOutOfFuel(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_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__0; -lean_object* l_Lean_Elab_Tactic_SavedState_restore___redArg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__0; -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7_spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withSharing_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___closed__2; -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withSharing_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___redArg___lam__0(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__3___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_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__19; -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__4; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__2___boxed(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_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__8(lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7(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_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__7; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__0; +static uint64_t l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___closed__1; +static lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__2(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30___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_usize_to_nat(size_t); -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__13; -static lean_object* l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__3; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2___redArg___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_EXPORT lean_object* l_Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2(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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__16; -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__28; -lean_object* l_Lean_MessageData_ofConstName(lean_object*, uint8_t); -lean_object* lean_register_option(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_saveState___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Lean_Environment_contains(lean_object*, lean_object*, uint8_t); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__1; -static lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___closed__0; -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext(lean_object*, lean_object*, uint8_t, 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_Do_VCGen_genVCs_onJumpSite___lam__13___closed__2; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__14; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__16_spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_mkAndIntroN(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofExpr(lean_object*); lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecProof_instantiate(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_genVCs___lam__0___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_Elab_Tactic_Do_elabConfig___redArg___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__14(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__0___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_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14___redArg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_isDuplicable___closed__2; -LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__1(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__13; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__1(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_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__3___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__5(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_tryGoal___lam__0(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_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__3; -static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__22; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__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*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__4; -static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__5; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__3(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_Do_step_onWPApp___lam__15___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__4___boxed(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_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__3; +lean_object* l_Lean_FVarId_getUserName___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_LocalDecl_isImplementationDetail(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__3; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__0; +static lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7___redArg___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__12; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__8___boxed(lean_object**); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__3; +static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__3; lean_object* l_Lean_Expr_getAppNumArgs(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenStep(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_Do_elabMVCGen___lam__2___closed__1; +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___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_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__26(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Context_config(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__15(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_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_getFreshHypName(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_name_append_index_after(lean_object*, lean_object*); +static lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2___closed__0; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__2(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__1(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__1(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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__12; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__3___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_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__5; -LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step___closed__3; +LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__4___boxed(lean_object**); +lean_object* l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkPure(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__8; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2; +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__2; lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__4; -static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__15___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__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_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_step_tryGoal_spec__0(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__17; -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__1; -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__3; -static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__1; -LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withSharing_spec__0___redArg___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___boxed(lean_object**); +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__16; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_mkArrow___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__6___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__3; +LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_VCGen_genVCs_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__0; +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__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_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__6___boxed(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_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__1; lean_object* lean_array_fget(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onFail___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___boxed(lean_object**); lean_object* l_Lean_Expr_constLevels_x21(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__2; -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__12____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__25; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__17____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -static lean_object* l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__4; -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg(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_Elab_Tactic_Do_step___closed__11; -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__2; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_decEqFuel____x40_Lean_Elab_Tactic_Do_VCGen___hyg_120____boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14_spec__14___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___lam__0(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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__7(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Array_isEqvAux___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30___redArg(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_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__9; +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__24; +static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__1; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__3; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__1___boxed(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_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onFail(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_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__1; +LEAN_EXPORT uint8_t l_Lean_Option_get___at___Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11_spec__11(lean_object*, lean_object*); lean_object* l_Lean_Expr_appFnCleanup___redArg(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__17; -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__23; +LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Do_elabMVCGen___lam__1(uint8_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__4; +static lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__1; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__28___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__36___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__1; +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_instMonadMetaM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__0(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); -static size_t l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0___redArg___closed__1; -static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__2; -static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__1; -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1_spec__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__5; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__4; -LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__0___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__25___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__7(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__20; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__2; +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__6; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkCollisionNode___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabConfig(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__1(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_decLevel(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Syntax_SepArray_ofElems(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_emitVC(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__6___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_Do_VCGen_genVCs_onWPApp___lam__4___closed__2; +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__2___redArg(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_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg___lam__0___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_withMainContext___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__0; -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__7; -lean_object* l_Lean_Environment_mainModule(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step_onGoal___closed__3; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__2; -lean_object* l_Lean_Meta_synthInstance_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__7(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___redArg___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_Do_isDuplicable___closed__0; -static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_isDuplicable___boxed(lean_object*); -static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__4; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__5(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_Do_step_onWPApp___lam__15___closed__11; +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__18___redArg(size_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__0; +LEAN_EXPORT uint8_t l_Array_isEqvAux___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_TermElabM_run___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__5(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__8; -lean_object* l_Lean_Elab_Tactic_mkSimpContext(lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__6___redArg(size_t, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__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*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_mkEqRefl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__1___closed__1; lean_object* l_Lean_indentExpr(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__2; +static lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__3___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__3; +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__3___boxed(lean_object**); +uint8_t l_Lean_Expr_isHEq(lean_object*); lean_object* l_Lean_Meta_getMVarsNoDelayed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__7; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__10___boxed(lean_object**); lean_object* l_Lean_Meta_isExprDefEqGuarded(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntries(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__2; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__15; -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__5; -static lean_object* l_Lean_Elab_Tactic_Do_step___closed__5; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onLambda___lam__0(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_getFVarLocalDecl___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__0; +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4(lean_object*, lean_object*, lean_object*, uint8_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__4(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__29___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__6(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_Do_VCGen_genVCs_onJumpSite___lam__12___closed__15; +static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__3; +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__4___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__18(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_node1(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_unfoldDefinition_x3f(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_instFunctorOfMonad___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__9; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__0___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_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__3; uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__27; lean_object* l_Lean_Meta_mkForallFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_addSubGoalAsVC___redArg___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__1; +LEAN_EXPORT lean_object* l_Lean_Option_get___at___Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11_spec__11___boxed(lean_object*, lean_object*); lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_SavedState_restore___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn_x27(lean_object*); -static lean_object* l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__1; -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0___redArg(lean_object*, size_t, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__11____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2093_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withSharing_spec__0___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Lean_Syntax_isNone(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* lean_panic_fn(lean_object*, lean_object*); -lean_object* l_Lean_Meta_saveState___redArg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__3; -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___closed__0; +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__4(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__6; +LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7_spec__7___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2(lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__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_Do_VCGen_genVCs_onJoinPoint___closed__4; +lean_object* l_Lean_Meta_MatcherApp_toExpr(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_toSubarray___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__35___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__10; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__2(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_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__0; +lean_object* l_List_reverse___redArg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__2; -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__3; -static lean_object* l_Lean_Elab_Tactic_Do_isDuplicable___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onGoal___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__17___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__9; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__3(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_get_match_equations_for(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step_onGoal___closed__1; -static lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__5; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Do_instDecidableEqFuel(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3_spec__3___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2_spec__3(lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__0; +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__3(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_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__0; lean_object* l_Lean_Elab_Tactic_Do_ProofMode_addHypInfo(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_; lean_object* l_Lean_Expr_getAppFn(lean_object*); lean_object* l_Array_append___redArg(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__0; -static lean_object* l_Lean_Elab_Tactic_Do_step___closed__15; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__1; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_mul(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___closed__1; lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Option_register___at___Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67__spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__2(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint64_t lean_uint64_shift_left(uint64_t, uint64_t); -lean_object* l_Lean_Meta_Simp_mkDefaultMethodsCore(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__14; -LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1_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*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__18____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onGoal___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__2; -static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__6; -static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__7; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__27____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__2; +static lean_object* l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11___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_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__3; +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10(uint8_t, lean_object*, uint8_t, 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*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__11___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_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__3___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static size_t l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_nextPowerOfTwo(lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__29; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8___redArg(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_throwTypeMismatchError___redArg(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_Do_elabMVCGen___lam__0___closed__5; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_reduceProjBeta_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1_spec__1___redArg___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_Do_SpecAttr_SpecTheorems_isErased(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* lean_erase_macro_scopes(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Environment_getProjectionStructureName_x3f(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(lean_object*); -lean_object* l_Lean_Meta_Simp_simpMatchDiscrs_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_genVCs___lam__0(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_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Lean_Expr_hasSorry(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_LocalDecl_binderInfo(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3(uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__19; +static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__5___boxed(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_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__0; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__16; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__9___boxed(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_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__3; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__15; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__8(size_t, size_t, lean_object*); +static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___closed__1; +lean_object* l_Lean_Meta_Simp_mkCongrArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__1___closed__0; size_t lean_usize_sub(size_t, size_t); static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__0; -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromConst(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__16; -static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__3; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10___redArg___lam__0___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_array_mk(lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__3; +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__0___redArg___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_getCollisionNodeSize___redArg(lean_object*); -static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__3; -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__1; -static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__4; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__3; -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___boxed(lean_object**); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__2___boxed(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_Do_step_onWPApp___lam__15___closed__26; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3(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_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__3(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_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__5; +LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); -lean_object* l_mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__2; -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1_spec__1___redArg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__23; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__10___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_Do_VCGen_genVCs_onWPApp___lam__11___closed__13; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__5___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__28___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__16_spec__16___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_VCGen_genVCs_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_betaRev(lean_object*, lean_object*, uint8_t, uint8_t); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7_spec__7___redArg___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14_spec__14___redArg___lam__0(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KVMap_findCore(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__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_array_uget(lean_object*, size_t); -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_step_tryGoal_spec__0___redArg___lam__0(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_Do_step___closed__12; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__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_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__7; lean_object* l_Lean_Expr_fvar___override(lean_object*); size_t lean_array_size(lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_genVCs_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__13____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__0___boxed(lean_object*); -LEAN_EXPORT lean_object* l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__7___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_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14_spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_tryGoal___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__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_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__5___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__0(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_Do_VCGen_genVCs_onJumpSite___lam__12___closed__10; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__18(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__1___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg(uint8_t, 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*); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0(lean_object*, lean_object*, size_t, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__13; +lean_object* l_Lean_Elab_Tactic_Do_ProofMode_TypeList_mkCons(lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__4(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_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__0___boxed(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_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__12; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_filterMapM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__22(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr1(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__24(lean_object*, size_t, size_t, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__0; size_t lean_usize_shift_left(size_t, size_t); lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__9; -static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__15; -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10___closed__0; -static lean_object* l_Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_; -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__18; -static lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__10; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_liftSimpM___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__21; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__0(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_local_ctx_num_indices(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__3; +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__7___boxed(lean_object**); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__1; lean_object* l_Lean_Meta_Simp_simp___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onFail___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__12; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___redArg___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Core_instMonadCoreM___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_emitVC___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__9; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__19____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -static lean_object* l_Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__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* l_Lean_Elab_Tactic_evalTactic(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_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__9(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_Match_MatcherInfo_getNumDiscrEqs(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__7___boxed(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_Do_VCGen_genVCs_onJumpSite___lam__12___closed__1; +static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__6; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__10(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*); uint64_t l_Lean_hashMVarId____x40_Lean_Expr___hyg_1869_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__9___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_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__4(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__0; lean_object* l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__30____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__9; -static lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__6; lean_object* l_Lean_Expr_headBeta(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_LocalDecl_value_x3f(lean_object*, uint8_t); lean_object* lean_array_get_size(lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2___redArg(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_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__1___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_LocalDecl_toExpr(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__1(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_pushForallContextIntoHyps(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__14___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_Do_step_onWPApp___lam__15___closed__20; -static lean_object* l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_; -LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__0___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_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__0; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8___boxed(lean_object**); -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__16; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_lt(size_t, size_t); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3(uint8_t, uint8_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__10(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_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__0___boxed(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_Do_VCGen_genVCs_onJumpSite___lam__13___closed__7; +lean_object* l_Pi_instInhabited___redArg___lam__0(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__5; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__3; +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__2; +lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_simpDiscrs_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__7___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_mkLambdaFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__9(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint64_t l_Lean_Meta_TransparencyMode_toUInt64(uint8_t); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__8(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___boxed(lean_object*, lean_object*, 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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_addSubGoalAsVC___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__4_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onFail___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_instantiateLambda(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__0; +lean_object* l_Lean_Elab_Tactic_Do_addSubGoalAsVC___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7_spec__7___redArg___lam__0(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static size_t l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isConst(lean_object*); uint8_t l_Lean_Exception_isRuntime(lean_object*); +lean_object* l_Lean_Expr_lam___override(lean_object*, lean_object*, lean_object*, uint8_t); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___boxed(lean_object**); +lean_object* l_Lean_Expr_beta(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__3; +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29___redArg___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_mkApp5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__6; -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__4; -lean_object* l_Lean_Environment_setExporting(lean_object*, uint8_t); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_tryGoal___lam__0___boxed(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_Do_elabConfig___redArg___closed__5; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_addSubGoalAsVC___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__1; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__0___redArg___boxed(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_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__21___boxed__const__1; +static lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___closed__0; +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__0___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_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_instantiateForall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__4___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__22; static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__0; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__3; -lean_object* l_Lean_Meta_reduceProj_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__10___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_Expr_mvarId_x21(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__8___boxed(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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___redArg(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_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__2; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__12; LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_tryGoal___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__10; +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2(lean_object*, lean_object*, lean_object*); uint64_t l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(lean_object*); lean_object* l_Lean_Expr_consumeMData(lean_object*); -lean_object* l_String_toSubstring_x27(lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__10___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__4_spec__4___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabConfig___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__0(lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7_spec__7___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_uset(lean_object*, size_t, lean_object*); +lean_object* l_Array_zip___redArg(lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofName(lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3___redArg(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_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__0___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_isCasesOnRecursor(lean_object*, lean_object*); lean_object* l_Lean_Meta_instMonadMetaM___lam__1(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_Do_step_onLambda___lam__1___closed__1; lean_object* lean_expr_instantiate1(lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_reduceProjBeta_x3f_go___closed__0; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__4; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__2___boxed(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_Do_VCGen_genVCs_onJumpSite___lam__14___closed__0; lean_object* l_Lean_Elab_Tactic_Do_ProofMode_transferHypNames(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3(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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__4; -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___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_Elab_Tactic_Do_elabMVCGen___lam__0___closed__7; -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__24; -static lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__11; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onFail___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__15____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onLet(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Syntax_toNat(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___lam__0(lean_object*, lean_object*, uint8_t, 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_Do_step_onGoal___closed__0; -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__5; -LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14_spec__14___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0(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_Do_VCGen_genVCs_onGoal___closed__2; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__28___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__1___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__4; +static lean_object* l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__3___boxed(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_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38_spec__38(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_isProof(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2_spec__2(lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageLog_add(lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__2; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__1; size_t lean_usize_land(size_t, size_t); -static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__10; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14___closed__1; lean_object* l_Lean_Meta_whnfR(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenStep___lam__0(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_tryGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_tryGoal___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__9___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_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___closed__1; +static lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__0; +lean_object* l_Lean_Elab_Tactic_Do_getSplitInfo_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__6___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_Do_VCGen_genVCs_onWPApp___lam__11___closed__17; +static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__1___boxed(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_Do_VCGen_genVCs_onWPApp___lam__11___closed__4; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__15___boxed(lean_object**); lean_object* l_Lean_Expr_getNumHeadLambdas(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__6; -static lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__15; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onLambda___lam__1(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_Do_elabMVCGen___lam__0___closed__11; -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__28(size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__7(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0(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_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__6; +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg___closed__0() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Elab", 4, 4); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = lean_box(0); +x_2 = l_Lean_Expr_sort___override(x_1); +return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Tactic", 6, 6); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Do", 2, 2); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("vcgen", 5, 5); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("_private", 8, 8); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_2 = lean_box(0); -x_3 = l_Lean_Name_str___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Lean", 4, 4); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__8____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Name_str___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__9____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__8____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Name_str___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__10____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__9____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Name_str___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__11____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__10____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Name_str___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__12____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("VCGen", 5, 5); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__13____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__12____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__11____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Name_str___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__14____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(0u); -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__13____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Name_num___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__15____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__14____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Name_str___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__16____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__15____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Name_str___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__17____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__16____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Name_str___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__18____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__17____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Name_str___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__19____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("initFn", 6, 6); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__20____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__19____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__18____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Name_str___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__21____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("_@", 2, 2); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__22____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__21____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__20____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Name_str___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__23____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__22____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Name_str___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__24____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__23____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Name_str___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__25____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__24____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Name_str___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__26____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__25____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Name_str___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__27____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__12____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__26____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Name_str___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__28____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("_hyg", 4, 4); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__29____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__28____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__27____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Name_str___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__30____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(6u); -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__29____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Name_num___override(x_2, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(lean_object* x_1) { -_start: -{ -lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = 0; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__30____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l_Lean_registerTraceClass(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_Option_register___at___Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67__spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; -x_5 = lean_ctor_get(x_2, 0); -x_6 = lean_ctor_get(x_2, 1); -x_7 = lean_ctor_get(x_2, 2); -x_8 = lean_alloc_ctor(1, 0, 1); -x_9 = lean_unbox(x_5); -lean_ctor_set_uint8(x_8, 0, x_9); -lean_inc_ref(x_7); -lean_inc_ref(x_6); -x_10 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_10, 0, x_3); -lean_ctor_set(x_10, 1, x_8); -lean_ctor_set(x_10, 2, x_6); -lean_ctor_set(x_10, 3, x_7); -lean_inc(x_1); -x_11 = lean_register_option(x_1, x_10, x_4); -if (lean_obj_tag(x_11) == 0) -{ -uint8_t x_12; -x_12 = !lean_is_exclusive(x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; -x_13 = lean_ctor_get(x_11, 0); -lean_dec(x_13); -lean_inc(x_5); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_1); -lean_ctor_set(x_14, 1, x_5); -lean_ctor_set(x_11, 0, x_14); -return x_11; -} -else -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_15 = lean_ctor_get(x_11, 1); -lean_inc(x_15); -lean_dec(x_11); -lean_inc(x_5); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_1); -lean_ctor_set(x_16, 1, x_5); -x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_16); -lean_ctor_set(x_17, 1, x_15); -return x_17; -} -} -else -{ -uint8_t x_18; -lean_dec(x_1); -x_18 = !lean_is_exclusive(x_11); -if (x_18 == 0) -{ -return x_11; -} -else -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_11, 0); -x_20 = lean_ctor_get(x_11, 1); -lean_inc(x_20); -lean_inc(x_19); -lean_dec(x_11); -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; -} -} -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("mvcgen", 6, 6); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("warning", 7, 7); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_; -x_2 = l_Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_; -x_3 = l_Lean_Name_mkStr2(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("debug", 5, 5); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("disable `mvcgen` usage warning", 30, 30); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_() { -_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_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_; -x_2 = l_Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_5, 0, x_4); -lean_ctor_set(x_5, 1, x_2); -lean_ctor_set(x_5, 2, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_() { -_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; lean_object* x_7; -x_1 = l_Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_; -x_2 = l_Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_6 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_7 = l_Lean_Name_mkStr6(x_6, x_5, x_4, x_3, x_2, x_1); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_; -x_3 = l_Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_; -x_4 = l_Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_; -x_5 = l_Lean_Option_register___at___Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67__spec__0(x_2, x_3, x_4, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_Option_register___at___Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67__spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = l_Lean_Option_register___at___Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67__spec__0(x_1, x_2, x_3, x_4); -lean_dec_ref(x_2); -return x_5; -} -} -LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Do_decEqFuel____x40_Lean_Elab_Tactic_Do_VCGen___hyg_120_(lean_object* x_1, lean_object* x_2) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_3; uint8_t x_4; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; x_3 = lean_ctor_get(x_1, 0); -x_4 = 0; -if (lean_obj_tag(x_2) == 0) +lean_inc(x_3); +x_4 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_4); +x_5 = lean_ctor_get(x_1, 2); +lean_inc_ref(x_5); +x_6 = lean_ctor_get(x_1, 3); +lean_inc_ref(x_6); +x_7 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg___closed__0; +x_8 = l_Lean_Expr_getAppNumArgs(x_6); +lean_inc(x_8); +x_9 = lean_mk_array(x_8, x_7); +x_10 = lean_unsigned_to_nat(1u); +x_11 = lean_nat_sub(x_8, x_10); +lean_dec(x_8); +lean_inc_ref(x_6); +x_12 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_6, x_9, x_11); +x_13 = lean_unsigned_to_nat(2u); +x_14 = lean_array_get_size(x_12); +x_15 = lean_nat_dec_lt(x_13, x_14); +lean_dec(x_14); +if (x_15 == 0) { -lean_object* x_5; uint8_t x_6; -x_5 = lean_ctor_get(x_2, 0); -x_6 = lean_nat_dec_eq(x_3, x_5); -if (x_6 == 0) -{ -return x_4; -} -else -{ -return x_6; -} -} -else -{ -return x_4; -} -} -else -{ -if (lean_obj_tag(x_2) == 0) -{ -uint8_t x_7; -x_7 = 0; -return x_7; -} -else -{ -uint8_t x_8; -x_8 = 1; -return x_8; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_decEqFuel____x40_Lean_Elab_Tactic_Do_VCGen___hyg_120____boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; lean_object* x_4; -x_3 = l_Lean_Elab_Tactic_Do_decEqFuel____x40_Lean_Elab_Tactic_Do_VCGen___hyg_120_(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); -x_4 = lean_box(x_3); -return x_4; -} -} -LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Do_instDecidableEqFuel(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; -x_3 = l_Lean_Elab_Tactic_Do_decEqFuel____x40_Lean_Elab_Tactic_Do_VCGen___hyg_120_(x_1, x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_instDecidableEqFuel___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; lean_object* x_4; -x_3 = l_Lean_Elab_Tactic_Do_instDecidableEqFuel(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); -x_4 = lean_box(x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Config", 6, 6); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_() { -_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_Tactic_Do_evalUnsafe___redArg___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_6 = l_Lean_Name_mkStr5(x_5, x_4, x_3, x_2, x_1); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_evalUnsafe___redArg____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_(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; uint8_t x_8; lean_object* x_9; -x_7 = l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_; -x_8 = 0; -x_9 = l_Lean_Meta_evalExpr_x27___redArg(x_7, x_1, x_8, x_2, x_3, x_4, x_5, x_6); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_evalUnsafe____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -lean_object* x_9; -x_9 = l_Lean_Elab_Tactic_Do_evalUnsafe___redArg____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_(x_1, x_4, x_5, x_6, x_7, x_8); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_evalUnsafe____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -lean_object* x_9; -x_9 = l_Lean_Elab_Tactic_Do_evalUnsafe____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec_ref(x_12); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_2); +return x_1; +} +else +{ +lean_object* x_16; +x_16 = lean_array_fget(x_12, x_13); +if (lean_obj_tag(x_16) == 5) +{ +uint8_t x_17; +x_17 = !lean_is_exclusive(x_1); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_18 = lean_ctor_get(x_1, 3); +lean_dec(x_18); +x_19 = lean_ctor_get(x_1, 2); +lean_dec(x_19); +x_20 = lean_ctor_get(x_1, 1); +lean_dec(x_20); +x_21 = lean_ctor_get(x_1, 0); +lean_dec(x_21); +x_22 = lean_ctor_get(x_16, 0); +lean_inc_ref(x_22); +lean_dec_ref(x_16); +x_23 = l_Lean_Expr_getAppFn(x_6); +lean_dec_ref(x_6); +x_24 = l_Lean_Expr_app___override(x_22, x_2); +x_25 = lean_array_set(x_12, x_13, x_24); +x_26 = l_Lean_mkAppN(x_23, x_25); +lean_dec_ref(x_25); +lean_ctor_set(x_1, 3, x_26); +return x_1; +} +else +{ +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_dec(x_1); +x_27 = lean_ctor_get(x_16, 0); +lean_inc_ref(x_27); +lean_dec_ref(x_16); +x_28 = l_Lean_Expr_getAppFn(x_6); +lean_dec_ref(x_6); +x_29 = l_Lean_Expr_app___override(x_27, x_2); +x_30 = lean_array_set(x_12, x_13, x_29); +x_31 = l_Lean_mkAppN(x_28, x_30); +lean_dec_ref(x_30); +x_32 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_32, 0, x_3); +lean_ctor_set(x_32, 1, x_4); +lean_ctor_set(x_32, 2, x_5); +lean_ctor_set(x_32, 3, x_31); +return x_32; +} +} +else +{ +lean_dec_ref(x_16); +lean_dec_ref(x_12); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_1; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onFail___redArg(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; lean_object* x_10; +x_9 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_1); +x_10 = l_Lean_Elab_Tactic_Do_emitVC___redArg(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onFail(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_10; +x_10 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onFail___redArg(x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onFail___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onFail___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec(x_3); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onFail___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: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onFail(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0_spec__0(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; uint8_t x_8; @@ -1763,478 +1509,1099 @@ return x_38; } } } -LEAN_EXPORT uint8_t l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_3 = lean_ctor_get(x_2, 0); -x_4 = lean_ctor_get(x_2, 1); -x_5 = l_Lean_KVMap_findCore(x_1, x_3); -if (lean_obj_tag(x_5) == 0) -{ -uint8_t x_6; -x_6 = lean_unbox(x_4); -return x_6; -} -else -{ -lean_object* x_7; -x_7 = lean_ctor_get(x_5, 0); -lean_inc(x_7); -lean_dec_ref(x_5); -if (lean_obj_tag(x_7) == 1) -{ -uint8_t x_8; -x_8 = lean_ctor_get_uint8(x_7, 0); -lean_dec_ref(x_7); -return x_8; -} -else -{ -uint8_t x_9; -lean_dec(x_7); -x_9 = lean_unbox(x_4); -return x_9; -} -} -} -} -static lean_object* _init_l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("while expanding", 15, 15); -return x_1; -} -} -static lean_object* _init_l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__0; -x_2 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__1; -x_2 = l_Lean_MessageData_ofFormat(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_3) == 0) -{ -lean_dec_ref(x_1); -return x_2; -} -else -{ -uint8_t x_4; -x_4 = !lean_is_exclusive(x_3); -if (x_4 == 0) -{ -lean_object* x_5; uint8_t x_6; -x_5 = lean_ctor_get(x_3, 0); -x_6 = !lean_is_exclusive(x_5); -if (x_6 == 0) -{ -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; -x_7 = lean_ctor_get(x_3, 1); -x_8 = lean_ctor_get(x_5, 0); -x_9 = lean_ctor_get(x_5, 1); -lean_dec(x_9); -lean_inc_ref(x_1); -lean_ctor_set_tag(x_5, 7); -lean_ctor_set(x_5, 1, x_1); -lean_ctor_set(x_5, 0, x_2); -x_10 = l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__2; -lean_ctor_set_tag(x_3, 7); -lean_ctor_set(x_3, 1, x_10); -x_11 = l_Lean_MessageData_ofSyntax(x_8); -x_12 = l_Lean_indentD(x_11); -x_13 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_13, 0, x_3); -lean_ctor_set(x_13, 1, x_12); -x_2 = x_13; -x_3 = x_7; -goto _start; -} -else -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_15 = lean_ctor_get(x_3, 1); -x_16 = lean_ctor_get(x_5, 0); -lean_inc(x_16); -lean_dec(x_5); -lean_inc_ref(x_1); -x_17 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_17, 0, x_2); -lean_ctor_set(x_17, 1, x_1); -x_18 = l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__2; -lean_ctor_set_tag(x_3, 7); -lean_ctor_set(x_3, 1, x_18); -lean_ctor_set(x_3, 0, x_17); -x_19 = l_Lean_MessageData_ofSyntax(x_16); -x_20 = l_Lean_indentD(x_19); -x_21 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_21, 0, x_3); -lean_ctor_set(x_21, 1, x_20); -x_2 = x_21; -x_3 = x_15; -goto _start; -} -} -else -{ -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; -x_23 = lean_ctor_get(x_3, 0); -x_24 = lean_ctor_get(x_3, 1); -lean_inc(x_24); -lean_inc(x_23); -lean_dec(x_3); -x_25 = lean_ctor_get(x_23, 0); -lean_inc(x_25); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - lean_ctor_release(x_23, 1); - x_26 = x_23; -} else { - lean_dec_ref(x_23); - x_26 = lean_box(0); -} -lean_inc_ref(x_1); -if (lean_is_scalar(x_26)) { - x_27 = lean_alloc_ctor(7, 2, 0); -} else { - x_27 = x_26; - lean_ctor_set_tag(x_27, 7); -} -lean_ctor_set(x_27, 0, x_2); -lean_ctor_set(x_27, 1, x_1); -x_28 = l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__2; -x_29 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_29, 0, x_27); -lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_MessageData_ofSyntax(x_25); -x_31 = l_Lean_indentD(x_30); -x_32 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_32, 0, x_29); -lean_ctor_set(x_32, 1, x_31); -x_2 = x_32; -x_3 = x_24; -goto _start; -} -} -} -} -static lean_object* _init_l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Elab_pp_macroStack; -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_box(1); -x_2 = l_Lean_MessageData_ofFormat(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("with resulting expansion", 24, 24); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__2; -x_2 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__3; -x_2 = l_Lean_MessageData_ofFormat(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; lean_object* x_6; uint8_t x_7; -x_5 = lean_ctor_get(x_3, 2); -x_6 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__0; -x_7 = l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__1(x_5, x_6); -if (x_7 == 0) -{ -lean_object* x_8; -lean_dec(x_2); -x_8 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_8, 0, x_1); -lean_ctor_set(x_8, 1, x_4); -return x_8; -} -else -{ -if (lean_obj_tag(x_2) == 0) -{ -lean_object* x_9; -x_9 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_9, 0, x_1); -lean_ctor_set(x_9, 1, x_4); -return x_9; -} -else -{ -lean_object* x_10; uint8_t x_11; -x_10 = lean_ctor_get(x_2, 0); -lean_inc(x_10); -x_11 = !lean_is_exclusive(x_10); -if (x_11 == 0) -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; -x_12 = lean_ctor_get(x_10, 1); -x_13 = lean_ctor_get(x_10, 0); -lean_dec(x_13); -x_14 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__1; -lean_ctor_set_tag(x_10, 7); -lean_ctor_set(x_10, 1, x_14); -lean_ctor_set(x_10, 0, x_1); -x_15 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__4; -x_16 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_16, 0, x_10); -lean_ctor_set(x_16, 1, x_15); -x_17 = l_Lean_MessageData_ofSyntax(x_12); -x_18 = l_Lean_indentD(x_17); -x_19 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_19, 0, x_16); -lean_ctor_set(x_19, 1, x_18); -lean_inc_ref(x_2); -x_20 = l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2(x_14, x_19, x_2); -x_21 = !lean_is_exclusive(x_2); -if (x_21 == 0) -{ -lean_object* x_22; lean_object* x_23; -x_22 = lean_ctor_get(x_2, 1); -lean_dec(x_22); -x_23 = lean_ctor_get(x_2, 0); -lean_dec(x_23); -lean_ctor_set_tag(x_2, 0); -lean_ctor_set(x_2, 1, x_4); -lean_ctor_set(x_2, 0, x_20); -return x_2; -} -else -{ -lean_object* x_24; -lean_dec(x_2); -x_24 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_24, 0, x_20); -lean_ctor_set(x_24, 1, x_4); -return x_24; -} -} -else -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_25 = lean_ctor_get(x_10, 1); -lean_inc(x_25); -lean_dec(x_10); -x_26 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__1; -x_27 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_27, 0, x_1); -lean_ctor_set(x_27, 1, x_26); -x_28 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__4; -x_29 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_29, 0, x_27); -lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_MessageData_ofSyntax(x_25); -x_31 = l_Lean_indentD(x_30); -x_32 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_32, 0, x_29); -lean_ctor_set(x_32, 1, x_31); -lean_inc_ref(x_2); -x_33 = l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2(x_26, x_32, x_2); -if (lean_is_exclusive(x_2)) { - lean_ctor_release(x_2, 0); - lean_ctor_release(x_2, 1); - x_34 = x_2; -} else { - lean_dec_ref(x_2); - x_34 = lean_box(0); -} -if (lean_is_scalar(x_34)) { - x_35 = lean_alloc_ctor(0, 2, 0); -} else { - x_35 = x_34; - lean_ctor_set_tag(x_35, 0); -} -lean_ctor_set(x_35, 0, x_33); -lean_ctor_set(x_35, 1, x_4); -return x_35; -} -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg___lam__0(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_10; -x_10 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg(x_1, x_2, x_7, x_9); +x_10 = l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0_spec__0(x_1, x_5, x_6, x_7, x_8, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg(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_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(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; lean_object* x_10; uint8_t x_11; +lean_object* x_9; lean_object* x_10; lean_object* x_11; x_9 = lean_ctor_get(x_6, 5); -x_10 = l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0(x_1, x_4, x_5, x_6, x_7, x_8); -x_11 = !lean_is_exclusive(x_10); -if (x_11 == 0) +lean_inc(x_9); +x_10 = lean_alloc_closure((void*)(l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg___lam__0___boxed), 9, 1); +lean_closure_set(x_10, 0, x_1); +x_11 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_11) == 0) { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; -x_12 = lean_ctor_get(x_10, 0); -x_13 = lean_ctor_get(x_10, 1); -x_14 = lean_ctor_get(x_2, 1); -lean_inc(x_14); -lean_dec_ref(x_2); -lean_inc(x_14); -x_15 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg(x_12, x_14, x_6, x_13); -x_16 = !lean_is_exclusive(x_15); -if (x_16 == 0) +uint8_t x_12; +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_15, 0); -x_18 = l_Lean_Elab_getBetterRef(x_9, x_14); -lean_ctor_set(x_10, 1, x_17); -lean_ctor_set(x_10, 0, x_18); -lean_ctor_set_tag(x_15, 1); -lean_ctor_set(x_15, 0, x_10); -return x_15; +lean_object* x_13; lean_object* x_14; +x_13 = lean_ctor_get(x_11, 0); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_9); +lean_ctor_set(x_14, 1, x_13); +lean_ctor_set_tag(x_11, 1); +lean_ctor_set(x_11, 0, x_14); +return x_11; } else { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_19 = lean_ctor_get(x_15, 0); -x_20 = lean_ctor_get(x_15, 1); +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_ctor_get(x_11, 0); +x_16 = lean_ctor_get(x_11, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_11); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_9); +lean_ctor_set(x_17, 1, x_15); +x_18 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_16); +return x_18; +} +} +else +{ +uint8_t x_19; +lean_dec(x_9); +x_19 = !lean_is_exclusive(x_11); +if (x_19 == 0) +{ +return x_11; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_11, 0); +x_21 = lean_ctor_get(x_11, 1); +lean_inc(x_21); lean_inc(x_20); -lean_inc(x_19); -lean_dec(x_15); -x_21 = l_Lean_Elab_getBetterRef(x_9, x_14); -lean_ctor_set(x_10, 1, x_19); -lean_ctor_set(x_10, 0, x_21); +lean_dec(x_11); x_22 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_22, 0, x_10); -lean_ctor_set(x_22, 1, x_20); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); return x_22; } } +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0(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_10; +x_10 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2_spec__2(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; +x_5 = lean_usize_dec_eq(x_2, x_3); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; size_t x_8; size_t x_9; +x_6 = lean_array_uget(x_1, x_2); +x_7 = l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2(x_6, x_4); +lean_dec_ref(x_6); +x_8 = 1; +x_9 = lean_usize_add(x_2, x_8); +x_2 = x_9; +x_4 = x_7; +goto _start; +} else { -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; -x_23 = lean_ctor_get(x_10, 0); -x_24 = lean_ctor_get(x_10, 1); -lean_inc(x_24); -lean_inc(x_23); -lean_dec(x_10); -x_25 = lean_ctor_get(x_2, 1); -lean_inc(x_25); -lean_dec_ref(x_2); -lean_inc(x_25); -x_26 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg(x_23, x_25, x_6, x_24); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_26, 1); -lean_inc(x_28); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - lean_ctor_release(x_26, 1); - x_29 = x_26; -} else { - lean_dec_ref(x_26); - x_29 = lean_box(0); +return x_4; } -x_30 = l_Lean_Elab_getBetterRef(x_9, x_25); -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_27); -if (lean_is_scalar(x_29)) { - x_32 = lean_alloc_ctor(1, 2, 0); -} else { - x_32 = x_29; - lean_ctor_set_tag(x_32, 1); } -lean_ctor_set(x_32, 0, x_31); -lean_ctor_set(x_32, 1, x_28); +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2_spec__3(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; +x_5 = lean_usize_dec_eq(x_2, x_3); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; size_t x_8; size_t x_9; +x_6 = lean_array_uget(x_1, x_2); +x_7 = lean_array_push(x_4, x_6); +x_8 = 1; +x_9 = lean_usize_add(x_2, x_8); +x_2 = x_9; +x_4 = x_7; +goto _start; +} +else +{ +return x_4; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; +x_3 = lean_ctor_get(x_1, 0); +x_4 = lean_unsigned_to_nat(0u); +x_5 = lean_array_get_size(x_3); +x_6 = lean_nat_dec_lt(x_4, x_5); +if (x_6 == 0) +{ +lean_dec(x_5); +return x_2; +} +else +{ +uint8_t x_7; +x_7 = lean_nat_dec_le(x_5, x_5); +if (x_7 == 0) +{ +lean_dec(x_5); +return x_2; +} +else +{ +size_t x_8; size_t x_9; lean_object* x_10; +x_8 = 0; +x_9 = lean_usize_of_nat(x_5); +lean_dec(x_5); +x_10 = l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2_spec__2(x_3, x_8, x_9, x_2); +return x_10; +} +} +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_11 = lean_ctor_get(x_1, 0); +x_12 = lean_unsigned_to_nat(0u); +x_13 = lean_array_get_size(x_11); +x_14 = lean_nat_dec_lt(x_12, x_13); +if (x_14 == 0) +{ +lean_dec(x_13); +return x_2; +} +else +{ +uint8_t x_15; +x_15 = lean_nat_dec_le(x_13, x_13); +if (x_15 == 0) +{ +lean_dec(x_13); +return x_2; +} +else +{ +size_t x_16; size_t x_17; lean_object* x_18; +x_16 = 0; +x_17 = lean_usize_of_nat(x_13); +lean_dec(x_13); +x_18 = l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2_spec__3(x_11, x_16, x_17, x_2); +return x_18; +} +} +} +} +} +static lean_object* _init_l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_instInhabitedPersistentArrayNode(lean_box(0)); +return x_1; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_5; lean_object* x_6; size_t x_7; lean_object* x_8; lean_object* x_9; size_t x_10; size_t x_11; size_t x_12; size_t x_13; size_t x_14; size_t x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_5 = lean_ctor_get(x_1, 0); +x_6 = l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2___closed__0; +x_7 = lean_usize_shift_right(x_2, x_3); +x_8 = lean_usize_to_nat(x_7); +x_9 = lean_array_get(x_6, x_5, x_8); +x_10 = 1; +x_11 = lean_usize_shift_left(x_10, x_3); +x_12 = lean_usize_sub(x_11, x_10); +x_13 = lean_usize_land(x_2, x_12); +x_14 = 5; +x_15 = lean_usize_sub(x_3, x_14); +x_16 = l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2(x_9, x_13, x_15, x_4); +lean_dec_ref(x_9); +x_17 = lean_unsigned_to_nat(1u); +x_18 = lean_nat_add(x_8, x_17); +lean_dec(x_8); +x_19 = lean_array_get_size(x_5); +x_20 = lean_nat_dec_lt(x_18, x_19); +if (x_20 == 0) +{ +lean_dec(x_19); +lean_dec(x_18); +return x_16; +} +else +{ +uint8_t x_21; +x_21 = lean_nat_dec_le(x_19, x_19); +if (x_21 == 0) +{ +lean_dec(x_19); +lean_dec(x_18); +return x_16; +} +else +{ +size_t x_22; size_t x_23; lean_object* x_24; +x_22 = lean_usize_of_nat(x_18); +lean_dec(x_18); +x_23 = lean_usize_of_nat(x_19); +lean_dec(x_19); +x_24 = l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2_spec__2(x_5, x_22, x_23, x_16); +return x_24; +} +} +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_25 = lean_ctor_get(x_1, 0); +x_26 = lean_usize_to_nat(x_2); +x_27 = lean_array_get_size(x_25); +x_28 = lean_nat_dec_lt(x_26, x_27); +if (x_28 == 0) +{ +lean_dec(x_27); +lean_dec(x_26); +return x_4; +} +else +{ +uint8_t x_29; +x_29 = lean_nat_dec_le(x_27, x_27); +if (x_29 == 0) +{ +lean_dec(x_27); +lean_dec(x_26); +return x_4; +} +else +{ +size_t x_30; size_t x_31; lean_object* x_32; +x_30 = lean_usize_of_nat(x_26); +lean_dec(x_26); +x_31 = lean_usize_of_nat(x_27); +lean_dec(x_27); +x_32 = l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2_spec__3(x_25, x_30, x_31, x_4); return x_32; } } } -LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0(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_EXPORT lean_object* l_Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_10; -x_10 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_object* x_4; uint8_t x_5; +x_4 = lean_unsigned_to_nat(0u); +x_5 = lean_nat_dec_eq(x_3, x_4); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; size_t x_8; lean_object* x_9; uint8_t x_10; +x_6 = lean_ctor_get(x_1, 0); +x_7 = lean_ctor_get(x_1, 1); +x_8 = lean_ctor_get_usize(x_1, 4); +x_9 = lean_ctor_get(x_1, 3); +x_10 = lean_nat_dec_le(x_9, x_3); +if (x_10 == 0) +{ +size_t x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_11 = lean_usize_of_nat(x_3); +x_12 = l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2(x_6, x_11, x_8, x_2); +x_13 = lean_array_get_size(x_7); +x_14 = lean_nat_dec_lt(x_4, x_13); +if (x_14 == 0) +{ +lean_dec(x_13); +return x_12; +} +else +{ +uint8_t x_15; +x_15 = lean_nat_dec_le(x_13, x_13); +if (x_15 == 0) +{ +lean_dec(x_13); +return x_12; +} +else +{ +size_t x_16; size_t x_17; lean_object* x_18; +x_16 = 0; +x_17 = lean_usize_of_nat(x_13); +lean_dec(x_13); +x_18 = l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2_spec__3(x_7, x_16, x_17, x_12); +return x_18; +} +} +} +else +{ +lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_19 = lean_nat_sub(x_3, x_9); +x_20 = lean_array_get_size(x_7); +x_21 = lean_nat_dec_lt(x_19, x_20); +if (x_21 == 0) +{ +lean_dec(x_20); +lean_dec(x_19); +return x_2; +} +else +{ +uint8_t x_22; +x_22 = lean_nat_dec_le(x_20, x_20); +if (x_22 == 0) +{ +lean_dec(x_20); +lean_dec(x_19); +return x_2; +} +else +{ +size_t x_23; size_t x_24; lean_object* x_25; +x_23 = lean_usize_of_nat(x_19); +lean_dec(x_19); +x_24 = lean_usize_of_nat(x_20); +lean_dec(x_20); +x_25 = l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2_spec__3(x_7, x_23, x_24, x_2); +return x_25; +} +} +} +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_26 = lean_ctor_get(x_1, 0); +x_27 = lean_ctor_get(x_1, 1); +x_28 = l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2(x_26, x_2); +x_29 = lean_array_get_size(x_27); +x_30 = lean_nat_dec_lt(x_4, x_29); +if (x_30 == 0) +{ +lean_dec(x_29); +return x_28; +} +else +{ +uint8_t x_31; +x_31 = lean_nat_dec_le(x_29, x_29); +if (x_31 == 0) +{ +lean_dec(x_29); +return x_28; +} +else +{ +size_t x_32; size_t x_33; lean_object* x_34; +x_32 = 0; +x_33 = lean_usize_of_nat(x_29); +lean_dec(x_29); +x_34 = l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2_spec__3(x_27, x_32, x_33, x_28); +return x_34; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7___lam__0(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; lean_object* x_10; +x_9 = lean_ctor_get(x_6, 12); +lean_inc_ref(x_9); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_8); return x_10; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__0() { +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_6, 2); +lean_inc(x_9); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7(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; lean_object* x_10; +x_9 = lean_alloc_closure((void*)(l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7___lam__0___boxed), 8, 0); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc_ref(x_2); +x_10 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec_ref(x_10); +x_13 = lean_alloc_closure((void*)(l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7___lam__1___boxed), 8, 0); +x_14 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_13, x_2, x_3, x_4, x_5, x_6, x_7, x_12); +if (lean_obj_tag(x_14) == 0) +{ +uint8_t x_15; +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +lean_object* x_16; uint8_t x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_14, 0); +x_17 = l_Lean_checkTraceOption(x_11, x_16, x_1); +lean_dec(x_16); +lean_dec(x_11); +x_18 = lean_box(x_17); +lean_ctor_set(x_14, 0, x_18); +return x_14; +} +else +{ +lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_ctor_get(x_14, 0); +x_20 = lean_ctor_get(x_14, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_14); +x_21 = l_Lean_checkTraceOption(x_11, x_19, x_1); +lean_dec(x_19); +lean_dec(x_11); +x_22 = lean_box(x_21); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_20); +return x_23; +} +} +else +{ +uint8_t x_24; +lean_dec(x_11); +lean_dec(x_1); +x_24 = !lean_is_exclusive(x_14); +if (x_24 == 0) +{ +return x_14; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_14, 0); +x_26 = lean_ctor_get(x_14, 1); +lean_inc(x_26); +lean_inc(x_25); +lean_dec(x_14); +x_27 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_27, 0, x_25); +lean_ctor_set(x_27, 1, x_26); +return x_27; +} +} +} +else +{ +uint8_t x_28; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_2); +lean_dec(x_1); +x_28 = !lean_is_exclusive(x_10); +if (x_28 == 0) +{ +return x_10; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_10, 0); +x_30 = lean_ctor_get(x_10, 1); +lean_inc(x_30); +lean_inc(x_29); +lean_dec(x_10); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_29); +lean_ctor_set(x_31, 1, x_30); +return x_31; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__8(size_t x_1, size_t x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = lean_usize_dec_lt(x_2, x_1); +if (x_4 == 0) +{ +return x_3; +} +else +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; size_t x_9; size_t x_10; lean_object* x_11; +x_5 = lean_array_uget(x_3, x_2); +x_6 = lean_unsigned_to_nat(0u); +x_7 = lean_array_uset(x_3, x_2, x_6); +x_8 = l_Lean_LocalDecl_toExpr(x_5); +x_9 = 1; +x_10 = lean_usize_add(x_2, x_9); +x_11 = lean_array_uset(x_7, x_2, x_8); +x_2 = x_10; +x_3 = x_11; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Array_zipWithMAux___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__9(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_10; uint8_t x_11; +x_10 = lean_array_get_size(x_1); +x_11 = lean_nat_dec_lt(x_3, x_10); +lean_dec(x_10); +if (x_11 == 0) +{ +lean_object* x_12; +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_3); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_4); +lean_ctor_set(x_12, 1, x_9); +return x_12; +} +else +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_array_get_size(x_2); +x_14 = lean_nat_dec_lt(x_3, x_13); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_3); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_4); +lean_ctor_set(x_15, 1, x_9); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_array_fget(x_1, x_3); +x_17 = lean_array_fget(x_2, x_3); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_18 = l_Lean_Meta_mkEq(x_16, x_17, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec_ref(x_18); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_3, x_21); +lean_dec(x_3); +x_23 = lean_array_push(x_4, x_19); +x_3 = x_22; +x_4 = x_23; +x_9 = x_20; +goto _start; +} +else +{ +uint8_t x_25; +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +x_25 = !lean_is_exclusive(x_18); +if (x_25 == 0) +{ +return x_18; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_18, 0); +x_27 = lean_ctor_get(x_18, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_18); +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_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +uint8_t x_9; +x_9 = lean_usize_dec_lt(x_2, x_1); +if (x_9 == 0) +{ +lean_object* x_10; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_3); +lean_ctor_set(x_10, 1, x_8); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_array_uget(x_3, x_2); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +x_12 = l_Lean_Meta_mkEqRefl(x_11, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; size_t x_17; size_t 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_ref(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_array_uset(x_3, x_2, x_15); +x_17 = 1; +x_18 = lean_usize_add(x_2, x_17); +x_19 = lean_array_uset(x_16, x_2, x_13); +x_2 = x_18; +x_3 = x_19; +x_8 = x_14; +goto _start; +} +else +{ +uint8_t x_21; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_21 = !lean_is_exclusive(x_12); +if (x_21 == 0) +{ +return x_12; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_12, 0); +x_23 = lean_ctor_get(x_12, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_12); +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_EXPORT uint8_t l_Array_isEqvAux___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = lean_unsigned_to_nat(0u); +x_5 = lean_nat_dec_eq(x_3, x_4); +if (x_5 == 1) +{ +lean_dec(x_3); +return x_5; +} +else +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_6 = lean_unsigned_to_nat(1u); +x_7 = lean_nat_sub(x_3, x_6); +lean_dec(x_3); +x_8 = lean_array_fget(x_1, x_7); +x_9 = lean_array_fget(x_2, x_7); +x_10 = lean_expr_eqv(x_8, x_9); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +if (x_10 == 0) +{ +lean_dec(x_7); +return x_10; +} +else +{ +x_3 = x_7; +goto _start; +} +} +} +} +LEAN_EXPORT uint8_t l_Array_isEqvAux___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +uint8_t x_6; +x_6 = l_Array_isEqvAux___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg(x_1, x_2, x_4); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___lam__0(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_10; +x_10 = l_Lean_Meta_getLevel(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +static lean_object* _init_l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__0() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("Error evaluating configuration\n", 31, 31); +x_1 = lean_mk_string_unchecked("Exists", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__1() { +static lean_object* _init_l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__0; -x_2 = l_Lean_stringToMessageData(x_1); +x_1 = l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__0; +x_2 = l_Lean_Name_mkStr1(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__2() { +static lean_object* _init_l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__2() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("\n\nException: ", 13, 13); +x_1 = lean_mk_string_unchecked("intro", 5, 5); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__3() { +static lean_object* _init_l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__3() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__2; -x_2 = l_Lean_stringToMessageData(x_1); +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__2; +x_2 = l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__0; +x_3 = l_Lean_Name_mkStr2(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; +x_13 = lean_usize_dec_eq(x_3, x_4); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; size_t x_20; size_t 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_42; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_63; +x_14 = lean_ctor_get(x_5, 1); +lean_inc(x_14); +x_15 = lean_ctor_get(x_5, 0); +lean_inc(x_15); +if (lean_is_exclusive(x_5)) { + lean_ctor_release(x_5, 0); + lean_ctor_release(x_5, 1); + x_16 = x_5; +} else { + lean_dec_ref(x_5); + x_16 = lean_box(0); +} +x_17 = lean_ctor_get(x_14, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_14, 1); +lean_inc(x_18); +if (lean_is_exclusive(x_14)) { + lean_ctor_release(x_14, 0); + lean_ctor_release(x_14, 1); + x_19 = x_14; +} else { + lean_dec_ref(x_14); + x_19 = lean_box(0); +} +x_20 = 1; +x_21 = lean_usize_sub(x_3, x_20); +x_22 = lean_array_uget(x_2, x_21); +x_23 = lean_array_pop(x_15); +x_63 = l_Lean_LocalDecl_value_x3f(x_22, x_13); +if (lean_obj_tag(x_63) == 0) +{ +lean_object* x_64; +x_64 = lean_ctor_get(x_22, 3); +lean_inc_ref(x_64); +x_42 = x_64; +goto block_53; +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_71; +lean_dec(x_19); +lean_dec(x_16); +x_65 = lean_ctor_get(x_63, 0); +lean_inc(x_65); +lean_dec_ref(x_63); +x_71 = lean_ctor_get(x_22, 3); +lean_inc_ref(x_71); +x_66 = x_71; +goto block_70; +block_70: +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_67 = lean_expr_abstract(x_66, x_23); +lean_dec_ref(x_66); +x_68 = lean_expr_abstract(x_65, x_23); +lean_dec(x_65); +x_69 = lean_ctor_get(x_22, 2); +lean_inc(x_69); +x_54 = x_68; +x_55 = x_67; +x_56 = x_69; +goto block_62; +} +} +block_41: +{ +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; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_28 = l_Lean_LocalDecl_binderInfo(x_22); +lean_inc_ref(x_25); +x_29 = l_Lean_Expr_lam___override(x_27, x_25, x_17, x_28); +x_30 = l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__1; +lean_inc(x_1); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_24); +lean_ctor_set(x_31, 1, x_1); +lean_inc_ref(x_31); +x_32 = l_Lean_Expr_const___override(x_30, x_31); +lean_inc_ref(x_29); +lean_inc_ref(x_25); +x_33 = l_Lean_mkAppB(x_32, x_25, x_29); +x_34 = l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__3; +x_35 = l_Lean_Expr_const___override(x_34, x_31); +x_36 = l_Lean_LocalDecl_toExpr(x_22); +x_37 = l_Lean_mkApp4(x_35, x_25, x_29, x_36, x_18); +if (lean_is_scalar(x_19)) { + x_38 = lean_alloc_ctor(0, 2, 0); +} else { + x_38 = x_19; +} +lean_ctor_set(x_38, 0, x_33); +lean_ctor_set(x_38, 1, x_37); +if (lean_is_scalar(x_16)) { + x_39 = lean_alloc_ctor(0, 2, 0); +} else { + x_39 = x_16; +} +lean_ctor_set(x_39, 0, x_23); +lean_ctor_set(x_39, 1, x_38); +x_3 = x_21; +x_5 = x_39; +x_12 = x_26; +goto _start; +} +block_53: +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_expr_abstract(x_42, x_23); +lean_dec_ref(x_42); +lean_inc_ref(x_43); +x_44 = lean_alloc_closure((void*)(l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___lam__0___boxed), 9, 1); +lean_closure_set(x_44, 0, x_43); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_45 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_44, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_45) == 0) +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_46 = lean_ctor_get(x_45, 0); +lean_inc(x_46); +x_47 = lean_ctor_get(x_45, 1); +lean_inc(x_47); +lean_dec_ref(x_45); +x_48 = lean_ctor_get(x_22, 2); +lean_inc(x_48); +x_24 = x_46; +x_25 = x_43; +x_26 = x_47; +x_27 = x_48; +goto block_41; +} +else +{ +uint8_t x_49; +lean_dec_ref(x_43); +lean_dec_ref(x_23); +lean_dec_ref(x_22); +lean_dec(x_19); +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +lean_dec(x_1); +x_49 = !lean_is_exclusive(x_45); +if (x_49 == 0) +{ +return x_45; +} +else +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_50 = lean_ctor_get(x_45, 0); +x_51 = lean_ctor_get(x_45, 1); +lean_inc(x_51); +lean_inc(x_50); +lean_dec(x_45); +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_50); +lean_ctor_set(x_52, 1, x_51); +return x_52; +} +} +} +block_62: +{ +uint8_t x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = l_Lean_LocalDecl_isNondep(x_22); +lean_dec_ref(x_22); +x_58 = l_Lean_Expr_letE___override(x_56, x_55, x_54, x_17, x_57); +x_59 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_59, 0, x_58); +lean_ctor_set(x_59, 1, x_18); +x_60 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_60, 0, x_23); +lean_ctor_set(x_60, 1, x_59); +x_3 = x_21; +x_5 = x_60; +goto _start; +} +} +else +{ +lean_object* x_72; +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +lean_dec(x_1); +x_72 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_72, 0, x_5); +lean_ctor_set(x_72, 1, x_12); +return x_72; +} +} +} +LEAN_EXPORT lean_object* l_List_mapTR_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__13(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +x_3 = l_List_reverse___redArg(x_2); +return x_3; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = lean_ctor_get(x_1, 0); +x_6 = lean_ctor_get(x_1, 1); +x_7 = l_Lean_MessageData_ofExpr(x_5); +lean_ctor_set(x_1, 1, x_2); +lean_ctor_set(x_1, 0, x_7); +{ +lean_object* _tmp_0 = x_6; +lean_object* _tmp_1 = x_1; +x_1 = _tmp_0; +x_2 = _tmp_1; +} +goto _start; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_9 = lean_ctor_get(x_1, 0); +x_10 = lean_ctor_get(x_1, 1); +lean_inc(x_10); +lean_inc(x_9); +lean_dec(x_1); +x_11 = l_Lean_MessageData_ofExpr(x_9); +x_12 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_2); +x_1 = x_10; +x_2 = x_12; +goto _start; +} +} +} +} +static double _init_l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__0() { +_start: +{ +lean_object* x_1; double x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_float_of_nat(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4() { +static lean_object* _init_l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__1() { _start: { lean_object* x_1; @@ -2242,1644 +2609,2815 @@ x_1 = lean_mk_string_unchecked("", 0, 0); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5() { +static lean_object* _init_l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4; -x_2 = l_Lean_stringToMessageData(x_1); +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__6() { +LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Error evaluating configuration: Environment does not yet contain type ", 70, 70); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__6; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_; -x_2 = l_Lean_MessageData_ofName(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__8; -x_2 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__7; -x_3 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -x_2 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__9; -x_3 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__11() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Configuration contains `sorry`", 30, 30); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__11; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg(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_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; uint8_t x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; -x_33 = lean_ctor_get_uint8(x_2, sizeof(void*)*1); -lean_inc(x_1); -x_34 = l_Lean_Parser_Tactic_getConfigItems(x_1); -x_35 = l_Lean_Elab_Tactic_mkConfigItemViews(x_34); -x_36 = l_Array_isEmpty___redArg(x_35); -if (x_36 == 0) -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_40; -x_37 = lean_st_ref_get(x_8, x_9); -x_38 = lean_ctor_get(x_37, 0); -lean_inc(x_38); -x_39 = lean_ctor_get(x_37, 1); -lean_inc(x_39); -lean_dec_ref(x_37); -x_40 = !lean_is_exclusive(x_7); -if (x_40 == 0) -{ -lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; uint8_t x_46; -x_41 = lean_ctor_get(x_7, 5); -x_42 = lean_ctor_get(x_38, 0); -lean_inc_ref(x_42); -lean_dec(x_38); -x_43 = l_Lean_replaceRef(x_1, x_41); -lean_dec(x_41); -lean_dec(x_1); -lean_ctor_set(x_7, 5, x_43); -x_44 = l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_; -x_45 = 1; -x_46 = l_Lean_Environment_contains(x_42, x_44, x_45); -if (x_46 == 0) -{ -lean_object* x_47; lean_object* x_48; uint8_t x_49; -lean_dec_ref(x_35); -x_47 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__10; -x_48 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg(x_47, x_3, x_4, x_5, x_6, x_7, x_8, x_39); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -x_49 = !lean_is_exclusive(x_48); -if (x_49 == 0) -{ -return x_48; -} -else -{ -lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_50 = lean_ctor_get(x_48, 0); -x_51 = lean_ctor_get(x_48, 1); -lean_inc(x_51); -lean_inc(x_50); -lean_dec(x_48); -x_52 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_52, 0, x_50); -lean_ctor_set(x_52, 1, x_51); -return x_52; -} -} -else -{ -lean_object* x_53; -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc(x_6); -lean_inc_ref(x_5); -lean_inc(x_4); -lean_inc_ref(x_3); -x_53 = l_Lean_Elab_Tactic_elabConfig(x_33, x_44, x_35, x_3, x_4, x_5, x_6, x_7, x_8, x_39); -if (lean_obj_tag(x_53) == 0) -{ -uint8_t x_54; -x_54 = !lean_is_exclusive(x_53); -if (x_54 == 0) -{ -lean_object* x_55; lean_object* x_56; uint8_t x_57; -x_55 = lean_ctor_get(x_53, 0); -x_56 = lean_ctor_get(x_53, 1); -x_57 = l_Lean_Expr_hasSyntheticSorry(x_55); -if (x_57 == 0) -{ -uint8_t x_58; -lean_free_object(x_53); -x_58 = l_Lean_Expr_hasSorry(x_55); -if (x_58 == 0) -{ -lean_object* x_59; -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc(x_6); -lean_inc_ref(x_5); -lean_inc(x_55); -x_59 = l_Lean_Elab_Tactic_Do_evalUnsafe___redArg____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_(x_55, x_5, x_6, x_7, x_8, x_56); -if (lean_obj_tag(x_59) == 0) -{ -lean_dec(x_55); -lean_dec_ref(x_7); -lean_dec(x_8); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -return x_59; -} -else -{ -lean_object* x_60; lean_object* x_61; uint8_t x_62; -x_60 = lean_ctor_get(x_59, 0); -lean_inc(x_60); -x_61 = lean_ctor_get(x_59, 1); -lean_inc(x_61); -x_62 = l_Lean_Exception_isInterrupt(x_60); -if (x_62 == 0) -{ -uint8_t x_63; -x_63 = l_Lean_Exception_isRuntime(x_60); -x_10 = x_3; -x_11 = x_6; -x_12 = x_4; -x_13 = x_60; -x_14 = x_8; -x_15 = x_61; -x_16 = x_55; -x_17 = x_59; -x_18 = x_7; -x_19 = x_5; -x_20 = x_63; -goto block_32; -} -else -{ -x_10 = x_3; -x_11 = x_6; -x_12 = x_4; -x_13 = x_60; -x_14 = x_8; -x_15 = x_61; -x_16 = x_55; -x_17 = x_59; -x_18 = x_7; -x_19 = x_5; -x_20 = x_62; -goto block_32; -} -} -} -else -{ -lean_object* x_64; lean_object* x_65; uint8_t x_66; -lean_dec(x_55); -x_64 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__12; -x_65 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg(x_64, x_3, x_4, x_5, x_6, x_7, x_8, x_56); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -x_66 = !lean_is_exclusive(x_65); -if (x_66 == 0) -{ -return x_65; -} -else -{ -lean_object* x_67; lean_object* x_68; lean_object* x_69; -x_67 = lean_ctor_get(x_65, 0); -x_68 = lean_ctor_get(x_65, 1); -lean_inc(x_68); -lean_inc(x_67); -lean_dec(x_65); -x_69 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_69, 0, x_67); -lean_ctor_set(x_69, 1, x_68); -return x_69; -} -} -} -else -{ -lean_object* x_70; -lean_dec(x_55); -lean_dec_ref(x_7); -lean_dec(x_8); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -x_70 = lean_box(x_36); -lean_ctor_set(x_53, 0, x_70); -return x_53; -} -} -else -{ -lean_object* x_71; lean_object* x_72; uint8_t x_73; -x_71 = lean_ctor_get(x_53, 0); -x_72 = lean_ctor_get(x_53, 1); -lean_inc(x_72); -lean_inc(x_71); -lean_dec(x_53); -x_73 = l_Lean_Expr_hasSyntheticSorry(x_71); -if (x_73 == 0) -{ -uint8_t x_74; -x_74 = l_Lean_Expr_hasSorry(x_71); -if (x_74 == 0) -{ -lean_object* x_75; -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc(x_6); -lean_inc_ref(x_5); -lean_inc(x_71); -x_75 = l_Lean_Elab_Tactic_Do_evalUnsafe___redArg____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_(x_71, x_5, x_6, x_7, x_8, x_72); -if (lean_obj_tag(x_75) == 0) -{ -lean_dec(x_71); -lean_dec_ref(x_7); -lean_dec(x_8); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -return x_75; -} -else -{ -lean_object* x_76; lean_object* x_77; uint8_t x_78; -x_76 = lean_ctor_get(x_75, 0); -lean_inc(x_76); -x_77 = lean_ctor_get(x_75, 1); -lean_inc(x_77); -x_78 = l_Lean_Exception_isInterrupt(x_76); -if (x_78 == 0) -{ -uint8_t x_79; -x_79 = l_Lean_Exception_isRuntime(x_76); -x_10 = x_3; -x_11 = x_6; -x_12 = x_4; -x_13 = x_76; -x_14 = x_8; -x_15 = x_77; -x_16 = x_71; -x_17 = x_75; -x_18 = x_7; -x_19 = x_5; -x_20 = x_79; -goto block_32; -} -else -{ -x_10 = x_3; -x_11 = x_6; -x_12 = x_4; -x_13 = x_76; -x_14 = x_8; -x_15 = x_77; -x_16 = x_71; -x_17 = x_75; -x_18 = x_7; -x_19 = x_5; -x_20 = x_78; -goto block_32; -} -} -} -else -{ -lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; -lean_dec(x_71); -x_80 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__12; -x_81 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg(x_80, x_3, x_4, x_5, x_6, x_7, x_8, x_72); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -x_82 = lean_ctor_get(x_81, 0); -lean_inc(x_82); -x_83 = lean_ctor_get(x_81, 1); -lean_inc(x_83); -if (lean_is_exclusive(x_81)) { - lean_ctor_release(x_81, 0); - lean_ctor_release(x_81, 1); - x_84 = x_81; -} else { - lean_dec_ref(x_81); - x_84 = lean_box(0); -} -if (lean_is_scalar(x_84)) { - x_85 = lean_alloc_ctor(1, 2, 0); -} else { - x_85 = x_84; -} -lean_ctor_set(x_85, 0, x_82); -lean_ctor_set(x_85, 1, x_83); -return x_85; -} -} -else -{ -lean_object* x_86; lean_object* x_87; -lean_dec(x_71); -lean_dec_ref(x_7); -lean_dec(x_8); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -x_86 = lean_box(x_36); -x_87 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_87, 0, x_86); -lean_ctor_set(x_87, 1, x_72); -return x_87; -} -} -} -else -{ -uint8_t x_88; -lean_dec_ref(x_7); -lean_dec(x_8); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -x_88 = !lean_is_exclusive(x_53); -if (x_88 == 0) -{ -return x_53; -} -else -{ -lean_object* x_89; lean_object* x_90; lean_object* x_91; -x_89 = lean_ctor_get(x_53, 0); -x_90 = lean_ctor_get(x_53, 1); -lean_inc(x_90); -lean_inc(x_89); -lean_dec(x_53); -x_91 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_91, 0, x_89); -lean_ctor_set(x_91, 1, x_90); -return x_91; -} -} -} -} -else -{ -lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; uint8_t x_103; lean_object* x_104; uint8_t x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; uint8_t x_111; uint8_t x_112; -x_92 = lean_ctor_get(x_7, 0); -x_93 = lean_ctor_get(x_7, 1); -x_94 = lean_ctor_get(x_7, 2); -x_95 = lean_ctor_get(x_7, 3); -x_96 = lean_ctor_get(x_7, 4); -x_97 = lean_ctor_get(x_7, 5); -x_98 = lean_ctor_get(x_7, 6); -x_99 = lean_ctor_get(x_7, 7); -x_100 = lean_ctor_get(x_7, 8); -x_101 = lean_ctor_get(x_7, 9); -x_102 = lean_ctor_get(x_7, 10); -x_103 = lean_ctor_get_uint8(x_7, sizeof(void*)*13); -x_104 = lean_ctor_get(x_7, 11); -x_105 = lean_ctor_get_uint8(x_7, sizeof(void*)*13 + 1); -x_106 = lean_ctor_get(x_7, 12); -lean_inc(x_106); -lean_inc(x_104); -lean_inc(x_102); -lean_inc(x_101); -lean_inc(x_100); -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_inc(x_93); -lean_inc(x_92); -lean_dec(x_7); -x_107 = lean_ctor_get(x_38, 0); -lean_inc_ref(x_107); -lean_dec(x_38); -x_108 = l_Lean_replaceRef(x_1, x_97); -lean_dec(x_97); -lean_dec(x_1); -x_109 = lean_alloc_ctor(0, 13, 2); -lean_ctor_set(x_109, 0, x_92); -lean_ctor_set(x_109, 1, x_93); -lean_ctor_set(x_109, 2, x_94); -lean_ctor_set(x_109, 3, x_95); -lean_ctor_set(x_109, 4, x_96); -lean_ctor_set(x_109, 5, x_108); -lean_ctor_set(x_109, 6, x_98); -lean_ctor_set(x_109, 7, x_99); -lean_ctor_set(x_109, 8, x_100); -lean_ctor_set(x_109, 9, x_101); -lean_ctor_set(x_109, 10, x_102); -lean_ctor_set(x_109, 11, x_104); -lean_ctor_set(x_109, 12, x_106); -lean_ctor_set_uint8(x_109, sizeof(void*)*13, x_103); -lean_ctor_set_uint8(x_109, sizeof(void*)*13 + 1, x_105); -x_110 = l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_; -x_111 = 1; -x_112 = l_Lean_Environment_contains(x_107, x_110, x_111); -if (x_112 == 0) -{ -lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; -lean_dec_ref(x_35); -x_113 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__10; -x_114 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg(x_113, x_3, x_4, x_5, x_6, x_109, x_8, x_39); -lean_dec(x_8); -lean_dec_ref(x_109); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -x_115 = lean_ctor_get(x_114, 0); -lean_inc(x_115); -x_116 = lean_ctor_get(x_114, 1); -lean_inc(x_116); -if (lean_is_exclusive(x_114)) { - lean_ctor_release(x_114, 0); - lean_ctor_release(x_114, 1); - x_117 = x_114; -} else { - lean_dec_ref(x_114); - x_117 = lean_box(0); -} -if (lean_is_scalar(x_117)) { - x_118 = lean_alloc_ctor(1, 2, 0); -} else { - x_118 = x_117; -} -lean_ctor_set(x_118, 0, x_115); -lean_ctor_set(x_118, 1, x_116); -return x_118; -} -else -{ -lean_object* x_119; -lean_inc(x_8); -lean_inc_ref(x_109); -lean_inc(x_6); -lean_inc_ref(x_5); -lean_inc(x_4); -lean_inc_ref(x_3); -x_119 = l_Lean_Elab_Tactic_elabConfig(x_33, x_110, x_35, x_3, x_4, x_5, x_6, x_109, x_8, x_39); -if (lean_obj_tag(x_119) == 0) -{ -lean_object* x_120; lean_object* x_121; lean_object* x_122; uint8_t x_123; -x_120 = lean_ctor_get(x_119, 0); -lean_inc(x_120); -x_121 = lean_ctor_get(x_119, 1); -lean_inc(x_121); -if (lean_is_exclusive(x_119)) { - lean_ctor_release(x_119, 0); - lean_ctor_release(x_119, 1); - x_122 = x_119; -} else { - lean_dec_ref(x_119); - x_122 = lean_box(0); -} -x_123 = l_Lean_Expr_hasSyntheticSorry(x_120); -if (x_123 == 0) -{ -uint8_t x_124; -lean_dec(x_122); -x_124 = l_Lean_Expr_hasSorry(x_120); -if (x_124 == 0) -{ -lean_object* x_125; -lean_inc(x_8); -lean_inc_ref(x_109); -lean_inc(x_6); -lean_inc_ref(x_5); -lean_inc(x_120); -x_125 = l_Lean_Elab_Tactic_Do_evalUnsafe___redArg____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_(x_120, x_5, x_6, x_109, x_8, x_121); -if (lean_obj_tag(x_125) == 0) -{ -lean_dec(x_120); -lean_dec_ref(x_109); -lean_dec(x_8); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -return x_125; -} -else -{ -lean_object* x_126; lean_object* x_127; uint8_t x_128; -x_126 = lean_ctor_get(x_125, 0); -lean_inc(x_126); -x_127 = lean_ctor_get(x_125, 1); -lean_inc(x_127); -x_128 = l_Lean_Exception_isInterrupt(x_126); -if (x_128 == 0) -{ -uint8_t x_129; -x_129 = l_Lean_Exception_isRuntime(x_126); -x_10 = x_3; -x_11 = x_6; -x_12 = x_4; -x_13 = x_126; -x_14 = x_8; -x_15 = x_127; -x_16 = x_120; -x_17 = x_125; -x_18 = x_109; -x_19 = x_5; -x_20 = x_129; -goto block_32; -} -else -{ -x_10 = x_3; -x_11 = x_6; -x_12 = x_4; -x_13 = x_126; -x_14 = x_8; -x_15 = x_127; -x_16 = x_120; -x_17 = x_125; -x_18 = x_109; -x_19 = x_5; -x_20 = x_128; -goto block_32; -} -} -} -else -{ -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_dec(x_120); -x_130 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__12; -x_131 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg(x_130, x_3, x_4, x_5, x_6, x_109, x_8, x_121); -lean_dec(x_8); -lean_dec_ref(x_109); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -x_132 = lean_ctor_get(x_131, 0); -lean_inc(x_132); -x_133 = lean_ctor_get(x_131, 1); -lean_inc(x_133); -if (lean_is_exclusive(x_131)) { - lean_ctor_release(x_131, 0); - lean_ctor_release(x_131, 1); - x_134 = x_131; -} else { - lean_dec_ref(x_131); - x_134 = lean_box(0); -} -if (lean_is_scalar(x_134)) { - x_135 = lean_alloc_ctor(1, 2, 0); -} else { - x_135 = x_134; -} -lean_ctor_set(x_135, 0, x_132); -lean_ctor_set(x_135, 1, x_133); -return x_135; -} -} -else -{ -lean_object* x_136; lean_object* x_137; -lean_dec(x_120); -lean_dec_ref(x_109); -lean_dec(x_8); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -x_136 = lean_box(x_36); -if (lean_is_scalar(x_122)) { - x_137 = lean_alloc_ctor(0, 2, 0); -} else { - x_137 = x_122; -} -lean_ctor_set(x_137, 0, x_136); -lean_ctor_set(x_137, 1, x_121); -return x_137; -} -} -else -{ -lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -lean_dec_ref(x_109); -lean_dec(x_8); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -x_138 = lean_ctor_get(x_119, 0); -lean_inc(x_138); -x_139 = lean_ctor_get(x_119, 1); -lean_inc(x_139); -if (lean_is_exclusive(x_119)) { - lean_ctor_release(x_119, 0); - lean_ctor_release(x_119, 1); - x_140 = x_119; -} else { - lean_dec_ref(x_119); - x_140 = lean_box(0); -} -if (lean_is_scalar(x_140)) { - x_141 = lean_alloc_ctor(1, 2, 0); -} else { - x_141 = x_140; -} -lean_ctor_set(x_141, 0, x_138); -lean_ctor_set(x_141, 1, x_139); -return x_141; -} -} -} -} -else -{ -uint8_t x_142; lean_object* x_143; lean_object* x_144; -lean_dec_ref(x_35); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_1); -x_142 = 0; -x_143 = lean_box(x_142); -x_144 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_144, 0, x_143); -lean_ctor_set(x_144, 1, x_9); -return x_144; -} -block_32: -{ -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; lean_object* x_30; lean_object* x_31; -lean_dec_ref(x_17); -x_21 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__1; -x_22 = l_Lean_MessageData_ofExpr(x_16); -x_23 = l_Lean_indentD(x_22); -x_24 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_24, 0, x_21); -lean_ctor_set(x_24, 1, x_23); -x_25 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__3; -x_26 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_26, 0, x_24); -lean_ctor_set(x_26, 1, x_25); -x_27 = l_Lean_Exception_toMessageData(x_13); -x_28 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_28, 0, x_26); -lean_ctor_set(x_28, 1, x_27); -x_29 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -x_30 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_30, 0, x_28); -lean_ctor_set(x_30, 1, x_29); -x_31 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg(x_30, x_10, x_12, x_19, x_11, x_18, x_14, x_15); -lean_dec(x_14); -lean_dec_ref(x_18); -lean_dec(x_11); -lean_dec_ref(x_19); -lean_dec(x_12); -return x_31; -} -else -{ -lean_dec_ref(x_19); -lean_dec_ref(x_18); -lean_dec_ref(x_16); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -return x_17; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabConfig(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_elabConfig___redArg(x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0___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) { -_start: -{ -lean_object* x_7; -x_7 = l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0(x_1, x_2, x_3, x_4, x_5, x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__1___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; lean_object* x_4; -x_3 = l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__1(x_1, x_2); -lean_dec_ref(x_2); -lean_dec(x_1); -x_4 = lean_box(x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg(x_1, x_2, x_3, x_4); -lean_dec_ref(x_3); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__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_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -lean_object* x_9; -x_9 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___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: -{ -lean_object* x_10; -x_10 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___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: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_elabConfig___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec_ref(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabConfig___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_elabConfig(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_3); -lean_dec_ref(x_2); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_burnOne___redArg(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_7; lean_object* x_8; lean_object* x_9; -x_7 = lean_st_ref_get(x_1, x_2); -x_8 = lean_ctor_get(x_7, 0); -lean_inc(x_8); -x_9 = lean_ctor_get(x_8, 0); -lean_inc(x_9); -if (lean_obj_tag(x_9) == 0) -{ -lean_object* x_10; uint8_t x_11; -x_10 = lean_ctor_get(x_7, 1); -lean_inc(x_10); -lean_dec_ref(x_7); -x_11 = !lean_is_exclusive(x_8); -if (x_11 == 0) -{ lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; -x_12 = lean_ctor_get(x_8, 1); -x_13 = lean_ctor_get(x_8, 2); -x_14 = lean_ctor_get(x_8, 0); -lean_dec(x_14); -x_15 = !lean_is_exclusive(x_9); +x_12 = lean_st_ref_take(x_10, x_11); +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_13, 4); +lean_inc_ref(x_14); +x_15 = !lean_is_exclusive(x_12); if (x_15 == 0) { lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_16 = lean_ctor_get(x_9, 0); -x_17 = lean_unsigned_to_nat(0u); -x_18 = lean_nat_dec_eq(x_16, x_17); -if (x_18 == 1) +x_16 = lean_ctor_get(x_12, 1); +x_17 = lean_ctor_get(x_12, 0); +lean_dec(x_17); +x_18 = !lean_is_exclusive(x_13); +if (x_18 == 0) { -lean_free_object(x_9); -lean_dec(x_16); -lean_free_object(x_8); -lean_dec_ref(x_13); -lean_dec_ref(x_12); -x_3 = x_10; -goto block_6; -} -else +lean_object* x_19; uint8_t x_20; +x_19 = lean_ctor_get(x_13, 4); +lean_dec(x_19); +x_20 = !lean_is_exclusive(x_14); +if (x_20 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; -x_19 = lean_unsigned_to_nat(1u); -x_20 = lean_nat_sub(x_16, x_19); -lean_dec(x_16); -lean_ctor_set(x_9, 0, x_20); -x_21 = lean_st_ref_set(x_1, x_8, x_10); -x_22 = !lean_is_exclusive(x_21); -if (x_22 == 0) -{ -return x_21; -} -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_21, 0); -x_24 = lean_ctor_get(x_21, 1); -lean_inc(x_24); -lean_inc(x_23); -lean_dec(x_21); -x_25 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_25, 0, x_23); +lean_object* x_21; double x_22; uint8_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_21 = lean_ctor_get(x_14, 0); +x_22 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__0; +x_23 = 0; +x_24 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__1; +x_25 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_25, 0, x_1); lean_ctor_set(x_25, 1, x_24); -return x_25; -} -} +lean_ctor_set_float(x_25, sizeof(void*)*2, x_22); +lean_ctor_set_float(x_25, sizeof(void*)*2 + 8, x_22); +lean_ctor_set_uint8(x_25, sizeof(void*)*2 + 16, x_23); +x_26 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__2; +x_27 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_27, 0, x_25); +lean_ctor_set(x_27, 1, x_2); +lean_ctor_set(x_27, 2, x_26); +lean_ctor_set(x_12, 1, x_27); +lean_ctor_set(x_12, 0, x_3); +x_28 = l_Lean_PersistentArray_push___redArg(x_21, x_12); +lean_ctor_set(x_14, 0, x_28); +x_29 = lean_st_ref_set(x_10, x_13, x_16); +x_30 = !lean_is_exclusive(x_29); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; +x_31 = lean_ctor_get(x_29, 0); +lean_dec(x_31); +x_32 = lean_box(0); +lean_ctor_set(x_29, 0, x_32); +return x_29; } else { -lean_object* x_26; lean_object* x_27; uint8_t x_28; -x_26 = lean_ctor_get(x_9, 0); -lean_inc(x_26); -lean_dec(x_9); -x_27 = lean_unsigned_to_nat(0u); -x_28 = lean_nat_dec_eq(x_26, x_27); -if (x_28 == 1) -{ -lean_dec(x_26); -lean_free_object(x_8); -lean_dec_ref(x_13); -lean_dec_ref(x_12); -x_3 = x_10; -goto block_6; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_29 = lean_unsigned_to_nat(1u); -x_30 = lean_nat_sub(x_26, x_29); -lean_dec(x_26); -x_31 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_8, 0, x_31); -x_32 = lean_st_ref_set(x_1, x_8, x_10); -x_33 = lean_ctor_get(x_32, 0); +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_29, 1); lean_inc(x_33); -x_34 = lean_ctor_get(x_32, 1); -lean_inc(x_34); -if (lean_is_exclusive(x_32)) { - lean_ctor_release(x_32, 0); - lean_ctor_release(x_32, 1); - x_35 = x_32; -} else { - lean_dec_ref(x_32); - x_35 = lean_box(0); -} -if (lean_is_scalar(x_35)) { - x_36 = lean_alloc_ctor(0, 2, 0); -} else { - x_36 = x_35; -} -lean_ctor_set(x_36, 0, x_33); -lean_ctor_set(x_36, 1, x_34); -return x_36; -} +lean_dec(x_29); +x_34 = lean_box(0); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_33); +return x_35; } } else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; -x_37 = lean_ctor_get(x_8, 1); -x_38 = lean_ctor_get(x_8, 2); -lean_inc(x_38); +uint64_t x_36; lean_object* x_37; double x_38; uint8_t x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_36 = lean_ctor_get_uint64(x_14, sizeof(void*)*1); +x_37 = lean_ctor_get(x_14, 0); lean_inc(x_37); -lean_dec(x_8); -x_39 = lean_ctor_get(x_9, 0); -lean_inc(x_39); -if (lean_is_exclusive(x_9)) { - lean_ctor_release(x_9, 0); - x_40 = x_9; -} else { - lean_dec_ref(x_9); - x_40 = lean_box(0); -} -x_41 = lean_unsigned_to_nat(0u); -x_42 = lean_nat_dec_eq(x_39, x_41); -if (x_42 == 1) -{ -lean_dec(x_40); -lean_dec(x_39); -lean_dec_ref(x_38); -lean_dec_ref(x_37); -x_3 = x_10; -goto block_6; -} -else -{ -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_43 = lean_unsigned_to_nat(1u); -x_44 = lean_nat_sub(x_39, x_43); -lean_dec(x_39); -if (lean_is_scalar(x_40)) { - x_45 = lean_alloc_ctor(0, 1, 0); -} else { - x_45 = x_40; -} +lean_dec(x_14); +x_38 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__0; +x_39 = 0; +x_40 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__1; +x_41 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_41, 0, x_1); +lean_ctor_set(x_41, 1, x_40); +lean_ctor_set_float(x_41, sizeof(void*)*2, x_38); +lean_ctor_set_float(x_41, sizeof(void*)*2 + 8, x_38); +lean_ctor_set_uint8(x_41, sizeof(void*)*2 + 16, x_39); +x_42 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__2; +x_43 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_2); +lean_ctor_set(x_43, 2, x_42); +lean_ctor_set(x_12, 1, x_43); +lean_ctor_set(x_12, 0, x_3); +x_44 = l_Lean_PersistentArray_push___redArg(x_37, x_12); +x_45 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_45, 0, x_44); -x_46 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_46, 0, x_45); -lean_ctor_set(x_46, 1, x_37); -lean_ctor_set(x_46, 2, x_38); -x_47 = lean_st_ref_set(x_1, x_46, x_10); -x_48 = lean_ctor_get(x_47, 0); -lean_inc(x_48); -x_49 = lean_ctor_get(x_47, 1); -lean_inc(x_49); -if (lean_is_exclusive(x_47)) { - lean_ctor_release(x_47, 0); - lean_ctor_release(x_47, 1); - x_50 = x_47; +lean_ctor_set_uint64(x_45, sizeof(void*)*1, x_36); +lean_ctor_set(x_13, 4, x_45); +x_46 = lean_st_ref_set(x_10, x_13, x_16); +x_47 = lean_ctor_get(x_46, 1); +lean_inc(x_47); +if (lean_is_exclusive(x_46)) { + lean_ctor_release(x_46, 0); + lean_ctor_release(x_46, 1); + x_48 = x_46; } else { - lean_dec_ref(x_47); - x_50 = lean_box(0); + lean_dec_ref(x_46); + x_48 = lean_box(0); } -if (lean_is_scalar(x_50)) { - x_51 = lean_alloc_ctor(0, 2, 0); +x_49 = lean_box(0); +if (lean_is_scalar(x_48)) { + x_50 = lean_alloc_ctor(0, 2, 0); } else { - x_51 = x_50; -} -lean_ctor_set(x_51, 0, x_48); -lean_ctor_set(x_51, 1, x_49); -return x_51; + x_50 = x_48; } +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_47); +return x_50; } } else { -lean_object* x_52; -lean_dec(x_8); -x_52 = lean_ctor_get(x_7, 1); +lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint64_t x_59; lean_object* x_60; lean_object* x_61; double x_62; uint8_t x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_51 = lean_ctor_get(x_13, 0); +x_52 = lean_ctor_get(x_13, 1); +x_53 = lean_ctor_get(x_13, 2); +x_54 = lean_ctor_get(x_13, 3); +x_55 = lean_ctor_get(x_13, 5); +x_56 = lean_ctor_get(x_13, 6); +x_57 = lean_ctor_get(x_13, 7); +x_58 = lean_ctor_get(x_13, 8); +lean_inc(x_58); +lean_inc(x_57); +lean_inc(x_56); +lean_inc(x_55); +lean_inc(x_54); +lean_inc(x_53); lean_inc(x_52); -lean_dec_ref(x_7); -x_3 = x_52; -goto block_6; +lean_inc(x_51); +lean_dec(x_13); +x_59 = lean_ctor_get_uint64(x_14, sizeof(void*)*1); +x_60 = lean_ctor_get(x_14, 0); +lean_inc_ref(x_60); +if (lean_is_exclusive(x_14)) { + lean_ctor_release(x_14, 0); + x_61 = x_14; +} else { + lean_dec_ref(x_14); + x_61 = lean_box(0); } -block_6: +x_62 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__0; +x_63 = 0; +x_64 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__1; +x_65 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_65, 0, x_1); +lean_ctor_set(x_65, 1, x_64); +lean_ctor_set_float(x_65, sizeof(void*)*2, x_62); +lean_ctor_set_float(x_65, sizeof(void*)*2 + 8, x_62); +lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 16, x_63); +x_66 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__2; +x_67 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_67, 0, x_65); +lean_ctor_set(x_67, 1, x_2); +lean_ctor_set(x_67, 2, x_66); +lean_ctor_set(x_12, 1, x_67); +lean_ctor_set(x_12, 0, x_3); +x_68 = l_Lean_PersistentArray_push___redArg(x_60, x_12); +if (lean_is_scalar(x_61)) { + x_69 = lean_alloc_ctor(0, 1, 8); +} else { + x_69 = x_61; +} +lean_ctor_set(x_69, 0, x_68); +lean_ctor_set_uint64(x_69, sizeof(void*)*1, x_59); +x_70 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_70, 0, x_51); +lean_ctor_set(x_70, 1, x_52); +lean_ctor_set(x_70, 2, x_53); +lean_ctor_set(x_70, 3, x_54); +lean_ctor_set(x_70, 4, x_69); +lean_ctor_set(x_70, 5, x_55); +lean_ctor_set(x_70, 6, x_56); +lean_ctor_set(x_70, 7, x_57); +lean_ctor_set(x_70, 8, x_58); +x_71 = lean_st_ref_set(x_10, x_70, x_16); +x_72 = lean_ctor_get(x_71, 1); +lean_inc(x_72); +if (lean_is_exclusive(x_71)) { + lean_ctor_release(x_71, 0); + lean_ctor_release(x_71, 1); + x_73 = x_71; +} else { + lean_dec_ref(x_71); + x_73 = lean_box(0); +} +x_74 = lean_box(0); +if (lean_is_scalar(x_73)) { + x_75 = lean_alloc_ctor(0, 2, 0); +} else { + x_75 = x_73; +} +lean_ctor_set(x_75, 0, x_74); +lean_ctor_set(x_75, 1, x_72); +return x_75; +} +} +else { -lean_object* x_4; lean_object* x_5; -x_4 = lean_box(0); -x_5 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_5, 0, x_4); -lean_ctor_set(x_5, 1, x_3); -return x_5; +lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; uint64_t x_86; lean_object* x_87; lean_object* x_88; double x_89; uint8_t x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_76 = lean_ctor_get(x_12, 1); +lean_inc(x_76); +lean_dec(x_12); +x_77 = lean_ctor_get(x_13, 0); +lean_inc_ref(x_77); +x_78 = lean_ctor_get(x_13, 1); +lean_inc(x_78); +x_79 = lean_ctor_get(x_13, 2); +lean_inc_ref(x_79); +x_80 = lean_ctor_get(x_13, 3); +lean_inc_ref(x_80); +x_81 = lean_ctor_get(x_13, 5); +lean_inc_ref(x_81); +x_82 = lean_ctor_get(x_13, 6); +lean_inc_ref(x_82); +x_83 = lean_ctor_get(x_13, 7); +lean_inc_ref(x_83); +x_84 = lean_ctor_get(x_13, 8); +lean_inc_ref(x_84); +if (lean_is_exclusive(x_13)) { + lean_ctor_release(x_13, 0); + lean_ctor_release(x_13, 1); + lean_ctor_release(x_13, 2); + lean_ctor_release(x_13, 3); + lean_ctor_release(x_13, 4); + lean_ctor_release(x_13, 5); + lean_ctor_release(x_13, 6); + lean_ctor_release(x_13, 7); + lean_ctor_release(x_13, 8); + x_85 = x_13; +} else { + lean_dec_ref(x_13); + x_85 = lean_box(0); +} +x_86 = lean_ctor_get_uint64(x_14, sizeof(void*)*1); +x_87 = lean_ctor_get(x_14, 0); +lean_inc_ref(x_87); +if (lean_is_exclusive(x_14)) { + lean_ctor_release(x_14, 0); + x_88 = x_14; +} else { + lean_dec_ref(x_14); + x_88 = lean_box(0); +} +x_89 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__0; +x_90 = 0; +x_91 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__1; +x_92 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_92, 0, x_1); +lean_ctor_set(x_92, 1, x_91); +lean_ctor_set_float(x_92, sizeof(void*)*2, x_89); +lean_ctor_set_float(x_92, sizeof(void*)*2 + 8, x_89); +lean_ctor_set_uint8(x_92, sizeof(void*)*2 + 16, x_90); +x_93 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__2; +x_94 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_94, 0, x_92); +lean_ctor_set(x_94, 1, x_2); +lean_ctor_set(x_94, 2, x_93); +x_95 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_95, 0, x_3); +lean_ctor_set(x_95, 1, x_94); +x_96 = l_Lean_PersistentArray_push___redArg(x_87, x_95); +if (lean_is_scalar(x_88)) { + x_97 = lean_alloc_ctor(0, 1, 8); +} else { + x_97 = x_88; +} +lean_ctor_set(x_97, 0, x_96); +lean_ctor_set_uint64(x_97, sizeof(void*)*1, x_86); +if (lean_is_scalar(x_85)) { + x_98 = lean_alloc_ctor(0, 9, 0); +} else { + x_98 = x_85; +} +lean_ctor_set(x_98, 0, x_77); +lean_ctor_set(x_98, 1, x_78); +lean_ctor_set(x_98, 2, x_79); +lean_ctor_set(x_98, 3, x_80); +lean_ctor_set(x_98, 4, x_97); +lean_ctor_set(x_98, 5, x_81); +lean_ctor_set(x_98, 6, x_82); +lean_ctor_set(x_98, 7, x_83); +lean_ctor_set(x_98, 8, x_84); +x_99 = lean_st_ref_set(x_10, x_98, x_76); +x_100 = lean_ctor_get(x_99, 1); +lean_inc(x_100); +if (lean_is_exclusive(x_99)) { + lean_ctor_release(x_99, 0); + lean_ctor_release(x_99, 1); + x_101 = x_99; +} else { + lean_dec_ref(x_99); + x_101 = lean_box(0); +} +x_102 = lean_box(0); +if (lean_is_scalar(x_101)) { + x_103 = lean_alloc_ctor(0, 2, 0); +} else { + x_103 = x_101; +} +lean_ctor_set(x_103, 0, x_102); +lean_ctor_set(x_103, 1, x_100); +return x_103; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_burnOne(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { -_start: -{ -lean_object* x_8; -x_8 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_2, x_7); -return x_8; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_burnOne___redArg___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_1, x_2); -lean_dec(x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_burnOne___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { -_start: -{ -lean_object* x_8; -x_8 = l_Lean_Elab_Tactic_Do_burnOne(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -return x_8; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ifOutOfFuel___redArg(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_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14(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_10; lean_object* x_11; lean_object* x_12; -x_10 = lean_st_ref_get(x_4, x_9); -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -x_12 = lean_ctor_get(x_11, 0); -lean_inc(x_12); -lean_dec(x_11); +x_10 = lean_ctor_get(x_7, 5); +lean_inc(x_10); +x_11 = lean_alloc_closure((void*)(l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg___lam__0___boxed), 9, 1); +lean_closure_set(x_11, 0, x_2); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +x_12 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_12) == 0) { -lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; -x_13 = lean_ctor_get(x_10, 1); -lean_inc(x_13); -lean_dec_ref(x_10); -x_14 = lean_ctor_get(x_12, 0); -lean_inc(x_14); -lean_dec_ref(x_12); -x_15 = lean_unsigned_to_nat(0u); -x_16 = lean_nat_dec_eq(x_14, x_15); -lean_dec(x_14); -if (x_16 == 0) -{ -lean_object* x_17; -lean_dec_ref(x_1); -x_17 = lean_apply_7(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_13); -return x_17; -} -else -{ -lean_object* x_18; -lean_dec_ref(x_2); -x_18 = lean_apply_7(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_13); -return x_18; -} -} -else -{ -lean_object* x_19; lean_object* x_20; -lean_dec_ref(x_1); -x_19 = lean_ctor_get(x_10, 1); -lean_inc(x_19); -lean_dec_ref(x_10); -x_20 = lean_apply_7(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_19); -return x_20; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ifOutOfFuel(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_ifOutOfFuel___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_emitVC___redArg(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_mkFreshExprSyntheticOpaqueMVar(x_1, x_2, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_9) == 0) -{ -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; -x_10 = lean_ctor_get(x_9, 0); -lean_inc(x_10); -x_11 = lean_ctor_get(x_9, 1); -lean_inc(x_11); -lean_dec_ref(x_9); -x_12 = lean_st_ref_take(x_3, x_11); +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; 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_ref(x_12); -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_16 = lean_ctor_get(x_13, 2); -x_17 = l_Lean_Expr_mvarId_x21(x_10); -x_18 = lean_array_push(x_16, x_17); -lean_ctor_set(x_13, 2, x_18); -x_19 = lean_st_ref_set(x_3, x_13, x_14); -x_20 = !lean_is_exclusive(x_19); -if (x_20 == 0) -{ -lean_object* x_21; -x_21 = lean_ctor_get(x_19, 0); -lean_dec(x_21); -lean_ctor_set(x_19, 0, x_10); -return x_19; +x_15 = lean_alloc_closure((void*)(l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___boxed), 11, 3); +lean_closure_set(x_15, 0, x_1); +lean_closure_set(x_15, 1, x_13); +lean_closure_set(x_15, 2, x_10); +x_16 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_14); +return x_16; } else { -lean_object* x_22; lean_object* x_23; -x_22 = lean_ctor_get(x_19, 1); -lean_inc(x_22); -lean_dec(x_19); -x_23 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_23, 0, x_10); -lean_ctor_set(x_23, 1, x_22); -return x_23; -} -} -else -{ -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; -x_24 = lean_ctor_get(x_13, 0); -x_25 = lean_ctor_get(x_13, 1); -x_26 = lean_ctor_get(x_13, 2); -lean_inc(x_26); -lean_inc(x_25); -lean_inc(x_24); -lean_dec(x_13); -x_27 = l_Lean_Expr_mvarId_x21(x_10); -x_28 = lean_array_push(x_26, x_27); -x_29 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_29, 0, x_24); -lean_ctor_set(x_29, 1, x_25); -lean_ctor_set(x_29, 2, x_28); -x_30 = lean_st_ref_set(x_3, x_29, x_14); -x_31 = lean_ctor_get(x_30, 1); -lean_inc(x_31); -if (lean_is_exclusive(x_30)) { - lean_ctor_release(x_30, 0); - lean_ctor_release(x_30, 1); - x_32 = x_30; -} else { - lean_dec_ref(x_30); - x_32 = lean_box(0); -} -if (lean_is_scalar(x_32)) { - x_33 = lean_alloc_ctor(0, 2, 0); -} else { - x_33 = x_32; -} -lean_ctor_set(x_33, 0, x_10); -lean_ctor_set(x_33, 1, x_31); -return x_33; -} -} -else -{ -return x_9; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_emitVC(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_10; -x_10 = l_Lean_Elab_Tactic_Do_emitVC___redArg(x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_emitVC___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -lean_object* x_9; -x_9 = l_Lean_Elab_Tactic_Do_emitVC___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec(x_3); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_emitVC___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: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_emitVC(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +uint8_t x_17; +lean_dec(x_10); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec(x_4); +lean_dec_ref(x_5); lean_dec_ref(x_3); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_addSubGoalAsVC___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: +lean_dec(x_1); +x_17 = !lean_is_exclusive(x_12); +if (x_17 == 0) { -lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; -x_4 = lean_st_ref_take(x_2, x_3); -x_5 = lean_ctor_get(x_4, 0); -lean_inc(x_5); -x_6 = lean_ctor_get(x_4, 1); -lean_inc(x_6); -lean_dec_ref(x_4); -x_7 = !lean_is_exclusive(x_5); -if (x_7 == 0) -{ -lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; -x_8 = lean_ctor_get(x_5, 2); -x_9 = lean_array_push(x_8, x_1); -lean_ctor_set(x_5, 2, x_9); -x_10 = lean_st_ref_set(x_2, x_5, x_6); -x_11 = !lean_is_exclusive(x_10); -if (x_11 == 0) -{ -lean_object* x_12; lean_object* x_13; -x_12 = lean_ctor_get(x_10, 0); -lean_dec(x_12); -x_13 = lean_box(0); -lean_ctor_set(x_10, 0, x_13); -return x_10; +return x_12; } else { -lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_14 = lean_ctor_get(x_10, 1); -lean_inc(x_14); -lean_dec(x_10); -x_15 = lean_box(0); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_15); -lean_ctor_set(x_16, 1, x_14); -return x_16; -} -} -else -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_17 = lean_ctor_get(x_5, 0); -x_18 = lean_ctor_get(x_5, 1); -x_19 = lean_ctor_get(x_5, 2); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_12, 0); +x_19 = lean_ctor_get(x_12, 1); lean_inc(x_19); lean_inc(x_18); +lean_dec(x_12); +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_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = lean_apply_9(x_1, x_4, x_5, x_2, x_3, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_alloc_closure((void*)(l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg___lam__0), 10, 3); +lean_closure_set(x_13, 0, x_3); +lean_closure_set(x_13, 1, x_6); +lean_closure_set(x_13, 2, x_7); +x_14 = l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAux___redArg(x_1, x_2, x_13, x_4, x_5, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_14) == 0) +{ +return x_14; +} +else +{ +uint8_t x_15; +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +return x_14; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_14, 0); +x_17 = lean_ctor_get(x_14, 1); lean_inc(x_17); -lean_dec(x_5); -x_20 = lean_array_push(x_19, x_1); -x_21 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_21, 0, x_17); -lean_ctor_set(x_21, 1, x_18); -lean_ctor_set(x_21, 2, x_20); -x_22 = lean_st_ref_set(x_2, x_21, x_6); -x_23 = lean_ctor_get(x_22, 1); -lean_inc(x_23); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - lean_ctor_release(x_22, 1); - x_24 = x_22; -} else { - lean_dec_ref(x_22); - x_24 = lean_box(0); -} -x_25 = lean_box(0); -if (lean_is_scalar(x_24)) { - x_26 = lean_alloc_ctor(0, 2, 0); -} else { - x_26 = x_24; -} -lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_23); -return x_26; +lean_inc(x_16); +lean_dec(x_14); +x_18 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_18, 0, x_16); +lean_ctor_set(x_18, 1, x_17); +return x_18; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_addSubGoalAsVC(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_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_9; -x_9 = l_Lean_Elab_Tactic_Do_addSubGoalAsVC___redArg(x_1, x_3, x_8); -return x_9; +lean_object* x_14; +x_14 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_addSubGoalAsVC___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__16_spec__16___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { -lean_object* x_4; -x_4 = l_Lean_Elab_Tactic_Do_addSubGoalAsVC___redArg(x_1, x_2, x_3); +uint8_t x_5; +x_5 = !lean_is_exclusive(x_1); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_6 = lean_ctor_get(x_1, 0); +x_7 = lean_ctor_get(x_1, 1); +x_8 = lean_array_get_size(x_6); +x_9 = lean_nat_dec_lt(x_2, x_8); +lean_dec(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_dec(x_2); -return x_4; +x_10 = lean_array_push(x_6, x_3); +x_11 = lean_array_push(x_7, x_4); +lean_ctor_set(x_1, 1, x_11); +lean_ctor_set(x_1, 0, x_10); +return x_1; +} +else +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_array_fget(x_6, x_2); +x_13 = lean_name_eq(x_3, x_12); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_unsigned_to_nat(1u); +x_15 = lean_nat_add(x_2, x_14); +lean_dec(x_2); +x_2 = x_15; +goto _start; +} +else +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_array_fset(x_6, x_2, x_3); +x_18 = lean_array_fset(x_7, x_2, x_4); +lean_dec(x_2); +lean_ctor_set(x_1, 1, x_18); +lean_ctor_set(x_1, 0, x_17); +return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_addSubGoalAsVC___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) { +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_19 = lean_ctor_get(x_1, 0); +x_20 = lean_ctor_get(x_1, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_1); +x_21 = lean_array_get_size(x_19); +x_22 = lean_nat_dec_lt(x_2, x_21); +lean_dec(x_21); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +lean_dec(x_2); +x_23 = lean_array_push(x_19, x_3); +x_24 = lean_array_push(x_20, x_4); +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 +{ +lean_object* x_26; uint8_t x_27; +x_26 = lean_array_fget(x_19, x_2); +x_27 = lean_name_eq(x_3, x_26); +lean_dec(x_26); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_19); +lean_ctor_set(x_28, 1, x_20); +x_29 = lean_unsigned_to_nat(1u); +x_30 = lean_nat_add(x_2, x_29); +lean_dec(x_2); +x_1 = x_28; +x_2 = x_30; +goto _start; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_array_fset(x_19, x_2, x_3); +x_33 = lean_array_fset(x_20, x_2, x_4); +lean_dec(x_2); +x_34 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +return x_34; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__16_spec__16(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { -lean_object* x_9; -x_9 = l_Lean_Elab_Tactic_Do_addSubGoalAsVC(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_7); +lean_object* x_6; +x_6 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__16_spec__16___redArg(x_2, x_3, x_4, x_5); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__16___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; +x_4 = lean_unsigned_to_nat(0u); +x_5 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__16_spec__16___redArg(x_1, x_4, x_2, x_3); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__16(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__16___redArg(x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__18___redArg(size_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; uint8_t x_7; +x_6 = lean_array_get_size(x_2); +x_7 = lean_nat_dec_lt(x_4, x_6); +lean_dec(x_6); +if (x_7 == 0) +{ +lean_dec(x_4); +return x_5; +} +else +{ +lean_object* x_8; lean_object* x_9; uint64_t x_10; size_t x_11; size_t x_12; lean_object* x_13; size_t x_14; size_t x_15; size_t x_16; size_t x_17; lean_object* x_18; lean_object* x_19; +x_8 = lean_array_fget(x_2, x_4); +x_9 = lean_array_fget(x_3, x_4); +x_10 = l_Lean_hashMVarId____x40_Lean_Expr___hyg_1869_(x_8); +x_11 = lean_uint64_to_usize(x_10); +x_12 = 5; +x_13 = lean_unsigned_to_nat(1u); +x_14 = 1; +x_15 = lean_usize_sub(x_1, x_14); +x_16 = lean_usize_mul(x_12, x_15); +x_17 = lean_usize_shift_right(x_11, x_16); +x_18 = lean_nat_add(x_4, x_13); +lean_dec(x_4); +x_19 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg(x_5, x_17, x_1, x_8, x_9); +x_4 = x_18; +x_5 = x_19; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__18(lean_object* x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__18___redArg(x_2, x_3, x_4, x_6, x_7); +return x_8; +} +} +static size_t _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg___closed__0() { +_start: +{ +size_t x_1; size_t x_2; size_t x_3; +x_1 = 5; +x_2 = 1; +x_3 = lean_usize_shift_left(x_2, x_1); +return x_3; +} +} +static size_t _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg___closed__1() { +_start: +{ +size_t x_1; size_t x_2; size_t x_3; +x_1 = 1; +x_2 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg___closed__0; +x_3 = lean_usize_sub(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_PersistentHashMap_mkEmptyEntries(lean_box(0), lean_box(0)); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_6; size_t x_7; size_t x_8; size_t x_9; size_t x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_6 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_6); +x_7 = 5; +x_8 = 1; +x_9 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg___closed__1; +x_10 = lean_usize_land(x_2, x_9); +x_11 = lean_usize_to_nat(x_10); +x_12 = lean_array_get_size(x_6); +x_13 = lean_nat_dec_lt(x_11, x_12); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_dec(x_11); lean_dec_ref(x_6); lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_liftSimpM___redArg(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; lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_9 = lean_st_ref_get(x_3, x_8); -x_10 = lean_ctor_get(x_9, 0); -lean_inc(x_10); -x_11 = lean_ctor_get(x_9, 1); -lean_inc(x_11); -lean_dec_ref(x_9); -x_12 = !lean_is_exclusive(x_10); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_13 = lean_ctor_get(x_10, 0); -x_14 = lean_ctor_get(x_10, 1); -x_15 = lean_ctor_get(x_10, 2); -x_16 = lean_st_mk_ref(x_14, x_11); -x_17 = lean_ctor_get(x_16, 0); -lean_inc(x_17); -x_18 = lean_ctor_get(x_16, 1); -lean_inc(x_18); -lean_dec_ref(x_16); -x_19 = lean_ctor_get(x_2, 1); -lean_inc_ref(x_19); -x_20 = lean_ctor_get(x_2, 2); -lean_inc_ref(x_20); -lean_dec_ref(x_2); -x_21 = l_Lean_Meta_Simp_mkDefaultMethodsCore(x_20); -lean_inc(x_17); -x_22 = lean_apply_8(x_1, x_21, x_19, x_17, x_4, x_5, x_6, x_7, x_18); -if (lean_obj_tag(x_22) == 0) -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; -x_23 = lean_ctor_get(x_22, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_22, 1); -lean_inc(x_24); -lean_dec_ref(x_22); -x_25 = lean_st_ref_get(x_17, x_24); -lean_dec(x_17); -x_26 = lean_ctor_get(x_25, 0); -lean_inc(x_26); -x_27 = lean_ctor_get(x_25, 1); -lean_inc(x_27); -lean_dec_ref(x_25); -lean_ctor_set(x_10, 1, x_26); -x_28 = lean_st_ref_set(x_3, x_10, x_27); -x_29 = !lean_is_exclusive(x_28); -if (x_29 == 0) -{ -lean_object* x_30; -x_30 = lean_ctor_get(x_28, 0); -lean_dec(x_30); -lean_ctor_set(x_28, 0, x_23); -return x_28; +lean_dec(x_4); +return x_1; } else { +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + x_14 = x_1; +} else { + lean_dec_ref(x_1); + x_14 = lean_box(0); +} +x_15 = lean_array_fget(x_6, x_11); +x_16 = lean_box(0); +x_17 = lean_array_fset(x_6, x_11, x_16); +switch (lean_obj_tag(x_15)) { +case 0: +{ +uint8_t x_22; +x_22 = !lean_is_exclusive(x_15); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; uint8_t x_25; +x_23 = lean_ctor_get(x_15, 0); +x_24 = lean_ctor_get(x_15, 1); +x_25 = lean_name_eq(x_4, x_23); +if (x_25 == 0) +{ +lean_object* x_26; lean_object* x_27; +lean_free_object(x_15); +x_26 = l_Lean_PersistentHashMap_mkCollisionNode___redArg(x_23, x_24, x_4, x_5); +x_27 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_27, 0, x_26); +x_18 = x_27; +goto block_21; +} +else +{ +lean_dec(x_24); +lean_dec(x_23); +lean_ctor_set(x_15, 1, x_5); +lean_ctor_set(x_15, 0, x_4); +x_18 = x_15; +goto block_21; +} +} +else +{ +lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_28 = lean_ctor_get(x_15, 0); +x_29 = lean_ctor_get(x_15, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_15); +x_30 = lean_name_eq(x_4, x_28); +if (x_30 == 0) +{ lean_object* x_31; lean_object* x_32; -x_31 = lean_ctor_get(x_28, 1); -lean_inc(x_31); +x_31 = l_Lean_PersistentHashMap_mkCollisionNode___redArg(x_28, x_29, x_4, x_5); +x_32 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_32, 0, x_31); +x_18 = x_32; +goto block_21; +} +else +{ +lean_object* x_33; +lean_dec(x_29); lean_dec(x_28); -x_32 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_32, 0, x_23); -lean_ctor_set(x_32, 1, x_31); -return x_32; +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_4); +lean_ctor_set(x_33, 1, x_5); +x_18 = x_33; +goto block_21; +} +} +} +case 1: +{ +uint8_t x_34; +x_34 = !lean_is_exclusive(x_15); +if (x_34 == 0) +{ +lean_object* x_35; size_t x_36; size_t x_37; lean_object* x_38; +x_35 = lean_ctor_get(x_15, 0); +x_36 = lean_usize_shift_right(x_2, x_7); +x_37 = lean_usize_add(x_3, x_8); +x_38 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg(x_35, x_36, x_37, x_4, x_5); +lean_ctor_set(x_15, 0, x_38); +x_18 = x_15; +goto block_21; +} +else +{ +lean_object* x_39; size_t x_40; size_t x_41; lean_object* x_42; lean_object* x_43; +x_39 = lean_ctor_get(x_15, 0); +lean_inc(x_39); +lean_dec(x_15); +x_40 = lean_usize_shift_right(x_2, x_7); +x_41 = lean_usize_add(x_3, x_8); +x_42 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg(x_39, x_40, x_41, x_4, x_5); +x_43 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_43, 0, x_42); +x_18 = x_43; +goto block_21; +} +} +default: +{ +lean_object* x_44; +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_4); +lean_ctor_set(x_44, 1, x_5); +x_18 = x_44; +goto block_21; +} +} +block_21: +{ +lean_object* x_19; lean_object* x_20; +x_19 = lean_array_fset(x_17, x_11, x_18); +lean_dec(x_11); +if (lean_is_scalar(x_14)) { + x_20 = lean_alloc_ctor(0, 1, 0); +} else { + x_20 = x_14; +} +lean_ctor_set(x_20, 0, x_19); +return x_20; +} } } else { -lean_dec(x_17); -lean_free_object(x_10); -lean_dec_ref(x_15); -lean_dec(x_13); -return x_22; -} +uint8_t x_45; +x_45 = !lean_is_exclusive(x_1); +if (x_45 == 0) +{ +lean_object* x_46; uint8_t x_47; size_t x_54; uint8_t x_55; +x_46 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__16___redArg(x_1, x_4, x_5); +x_54 = 7; +x_55 = lean_usize_dec_le(x_54, x_3); +if (x_55 == 0) +{ +lean_object* x_56; lean_object* x_57; uint8_t x_58; +x_56 = l_Lean_PersistentHashMap_getCollisionNodeSize___redArg(x_46); +x_57 = lean_unsigned_to_nat(4u); +x_58 = lean_nat_dec_lt(x_56, x_57); +lean_dec(x_56); +x_47 = x_58; +goto block_53; } else { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_33 = lean_ctor_get(x_10, 0); -x_34 = lean_ctor_get(x_10, 1); -x_35 = lean_ctor_get(x_10, 2); -lean_inc(x_35); -lean_inc(x_34); -lean_inc(x_33); -lean_dec(x_10); -x_36 = lean_st_mk_ref(x_34, x_11); -x_37 = lean_ctor_get(x_36, 0); -lean_inc(x_37); -x_38 = lean_ctor_get(x_36, 1); -lean_inc(x_38); -lean_dec_ref(x_36); -x_39 = lean_ctor_get(x_2, 1); -lean_inc_ref(x_39); -x_40 = lean_ctor_get(x_2, 2); -lean_inc_ref(x_40); -lean_dec_ref(x_2); -x_41 = l_Lean_Meta_Simp_mkDefaultMethodsCore(x_40); -lean_inc(x_37); -x_42 = lean_apply_8(x_1, x_41, x_39, x_37, x_4, x_5, x_6, x_7, x_38); -if (lean_obj_tag(x_42) == 0) +x_47 = x_55; +goto block_53; +} +block_53: { -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_43 = lean_ctor_get(x_42, 0); -lean_inc(x_43); -x_44 = lean_ctor_get(x_42, 1); -lean_inc(x_44); -lean_dec_ref(x_42); -x_45 = lean_st_ref_get(x_37, x_44); -lean_dec(x_37); -x_46 = lean_ctor_get(x_45, 0); -lean_inc(x_46); -x_47 = lean_ctor_get(x_45, 1); -lean_inc(x_47); -lean_dec_ref(x_45); -x_48 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_48, 0, x_33); -lean_ctor_set(x_48, 1, x_46); -lean_ctor_set(x_48, 2, x_35); -x_49 = lean_st_ref_set(x_3, x_48, x_47); -x_50 = lean_ctor_get(x_49, 1); -lean_inc(x_50); -if (lean_is_exclusive(x_49)) { - lean_ctor_release(x_49, 0); - lean_ctor_release(x_49, 1); - x_51 = x_49; -} else { - lean_dec_ref(x_49); - x_51 = lean_box(0); -} -if (lean_is_scalar(x_51)) { - x_52 = lean_alloc_ctor(0, 2, 0); -} else { - x_52 = x_51; -} -lean_ctor_set(x_52, 0, x_43); -lean_ctor_set(x_52, 1, x_50); +if (x_47 == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_48 = lean_ctor_get(x_46, 0); +lean_inc_ref(x_48); +x_49 = lean_ctor_get(x_46, 1); +lean_inc_ref(x_49); +lean_dec_ref(x_46); +x_50 = lean_unsigned_to_nat(0u); +x_51 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg___closed__2; +x_52 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__18___redArg(x_3, x_48, x_49, x_50, x_51); +lean_dec_ref(x_49); +lean_dec_ref(x_48); return x_52; } else { -lean_dec(x_37); -lean_dec_ref(x_35); -lean_dec(x_33); +return x_46; +} +} +} +else +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; size_t x_70; uint8_t x_71; +x_59 = lean_ctor_get(x_1, 0); +x_60 = lean_ctor_get(x_1, 1); +lean_inc(x_60); +lean_inc(x_59); +lean_dec(x_1); +x_61 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_61, 0, x_59); +lean_ctor_set(x_61, 1, x_60); +x_62 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__16___redArg(x_61, x_4, x_5); +x_70 = 7; +x_71 = lean_usize_dec_le(x_70, x_3); +if (x_71 == 0) +{ +lean_object* x_72; lean_object* x_73; uint8_t x_74; +x_72 = l_Lean_PersistentHashMap_getCollisionNodeSize___redArg(x_62); +x_73 = lean_unsigned_to_nat(4u); +x_74 = lean_nat_dec_lt(x_72, x_73); +lean_dec(x_72); +x_63 = x_74; +goto block_69; +} +else +{ +x_63 = x_71; +goto block_69; +} +block_69: +{ +if (x_63 == 0) +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_64 = lean_ctor_get(x_62, 0); +lean_inc_ref(x_64); +x_65 = lean_ctor_get(x_62, 1); +lean_inc_ref(x_65); +lean_dec_ref(x_62); +x_66 = lean_unsigned_to_nat(0u); +x_67 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg___closed__2; +x_68 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__18___redArg(x_3, x_64, x_65, x_66, x_67); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +return x_68; +} +else +{ +return x_62; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg(x_2, x_3, x_4, x_5, x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint64_t x_4; size_t x_5; size_t x_6; lean_object* x_7; +x_4 = l_Lean_hashMVarId____x40_Lean_Expr___hyg_1869_(x_2); +x_5 = lean_uint64_to_usize(x_4); +x_6 = 1; +x_7 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg(x_1, x_5, x_6, x_2, x_3); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16___redArg(x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_11 = lean_st_ref_take(x_7, x_10); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_12, 0); +lean_inc_ref(x_13); +x_14 = lean_ctor_get(x_11, 1); +lean_inc(x_14); +lean_dec_ref(x_11); +x_15 = !lean_is_exclusive(x_12); +if (x_15 == 0) +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_ctor_get(x_12, 0); +lean_dec(x_16); +x_17 = !lean_is_exclusive(x_13); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_18 = lean_ctor_get(x_13, 7); +x_19 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16___redArg(x_18, x_1, x_2); +lean_ctor_set(x_13, 7, x_19); +x_20 = lean_st_ref_set(x_7, x_12, x_14); +x_21 = !lean_is_exclusive(x_20); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_20, 0); +lean_dec(x_22); +x_23 = lean_box(0); +lean_ctor_set(x_20, 0, x_23); +return x_20; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_20, 1); +lean_inc(x_24); +lean_dec(x_20); +x_25 = lean_box(0); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_24); +return x_26; +} +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_27 = lean_ctor_get(x_13, 0); +x_28 = lean_ctor_get(x_13, 1); +x_29 = lean_ctor_get(x_13, 2); +x_30 = lean_ctor_get(x_13, 3); +x_31 = lean_ctor_get(x_13, 4); +x_32 = lean_ctor_get(x_13, 5); +x_33 = lean_ctor_get(x_13, 6); +x_34 = lean_ctor_get(x_13, 7); +x_35 = lean_ctor_get(x_13, 8); +lean_inc(x_35); +lean_inc(x_34); +lean_inc(x_33); +lean_inc(x_32); +lean_inc(x_31); +lean_inc(x_30); +lean_inc(x_29); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_13); +x_36 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16___redArg(x_34, x_1, x_2); +x_37 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_37, 0, x_27); +lean_ctor_set(x_37, 1, x_28); +lean_ctor_set(x_37, 2, x_29); +lean_ctor_set(x_37, 3, x_30); +lean_ctor_set(x_37, 4, x_31); +lean_ctor_set(x_37, 5, x_32); +lean_ctor_set(x_37, 6, x_33); +lean_ctor_set(x_37, 7, x_36); +lean_ctor_set(x_37, 8, x_35); +lean_ctor_set(x_12, 0, x_37); +x_38 = lean_st_ref_set(x_7, x_12, x_14); +x_39 = lean_ctor_get(x_38, 1); +lean_inc(x_39); +if (lean_is_exclusive(x_38)) { + lean_ctor_release(x_38, 0); + lean_ctor_release(x_38, 1); + x_40 = x_38; +} else { + lean_dec_ref(x_38); + x_40 = lean_box(0); +} +x_41 = lean_box(0); +if (lean_is_scalar(x_40)) { + x_42 = lean_alloc_ctor(0, 2, 0); +} else { + x_42 = x_40; +} +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set(x_42, 1, x_39); return x_42; } } +else +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_43 = lean_ctor_get(x_12, 1); +x_44 = lean_ctor_get(x_12, 2); +x_45 = lean_ctor_get(x_12, 3); +x_46 = lean_ctor_get(x_12, 4); +lean_inc(x_46); +lean_inc(x_45); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_12); +x_47 = lean_ctor_get(x_13, 0); +lean_inc(x_47); +x_48 = lean_ctor_get(x_13, 1); +lean_inc(x_48); +x_49 = lean_ctor_get(x_13, 2); +lean_inc(x_49); +x_50 = lean_ctor_get(x_13, 3); +lean_inc_ref(x_50); +x_51 = lean_ctor_get(x_13, 4); +lean_inc_ref(x_51); +x_52 = lean_ctor_get(x_13, 5); +lean_inc_ref(x_52); +x_53 = lean_ctor_get(x_13, 6); +lean_inc_ref(x_53); +x_54 = lean_ctor_get(x_13, 7); +lean_inc_ref(x_54); +x_55 = lean_ctor_get(x_13, 8); +lean_inc_ref(x_55); +if (lean_is_exclusive(x_13)) { + lean_ctor_release(x_13, 0); + lean_ctor_release(x_13, 1); + lean_ctor_release(x_13, 2); + lean_ctor_release(x_13, 3); + lean_ctor_release(x_13, 4); + lean_ctor_release(x_13, 5); + lean_ctor_release(x_13, 6); + lean_ctor_release(x_13, 7); + lean_ctor_release(x_13, 8); + x_56 = x_13; +} else { + lean_dec_ref(x_13); + x_56 = lean_box(0); +} +x_57 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16___redArg(x_54, x_1, x_2); +if (lean_is_scalar(x_56)) { + x_58 = lean_alloc_ctor(0, 9, 0); +} else { + x_58 = x_56; +} +lean_ctor_set(x_58, 0, x_47); +lean_ctor_set(x_58, 1, x_48); +lean_ctor_set(x_58, 2, x_49); +lean_ctor_set(x_58, 3, x_50); +lean_ctor_set(x_58, 4, x_51); +lean_ctor_set(x_58, 5, x_52); +lean_ctor_set(x_58, 6, x_53); +lean_ctor_set(x_58, 7, x_57); +lean_ctor_set(x_58, 8, x_55); +x_59 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_59, 0, x_58); +lean_ctor_set(x_59, 1, x_43); +lean_ctor_set(x_59, 2, x_44); +lean_ctor_set(x_59, 3, x_45); +lean_ctor_set(x_59, 4, x_46); +x_60 = lean_st_ref_set(x_7, x_59, x_14); +x_61 = lean_ctor_get(x_60, 1); +lean_inc(x_61); +if (lean_is_exclusive(x_60)) { + lean_ctor_release(x_60, 0); + lean_ctor_release(x_60, 1); + x_62 = x_60; +} else { + lean_dec_ref(x_60); + x_62 = lean_box(0); +} +x_63 = lean_box(0); +if (lean_is_scalar(x_62)) { + x_64 = lean_alloc_ctor(0, 2, 0); +} else { + x_64 = x_62; +} +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_61); +return x_64; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_liftSimpM(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_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16(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_10; -x_10 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_liftSimpM___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -lean_object* x_9; -x_9 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_3); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_liftSimpM___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: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_liftSimpM(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_4); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM___lam__0(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_10; -x_10 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_10; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM___lam__0___boxed), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM___lam__0___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: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_4); -return x_10; -} -} -static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Elab_unsupportedSyntaxExceptionId; -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__0; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__1; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg(x_10); +lean_object* x_10; lean_object* x_11; +x_10 = lean_alloc_closure((void*)(l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16___lam__0___boxed), 10, 2); +lean_closure_set(x_10, 0, x_1); +lean_closure_set(x_10, 1, x_2); +x_11 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_throwError___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg(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_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__22_spec__22(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; uint8_t x_10; +x_10 = lean_usize_dec_eq(x_2, x_3); +if (x_10 == 0) +{ +lean_object* x_11; +x_11 = lean_array_uget(x_1, x_2); +if (lean_obj_tag(x_11) == 0) +{ +x_5 = x_4; +goto block_9; +} +else +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +lean_dec_ref(x_11); +x_13 = lean_array_push(x_4, x_12); +x_5 = x_13; +goto block_9; +} +} +else +{ +return x_4; +} +block_9: +{ +size_t x_6; size_t x_7; +x_6 = 1; +x_7 = lean_usize_add(x_2, x_6); +x_2 = x_7; +x_4 = x_5; +goto _start; +} +} +} +static lean_object* _init_l_Array_filterMapM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__22___closed__0() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Array_filterMapM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__22(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = l_Array_filterMapM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__22___closed__0; +x_5 = lean_nat_dec_lt(x_2, x_3); +if (x_5 == 0) +{ +return x_4; +} +else +{ +lean_object* x_6; uint8_t x_7; +x_6 = lean_array_get_size(x_1); +x_7 = lean_nat_dec_le(x_3, x_6); +lean_dec(x_6); +if (x_7 == 0) +{ +return x_4; +} +else +{ +size_t x_8; size_t x_9; lean_object* x_10; +x_8 = lean_usize_of_nat(x_2); +x_9 = lean_usize_of_nat(x_3); +x_10 = l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__22_spec__22(x_1, x_8, x_9, x_4); +return x_10; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__24(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; uint8_t x_10; +x_10 = lean_usize_dec_eq(x_2, x_3); +if (x_10 == 0) +{ +lean_object* x_11; uint8_t x_12; +x_11 = lean_array_uget(x_1, x_2); +x_12 = l_Lean_LocalDecl_isImplementationDetail(x_11); +if (x_12 == 0) +{ +lean_object* x_13; +x_13 = lean_array_push(x_4, x_11); +x_5 = x_13; +goto block_9; +} +else +{ +lean_dec_ref(x_11); +x_5 = x_4; +goto block_9; +} +} +else +{ +return x_4; +} +block_9: +{ +size_t x_6; size_t x_7; +x_6 = 1; +x_7 = lean_usize_add(x_2, x_6); +x_2 = x_7; +x_4 = x_5; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__25___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_mkEq(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__25(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +uint8_t x_11; +x_11 = lean_usize_dec_lt(x_2, x_1); +if (x_11 == 0) +{ +lean_object* x_12; +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_3); +lean_ctor_set(x_12, 1, x_10); +return x_12; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_13 = lean_array_uget(x_3, x_2); +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_13, 1); +lean_inc(x_15); +lean_dec(x_13); +x_16 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__25___lam__0___boxed), 10, 2); +lean_closure_set(x_16, 0, x_15); +lean_closure_set(x_16, 1, x_14); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_17 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; size_t x_22; size_t x_23; lean_object* x_24; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); +lean_inc(x_19); +lean_dec_ref(x_17); +x_20 = lean_unsigned_to_nat(0u); +x_21 = lean_array_uset(x_3, x_2, x_20); +x_22 = 1; +x_23 = lean_usize_add(x_2, x_22); +x_24 = lean_array_uset(x_21, x_2, x_18); +x_2 = x_23; +x_3 = x_24; +x_10 = x_19; +goto _start; +} +else +{ +uint8_t x_26; +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_26 = !lean_is_exclusive(x_17); +if (x_26 == 0) +{ +return x_17; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_17, 0); +x_28 = lean_ctor_get(x_17, 1); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_17); +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; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__26(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +uint8_t x_9; +x_9 = lean_usize_dec_lt(x_2, x_1); +if (x_9 == 0) +{ +lean_object* x_10; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_3); +lean_ctor_set(x_10, 1, x_8); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_array_uget(x_3, x_2); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +x_12 = lean_infer_type(x_11, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; size_t x_17; size_t 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_ref(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_array_uset(x_3, x_2, x_15); +x_17 = 1; +x_18 = lean_usize_add(x_2, x_17); +x_19 = lean_array_uset(x_16, x_2, x_13); +x_2 = x_18; +x_3 = x_19; +x_8 = x_14; +goto _start; +} +else +{ +uint8_t x_21; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_21 = !lean_is_exclusive(x_12); +if (x_21 == 0) +{ +return x_12; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_12, 0); +x_23 = lean_ctor_get(x_12, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_12); +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_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___lam__0(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_10; +x_10 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_1, x_7, x_8, x_9); +return x_10; +} +} +static lean_object* _init_l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("s", 1, 1); +return x_1; +} +} +static lean_object* _init_l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___closed__0; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = lean_nat_dec_eq(x_2, x_12); +if (x_13 == 1) +{ +lean_object* x_14; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +lean_dec(x_3); +lean_dec(x_2); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_4); +lean_ctor_set(x_14, 1, x_11); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___closed__1; +x_16 = lean_alloc_closure((void*)(l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___lam__0___boxed), 9, 1); +lean_closure_set(x_16, 0, x_15); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_17 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); +lean_inc(x_19); +lean_dec_ref(x_17); +x_20 = lean_unsigned_to_nat(1u); +x_21 = lean_nat_sub(x_2, x_20); +lean_dec(x_2); +x_22 = lean_array_fget(x_1, x_3); +x_23 = lean_nat_add(x_3, x_20); +lean_dec(x_3); +lean_inc(x_23); +x_24 = lean_name_append_index_after(x_18, x_23); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_22); +x_26 = lean_array_push(x_4, x_25); +x_2 = x_21; +x_3 = x_23; +x_4 = x_26; +x_11 = x_19; +goto _start; +} +else +{ +uint8_t x_28; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_28 = !lean_is_exclusive(x_17); +if (x_28 == 0) +{ +return x_17; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_17, 0); +x_30 = lean_ctor_get(x_17, 1); +lean_inc(x_30); +lean_inc(x_29); +lean_dec(x_17); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_29); +lean_ctor_set(x_31, 1, x_30); +return x_31; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg(x_1, x_2, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__28___lam__0(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_10; +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_1); +lean_ctor_set(x_10, 1, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__28(size_t x_1, size_t x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = lean_usize_dec_lt(x_2, x_1); +if (x_4 == 0) +{ +return x_3; +} +else +{ +lean_object* x_5; uint8_t x_6; +x_5 = lean_array_uget(x_3, x_2); +x_6 = !lean_is_exclusive(x_5); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; size_t x_11; size_t x_12; lean_object* x_13; +x_7 = lean_ctor_get(x_5, 1); +x_8 = lean_unsigned_to_nat(0u); +x_9 = lean_array_uset(x_3, x_2, x_8); +x_10 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__28___lam__0___boxed), 9, 1); +lean_closure_set(x_10, 0, x_7); +lean_ctor_set(x_5, 1, x_10); +x_11 = 1; +x_12 = lean_usize_add(x_2, x_11); +x_13 = lean_array_uset(x_9, x_2, x_5); +x_2 = x_12; +x_3 = x_13; +goto _start; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; size_t x_21; size_t x_22; lean_object* x_23; +x_15 = lean_ctor_get(x_5, 0); +x_16 = lean_ctor_get(x_5, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_5); +x_17 = lean_unsigned_to_nat(0u); +x_18 = lean_array_uset(x_3, x_2, x_17); +x_19 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__28___lam__0___boxed), 9, 1); +lean_closure_set(x_19, 0, x_16); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_15); +lean_ctor_set(x_20, 1, x_19); +x_21 = 1; +x_22 = lean_usize_add(x_2, x_21); +x_23 = lean_array_uset(x_18, x_2, x_20); +x_2 = x_22; +x_3 = x_23; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__29(size_t x_1, size_t x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = lean_usize_dec_lt(x_2, x_1); +if (x_4 == 0) +{ +return x_3; +} +else +{ +lean_object* x_5; uint8_t x_6; +x_5 = lean_array_uget(x_3, x_2); +x_6 = !lean_is_exclusive(x_5); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; lean_object* x_12; size_t x_13; size_t x_14; lean_object* x_15; +x_7 = lean_ctor_get(x_5, 0); +x_8 = lean_unsigned_to_nat(0u); +x_9 = lean_array_uset(x_3, x_2, x_8); +x_10 = 0; +x_11 = lean_box(x_10); +lean_ctor_set(x_5, 0, x_11); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_7); +lean_ctor_set(x_12, 1, x_5); +x_13 = 1; +x_14 = lean_usize_add(x_2, x_13); +x_15 = lean_array_uset(x_9, x_2, x_12); +x_2 = x_14; +x_3 = x_15; +goto _start; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; size_t x_25; size_t x_26; lean_object* x_27; +x_17 = lean_ctor_get(x_5, 0); +x_18 = lean_ctor_get(x_5, 1); +lean_inc(x_18); +lean_inc(x_17); +lean_dec(x_5); +x_19 = lean_unsigned_to_nat(0u); +x_20 = lean_array_uset(x_3, x_2, x_19); +x_21 = 0; +x_22 = lean_box(x_21); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_18); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_17); +lean_ctor_set(x_24, 1, x_23); +x_25 = 1; +x_26 = lean_usize_add(x_2, x_25); +x_27 = lean_array_uset(x_20, x_2, x_24); +x_2 = x_26; +x_3 = x_27; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg___lam__0(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_10; +x_10 = lean_apply_8(x_1, x_4, x_2, x_3, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg___lam__0), 9, 3); +lean_closure_set(x_13, 0, x_4); +lean_closure_set(x_13, 1, x_6); +lean_closure_set(x_13, 2, x_7); +x_14 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp(lean_box(0), x_1, x_2, x_3, x_13, x_5, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_14) == 0) +{ +return x_14; +} +else +{ +uint8_t x_15; +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +return x_14; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_14, 0); +x_17 = lean_ctor_get(x_14, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_14); +x_18 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_18, 0, x_16); +lean_ctor_set(x_18, 1, x_17); +return x_18; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30(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, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___lam__0(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_10; lean_object* x_11; lean_object* x_12; +x_10 = l_Lean_instInhabitedExpr; +x_11 = l_instInhabitedOfMonad___redArg(x_1, x_10); +x_12 = lean_apply_7(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_array_push(x_1, x_4); +x_13 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg(x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +static lean_object* _init_l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_instMonadEIO(lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__0; +x_2 = l_ReaderT_instMonad___redArg(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Core_instMonadCoreM___lam__0___boxed), 5, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Core_instMonadCoreM___lam__1), 7, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_instMonadMetaM___lam__0___boxed), 7, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_instMonadMetaM___lam__1), 9, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; uint8_t x_12; +x_11 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__1; +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_13 = lean_ctor_get(x_11, 0); +x_14 = lean_ctor_get(x_11, 1); +lean_dec(x_14); +x_15 = !lean_is_exclusive(x_13); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; 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; +x_16 = lean_ctor_get(x_13, 0); +x_17 = lean_ctor_get(x_13, 2); +x_18 = lean_ctor_get(x_13, 3); +x_19 = lean_ctor_get(x_13, 4); +x_20 = lean_ctor_get(x_13, 1); +lean_dec(x_20); +x_21 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__2; +x_22 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__3; +lean_inc_ref(x_16); +x_23 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_23, 0, x_16); +x_24 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_24, 0, x_16); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +x_26 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_26, 0, x_19); +x_27 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_27, 0, x_18); +x_28 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_28, 0, x_17); +lean_ctor_set(x_13, 4, x_26); +lean_ctor_set(x_13, 3, x_27); +lean_ctor_set(x_13, 2, x_28); +lean_ctor_set(x_13, 1, x_21); +lean_ctor_set(x_13, 0, x_25); +lean_ctor_set(x_11, 1, x_22); +x_29 = l_ReaderT_instMonad___redArg(x_11); +x_30 = !lean_is_exclusive(x_29); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; uint8_t x_33; +x_31 = lean_ctor_get(x_29, 0); +x_32 = lean_ctor_get(x_29, 1); +lean_dec(x_32); +x_33 = !lean_is_exclusive(x_31); +if (x_33 == 0) +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; uint8_t x_51; +x_34 = lean_ctor_get(x_31, 0); +x_35 = lean_ctor_get(x_31, 2); +x_36 = lean_ctor_get(x_31, 3); +x_37 = lean_ctor_get(x_31, 4); +x_38 = lean_ctor_get(x_31, 1); +lean_dec(x_38); +x_39 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__4; +x_40 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__5; +lean_inc_ref(x_34); +x_41 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_41, 0, x_34); +x_42 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_42, 0, x_34); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +x_44 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_44, 0, x_37); +x_45 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_45, 0, x_36); +x_46 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_46, 0, x_35); +lean_ctor_set(x_31, 4, x_44); +lean_ctor_set(x_31, 3, x_45); +lean_ctor_set(x_31, 2, x_46); +lean_ctor_set(x_31, 1, x_39); +lean_ctor_set(x_31, 0, x_43); +lean_ctor_set(x_29, 1, x_40); +x_47 = l_ReaderT_instMonad___redArg(x_29); +x_48 = l_ReaderT_instMonad___redArg(x_47); +x_49 = lean_array_get_size(x_3); +x_50 = lean_array_get_size(x_1); +x_51 = lean_nat_dec_lt(x_49, x_50); +lean_dec(x_50); +if (x_51 == 0) +{ +lean_object* x_52; +lean_dec(x_49); +lean_dec_ref(x_48); +lean_dec_ref(x_1); +x_52 = lean_apply_8(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_52; +} +else +{ +lean_object* x_53; 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; lean_object* x_64; lean_object* x_65; +x_53 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___lam__0___boxed), 9, 1); +lean_closure_set(x_53, 0, x_48); +x_54 = lean_box(0); +x_55 = 0; +x_56 = lean_alloc_closure((void*)(l_Pi_instInhabited___redArg___lam__0), 2, 1); +lean_closure_set(x_56, 0, x_53); +x_57 = lean_box(x_55); +x_58 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set(x_58, 1, x_56); +x_59 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_59, 0, x_54); +lean_ctor_set(x_59, 1, x_58); +x_60 = lean_array_get(x_59, x_1, x_49); +lean_dec(x_49); +x_61 = lean_ctor_get(x_60, 1); +lean_inc(x_61); +x_62 = lean_ctor_get(x_60, 0); +lean_inc(x_62); +lean_dec_ref(x_60); +x_63 = lean_ctor_get(x_61, 0); +lean_inc(x_63); +x_64 = lean_ctor_get(x_61, 1); +lean_inc(x_64); +lean_dec(x_61); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc_ref(x_3); +x_65 = lean_apply_8(x_64, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_65) == 0) +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; uint8_t x_69; uint8_t x_70; lean_object* x_71; +x_66 = lean_ctor_get(x_65, 0); +lean_inc(x_66); +x_67 = lean_ctor_get(x_65, 1); +lean_inc(x_67); +lean_dec_ref(x_65); +x_68 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___lam__1), 11, 3); +lean_closure_set(x_68, 0, x_3); +lean_closure_set(x_68, 1, x_1); +lean_closure_set(x_68, 2, x_2); +x_69 = 0; +x_70 = lean_unbox(x_63); +lean_dec(x_63); +x_71 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg(x_62, x_70, x_66, x_68, x_69, x_4, x_5, x_6, x_7, x_8, x_9, x_67); +return x_71; +} +else +{ +uint8_t x_72; +lean_dec(x_63); +lean_dec(x_62); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_72 = !lean_is_exclusive(x_65); +if (x_72 == 0) +{ +return x_65; +} +else +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_65, 0); +x_74 = lean_ctor_get(x_65, 1); +lean_inc(x_74); +lean_inc(x_73); +lean_dec(x_65); +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 +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; uint8_t x_93; +x_76 = lean_ctor_get(x_31, 0); +x_77 = lean_ctor_get(x_31, 2); +x_78 = lean_ctor_get(x_31, 3); +x_79 = lean_ctor_get(x_31, 4); +lean_inc(x_79); +lean_inc(x_78); +lean_inc(x_77); +lean_inc(x_76); +lean_dec(x_31); +x_80 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__4; +x_81 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__5; +lean_inc_ref(x_76); +x_82 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_82, 0, x_76); +x_83 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_83, 0, x_76); +x_84 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_84, 0, x_82); +lean_ctor_set(x_84, 1, x_83); +x_85 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_85, 0, x_79); +x_86 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_86, 0, x_78); +x_87 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_87, 0, x_77); +x_88 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_88, 0, x_84); +lean_ctor_set(x_88, 1, x_80); +lean_ctor_set(x_88, 2, x_87); +lean_ctor_set(x_88, 3, x_86); +lean_ctor_set(x_88, 4, x_85); +lean_ctor_set(x_29, 1, x_81); +lean_ctor_set(x_29, 0, x_88); +x_89 = l_ReaderT_instMonad___redArg(x_29); +x_90 = l_ReaderT_instMonad___redArg(x_89); +x_91 = lean_array_get_size(x_3); +x_92 = lean_array_get_size(x_1); +x_93 = lean_nat_dec_lt(x_91, x_92); +lean_dec(x_92); +if (x_93 == 0) +{ +lean_object* x_94; +lean_dec(x_91); +lean_dec_ref(x_90); +lean_dec_ref(x_1); +x_94 = lean_apply_8(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_94; +} +else +{ +lean_object* x_95; lean_object* x_96; uint8_t x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; +x_95 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___lam__0___boxed), 9, 1); +lean_closure_set(x_95, 0, x_90); +x_96 = lean_box(0); +x_97 = 0; +x_98 = lean_alloc_closure((void*)(l_Pi_instInhabited___redArg___lam__0), 2, 1); +lean_closure_set(x_98, 0, x_95); +x_99 = lean_box(x_97); +x_100 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_100, 0, x_99); +lean_ctor_set(x_100, 1, x_98); +x_101 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_101, 0, x_96); +lean_ctor_set(x_101, 1, x_100); +x_102 = lean_array_get(x_101, x_1, x_91); +lean_dec(x_91); +x_103 = lean_ctor_get(x_102, 1); +lean_inc(x_103); +x_104 = lean_ctor_get(x_102, 0); +lean_inc(x_104); +lean_dec_ref(x_102); +x_105 = lean_ctor_get(x_103, 0); +lean_inc(x_105); +x_106 = lean_ctor_get(x_103, 1); +lean_inc(x_106); +lean_dec(x_103); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc_ref(x_3); +x_107 = lean_apply_8(x_106, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_107) == 0) +{ +lean_object* x_108; lean_object* x_109; lean_object* x_110; uint8_t x_111; uint8_t x_112; lean_object* x_113; +x_108 = lean_ctor_get(x_107, 0); +lean_inc(x_108); +x_109 = lean_ctor_get(x_107, 1); +lean_inc(x_109); +lean_dec_ref(x_107); +x_110 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___lam__1), 11, 3); +lean_closure_set(x_110, 0, x_3); +lean_closure_set(x_110, 1, x_1); +lean_closure_set(x_110, 2, x_2); +x_111 = 0; +x_112 = lean_unbox(x_105); +lean_dec(x_105); +x_113 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg(x_104, x_112, x_108, x_110, x_111, x_4, x_5, x_6, x_7, x_8, x_9, x_109); +return x_113; +} +else +{ +lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; +lean_dec(x_105); +lean_dec(x_104); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_114 = lean_ctor_get(x_107, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_107, 1); +lean_inc(x_115); +if (lean_is_exclusive(x_107)) { + lean_ctor_release(x_107, 0); + lean_ctor_release(x_107, 1); + x_116 = x_107; +} else { + lean_dec_ref(x_107); + x_116 = lean_box(0); +} +if (lean_is_scalar(x_116)) { + x_117 = lean_alloc_ctor(1, 2, 0); +} else { + x_117 = x_116; +} +lean_ctor_set(x_117, 0, x_114); +lean_ctor_set(x_117, 1, x_115); +return x_117; +} +} +} +} +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_137; uint8_t x_138; +x_118 = lean_ctor_get(x_29, 0); +lean_inc(x_118); +lean_dec(x_29); +x_119 = lean_ctor_get(x_118, 0); +lean_inc_ref(x_119); +x_120 = lean_ctor_get(x_118, 2); +lean_inc_ref(x_120); +x_121 = lean_ctor_get(x_118, 3); +lean_inc_ref(x_121); +x_122 = lean_ctor_get(x_118, 4); +lean_inc_ref(x_122); +if (lean_is_exclusive(x_118)) { + lean_ctor_release(x_118, 0); + lean_ctor_release(x_118, 1); + lean_ctor_release(x_118, 2); + lean_ctor_release(x_118, 3); + lean_ctor_release(x_118, 4); + x_123 = x_118; +} else { + lean_dec_ref(x_118); + x_123 = lean_box(0); +} +x_124 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__4; +x_125 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__5; +lean_inc_ref(x_119); +x_126 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_126, 0, x_119); +x_127 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_127, 0, x_119); +x_128 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_128, 0, x_126); +lean_ctor_set(x_128, 1, x_127); +x_129 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_129, 0, x_122); +x_130 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_130, 0, x_121); +x_131 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_131, 0, x_120); +if (lean_is_scalar(x_123)) { + x_132 = lean_alloc_ctor(0, 5, 0); +} else { + x_132 = x_123; +} +lean_ctor_set(x_132, 0, x_128); +lean_ctor_set(x_132, 1, x_124); +lean_ctor_set(x_132, 2, x_131); +lean_ctor_set(x_132, 3, x_130); +lean_ctor_set(x_132, 4, x_129); +x_133 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_133, 0, x_132); +lean_ctor_set(x_133, 1, x_125); +x_134 = l_ReaderT_instMonad___redArg(x_133); +x_135 = l_ReaderT_instMonad___redArg(x_134); +x_136 = lean_array_get_size(x_3); +x_137 = lean_array_get_size(x_1); +x_138 = lean_nat_dec_lt(x_136, x_137); +lean_dec(x_137); +if (x_138 == 0) +{ +lean_object* x_139; +lean_dec(x_136); +lean_dec_ref(x_135); +lean_dec_ref(x_1); +x_139 = lean_apply_8(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_139; +} +else +{ +lean_object* x_140; lean_object* x_141; uint8_t 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; +x_140 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___lam__0___boxed), 9, 1); +lean_closure_set(x_140, 0, x_135); +x_141 = lean_box(0); +x_142 = 0; +x_143 = lean_alloc_closure((void*)(l_Pi_instInhabited___redArg___lam__0), 2, 1); +lean_closure_set(x_143, 0, x_140); +x_144 = lean_box(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_144); +lean_ctor_set(x_145, 1, x_143); +x_146 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_146, 0, x_141); +lean_ctor_set(x_146, 1, x_145); +x_147 = lean_array_get(x_146, x_1, x_136); +lean_dec(x_136); +x_148 = lean_ctor_get(x_147, 1); +lean_inc(x_148); +x_149 = lean_ctor_get(x_147, 0); +lean_inc(x_149); +lean_dec_ref(x_147); +x_150 = lean_ctor_get(x_148, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_148, 1); +lean_inc(x_151); +lean_dec(x_148); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc_ref(x_3); +x_152 = lean_apply_8(x_151, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_152) == 0) +{ +lean_object* x_153; lean_object* x_154; lean_object* x_155; uint8_t x_156; uint8_t x_157; lean_object* x_158; +x_153 = lean_ctor_get(x_152, 0); +lean_inc(x_153); +x_154 = lean_ctor_get(x_152, 1); +lean_inc(x_154); +lean_dec_ref(x_152); +x_155 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___lam__1), 11, 3); +lean_closure_set(x_155, 0, x_3); +lean_closure_set(x_155, 1, x_1); +lean_closure_set(x_155, 2, x_2); +x_156 = 0; +x_157 = lean_unbox(x_150); +lean_dec(x_150); +x_158 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg(x_149, x_157, x_153, x_155, x_156, x_4, x_5, x_6, x_7, x_8, x_9, x_154); +return x_158; +} +else +{ +lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; +lean_dec(x_150); +lean_dec(x_149); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_159 = lean_ctor_get(x_152, 0); +lean_inc(x_159); +x_160 = lean_ctor_get(x_152, 1); +lean_inc(x_160); +if (lean_is_exclusive(x_152)) { + lean_ctor_release(x_152, 0); + lean_ctor_release(x_152, 1); + x_161 = x_152; +} else { + lean_dec_ref(x_152); + x_161 = lean_box(0); +} +if (lean_is_scalar(x_161)) { + x_162 = lean_alloc_ctor(1, 2, 0); +} else { + x_162 = x_161; +} +lean_ctor_set(x_162, 0, x_159); +lean_ctor_set(x_162, 1, x_160); +return x_162; +} +} +} +} +else +{ +lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_198; +x_163 = lean_ctor_get(x_13, 0); +x_164 = lean_ctor_get(x_13, 2); +x_165 = lean_ctor_get(x_13, 3); +x_166 = lean_ctor_get(x_13, 4); +lean_inc(x_166); +lean_inc(x_165); +lean_inc(x_164); +lean_inc(x_163); +lean_dec(x_13); +x_167 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__2; +x_168 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__3; +lean_inc_ref(x_163); +x_169 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_169, 0, x_163); +x_170 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_170, 0, x_163); +x_171 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_171, 0, x_169); +lean_ctor_set(x_171, 1, x_170); +x_172 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_172, 0, x_166); +x_173 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_173, 0, x_165); +x_174 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_174, 0, x_164); +x_175 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_175, 0, x_171); +lean_ctor_set(x_175, 1, x_167); +lean_ctor_set(x_175, 2, x_174); +lean_ctor_set(x_175, 3, x_173); +lean_ctor_set(x_175, 4, x_172); +lean_ctor_set(x_11, 1, x_168); +lean_ctor_set(x_11, 0, x_175); +x_176 = l_ReaderT_instMonad___redArg(x_11); +x_177 = lean_ctor_get(x_176, 0); +lean_inc_ref(x_177); +if (lean_is_exclusive(x_176)) { + lean_ctor_release(x_176, 0); + lean_ctor_release(x_176, 1); + x_178 = x_176; +} else { + lean_dec_ref(x_176); + x_178 = lean_box(0); +} +x_179 = lean_ctor_get(x_177, 0); +lean_inc_ref(x_179); +x_180 = lean_ctor_get(x_177, 2); +lean_inc_ref(x_180); +x_181 = lean_ctor_get(x_177, 3); +lean_inc_ref(x_181); +x_182 = lean_ctor_get(x_177, 4); +lean_inc_ref(x_182); +if (lean_is_exclusive(x_177)) { + lean_ctor_release(x_177, 0); + lean_ctor_release(x_177, 1); + lean_ctor_release(x_177, 2); + lean_ctor_release(x_177, 3); + lean_ctor_release(x_177, 4); + x_183 = x_177; +} else { + lean_dec_ref(x_177); + x_183 = lean_box(0); +} +x_184 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__4; +x_185 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__5; +lean_inc_ref(x_179); +x_186 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_186, 0, x_179); +x_187 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_187, 0, x_179); +x_188 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_188, 0, x_186); +lean_ctor_set(x_188, 1, x_187); +x_189 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_189, 0, x_182); +x_190 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_190, 0, x_181); +x_191 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_191, 0, x_180); +if (lean_is_scalar(x_183)) { + x_192 = lean_alloc_ctor(0, 5, 0); +} else { + x_192 = x_183; +} +lean_ctor_set(x_192, 0, x_188); +lean_ctor_set(x_192, 1, x_184); +lean_ctor_set(x_192, 2, x_191); +lean_ctor_set(x_192, 3, x_190); +lean_ctor_set(x_192, 4, x_189); +if (lean_is_scalar(x_178)) { + x_193 = lean_alloc_ctor(0, 2, 0); +} else { + x_193 = x_178; +} +lean_ctor_set(x_193, 0, x_192); +lean_ctor_set(x_193, 1, x_185); +x_194 = l_ReaderT_instMonad___redArg(x_193); +x_195 = l_ReaderT_instMonad___redArg(x_194); +x_196 = lean_array_get_size(x_3); +x_197 = lean_array_get_size(x_1); +x_198 = lean_nat_dec_lt(x_196, x_197); +lean_dec(x_197); +if (x_198 == 0) +{ +lean_object* x_199; +lean_dec(x_196); +lean_dec_ref(x_195); +lean_dec_ref(x_1); +x_199 = lean_apply_8(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_199; +} +else +{ +lean_object* x_200; lean_object* x_201; uint8_t x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; +x_200 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___lam__0___boxed), 9, 1); +lean_closure_set(x_200, 0, x_195); +x_201 = lean_box(0); +x_202 = 0; +x_203 = lean_alloc_closure((void*)(l_Pi_instInhabited___redArg___lam__0), 2, 1); +lean_closure_set(x_203, 0, x_200); +x_204 = lean_box(x_202); +x_205 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_205, 0, x_204); +lean_ctor_set(x_205, 1, x_203); +x_206 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_206, 0, x_201); +lean_ctor_set(x_206, 1, x_205); +x_207 = lean_array_get(x_206, x_1, x_196); +lean_dec(x_196); +x_208 = lean_ctor_get(x_207, 1); +lean_inc(x_208); +x_209 = lean_ctor_get(x_207, 0); +lean_inc(x_209); +lean_dec_ref(x_207); +x_210 = lean_ctor_get(x_208, 0); +lean_inc(x_210); +x_211 = lean_ctor_get(x_208, 1); +lean_inc(x_211); +lean_dec(x_208); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc_ref(x_3); +x_212 = lean_apply_8(x_211, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_212) == 0) +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; uint8_t x_217; lean_object* x_218; +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_ref(x_212); +x_215 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___lam__1), 11, 3); +lean_closure_set(x_215, 0, x_3); +lean_closure_set(x_215, 1, x_1); +lean_closure_set(x_215, 2, x_2); +x_216 = 0; +x_217 = lean_unbox(x_210); +lean_dec(x_210); +x_218 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg(x_209, x_217, x_213, x_215, x_216, x_4, x_5, x_6, x_7, x_8, x_9, x_214); +return x_218; +} +else +{ +lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; +lean_dec(x_210); +lean_dec(x_209); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_219 = lean_ctor_get(x_212, 0); +lean_inc(x_219); +x_220 = lean_ctor_get(x_212, 1); +lean_inc(x_220); +if (lean_is_exclusive(x_212)) { + lean_ctor_release(x_212, 0); + lean_ctor_release(x_212, 1); + x_221 = x_212; +} else { + lean_dec_ref(x_212); + x_221 = lean_box(0); +} +if (lean_is_scalar(x_221)) { + x_222 = lean_alloc_ctor(1, 2, 0); +} else { + x_222 = x_221; +} +lean_ctor_set(x_222, 0, x_219); +lean_ctor_set(x_222, 1, x_220); +return x_222; +} +} +} +} +else +{ +lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; uint8_t x_261; +x_223 = lean_ctor_get(x_11, 0); +lean_inc(x_223); +lean_dec(x_11); +x_224 = lean_ctor_get(x_223, 0); +lean_inc_ref(x_224); +x_225 = lean_ctor_get(x_223, 2); +lean_inc_ref(x_225); +x_226 = lean_ctor_get(x_223, 3); +lean_inc_ref(x_226); +x_227 = lean_ctor_get(x_223, 4); +lean_inc_ref(x_227); +if (lean_is_exclusive(x_223)) { + lean_ctor_release(x_223, 0); + lean_ctor_release(x_223, 1); + lean_ctor_release(x_223, 2); + lean_ctor_release(x_223, 3); + lean_ctor_release(x_223, 4); + x_228 = x_223; +} else { + lean_dec_ref(x_223); + x_228 = lean_box(0); +} +x_229 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__2; +x_230 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__3; +lean_inc_ref(x_224); +x_231 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_231, 0, x_224); +x_232 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_232, 0, x_224); +x_233 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_233, 0, x_231); +lean_ctor_set(x_233, 1, x_232); +x_234 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_234, 0, x_227); +x_235 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_235, 0, x_226); +x_236 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_236, 0, x_225); +if (lean_is_scalar(x_228)) { + x_237 = lean_alloc_ctor(0, 5, 0); +} else { + x_237 = x_228; +} +lean_ctor_set(x_237, 0, x_233); +lean_ctor_set(x_237, 1, x_229); +lean_ctor_set(x_237, 2, x_236); +lean_ctor_set(x_237, 3, x_235); +lean_ctor_set(x_237, 4, x_234); +x_238 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_238, 0, x_237); +lean_ctor_set(x_238, 1, x_230); +x_239 = l_ReaderT_instMonad___redArg(x_238); +x_240 = lean_ctor_get(x_239, 0); +lean_inc_ref(x_240); +if (lean_is_exclusive(x_239)) { + lean_ctor_release(x_239, 0); + lean_ctor_release(x_239, 1); + x_241 = x_239; +} else { + lean_dec_ref(x_239); + x_241 = lean_box(0); +} +x_242 = lean_ctor_get(x_240, 0); +lean_inc_ref(x_242); +x_243 = lean_ctor_get(x_240, 2); +lean_inc_ref(x_243); +x_244 = lean_ctor_get(x_240, 3); +lean_inc_ref(x_244); +x_245 = lean_ctor_get(x_240, 4); +lean_inc_ref(x_245); +if (lean_is_exclusive(x_240)) { + lean_ctor_release(x_240, 0); + lean_ctor_release(x_240, 1); + lean_ctor_release(x_240, 2); + lean_ctor_release(x_240, 3); + lean_ctor_release(x_240, 4); + x_246 = x_240; +} else { + lean_dec_ref(x_240); + x_246 = lean_box(0); +} +x_247 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__4; +x_248 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__5; +lean_inc_ref(x_242); +x_249 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_249, 0, x_242); +x_250 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_250, 0, x_242); +x_251 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_251, 0, x_249); +lean_ctor_set(x_251, 1, x_250); +x_252 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_252, 0, x_245); +x_253 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_253, 0, x_244); +x_254 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_254, 0, x_243); +if (lean_is_scalar(x_246)) { + x_255 = lean_alloc_ctor(0, 5, 0); +} else { + x_255 = x_246; +} +lean_ctor_set(x_255, 0, x_251); +lean_ctor_set(x_255, 1, x_247); +lean_ctor_set(x_255, 2, x_254); +lean_ctor_set(x_255, 3, x_253); +lean_ctor_set(x_255, 4, x_252); +if (lean_is_scalar(x_241)) { + x_256 = lean_alloc_ctor(0, 2, 0); +} else { + x_256 = x_241; +} +lean_ctor_set(x_256, 0, x_255); +lean_ctor_set(x_256, 1, x_248); +x_257 = l_ReaderT_instMonad___redArg(x_256); +x_258 = l_ReaderT_instMonad___redArg(x_257); +x_259 = lean_array_get_size(x_3); +x_260 = lean_array_get_size(x_1); +x_261 = lean_nat_dec_lt(x_259, x_260); +lean_dec(x_260); +if (x_261 == 0) +{ +lean_object* x_262; +lean_dec(x_259); +lean_dec_ref(x_258); +lean_dec_ref(x_1); +x_262 = lean_apply_8(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_262; +} +else +{ +lean_object* x_263; lean_object* x_264; uint8_t x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; +x_263 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___lam__0___boxed), 9, 1); +lean_closure_set(x_263, 0, x_258); +x_264 = lean_box(0); +x_265 = 0; +x_266 = lean_alloc_closure((void*)(l_Pi_instInhabited___redArg___lam__0), 2, 1); +lean_closure_set(x_266, 0, x_263); +x_267 = lean_box(x_265); +x_268 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_268, 0, x_267); +lean_ctor_set(x_268, 1, x_266); +x_269 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_269, 0, x_264); +lean_ctor_set(x_269, 1, x_268); +x_270 = lean_array_get(x_269, x_1, x_259); +lean_dec(x_259); +x_271 = lean_ctor_get(x_270, 1); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 0); +lean_inc(x_272); +lean_dec_ref(x_270); +x_273 = lean_ctor_get(x_271, 0); +lean_inc(x_273); +x_274 = lean_ctor_get(x_271, 1); +lean_inc(x_274); +lean_dec(x_271); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc_ref(x_3); +x_275 = lean_apply_8(x_274, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_275) == 0) +{ +lean_object* x_276; lean_object* x_277; lean_object* x_278; uint8_t x_279; uint8_t x_280; lean_object* x_281; +x_276 = lean_ctor_get(x_275, 0); +lean_inc(x_276); +x_277 = lean_ctor_get(x_275, 1); +lean_inc(x_277); +lean_dec_ref(x_275); +x_278 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___lam__1), 11, 3); +lean_closure_set(x_278, 0, x_3); +lean_closure_set(x_278, 1, x_1); +lean_closure_set(x_278, 2, x_2); +x_279 = 0; +x_280 = lean_unbox(x_273); +lean_dec(x_273); +x_281 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg(x_272, x_280, x_276, x_278, x_279, x_4, x_5, x_6, x_7, x_8, x_9, x_277); +return x_281; +} +else +{ +lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; +lean_dec(x_273); +lean_dec(x_272); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_282 = lean_ctor_get(x_275, 0); +lean_inc(x_282); +x_283 = lean_ctor_get(x_275, 1); +lean_inc(x_283); +if (lean_is_exclusive(x_275)) { + lean_ctor_release(x_275, 0); + lean_ctor_release(x_275, 1); + x_284 = x_275; +} else { + lean_dec_ref(x_275); + x_284 = lean_box(0); +} +if (lean_is_scalar(x_284)) { + x_285 = lean_alloc_ctor(1, 2, 0); +} else { + x_285 = x_284; +} +lean_ctor_set(x_285, 0, x_282); +lean_ctor_set(x_285, 1, x_283); +return x_285; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg(x_2, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_13; +} +} +static lean_object* _init_l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30___redArg___closed__0() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; +x_11 = l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30___redArg___closed__0; +x_12 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg(x_2, x_3, x_11, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +size_t x_11; size_t x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_array_size(x_2); +x_12 = 0; +x_13 = l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__29(x_11, x_12, x_2); +x_14 = l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30___redArg(x_1, x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +size_t x_11; size_t x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_array_size(x_2); +x_12 = 0; +x_13 = l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__28(x_11, x_12, x_2); +x_14 = l_Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29___redArg(x_1, x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__35(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { +_start: +{ +uint8_t x_6; +x_6 = lean_usize_dec_eq(x_3, x_4); +if (x_6 == 0) +{ +size_t x_7; size_t x_8; lean_object* x_9; lean_object* x_10; +x_7 = 1; +x_8 = lean_usize_sub(x_3, x_7); +x_9 = lean_array_uget(x_2, x_8); +lean_inc(x_1); +x_10 = l_Lean_Elab_Tactic_Do_ProofMode_TypeList_mkCons(x_1, x_9, x_5); +x_3 = x_8; +x_5 = x_10; +goto _start; +} +else +{ +lean_dec(x_1); +return x_5; +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__36___redArg(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; uint8_t x_9; x_7 = lean_ctor_get(x_4, 5); -x_8 = l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0(x_1, x_2, x_3, x_4, x_5, x_6); +x_8 = l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0_spec__0(x_1, x_2, x_3, x_4, x_5, x_6); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -3912,3965 +5450,3574 @@ return x_15; } } } -LEAN_EXPORT lean_object* l_Lean_throwError___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__36(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_12; -x_12 = l_Lean_throwError___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg(x_2, x_7, x_8, x_9, x_10, x_11); -return x_12; -} -} -static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_unknownIdentifierMessageTag; -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_12 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0___closed__0; -x_13 = lean_alloc_ctor(8, 2, 0); -lean_ctor_set(x_13, 0, x_12); -lean_ctor_set(x_13, 1, x_1); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_11); -return x_14; -} -} -static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); -return x_1; -} -} -static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0; -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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0; -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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0; -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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0; -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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0; -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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0; -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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__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; lean_object* x_7; lean_object* x_8; -x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__6; -x_2 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__5; -x_3 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__4; -x_4 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__3; -x_5 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__2; -x_6 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__1; -x_7 = lean_unsigned_to_nat(0u); -x_8 = lean_alloc_ctor(0, 9, 0); -lean_ctor_set(x_8, 0, x_7); -lean_ctor_set(x_8, 1, x_7); -lean_ctor_set(x_8, 2, x_7); -lean_ctor_set(x_8, 3, x_6); -lean_ctor_set(x_8, 4, x_5); -lean_ctor_set(x_8, 5, x_4); -lean_ctor_set(x_8, 6, x_3); -lean_ctor_set(x_8, 7, x_2); -lean_ctor_set(x_8, 8, x_1); +lean_object* x_8; +x_8 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__36___redArg(x_2, x_3, x_4, x_5, x_6, x_7); return x_8; } } -static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__8() { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__0(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; lean_object* x_2; -x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; +lean_object* x_10; +x_10 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_1, x_7, x_8, x_9); +return x_10; } } -static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__9() { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__1(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(32u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; +lean_object* x_14; +x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x_11, x_12, x_13); +return x_14; } } -static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__10() { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__9; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; +lean_object* x_14; +x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x_11, x_12, x_13); +return x_14; } } -static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__11() { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -size_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = 5; -x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__9; -x_4 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__10; -x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); -lean_ctor_set(x_5, 0, x_4); -lean_ctor_set(x_5, 1, x_3); -lean_ctor_set(x_5, 2, x_2); -lean_ctor_set(x_5, 3, x_2); -lean_ctor_set_usize(x_5, 4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__12() { -_start: +lean_object* x_16; size_t x_17; size_t x_18; lean_object* x_19; +x_16 = l_Array_zip___redArg(x_1, x_8); +x_17 = lean_array_size(x_16); +x_18 = 0; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc_ref(x_9); +x_19 = l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__25(x_17, x_18, x_16, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_19) == 0) { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = lean_box(1); -x_2 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__11; -x_3 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__8; -x_4 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_4, 0, x_3); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_1); -return x_4; -} -} -static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__13() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("A private declaration `", 23, 23); -return x_1; -} -} -static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__13; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__15() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("` exists but is not accessible in the current context.", 54, 54); -return x_1; -} -} -static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__16() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__15; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; uint8_t x_13; -x_12 = lean_st_ref_get(x_10, x_11); -x_13 = !lean_is_exclusive(x_12); -if (x_13 == 0) -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_20; -x_14 = lean_ctor_get(x_12, 0); -x_15 = lean_ctor_get(x_12, 1); -x_16 = lean_ctor_get(x_14, 0); -lean_inc_ref(x_16); -lean_dec(x_14); -x_20 = l_Lean_Name_isAnonymous(x_2); -if (x_20 == 0) -{ -uint8_t x_21; -x_21 = lean_ctor_get_uint8(x_16, sizeof(void*)*8); -if (x_21 == 0) -{ -lean_dec_ref(x_16); -lean_free_object(x_12); -lean_dec(x_2); -goto block_19; -} -else -{ -lean_object* x_22; uint8_t x_23; -x_22 = l_Lean_Environment_setExporting(x_16, x_20); -lean_inc(x_2); -lean_inc_ref(x_22); -x_23 = l_Lean_Environment_contains(x_22, x_2, x_21); -if (x_23 == 0) +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); +lean_inc(x_21); +lean_dec_ref(x_19); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc_ref(x_9); +x_22 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_2, x_9, x_10, x_11, x_12, x_13, x_14, x_21); +if (lean_obj_tag(x_22) == 0) { +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t 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; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); lean_dec_ref(x_22); -lean_free_object(x_12); -lean_dec(x_2); -goto block_19; +x_25 = lean_array_to_list(x_20); +x_26 = l_Lean_mkAndN(x_25); +x_27 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkPure(x_3, x_4, x_26); +lean_dec_ref(x_26); +x_28 = 1; +x_29 = 1; +x_30 = lean_box(x_5); +x_31 = lean_box(x_28); +x_32 = lean_box(x_29); +lean_inc_ref(x_8); +x_33 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__1___boxed), 13, 5); +lean_closure_set(x_33, 0, x_8); +lean_closure_set(x_33, 1, x_27); +lean_closure_set(x_33, 2, x_30); +lean_closure_set(x_33, 3, x_31); +lean_closure_set(x_33, 4, x_32); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc_ref(x_9); +x_34 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_33, x_9, x_10, x_11, x_12, x_13, x_14, x_24); +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; lean_object* x_40; lean_object* x_41; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec_ref(x_34); +x_37 = lean_box(x_5); +x_38 = lean_box(x_28); +x_39 = lean_box(x_29); +x_40 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__2___boxed), 13, 5); +lean_closure_set(x_40, 0, x_8); +lean_closure_set(x_40, 1, x_6); +lean_closure_set(x_40, 2, x_37); +lean_closure_set(x_40, 3, x_38); +lean_closure_set(x_40, 4, x_39); +x_41 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_40, x_9, x_10, x_11, x_12, x_13, x_14, x_36); +if (lean_obj_tag(x_41) == 0) +{ +uint8_t x_42; +x_42 = !lean_is_exclusive(x_41); +if (x_42 == 0) +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_43 = lean_ctor_get(x_41, 0); +x_44 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_44, 0, x_7); +lean_ctor_set(x_44, 1, x_23); +lean_ctor_set(x_44, 2, x_35); +x_45 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_44); +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_43); +lean_ctor_set(x_46, 1, x_45); +lean_ctor_set(x_41, 0, x_46); +return x_41; } else { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_24 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__7; -x_25 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__12; -x_26 = lean_box(0); -x_27 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_27, 0, x_22); -lean_ctor_set(x_27, 1, x_24); -lean_ctor_set(x_27, 2, x_25); -lean_ctor_set(x_27, 3, x_26); -x_28 = l_Lean_MessageData_ofConstName(x_2, x_20); -lean_ctor_set_tag(x_12, 3); -lean_ctor_set(x_12, 1, x_28); -lean_ctor_set(x_12, 0, x_27); -x_29 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__14; -x_30 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_30, 0, x_29); -lean_ctor_set(x_30, 1, x_12); -x_31 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__16; -x_32 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_32, 0, x_30); -lean_ctor_set(x_32, 1, x_31); -x_33 = l_Lean_MessageData_note(x_32); -x_34 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_34, 0, x_1); -lean_ctor_set(x_34, 1, x_33); -x_35 = lean_box(0); -x_36 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0(x_34, x_35, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_15); -return x_36; -} +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_47 = lean_ctor_get(x_41, 0); +x_48 = lean_ctor_get(x_41, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_41); +x_49 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_49, 0, x_7); +lean_ctor_set(x_49, 1, x_23); +lean_ctor_set(x_49, 2, x_35); +x_50 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_49); +x_51 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_51, 0, x_47); +lean_ctor_set(x_51, 1, x_50); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_48); +return x_52; } } else { -lean_dec_ref(x_16); -lean_free_object(x_12); -lean_dec(x_2); -goto block_19; -} -block_19: +uint8_t x_53; +lean_dec(x_35); +lean_dec(x_23); +lean_dec(x_7); +x_53 = !lean_is_exclusive(x_41); +if (x_53 == 0) { -lean_object* x_17; lean_object* x_18; -x_17 = lean_box(0); -x_18 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_15); -return x_18; -} +return x_41; } else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_43; -x_37 = lean_ctor_get(x_12, 0); -x_38 = lean_ctor_get(x_12, 1); -lean_inc(x_38); -lean_inc(x_37); -lean_dec(x_12); -x_39 = lean_ctor_get(x_37, 0); -lean_inc_ref(x_39); -lean_dec(x_37); -x_43 = l_Lean_Name_isAnonymous(x_2); -if (x_43 == 0) -{ -uint8_t x_44; -x_44 = lean_ctor_get_uint8(x_39, sizeof(void*)*8); -if (x_44 == 0) -{ -lean_dec_ref(x_39); -lean_dec(x_2); -goto block_42; -} -else -{ -lean_object* x_45; uint8_t x_46; -x_45 = l_Lean_Environment_setExporting(x_39, x_43); -lean_inc(x_2); -lean_inc_ref(x_45); -x_46 = l_Lean_Environment_contains(x_45, x_2, x_44); -if (x_46 == 0) -{ -lean_dec_ref(x_45); -lean_dec(x_2); -goto block_42; -} -else -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_47 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__7; -x_48 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__12; -x_49 = lean_box(0); -x_50 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_50, 0, x_45); -lean_ctor_set(x_50, 1, x_47); -lean_ctor_set(x_50, 2, x_48); -lean_ctor_set(x_50, 3, x_49); -x_51 = l_Lean_MessageData_ofConstName(x_2, x_43); -x_52 = lean_alloc_ctor(3, 2, 0); -lean_ctor_set(x_52, 0, x_50); -lean_ctor_set(x_52, 1, x_51); -x_53 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__14; -x_54 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_54, 0, x_53); -lean_ctor_set(x_54, 1, x_52); -x_55 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__16; -x_56 = lean_alloc_ctor(7, 2, 0); +lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_54 = lean_ctor_get(x_41, 0); +x_55 = lean_ctor_get(x_41, 1); +lean_inc(x_55); +lean_inc(x_54); +lean_dec(x_41); +x_56 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_56, 0, x_54); lean_ctor_set(x_56, 1, x_55); -x_57 = l_Lean_MessageData_note(x_56); -x_58 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_58, 0, x_1); -lean_ctor_set(x_58, 1, x_57); -x_59 = lean_box(0); -x_60 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0(x_58, x_59, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_38); +return x_56; +} +} +} +else +{ +uint8_t x_57; +lean_dec(x_23); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +x_57 = !lean_is_exclusive(x_34); +if (x_57 == 0) +{ +return x_34; +} +else +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_58 = lean_ctor_get(x_34, 0); +x_59 = lean_ctor_get(x_34, 1); +lean_inc(x_59); +lean_inc(x_58); +lean_dec(x_34); +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 { -lean_dec_ref(x_39); -lean_dec(x_2); -goto block_42; -} -block_42: -{ -lean_object* x_40; lean_object* x_41; -x_40 = lean_box(0); -x_41 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0(x_1, x_40, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_38); -return x_41; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3___redArg(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; -x_12 = !lean_is_exclusive(x_9); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_13 = lean_ctor_get(x_9, 5); -x_14 = l_Lean_replaceRef(x_1, x_13); -lean_dec(x_13); -lean_ctor_set(x_9, 5, x_14); -x_15 = l_Lean_throwError___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg(x_2, x_7, x_8, x_9, x_10, x_11); +uint8_t x_61; +lean_dec(x_20); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); lean_dec_ref(x_9); -return x_15; +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec(x_3); +x_61 = !lean_is_exclusive(x_22); +if (x_61 == 0) +{ +return x_22; } else { -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t 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; -x_16 = lean_ctor_get(x_9, 0); -x_17 = lean_ctor_get(x_9, 1); -x_18 = lean_ctor_get(x_9, 2); -x_19 = lean_ctor_get(x_9, 3); -x_20 = lean_ctor_get(x_9, 4); -x_21 = lean_ctor_get(x_9, 5); -x_22 = lean_ctor_get(x_9, 6); -x_23 = lean_ctor_get(x_9, 7); -x_24 = lean_ctor_get(x_9, 8); -x_25 = lean_ctor_get(x_9, 9); -x_26 = lean_ctor_get(x_9, 10); -x_27 = lean_ctor_get_uint8(x_9, sizeof(void*)*13); -x_28 = lean_ctor_get(x_9, 11); -x_29 = lean_ctor_get_uint8(x_9, sizeof(void*)*13 + 1); -x_30 = lean_ctor_get(x_9, 12); -lean_inc(x_30); -lean_inc(x_28); -lean_inc(x_26); -lean_inc(x_25); -lean_inc(x_24); -lean_inc(x_23); -lean_inc(x_22); -lean_inc(x_21); -lean_inc(x_20); -lean_inc(x_19); -lean_inc(x_18); -lean_inc(x_17); -lean_inc(x_16); -lean_dec(x_9); -x_31 = l_Lean_replaceRef(x_1, x_21); -lean_dec(x_21); -x_32 = lean_alloc_ctor(0, 13, 2); -lean_ctor_set(x_32, 0, x_16); -lean_ctor_set(x_32, 1, x_17); -lean_ctor_set(x_32, 2, x_18); -lean_ctor_set(x_32, 3, x_19); -lean_ctor_set(x_32, 4, x_20); -lean_ctor_set(x_32, 5, x_31); -lean_ctor_set(x_32, 6, x_22); -lean_ctor_set(x_32, 7, x_23); -lean_ctor_set(x_32, 8, x_24); -lean_ctor_set(x_32, 9, x_25); -lean_ctor_set(x_32, 10, x_26); -lean_ctor_set(x_32, 11, x_28); -lean_ctor_set(x_32, 12, x_30); -lean_ctor_set_uint8(x_32, sizeof(void*)*13, x_27); -lean_ctor_set_uint8(x_32, sizeof(void*)*13 + 1, x_29); -x_33 = l_Lean_throwError___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg(x_2, x_7, x_8, x_32, x_10, x_11); -lean_dec_ref(x_32); -return x_33; +lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_62 = lean_ctor_get(x_22, 0); +x_63 = lean_ctor_get(x_22, 1); +lean_inc(x_63); +lean_inc(x_62); +lean_dec(x_22); +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; } } } -LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: +else { -lean_object* x_13; -x_13 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -return x_13; -} -} -LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_13 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -x_15 = lean_ctor_get(x_13, 1); -lean_inc(x_15); +uint8_t x_65; +lean_dec(x_14); lean_dec_ref(x_13); -x_16 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3___redArg(x_1, x_14, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_15); -return x_16; -} -} -LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_65 = !lean_is_exclusive(x_19); +if (x_65 == 0) { -lean_object* x_14; -x_14 = l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_14; +return x_19; } -} -static lean_object* _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__0() { -_start: +else { -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Unknown constant `", 18, 18); -return x_1; +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_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; } } -static lean_object* _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__0; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; } } -static lean_object* _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("`", 1, 1); -return x_1; -} -} -static lean_object* _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__2; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_12 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__1; -x_13 = 0; -lean_inc(x_2); -x_14 = l_Lean_MessageData_ofConstName(x_2, x_13); -x_15 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_15, 0, x_12); -lean_ctor_set(x_15, 1, x_14); -x_16 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__3; -x_17 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_17, 0, x_15); -lean_ctor_set(x_17, 1, x_16); -x_18 = l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2___redArg(x_1, x_17, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_18; -} -} -LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; -x_13 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -return x_13; -} -} -LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; lean_object* x_12; -x_11 = lean_ctor_get(x_8, 5); -lean_inc(x_11); -x_12 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg(x_11, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_11); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__4(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__26(x_1, x_2, x_3, x_7, x_8, x_9, x_10, x_11); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__5(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_11; uint8_t x_12; -x_11 = lean_st_ref_get(x_9, x_10); -x_12 = !lean_is_exclusive(x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; -x_13 = lean_ctor_get(x_11, 0); -x_14 = lean_ctor_get(x_11, 1); -x_15 = lean_ctor_get(x_13, 0); -lean_inc_ref(x_15); -lean_dec(x_13); -x_16 = 0; -lean_inc(x_1); -x_17 = l_Lean_Environment_find_x3f(x_15, x_1, x_16); -if (lean_obj_tag(x_17) == 0) -{ -lean_object* x_18; -lean_free_object(x_11); -x_18 = l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_14); -return x_18; +lean_object* x_12; +x_12 = l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10(x_1, x_2, x_3, x_7, x_8, x_9, x_10, x_11); +return x_12; } -else +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__6(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_19; -lean_dec_ref(x_8); -lean_dec(x_1); -x_19 = lean_ctor_get(x_17, 0); +lean_object* x_10; +x_10 = l_Lean_Meta_mkAndIntroN(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__7(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_10; +x_10 = l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(x_1, x_6, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__8(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_10; +x_10 = lean_infer_type(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Std", 3, 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Do", 2, 2); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("SPred", 5, 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Tactic", 6, 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Revert", 6, 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("and_pure_intro_r", 16, 16); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__6() { +_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; lean_object* x_7; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__5; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__4; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__2; +x_5 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_6 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; +x_7 = l_Lean_Name_mkStr6(x_6, x_5, x_4, x_3, x_2, x_1); +return x_7; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___boxed__const__1() { +_start: +{ +size_t x_1; lean_object* x_2; +x_1 = 0; +x_2 = lean_box_usize(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20) { +_start: +{ +size_t x_21; size_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_21 = lean_array_size(x_1); +x_22 = 0; +x_23 = lean_box_usize(x_21); +x_24 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___boxed__const__1; +lean_inc_ref(x_1); +x_25 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__4___boxed), 11, 3); +lean_closure_set(x_25, 0, x_23); +lean_closure_set(x_25, 1, x_24); +lean_closure_set(x_25, 2, x_1); lean_inc(x_19); -lean_dec_ref(x_17); -lean_ctor_set(x_11, 0, x_19); -return x_11; +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc_ref(x_14); +x_26 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_25, x_14, x_15, x_16, x_17, x_18, x_19, x_20); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec_ref(x_26); +x_29 = lean_array_get_size(x_27); +x_30 = lean_mk_empty_array_with_capacity(x_29); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc_ref(x_14); +lean_inc(x_2); +lean_inc(x_29); +x_31 = l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg(x_27, x_29, x_2, x_30, x_14, x_15, x_16, x_17, x_18, x_19, x_28); +if (lean_obj_tag(x_31) == 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_inc(x_33); +lean_dec_ref(x_31); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc(x_15); +lean_inc_ref(x_14); +x_34 = l_Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28___redArg(x_3, x_32, x_4, x_14, x_15, x_16, x_17, x_18, x_19, 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; lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec_ref(x_34); +x_37 = lean_ctor_get(x_35, 0); +lean_inc(x_37); +x_38 = lean_ctor_get(x_35, 1); +lean_inc(x_38); +lean_dec(x_35); +x_39 = lean_box_usize(x_21); +x_40 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___boxed__const__1; +lean_inc_ref(x_1); +x_41 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__5___boxed), 11, 3); +lean_closure_set(x_41, 0, x_39); +lean_closure_set(x_41, 1, x_40); +lean_closure_set(x_41, 2, x_1); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc_ref(x_14); +x_42 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_41, x_14, x_15, x_16, x_17, x_18, x_19, x_36); +if (lean_obj_tag(x_42) == 0) +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_ctor_get(x_42, 1); +lean_inc(x_44); +lean_dec_ref(x_42); +x_45 = lean_array_to_list(x_43); +x_46 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__6___boxed), 9, 1); +lean_closure_set(x_46, 0, x_45); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc_ref(x_14); +x_47 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_46, x_14, x_15, x_16, x_17, x_18, x_19, x_44); +if (lean_obj_tag(x_47) == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_105; +x_48 = lean_ctor_get(x_47, 0); +lean_inc(x_48); +x_49 = lean_ctor_get(x_47, 1); +lean_inc(x_49); +lean_dec_ref(x_47); +x_50 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__7___boxed), 9, 1); +lean_closure_set(x_50, 0, x_37); +lean_inc(x_48); +x_51 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__8___boxed), 9, 1); +lean_closure_set(x_51, 0, x_48); +x_105 = lean_nat_dec_lt(x_2, x_29); +lean_dec(x_2); +if (x_105 == 0) +{ +lean_dec(x_29); +lean_dec(x_27); +lean_inc_ref(x_10); +x_52 = x_10; +goto block_104; +} +else +{ +size_t x_106; lean_object* x_107; +x_106 = lean_usize_of_nat(x_29); +lean_dec(x_29); +lean_inc_ref(x_10); +lean_inc(x_5); +x_107 = l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__35(x_5, x_27, x_106, x_22, x_10); +lean_dec(x_27); +x_52 = x_107; +goto block_104; +} +block_104: +{ +lean_object* x_53; +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc_ref(x_14); +x_53 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_50, x_14, x_15, x_16, x_17, x_18, x_19, x_49); +if (lean_obj_tag(x_53) == 0) +{ +lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; +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_ref(x_53); +lean_inc_ref(x_52); +x_56 = l_Lean_Elab_Tactic_Do_ProofMode_pushForallContextIntoHyps(x_52, x_54); +lean_inc_ref(x_52); +lean_inc(x_5); +x_57 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_5, x_52, x_56, x_38); +x_58 = lean_ctor_get(x_57, 0); +lean_inc(x_58); +x_59 = lean_ctor_get(x_57, 1); +lean_inc(x_59); +lean_dec_ref(x_57); +x_60 = lean_array_get_size(x_6); +x_61 = l_Array_toSubarray___redArg(x_6, x_7, x_60); +x_62 = l_Array_ofSubarray___redArg(x_61); +lean_dec_ref(x_61); +x_63 = l_Lean_mkAppRev(x_8, x_62); +lean_dec_ref(x_62); +lean_inc(x_58); +lean_inc(x_5); +x_64 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_64, 0, x_5); +lean_ctor_set(x_64, 1, x_52); +lean_ctor_set(x_64, 2, x_58); +lean_ctor_set(x_64, 3, x_63); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc(x_15); +lean_inc_ref(x_14); +x_65 = lean_apply_8(x_9, x_64, x_14, x_15, x_16, x_17, x_18, x_19, x_55); +if (lean_obj_tag(x_65) == 0) +{ +uint8_t x_66; +x_66 = !lean_is_exclusive(x_65); +if (x_66 == 0) +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_67 = lean_ctor_get(x_65, 0); +x_68 = lean_ctor_get(x_65, 1); +x_69 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_51, x_14, x_15, x_16, x_17, x_18, x_19, x_68); +lean_dec(x_15); +if (lean_obj_tag(x_69) == 0) +{ +uint8_t x_70; +x_70 = !lean_is_exclusive(x_69); +if (x_70 == 0) +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_71 = lean_ctor_get(x_69, 0); +x_72 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__6; +x_73 = lean_box(0); +lean_ctor_set_tag(x_65, 1); +lean_ctor_set(x_65, 1, x_73); +lean_ctor_set(x_65, 0, x_5); +x_74 = l_Lean_Expr_const___override(x_72, x_65); +x_75 = l_Lean_mkAppN(x_58, x_1); +x_76 = l_Lean_mkAppN(x_59, x_1); +x_77 = l_Lean_mkAppN(x_67, x_1); +lean_dec_ref(x_1); +x_78 = l_Lean_mkApp8(x_74, x_10, x_71, x_11, x_75, x_12, x_48, x_76, x_77); +lean_ctor_set(x_69, 0, x_78); +return x_69; +} +else +{ +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_79 = lean_ctor_get(x_69, 0); +x_80 = lean_ctor_get(x_69, 1); +lean_inc(x_80); +lean_inc(x_79); +lean_dec(x_69); +x_81 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__6; +x_82 = lean_box(0); +lean_ctor_set_tag(x_65, 1); +lean_ctor_set(x_65, 1, x_82); +lean_ctor_set(x_65, 0, x_5); +x_83 = l_Lean_Expr_const___override(x_81, x_65); +x_84 = l_Lean_mkAppN(x_58, x_1); +x_85 = l_Lean_mkAppN(x_59, x_1); +x_86 = l_Lean_mkAppN(x_67, x_1); +lean_dec_ref(x_1); +x_87 = l_Lean_mkApp8(x_83, x_10, x_79, x_11, x_84, x_12, x_48, x_85, x_86); +x_88 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_88, 0, x_87); +lean_ctor_set(x_88, 1, x_80); +return x_88; } } else { -lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_24; -x_20 = lean_ctor_get(x_11, 0); -x_21 = lean_ctor_get(x_11, 1); -lean_inc(x_21); -lean_inc(x_20); -lean_dec(x_11); -x_22 = lean_ctor_get(x_20, 0); -lean_inc_ref(x_22); -lean_dec(x_20); -x_23 = 0; -lean_inc(x_1); -x_24 = l_Lean_Environment_find_x3f(x_22, x_1, x_23); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); -return x_25; +lean_free_object(x_65); +lean_dec(x_67); +lean_dec(x_59); +lean_dec(x_58); +lean_dec(x_48); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec(x_5); +lean_dec_ref(x_1); +return x_69; +} } else { -lean_object* x_26; lean_object* x_27; +lean_object* x_89; lean_object* x_90; lean_object* x_91; +x_89 = lean_ctor_get(x_65, 0); +x_90 = lean_ctor_get(x_65, 1); +lean_inc(x_90); +lean_inc(x_89); +lean_dec(x_65); +x_91 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_51, x_14, x_15, x_16, x_17, x_18, x_19, x_90); +lean_dec(x_15); +if (lean_obj_tag(x_91) == 0) +{ +lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_92 = lean_ctor_get(x_91, 0); +lean_inc(x_92); +x_93 = lean_ctor_get(x_91, 1); +lean_inc(x_93); +if (lean_is_exclusive(x_91)) { + lean_ctor_release(x_91, 0); + lean_ctor_release(x_91, 1); + x_94 = x_91; +} else { + lean_dec_ref(x_91); + x_94 = lean_box(0); +} +x_95 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__6; +x_96 = lean_box(0); +x_97 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_97, 0, x_5); +lean_ctor_set(x_97, 1, x_96); +x_98 = l_Lean_Expr_const___override(x_95, x_97); +x_99 = l_Lean_mkAppN(x_58, x_1); +x_100 = l_Lean_mkAppN(x_59, x_1); +x_101 = l_Lean_mkAppN(x_89, x_1); +lean_dec_ref(x_1); +x_102 = l_Lean_mkApp8(x_98, x_10, x_92, x_11, x_99, x_12, x_48, x_100, x_101); +if (lean_is_scalar(x_94)) { + x_103 = lean_alloc_ctor(0, 2, 0); +} else { + x_103 = x_94; +} +lean_ctor_set(x_103, 0, x_102); +lean_ctor_set(x_103, 1, x_93); +return x_103; +} +else +{ +lean_dec(x_89); +lean_dec(x_59); +lean_dec(x_58); +lean_dec(x_48); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec(x_5); +lean_dec_ref(x_1); +return x_91; +} +} +} +else +{ +lean_dec(x_59); +lean_dec(x_58); +lean_dec_ref(x_51); +lean_dec(x_48); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec(x_5); +lean_dec_ref(x_1); +return x_65; +} +} +else +{ +lean_dec_ref(x_52); +lean_dec_ref(x_51); +lean_dec(x_48); +lean_dec(x_38); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); lean_dec_ref(x_8); -lean_dec(x_1); -x_26 = lean_ctor_get(x_24, 0); -lean_inc(x_26); -lean_dec_ref(x_24); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_26); -lean_ctor_set(x_27, 1, x_21); -return x_27; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_1); +return x_53; +} +} +} +else +{ +lean_dec(x_38); +lean_dec(x_37); +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_47; +} +} +else +{ +uint8_t x_108; +lean_dec(x_38); +lean_dec(x_37); +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec(x_2); +lean_dec_ref(x_1); +x_108 = !lean_is_exclusive(x_42); +if (x_108 == 0) +{ +return x_42; +} +else +{ +lean_object* x_109; lean_object* x_110; lean_object* x_111; +x_109 = lean_ctor_get(x_42, 0); +x_110 = lean_ctor_get(x_42, 1); +lean_inc(x_110); +lean_inc(x_109); +lean_dec(x_42); +x_111 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_111, 0, x_109); +lean_ctor_set(x_111, 1, x_110); +return x_111; +} +} +} +else +{ +uint8_t x_112; +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec(x_2); +lean_dec_ref(x_1); +x_112 = !lean_is_exclusive(x_34); +if (x_112 == 0) +{ +return x_34; +} +else +{ +lean_object* x_113; lean_object* x_114; lean_object* x_115; +x_113 = lean_ctor_get(x_34, 0); +x_114 = lean_ctor_get(x_34, 1); +lean_inc(x_114); +lean_inc(x_113); +lean_dec(x_34); +x_115 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_115, 0, x_113); +lean_ctor_set(x_115, 1, x_114); +return x_115; +} +} +} +else +{ +uint8_t x_116; +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_2); +lean_dec_ref(x_1); +x_116 = !lean_is_exclusive(x_31); +if (x_116 == 0) +{ +return x_31; +} +else +{ +lean_object* x_117; lean_object* x_118; lean_object* x_119; +x_117 = lean_ctor_get(x_31, 0); +x_118 = lean_ctor_get(x_31, 1); +lean_inc(x_118); +lean_inc(x_117); +lean_dec(x_31); +x_119 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_119, 0, x_117); +lean_ctor_set(x_119, 1, x_118); +return x_119; +} +} +} +else +{ +uint8_t x_120; +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_2); +lean_dec_ref(x_1); +x_120 = !lean_is_exclusive(x_26); +if (x_120 == 0) +{ +return x_26; +} +else +{ +lean_object* x_121; lean_object* x_122; lean_object* x_123; +x_121 = lean_ctor_get(x_26, 0); +x_122 = lean_ctor_get(x_26, 1); +lean_inc(x_122); +lean_inc(x_121); +lean_dec(x_26); +x_123 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_123, 0, x_121); +lean_ctor_set(x_123, 1, x_122); +return x_123; } } } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { -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_13 = lean_ctor_get(x_3, 2); -lean_inc_ref(x_13); -lean_dec_ref(x_3); -x_14 = l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore(x_2, x_13); -x_15 = lean_box(0); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_1); -lean_ctor_set(x_16, 1, x_14); -x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_15); -lean_ctor_set(x_17, 1, x_16); -x_18 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_18, 0, x_17); -lean_ctor_set(x_18, 1, x_12); -return x_18; +lean_object* x_10; +x_10 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__36___redArg(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; } } -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Parser", 6, 6); -return x_1; -} -} -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("simpErase", 9, 9); -return x_1; -} -} -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__1; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("simpLemma", 9, 9); -return x_1; -} -} -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__3; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("simpStar", 8, 8); -return x_1; -} -} -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__5; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__7() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Could not resolve ", 18, 18); -return x_1; -} -} -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__8() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__0() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__7; +x_1 = l_Lean_instInhabitedExpr; +x_2 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2, 0, x_1); +lean_ctor_set(x_2, 1, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("mrevert: expected ", 18, 18); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__1; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__9() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__3() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("term", 4, 4); +x_1 = lean_mk_string_unchecked(" excess arguments in ", 21, 21); return x_1; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8(lean_object* x_1, lean_object* x_2, size_t x_3, size_t 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) { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__4() { _start: { -lean_object* x_15; lean_object* x_16; uint8_t x_21; -x_21 = lean_usize_dec_lt(x_4, x_3); -if (x_21 == 0) -{ -lean_object* x_22; -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_5); -lean_ctor_set(x_22, 1, x_14); -return x_22; -} -else -{ -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_35; lean_object* x_36; lean_object* x_37; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_47; lean_object* x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; lean_object* x_78; lean_object* x_79; uint8_t x_80; -x_23 = lean_ctor_get(x_5, 1); -lean_inc(x_23); -x_24 = lean_ctor_get(x_5, 0); -lean_inc(x_24); -if (lean_is_exclusive(x_5)) { - lean_ctor_release(x_5, 0); - lean_ctor_release(x_5, 1); - x_25 = x_5; -} else { - lean_dec_ref(x_5); - x_25 = lean_box(0); -} -x_26 = lean_ctor_get(x_23, 0); -lean_inc(x_26); -x_27 = lean_ctor_get(x_23, 1); -lean_inc(x_27); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - lean_ctor_release(x_23, 1); - x_28 = x_23; -} else { - lean_dec_ref(x_23); - x_28 = lean_box(0); -} -x_47 = lean_array_uget(x_2, x_4); -lean_inc(x_47); -x_78 = l_Lean_Syntax_getKind(x_47); -x_79 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__2; -x_80 = lean_name_eq(x_78, x_79); -if (x_80 == 0) -{ -lean_object* x_81; uint8_t x_82; -x_81 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__4; -x_82 = lean_name_eq(x_78, x_81); -if (x_82 == 0) -{ -lean_object* x_83; uint8_t x_84; -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_25); -x_83 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__6; -x_84 = lean_name_eq(x_78, x_83); -lean_dec(x_78); -if (x_84 == 0) -{ -lean_object* x_85; uint8_t x_86; -lean_dec(x_47); -lean_dec(x_26); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_85 = l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg(x_14); -x_86 = !lean_is_exclusive(x_85); -if (x_86 == 0) -{ -return x_85; -} -else -{ -lean_object* x_87; lean_object* x_88; lean_object* x_89; -x_87 = lean_ctor_get(x_85, 0); -x_88 = lean_ctor_get(x_85, 1); -lean_inc(x_88); -lean_inc(x_87); -lean_dec(x_85); -x_89 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_89, 0, x_87); -lean_ctor_set(x_89, 1, x_88); -return x_89; -} -} -else -{ -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_90 = lean_array_push(x_24, x_47); -x_91 = lean_box(x_21); -x_92 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_92, 0, x_26); -lean_ctor_set(x_92, 1, x_91); -x_93 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_93, 0, x_90); -lean_ctor_set(x_93, 1, x_92); -x_15 = x_93; -x_16 = x_14; -goto block_20; -} -} -else -{ -lean_object* x_94; lean_object* x_95; uint8_t x_96; -lean_dec(x_78); -x_94 = lean_unsigned_to_nat(0u); -x_95 = l_Lean_Syntax_getArg(x_47, x_94); -x_96 = l_Lean_Syntax_isNone(x_95); -lean_dec(x_95); -if (x_96 == 0) -{ -lean_dec(x_28); -lean_dec(x_25); -goto block_51; -} -else -{ -lean_object* x_97; uint8_t x_98; -x_97 = l_Lean_Syntax_getArg(x_47, x_1); -x_98 = l_Lean_Syntax_isNone(x_97); -lean_dec(x_97); -if (x_98 == 0) -{ -lean_dec(x_28); -lean_dec(x_25); -goto block_51; -} -else -{ -lean_object* x_99; -x_99 = l_Lean_Meta_saveState___redArg(x_11, x_13, x_14); -if (lean_obj_tag(x_99) == 0) -{ -lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_152; lean_object* x_210; lean_object* x_211; -x_100 = lean_ctor_get(x_99, 0); -lean_inc(x_100); -x_101 = lean_ctor_get(x_99, 1); -lean_inc(x_101); -lean_dec_ref(x_99); -x_102 = lean_unsigned_to_nat(2u); -x_103 = l_Lean_Syntax_getArg(x_47, x_102); -x_210 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__9; -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_103); -x_211 = l_Lean_Elab_Term_resolveId_x3f(x_103, x_210, x_21, x_8, x_9, x_10, x_11, x_12, x_13, x_101); -if (lean_obj_tag(x_211) == 0) -{ -lean_dec(x_100); -x_152 = x_211; -goto block_209; -} -else -{ -lean_object* x_212; lean_object* x_213; uint8_t x_214; uint8_t x_223; -x_212 = lean_ctor_get(x_211, 0); -lean_inc(x_212); -x_213 = lean_ctor_get(x_211, 1); -lean_inc(x_213); -x_223 = l_Lean_Exception_isInterrupt(x_212); -if (x_223 == 0) -{ -uint8_t x_224; -x_224 = l_Lean_Exception_isRuntime(x_212); -lean_dec(x_212); -x_214 = x_224; -goto block_222; -} -else -{ -lean_dec(x_212); -x_214 = x_223; -goto block_222; -} -block_222: -{ -if (x_214 == 0) -{ -lean_object* x_215; -lean_dec_ref(x_211); -x_215 = l_Lean_Meta_SavedState_restore___redArg(x_100, x_11, x_13, x_213); -lean_dec(x_100); -if (lean_obj_tag(x_215) == 0) -{ -lean_object* x_216; lean_object* x_217; -x_216 = lean_ctor_get(x_215, 1); -lean_inc(x_216); -lean_dec_ref(x_215); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_103); -x_217 = l_Lean_Elab_Term_elabCDotFunctionAlias_x3f(x_103, x_8, x_9, x_10, x_11, x_12, x_13, x_216); -x_152 = x_217; -goto block_209; -} -else -{ -uint8_t x_218; -lean_dec(x_103); -lean_dec(x_47); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) -{ -return x_215; -} -else -{ -lean_object* x_219; lean_object* x_220; lean_object* x_221; -x_219 = lean_ctor_get(x_215, 0); -x_220 = lean_ctor_get(x_215, 1); -lean_inc(x_220); -lean_inc(x_219); -lean_dec(x_215); -x_221 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_221, 0, x_219); -lean_ctor_set(x_221, 1, x_220); -return x_221; -} -} -} -else -{ -lean_dec(x_213); -lean_dec(x_100); -x_152 = x_211; -goto block_209; -} -} -} -block_151: -{ -uint8_t x_109; -x_109 = !lean_is_exclusive(x_106); -if (x_109 == 0) -{ -lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; uint8_t x_119; -x_110 = lean_ctor_get(x_106, 5); -x_111 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__8; -lean_inc(x_103); -x_112 = l_Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2093_(x_103, x_94); -x_113 = l_Lean_MessageData_ofFormat(x_112); -x_114 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_114, 0, x_111); -lean_ctor_set(x_114, 1, x_113); -x_115 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -x_116 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_116, 0, x_114); -lean_ctor_set(x_116, 1, x_115); -x_117 = l_Lean_replaceRef(x_103, x_110); -lean_dec(x_110); -lean_dec(x_103); -lean_ctor_set(x_106, 5, x_117); -x_118 = l_Lean_throwError___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg(x_116, x_104, x_105, x_106, x_107, x_108); -lean_dec(x_107); -lean_dec_ref(x_106); -lean_dec(x_105); -lean_dec_ref(x_104); -x_119 = !lean_is_exclusive(x_118); -if (x_119 == 0) -{ -return x_118; -} -else -{ -lean_object* x_120; lean_object* x_121; lean_object* x_122; -x_120 = lean_ctor_get(x_118, 0); -x_121 = lean_ctor_get(x_118, 1); -lean_inc(x_121); -lean_inc(x_120); -lean_dec(x_118); -x_122 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_122, 0, x_120); -lean_ctor_set(x_122, 1, x_121); -return x_122; -} -} -else -{ -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; uint8_t x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; -x_123 = lean_ctor_get(x_106, 0); -x_124 = lean_ctor_get(x_106, 1); -x_125 = lean_ctor_get(x_106, 2); -x_126 = lean_ctor_get(x_106, 3); -x_127 = lean_ctor_get(x_106, 4); -x_128 = lean_ctor_get(x_106, 5); -x_129 = lean_ctor_get(x_106, 6); -x_130 = lean_ctor_get(x_106, 7); -x_131 = lean_ctor_get(x_106, 8); -x_132 = lean_ctor_get(x_106, 9); -x_133 = lean_ctor_get(x_106, 10); -x_134 = lean_ctor_get_uint8(x_106, sizeof(void*)*13); -x_135 = lean_ctor_get(x_106, 11); -x_136 = lean_ctor_get_uint8(x_106, sizeof(void*)*13 + 1); -x_137 = lean_ctor_get(x_106, 12); -lean_inc(x_137); -lean_inc(x_135); -lean_inc(x_133); -lean_inc(x_132); -lean_inc(x_131); -lean_inc(x_130); -lean_inc(x_129); -lean_inc(x_128); -lean_inc(x_127); -lean_inc(x_126); -lean_inc(x_125); -lean_inc(x_124); -lean_inc(x_123); -lean_dec(x_106); -x_138 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__8; -lean_inc(x_103); -x_139 = l_Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2093_(x_103, x_94); -x_140 = l_Lean_MessageData_ofFormat(x_139); -x_141 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_141, 0, x_138); -lean_ctor_set(x_141, 1, x_140); -x_142 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -x_143 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_143, 0, x_141); -lean_ctor_set(x_143, 1, x_142); -x_144 = l_Lean_replaceRef(x_103, x_128); -lean_dec(x_128); -lean_dec(x_103); -x_145 = lean_alloc_ctor(0, 13, 2); -lean_ctor_set(x_145, 0, x_123); -lean_ctor_set(x_145, 1, x_124); -lean_ctor_set(x_145, 2, x_125); -lean_ctor_set(x_145, 3, x_126); -lean_ctor_set(x_145, 4, x_127); -lean_ctor_set(x_145, 5, x_144); -lean_ctor_set(x_145, 6, x_129); -lean_ctor_set(x_145, 7, x_130); -lean_ctor_set(x_145, 8, x_131); -lean_ctor_set(x_145, 9, x_132); -lean_ctor_set(x_145, 10, x_133); -lean_ctor_set(x_145, 11, x_135); -lean_ctor_set(x_145, 12, x_137); -lean_ctor_set_uint8(x_145, sizeof(void*)*13, x_134); -lean_ctor_set_uint8(x_145, sizeof(void*)*13 + 1, x_136); -x_146 = l_Lean_throwError___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg(x_143, x_104, x_105, x_145, x_107, x_108); -lean_dec(x_107); -lean_dec_ref(x_145); -lean_dec(x_105); -lean_dec_ref(x_104); -x_147 = lean_ctor_get(x_146, 0); -lean_inc(x_147); -x_148 = lean_ctor_get(x_146, 1); -lean_inc(x_148); -if (lean_is_exclusive(x_146)) { - lean_ctor_release(x_146, 0); - lean_ctor_release(x_146, 1); - x_149 = x_146; -} else { - lean_dec_ref(x_146); - x_149 = lean_box(0); -} -if (lean_is_scalar(x_149)) { - x_150 = lean_alloc_ctor(1, 2, 0); -} else { - x_150 = x_149; -} -lean_ctor_set(x_150, 0, x_147); -lean_ctor_set(x_150, 1, x_148); -return x_150; -} -} -block_209: -{ -if (lean_obj_tag(x_152) == 0) -{ -lean_object* x_153; -x_153 = lean_ctor_get(x_152, 0); -lean_inc(x_153); -if (lean_obj_tag(x_153) == 0) -{ -lean_object* x_154; -lean_dec(x_47); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_9); -lean_dec_ref(x_8); -x_154 = lean_ctor_get(x_152, 1); -lean_inc(x_154); -lean_dec_ref(x_152); -x_104 = x_10; -x_105 = x_11; -x_106 = x_12; -x_107 = x_13; -x_108 = x_154; -goto block_151; -} -else -{ -lean_object* x_155; -x_155 = lean_ctor_get(x_153, 0); -lean_inc(x_155); -lean_dec_ref(x_153); -switch (lean_obj_tag(x_155)) { -case 1: -{ -lean_object* x_156; lean_object* x_157; lean_object* x_158; -lean_dec(x_103); -lean_dec(x_28); -lean_dec(x_25); -x_156 = lean_ctor_get(x_152, 1); -lean_inc(x_156); -lean_dec_ref(x_152); -x_157 = lean_ctor_get(x_155, 0); -lean_inc(x_157); -lean_inc_ref(x_10); -x_158 = l_Lean_Meta_getFVarLocalDecl___redArg(x_155, x_10, x_12, x_13, x_156); -lean_dec_ref(x_155); -if (lean_obj_tag(x_158) == 0) -{ -lean_object* x_159; lean_object* x_160; -x_159 = lean_ctor_get(x_158, 1); -lean_inc(x_159); -lean_dec_ref(x_158); -x_160 = l_Lean_Elab_Tactic_saveState___redArg(x_7, x_9, x_11, x_13, x_159); -if (lean_obj_tag(x_160) == 0) -{ -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; -x_161 = lean_ctor_get(x_160, 0); -lean_inc(x_161); -x_162 = lean_ctor_get(x_160, 1); -lean_inc(x_162); -lean_dec_ref(x_160); -x_163 = lean_unsigned_to_nat(1000u); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -x_164 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal(x_157, x_163, x_10, x_11, x_12, x_13, x_162); -if (lean_obj_tag(x_164) == 0) -{ -lean_object* x_165; lean_object* x_166; lean_object* x_167; -lean_dec(x_161); -lean_dec(x_47); -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_ref(x_164); -x_167 = l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry(x_26, x_165); -x_35 = x_24; -x_36 = x_167; -x_37 = x_166; -goto block_40; -} -else -{ -lean_object* x_168; lean_object* x_169; uint8_t x_170; -x_168 = lean_ctor_get(x_164, 0); -lean_inc(x_168); -x_169 = lean_ctor_get(x_164, 1); -lean_inc(x_169); -lean_dec_ref(x_164); -x_170 = l_Lean_Exception_isInterrupt(x_168); -if (x_170 == 0) -{ -uint8_t x_171; -x_171 = l_Lean_Exception_isRuntime(x_168); -x_52 = x_169; -x_53 = x_161; -x_54 = x_168; -x_55 = x_171; -goto block_64; -} -else -{ -x_52 = x_169; -x_53 = x_161; -x_54 = x_168; -x_55 = x_170; -goto block_64; -} -} -} -else -{ -uint8_t x_172; -lean_dec(x_157); -lean_dec(x_47); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_172 = !lean_is_exclusive(x_160); -if (x_172 == 0) -{ -return x_160; -} -else -{ -lean_object* x_173; lean_object* x_174; lean_object* x_175; -x_173 = lean_ctor_get(x_160, 0); -x_174 = lean_ctor_get(x_160, 1); -lean_inc(x_174); -lean_inc(x_173); -lean_dec(x_160); -x_175 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_175, 0, x_173); -lean_ctor_set(x_175, 1, x_174); -return x_175; -} -} -} -else -{ -uint8_t x_176; -lean_dec(x_157); -lean_dec(x_47); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_176 = !lean_is_exclusive(x_158); -if (x_176 == 0) -{ -return x_158; -} -else -{ -lean_object* x_177; lean_object* x_178; lean_object* x_179; -x_177 = lean_ctor_get(x_158, 0); -x_178 = lean_ctor_get(x_158, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_158); -x_179 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_179, 0, x_177); -lean_ctor_set(x_179, 1, x_178); -return x_179; -} -} -} -case 4: -{ -lean_object* x_180; lean_object* x_181; lean_object* x_182; -lean_dec(x_103); -x_180 = lean_ctor_get(x_152, 1); -lean_inc(x_180); -lean_dec_ref(x_152); -x_181 = lean_ctor_get(x_155, 0); -lean_inc(x_181); -lean_dec_ref(x_155); -lean_inc_ref(x_12); -lean_inc(x_181); -x_182 = l_Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2(x_181, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_180); -if (lean_obj_tag(x_182) == 0) -{ -lean_object* x_183; lean_object* x_184; -x_183 = lean_ctor_get(x_182, 1); -lean_inc(x_183); -lean_dec_ref(x_182); -x_184 = l_Lean_Elab_Tactic_saveState___redArg(x_7, x_9, x_11, x_13, x_183); -if (lean_obj_tag(x_184) == 0) -{ -lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_185 = lean_ctor_get(x_184, 0); -lean_inc(x_185); -x_186 = lean_ctor_get(x_184, 1); -lean_inc(x_186); -lean_dec_ref(x_184); -x_187 = lean_unsigned_to_nat(1000u); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -x_188 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromConst(x_181, x_187, x_10, x_11, x_12, x_13, x_186); -if (lean_obj_tag(x_188) == 0) -{ -lean_object* x_189; lean_object* x_190; lean_object* x_191; -lean_dec(x_185); -lean_dec(x_47); -x_189 = lean_ctor_get(x_188, 0); -lean_inc(x_189); -x_190 = lean_ctor_get(x_188, 1); -lean_inc(x_190); -lean_dec_ref(x_188); -x_191 = l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry(x_26, x_189); -x_29 = x_24; -x_30 = x_191; -x_31 = x_190; -goto block_34; -} -else -{ -lean_object* x_192; lean_object* x_193; uint8_t x_194; -x_192 = lean_ctor_get(x_188, 0); -lean_inc(x_192); -x_193 = lean_ctor_get(x_188, 1); -lean_inc(x_193); -lean_dec_ref(x_188); -x_194 = l_Lean_Exception_isInterrupt(x_192); -if (x_194 == 0) -{ -uint8_t x_195; -x_195 = l_Lean_Exception_isRuntime(x_192); -x_65 = x_193; -x_66 = x_185; -x_67 = x_192; -x_68 = x_195; -goto block_77; -} -else -{ -x_65 = x_193; -x_66 = x_185; -x_67 = x_192; -x_68 = x_194; -goto block_77; -} -} -} -else -{ -uint8_t x_196; -lean_dec(x_181); -lean_dec(x_47); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_196 = !lean_is_exclusive(x_184); -if (x_196 == 0) -{ -return x_184; -} -else -{ -lean_object* x_197; lean_object* x_198; lean_object* x_199; -x_197 = lean_ctor_get(x_184, 0); -x_198 = lean_ctor_get(x_184, 1); -lean_inc(x_198); -lean_inc(x_197); -lean_dec(x_184); -x_199 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_199, 0, x_197); -lean_ctor_set(x_199, 1, x_198); -return x_199; -} -} -} -else -{ -uint8_t x_200; -lean_dec(x_181); -lean_dec(x_47); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_200 = !lean_is_exclusive(x_182); -if (x_200 == 0) -{ -return x_182; -} -else -{ -lean_object* x_201; lean_object* x_202; lean_object* x_203; -x_201 = lean_ctor_get(x_182, 0); -x_202 = lean_ctor_get(x_182, 1); -lean_inc(x_202); -lean_inc(x_201); -lean_dec(x_182); -x_203 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_203, 0, x_201); -lean_ctor_set(x_203, 1, x_202); -return x_203; -} -} -} -default: -{ -lean_object* x_204; -lean_dec(x_155); -lean_dec(x_47); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_9); -lean_dec_ref(x_8); -x_204 = lean_ctor_get(x_152, 1); -lean_inc(x_204); -lean_dec_ref(x_152); -x_104 = x_10; -x_105 = x_11; -x_106 = x_12; -x_107 = x_13; -x_108 = x_204; -goto block_151; -} -} -} -} -else -{ -uint8_t x_205; -lean_dec(x_103); -lean_dec(x_47); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_205 = !lean_is_exclusive(x_152); -if (x_205 == 0) -{ -return x_152; -} -else -{ -lean_object* x_206; lean_object* x_207; lean_object* x_208; -x_206 = lean_ctor_get(x_152, 0); -x_207 = lean_ctor_get(x_152, 1); -lean_inc(x_207); -lean_inc(x_206); -lean_dec(x_152); -x_208 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_208, 0, x_206); -lean_ctor_set(x_208, 1, x_207); -return x_208; -} -} -} -} -else -{ -uint8_t x_225; -lean_dec(x_47); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_225 = !lean_is_exclusive(x_99); -if (x_225 == 0) -{ -return x_99; -} -else -{ -lean_object* x_226; lean_object* x_227; lean_object* x_228; -x_226 = lean_ctor_get(x_99, 0); -x_227 = lean_ctor_get(x_99, 1); -lean_inc(x_227); -lean_inc(x_226); -lean_dec(x_99); -x_228 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_228, 0, x_226); -lean_ctor_set(x_228, 1, x_227); -return x_228; -} -} -} -} -} -} -else -{ -lean_object* x_229; -lean_dec(x_78); -lean_dec(x_28); -lean_dec(x_25); -x_229 = l_Lean_Elab_Tactic_saveState___redArg(x_7, x_9, x_11, x_13, x_14); -if (lean_obj_tag(x_229) == 0) -{ -lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; uint8_t x_235; lean_object* x_245; lean_object* x_246; lean_object* x_250; lean_object* x_257; lean_object* x_258; -x_230 = lean_ctor_get(x_229, 0); -lean_inc(x_230); -x_231 = lean_ctor_get(x_229, 1); -lean_inc(x_231); -if (lean_is_exclusive(x_229)) { - lean_ctor_release(x_229, 0); - lean_ctor_release(x_229, 1); - x_232 = x_229; -} else { - lean_dec_ref(x_229); - x_232 = lean_box(0); -} -x_257 = l_Lean_Syntax_getArg(x_47, x_1); -lean_inc_ref(x_12); -lean_inc_ref(x_10); -lean_inc(x_257); -x_258 = l_Lean_Elab_Term_isLocalIdent_x3f(x_257, x_8, x_9, x_10, x_11, x_12, x_13, x_231); -if (lean_obj_tag(x_258) == 0) -{ -lean_object* x_259; -x_259 = lean_ctor_get(x_258, 0); -lean_inc(x_259); -if (lean_obj_tag(x_259) == 0) -{ -lean_object* x_260; lean_object* x_261; -x_260 = lean_ctor_get(x_258, 1); -lean_inc(x_260); -lean_dec_ref(x_258); -x_261 = l_Lean_Elab_Tactic_saveState___redArg(x_7, x_9, x_11, x_13, x_260); -if (lean_obj_tag(x_261) == 0) -{ -lean_object* x_262; lean_object* x_263; lean_object* x_264; -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_ref(x_261); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_257); -x_264 = l_Lean_Elab_realizeGlobalConstNoOverloadWithInfo(x_257, x_259, x_12, x_13, x_263); -if (lean_obj_tag(x_264) == 0) -{ -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -lean_dec(x_262); -lean_dec(x_257); -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -lean_dec_ref(x_264); -x_267 = lean_unsigned_to_nat(1000u); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -x_268 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromConst(x_265, x_267, x_10, x_11, x_12, x_13, x_266); -if (lean_obj_tag(x_268) == 0) -{ -lean_object* x_269; lean_object* x_270; lean_object* x_271; -lean_dec(x_232); -lean_dec(x_230); -lean_dec(x_47); -x_269 = lean_ctor_get(x_268, 0); -lean_inc(x_269); -x_270 = lean_ctor_get(x_268, 1); -lean_inc(x_270); -lean_dec_ref(x_268); -x_271 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___lam__0(x_24, x_26, x_269, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_270); -x_250 = x_271; -goto block_256; -} -else -{ -lean_object* x_272; lean_object* x_273; -x_272 = lean_ctor_get(x_268, 0); -lean_inc(x_272); -x_273 = lean_ctor_get(x_268, 1); -lean_inc(x_273); -lean_dec_ref(x_268); -x_245 = x_272; -x_246 = x_273; -goto block_249; -} -} -else -{ -lean_object* x_274; lean_object* x_275; uint8_t x_276; uint8_t x_304; -x_274 = lean_ctor_get(x_264, 0); -lean_inc(x_274); -x_275 = lean_ctor_get(x_264, 1); -lean_inc(x_275); -lean_dec_ref(x_264); -x_304 = l_Lean_Exception_isInterrupt(x_274); -if (x_304 == 0) -{ -uint8_t x_305; -x_305 = l_Lean_Exception_isRuntime(x_274); -x_276 = x_305; -goto block_303; -} -else -{ -x_276 = x_304; -goto block_303; -} -block_303: -{ -if (x_276 == 0) -{ -lean_object* x_277; -lean_dec(x_274); -x_277 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_262, x_276, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_275); -if (lean_obj_tag(x_277) == 0) -{ -lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; uint8_t x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; -x_278 = lean_ctor_get(x_277, 1); -lean_inc(x_278); -lean_dec_ref(x_277); -x_279 = lean_ctor_get(x_12, 0); -lean_inc_ref(x_279); -x_280 = lean_ctor_get(x_12, 1); -lean_inc_ref(x_280); -x_281 = lean_ctor_get(x_12, 2); -lean_inc(x_281); -x_282 = lean_ctor_get(x_12, 3); -lean_inc(x_282); -x_283 = lean_ctor_get(x_12, 4); -lean_inc(x_283); -x_284 = lean_ctor_get(x_12, 5); -lean_inc(x_284); -x_285 = lean_ctor_get(x_12, 6); -lean_inc(x_285); -x_286 = lean_ctor_get(x_12, 7); -lean_inc(x_286); -x_287 = lean_ctor_get(x_12, 8); -lean_inc(x_287); -x_288 = lean_ctor_get(x_12, 9); -lean_inc(x_288); -x_289 = lean_ctor_get(x_12, 10); -lean_inc(x_289); -x_290 = lean_ctor_get_uint8(x_12, sizeof(void*)*13); -x_291 = lean_ctor_get(x_12, 11); -lean_inc(x_291); -x_292 = lean_ctor_get_uint8(x_12, sizeof(void*)*13 + 1); -x_293 = lean_ctor_get(x_12, 12); -lean_inc_ref(x_293); -x_294 = l_Lean_Syntax_getId(x_257); -x_295 = lean_erase_macro_scopes(x_294); -x_296 = l_Lean_replaceRef(x_257, x_284); -lean_dec(x_284); -lean_dec(x_257); -x_297 = lean_alloc_ctor(0, 13, 2); -lean_ctor_set(x_297, 0, x_279); -lean_ctor_set(x_297, 1, x_280); -lean_ctor_set(x_297, 2, x_281); -lean_ctor_set(x_297, 3, x_282); -lean_ctor_set(x_297, 4, x_283); -lean_ctor_set(x_297, 5, x_296); -lean_ctor_set(x_297, 6, x_285); -lean_ctor_set(x_297, 7, x_286); -lean_ctor_set(x_297, 8, x_287); -lean_ctor_set(x_297, 9, x_288); -lean_ctor_set(x_297, 10, x_289); -lean_ctor_set(x_297, 11, x_291); -lean_ctor_set(x_297, 12, x_293); -lean_ctor_set_uint8(x_297, sizeof(void*)*13, x_290); -lean_ctor_set_uint8(x_297, sizeof(void*)*13 + 1, x_292); -x_298 = l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___redArg(x_295, x_6, x_7, x_8, x_9, x_10, x_11, x_297, x_13, x_278); -x_299 = lean_ctor_get(x_298, 0); -lean_inc(x_299); -x_300 = lean_ctor_get(x_298, 1); -lean_inc(x_300); -lean_dec_ref(x_298); -x_245 = x_299; -x_246 = x_300; -goto block_249; -} -else -{ -lean_object* x_301; lean_object* x_302; -lean_dec(x_257); -x_301 = lean_ctor_get(x_277, 0); -lean_inc(x_301); -x_302 = lean_ctor_get(x_277, 1); -lean_inc(x_302); -lean_dec_ref(x_277); -x_245 = x_301; -x_246 = x_302; -goto block_249; -} -} -else -{ -lean_dec(x_262); -lean_dec(x_257); -x_245 = x_274; -x_246 = x_275; -goto block_249; -} -} -} -} -else -{ -lean_object* x_306; lean_object* x_307; -lean_dec(x_257); -x_306 = lean_ctor_get(x_261, 0); -lean_inc(x_306); -x_307 = lean_ctor_get(x_261, 1); -lean_inc(x_307); -lean_dec_ref(x_261); -x_245 = x_306; -x_246 = x_307; -goto block_249; -} -} -else -{ -lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; -lean_dec(x_257); -x_308 = lean_ctor_get(x_258, 1); -lean_inc(x_308); -lean_dec_ref(x_258); -x_309 = lean_ctor_get(x_259, 0); -lean_inc(x_309); -lean_dec_ref(x_259); -x_310 = l_Lean_Expr_fvarId_x21(x_309); -lean_dec(x_309); -x_311 = lean_unsigned_to_nat(1000u); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -x_312 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal(x_310, x_311, x_10, x_11, x_12, x_13, x_308); -if (lean_obj_tag(x_312) == 0) -{ -lean_object* x_313; lean_object* x_314; lean_object* x_315; -lean_dec(x_232); -lean_dec(x_230); -lean_dec(x_47); -x_313 = lean_ctor_get(x_312, 0); -lean_inc(x_313); -x_314 = lean_ctor_get(x_312, 1); -lean_inc(x_314); -lean_dec_ref(x_312); -x_315 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___lam__0(x_24, x_26, x_313, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_314); -x_250 = x_315; -goto block_256; -} -else -{ -lean_object* x_316; lean_object* x_317; -x_316 = lean_ctor_get(x_312, 0); -lean_inc(x_316); -x_317 = lean_ctor_get(x_312, 1); -lean_inc(x_317); -lean_dec_ref(x_312); -x_245 = x_316; -x_246 = x_317; -goto block_249; -} -} -} -else -{ -lean_object* x_318; lean_object* x_319; -lean_dec(x_257); -x_318 = lean_ctor_get(x_258, 0); -lean_inc(x_318); -x_319 = lean_ctor_get(x_258, 1); -lean_inc(x_319); -lean_dec_ref(x_258); -x_245 = x_318; -x_246 = x_319; -goto block_249; -} -block_244: -{ -if (x_235 == 0) -{ -lean_object* x_236; -lean_dec_ref(x_233); -lean_dec(x_232); -x_236 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_230, x_235, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_234); -if (lean_obj_tag(x_236) == 0) -{ -lean_object* x_237; lean_object* x_238; -x_237 = lean_ctor_get(x_236, 1); -lean_inc(x_237); -lean_dec_ref(x_236); -x_238 = lean_array_push(x_24, x_47); -x_41 = x_238; -x_42 = x_26; -x_43 = x_237; -goto block_46; -} -else -{ -uint8_t x_239; -lean_dec(x_47); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_239 = !lean_is_exclusive(x_236); -if (x_239 == 0) -{ -return x_236; -} -else -{ -lean_object* x_240; lean_object* x_241; lean_object* x_242; -x_240 = lean_ctor_get(x_236, 0); -x_241 = lean_ctor_get(x_236, 1); -lean_inc(x_241); -lean_inc(x_240); -lean_dec(x_236); -x_242 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_242, 0, x_240); -lean_ctor_set(x_242, 1, x_241); -return x_242; -} -} -} -else -{ -lean_object* x_243; -lean_dec(x_230); -lean_dec(x_47); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -if (lean_is_scalar(x_232)) { - x_243 = lean_alloc_ctor(1, 2, 0); -} else { - x_243 = x_232; - lean_ctor_set_tag(x_243, 1); -} -lean_ctor_set(x_243, 0, x_233); -lean_ctor_set(x_243, 1, x_234); -return x_243; -} -} -block_249: -{ -uint8_t x_247; -x_247 = l_Lean_Exception_isInterrupt(x_245); -if (x_247 == 0) -{ -uint8_t x_248; -x_248 = l_Lean_Exception_isRuntime(x_245); -x_233 = x_245; -x_234 = x_246; -x_235 = x_248; -goto block_244; -} -else -{ -x_233 = x_245; -x_234 = x_246; -x_235 = x_247; -goto block_244; -} -} -block_256: -{ -lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; -x_251 = lean_ctor_get(x_250, 0); -lean_inc(x_251); -x_252 = lean_ctor_get(x_251, 1); -lean_inc(x_252); -lean_dec(x_251); -x_253 = lean_ctor_get(x_250, 1); -lean_inc(x_253); -lean_dec_ref(x_250); -x_254 = lean_ctor_get(x_252, 0); -lean_inc(x_254); -x_255 = lean_ctor_get(x_252, 1); -lean_inc(x_255); -lean_dec(x_252); -x_41 = x_254; -x_42 = x_255; -x_43 = x_253; -goto block_46; -} -} -else -{ -uint8_t x_320; -lean_dec(x_47); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_320 = !lean_is_exclusive(x_229); -if (x_320 == 0) -{ -return x_229; -} -else -{ -lean_object* x_321; lean_object* x_322; lean_object* x_323; -x_321 = lean_ctor_get(x_229, 0); -x_322 = lean_ctor_get(x_229, 1); -lean_inc(x_322); -lean_inc(x_321); -lean_dec(x_229); -x_323 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_323, 0, x_321); -lean_ctor_set(x_323, 1, x_322); -return x_323; -} -} -} -block_34: -{ -lean_object* x_32; lean_object* x_33; -if (lean_is_scalar(x_28)) { - x_32 = lean_alloc_ctor(0, 2, 0); -} else { - x_32 = x_28; -} -lean_ctor_set(x_32, 0, x_30); -lean_ctor_set(x_32, 1, x_27); -if (lean_is_scalar(x_25)) { - x_33 = lean_alloc_ctor(0, 2, 0); -} else { - x_33 = x_25; -} -lean_ctor_set(x_33, 0, x_29); -lean_ctor_set(x_33, 1, x_32); -x_15 = x_33; -x_16 = x_31; -goto block_20; -} -block_40: -{ -lean_object* x_38; lean_object* x_39; -x_38 = lean_alloc_ctor(0, 2, 0); +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__3; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(", got ", 6, 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__5; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = lean_nat_dec_eq(x_2, x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_14 = lean_ctor_get(x_1, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_15); +x_16 = lean_ctor_get(x_1, 2); +lean_inc_ref(x_16); +x_17 = lean_ctor_get(x_1, 3); +lean_inc_ref(x_17); +lean_dec_ref(x_1); +lean_inc(x_3); +x_18 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__0___boxed), 9, 1); +lean_closure_set(x_18, 0, x_3); +x_19 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__0; +x_20 = l_Lean_Expr_consumeMData(x_17); +x_21 = l_Lean_Expr_getAppFn(x_20); +x_22 = l_Lean_Expr_getAppNumArgs(x_20); +x_23 = lean_mk_empty_array_with_capacity(x_22); +lean_dec(x_22); +lean_inc_ref(x_20); +x_24 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_20, x_23); +lean_inc(x_2); +lean_inc_ref(x_24); +x_25 = l_Array_toSubarray___redArg(x_24, x_12, x_2); +x_26 = l_Array_ofSubarray___redArg(x_25); +lean_dec_ref(x_25); +x_27 = l_Array_reverse___redArg(x_26); +x_28 = lean_box(x_13); +lean_inc_ref(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_27); +x_29 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__3___boxed), 15, 7); +lean_closure_set(x_29, 0, x_27); +lean_closure_set(x_29, 1, x_18); +lean_closure_set(x_29, 2, x_14); +lean_closure_set(x_29, 3, x_15); +lean_closure_set(x_29, 4, x_28); +lean_closure_set(x_29, 5, x_16); +lean_closure_set(x_29, 6, x_3); +x_30 = lean_array_get_size(x_27); +x_31 = lean_nat_dec_eq(x_30, x_2); +if (x_31 == 0) +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_32 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__2; +lean_inc(x_2); +x_33 = l_Nat_reprFast(x_2); +x_34 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_34, 0, x_33); +x_35 = l_Lean_MessageData_ofFormat(x_34); +x_36 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_36, 0, x_32); +lean_ctor_set(x_36, 1, x_35); +x_37 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__4; +x_38 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_38, 0, x_36); -lean_ctor_set(x_38, 1, x_27); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_35); -lean_ctor_set(x_39, 1, x_38); -x_15 = x_39; -x_16 = x_37; -goto block_20; -} -block_46: +lean_ctor_set(x_38, 1, x_37); +x_39 = l_Lean_MessageData_ofExpr(x_20); +x_40 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +x_41 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__6; +x_42 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +x_43 = l_Nat_reprFast(x_30); +x_44 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_44, 0, x_43); +x_45 = l_Lean_MessageData_ofFormat(x_44); +x_46 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_46, 0, x_42); +lean_ctor_set(x_46, 1, x_45); +x_47 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_48 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_47); +x_49 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__10___boxed), 9, 1); +lean_closure_set(x_49, 0, x_48); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_50 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_49, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_50) == 0) { -lean_object* x_44; lean_object* x_45; -x_44 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_44, 0, x_42); -lean_ctor_set(x_44, 1, x_27); -x_45 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_45, 0, x_41); -lean_ctor_set(x_45, 1, x_44); -x_15 = x_45; -x_16 = x_43; -goto block_20; -} -block_51: -{ -lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_48 = lean_array_push(x_24, x_47); -x_49 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_49, 0, x_26); -lean_ctor_set(x_49, 1, x_27); -x_50 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_50, 0, x_48); -lean_ctor_set(x_50, 1, x_49); -x_15 = x_50; -x_16 = x_14; -goto block_20; -} -block_64: -{ -if (x_55 == 0) -{ -lean_object* x_56; -lean_dec_ref(x_54); -x_56 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_53, x_55, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_52); -if (lean_obj_tag(x_56) == 0) -{ -lean_object* x_57; lean_object* x_58; -x_57 = lean_ctor_get(x_56, 1); -lean_inc(x_57); -lean_dec_ref(x_56); -x_58 = lean_array_push(x_24, x_47); -x_35 = x_58; -x_36 = x_26; -x_37 = x_57; -goto block_40; +lean_object* x_51; lean_object* x_52; lean_object* x_53; +x_51 = lean_ctor_get(x_50, 0); +lean_inc(x_51); +x_52 = lean_ctor_get(x_50, 1); +lean_inc(x_52); +lean_dec_ref(x_50); +x_53 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9(x_27, x_12, x_19, x_29, x_14, x_24, x_2, x_21, x_4, x_15, x_16, x_17, x_51, x_5, x_6, x_7, x_8, x_9, x_10, x_52); +lean_dec(x_51); +return x_53; } else { -uint8_t x_59; -lean_dec(x_47); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_59 = !lean_is_exclusive(x_56); -if (x_59 == 0) -{ -return x_56; -} -else -{ -lean_object* x_60; lean_object* x_61; lean_object* x_62; -x_60 = lean_ctor_get(x_56, 0); -x_61 = lean_ctor_get(x_56, 1); -lean_inc(x_61); -lean_inc(x_60); -lean_dec(x_56); -x_62 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_62, 0, x_60); -lean_ctor_set(x_62, 1, x_61); -return x_62; -} -} -} -else -{ -lean_object* x_63; -lean_dec_ref(x_53); -lean_dec(x_47); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_63 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_63, 0, x_54); -lean_ctor_set(x_63, 1, x_52); -return x_63; -} -} -block_77: -{ -if (x_68 == 0) -{ -lean_object* x_69; -lean_dec_ref(x_67); -x_69 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_66, x_68, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_65); -if (lean_obj_tag(x_69) == 0) -{ -lean_object* x_70; lean_object* x_71; -x_70 = lean_ctor_get(x_69, 1); -lean_inc(x_70); -lean_dec_ref(x_69); -x_71 = lean_array_push(x_24, x_47); -x_29 = x_71; -x_30 = x_26; -x_31 = x_70; -goto block_34; -} -else -{ -uint8_t x_72; -lean_dec(x_47); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_72 = !lean_is_exclusive(x_69); -if (x_72 == 0) -{ -return x_69; -} -else -{ -lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_73 = lean_ctor_get(x_69, 0); -x_74 = lean_ctor_get(x_69, 1); -lean_inc(x_74); -lean_inc(x_73); -lean_dec(x_69); -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 -{ -lean_object* x_76; -lean_dec_ref(x_66); -lean_dec(x_47); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_76 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_76, 0, x_67); -lean_ctor_set(x_76, 1, x_65); -return x_76; -} -} -} -block_20: -{ -size_t x_17; size_t x_18; -x_17 = 1; -x_18 = lean_usize_add(x_4, x_17); -x_4 = x_18; -x_5 = x_15; -x_14 = x_16; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8___redArg(lean_object* x_1, lean_object* x_2, size_t x_3, size_t 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) { -_start: -{ -lean_object* x_15; lean_object* x_16; uint8_t x_21; -x_21 = lean_usize_dec_lt(x_4, x_3); -if (x_21 == 0) -{ -lean_object* x_22; -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_5); -lean_ctor_set(x_22, 1, x_14); -return x_22; -} -else -{ -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_35; lean_object* x_36; lean_object* x_37; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_47; lean_object* x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; lean_object* x_78; lean_object* x_79; uint8_t x_80; -x_23 = lean_ctor_get(x_5, 1); -lean_inc(x_23); -x_24 = lean_ctor_get(x_5, 0); -lean_inc(x_24); -if (lean_is_exclusive(x_5)) { - lean_ctor_release(x_5, 0); - lean_ctor_release(x_5, 1); - x_25 = x_5; -} else { - lean_dec_ref(x_5); - x_25 = lean_box(0); -} -x_26 = lean_ctor_get(x_23, 0); -lean_inc(x_26); -x_27 = lean_ctor_get(x_23, 1); -lean_inc(x_27); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - lean_ctor_release(x_23, 1); - x_28 = x_23; -} else { - lean_dec_ref(x_23); - x_28 = lean_box(0); -} -x_47 = lean_array_uget(x_2, x_4); -lean_inc(x_47); -x_78 = l_Lean_Syntax_getKind(x_47); -x_79 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__2; -x_80 = lean_name_eq(x_78, x_79); -if (x_80 == 0) -{ -lean_object* x_81; uint8_t x_82; -x_81 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__4; -x_82 = lean_name_eq(x_78, x_81); -if (x_82 == 0) -{ -lean_object* x_83; uint8_t x_84; -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_25); -x_83 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__6; -x_84 = lean_name_eq(x_78, x_83); -lean_dec(x_78); -if (x_84 == 0) -{ -lean_object* x_85; uint8_t x_86; -lean_dec(x_47); -lean_dec(x_26); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_85 = l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg(x_14); -x_86 = !lean_is_exclusive(x_85); -if (x_86 == 0) -{ -return x_85; -} -else -{ -lean_object* x_87; lean_object* x_88; lean_object* x_89; -x_87 = lean_ctor_get(x_85, 0); -x_88 = lean_ctor_get(x_85, 1); -lean_inc(x_88); -lean_inc(x_87); -lean_dec(x_85); -x_89 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_89, 0, x_87); -lean_ctor_set(x_89, 1, x_88); -return x_89; -} -} -else -{ -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_90 = lean_array_push(x_24, x_47); -x_91 = lean_box(x_21); -x_92 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_92, 0, x_26); -lean_ctor_set(x_92, 1, x_91); -x_93 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_93, 0, x_90); -lean_ctor_set(x_93, 1, x_92); -x_15 = x_93; -x_16 = x_14; -goto block_20; -} -} -else -{ -lean_object* x_94; lean_object* x_95; uint8_t x_96; -lean_dec(x_78); -x_94 = lean_unsigned_to_nat(0u); -x_95 = l_Lean_Syntax_getArg(x_47, x_94); -x_96 = l_Lean_Syntax_isNone(x_95); -lean_dec(x_95); -if (x_96 == 0) -{ -lean_dec(x_28); -lean_dec(x_25); -goto block_51; -} -else -{ -lean_object* x_97; uint8_t x_98; -x_97 = l_Lean_Syntax_getArg(x_47, x_1); -x_98 = l_Lean_Syntax_isNone(x_97); -lean_dec(x_97); -if (x_98 == 0) -{ -lean_dec(x_28); -lean_dec(x_25); -goto block_51; -} -else -{ -lean_object* x_99; -x_99 = l_Lean_Meta_saveState___redArg(x_11, x_13, x_14); -if (lean_obj_tag(x_99) == 0) -{ -lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_152; lean_object* x_210; lean_object* x_211; -x_100 = lean_ctor_get(x_99, 0); -lean_inc(x_100); -x_101 = lean_ctor_get(x_99, 1); -lean_inc(x_101); -lean_dec_ref(x_99); -x_102 = lean_unsigned_to_nat(2u); -x_103 = l_Lean_Syntax_getArg(x_47, x_102); -x_210 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__9; -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_103); -x_211 = l_Lean_Elab_Term_resolveId_x3f(x_103, x_210, x_21, x_8, x_9, x_10, x_11, x_12, x_13, x_101); -if (lean_obj_tag(x_211) == 0) -{ -lean_dec(x_100); -x_152 = x_211; -goto block_209; -} -else -{ -lean_object* x_212; lean_object* x_213; uint8_t x_214; uint8_t x_223; -x_212 = lean_ctor_get(x_211, 0); -lean_inc(x_212); -x_213 = lean_ctor_get(x_211, 1); -lean_inc(x_213); -x_223 = l_Lean_Exception_isInterrupt(x_212); -if (x_223 == 0) -{ -uint8_t x_224; -x_224 = l_Lean_Exception_isRuntime(x_212); -lean_dec(x_212); -x_214 = x_224; -goto block_222; -} -else -{ -lean_dec(x_212); -x_214 = x_223; -goto block_222; -} -block_222: -{ -if (x_214 == 0) -{ -lean_object* x_215; -lean_dec_ref(x_211); -x_215 = l_Lean_Meta_SavedState_restore___redArg(x_100, x_11, x_13, x_213); -lean_dec(x_100); -if (lean_obj_tag(x_215) == 0) -{ -lean_object* x_216; lean_object* x_217; -x_216 = lean_ctor_get(x_215, 1); -lean_inc(x_216); -lean_dec_ref(x_215); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_103); -x_217 = l_Lean_Elab_Term_elabCDotFunctionAlias_x3f(x_103, x_8, x_9, x_10, x_11, x_12, x_13, x_216); -x_152 = x_217; -goto block_209; -} -else -{ -uint8_t x_218; -lean_dec(x_103); -lean_dec(x_47); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) -{ -return x_215; -} -else -{ -lean_object* x_219; lean_object* x_220; lean_object* x_221; -x_219 = lean_ctor_get(x_215, 0); -x_220 = lean_ctor_get(x_215, 1); -lean_inc(x_220); -lean_inc(x_219); -lean_dec(x_215); -x_221 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_221, 0, x_219); -lean_ctor_set(x_221, 1, x_220); -return x_221; -} -} -} -else -{ -lean_dec(x_213); -lean_dec(x_100); -x_152 = x_211; -goto block_209; -} -} -} -block_151: -{ -uint8_t x_109; -x_109 = !lean_is_exclusive(x_106); -if (x_109 == 0) -{ -lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; uint8_t x_119; -x_110 = lean_ctor_get(x_106, 5); -x_111 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__8; -lean_inc(x_103); -x_112 = l_Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2093_(x_103, x_94); -x_113 = l_Lean_MessageData_ofFormat(x_112); -x_114 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_114, 0, x_111); -lean_ctor_set(x_114, 1, x_113); -x_115 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -x_116 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_116, 0, x_114); -lean_ctor_set(x_116, 1, x_115); -x_117 = l_Lean_replaceRef(x_103, x_110); -lean_dec(x_110); -lean_dec(x_103); -lean_ctor_set(x_106, 5, x_117); -x_118 = l_Lean_throwError___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg(x_116, x_104, x_105, x_106, x_107, x_108); -lean_dec(x_107); -lean_dec_ref(x_106); -lean_dec(x_105); -lean_dec_ref(x_104); -x_119 = !lean_is_exclusive(x_118); -if (x_119 == 0) -{ -return x_118; -} -else -{ -lean_object* x_120; lean_object* x_121; lean_object* x_122; -x_120 = lean_ctor_get(x_118, 0); -x_121 = lean_ctor_get(x_118, 1); -lean_inc(x_121); -lean_inc(x_120); -lean_dec(x_118); -x_122 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_122, 0, x_120); -lean_ctor_set(x_122, 1, x_121); -return x_122; -} -} -else -{ -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; uint8_t x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; -x_123 = lean_ctor_get(x_106, 0); -x_124 = lean_ctor_get(x_106, 1); -x_125 = lean_ctor_get(x_106, 2); -x_126 = lean_ctor_get(x_106, 3); -x_127 = lean_ctor_get(x_106, 4); -x_128 = lean_ctor_get(x_106, 5); -x_129 = lean_ctor_get(x_106, 6); -x_130 = lean_ctor_get(x_106, 7); -x_131 = lean_ctor_get(x_106, 8); -x_132 = lean_ctor_get(x_106, 9); -x_133 = lean_ctor_get(x_106, 10); -x_134 = lean_ctor_get_uint8(x_106, sizeof(void*)*13); -x_135 = lean_ctor_get(x_106, 11); -x_136 = lean_ctor_get_uint8(x_106, sizeof(void*)*13 + 1); -x_137 = lean_ctor_get(x_106, 12); -lean_inc(x_137); -lean_inc(x_135); -lean_inc(x_133); -lean_inc(x_132); -lean_inc(x_131); -lean_inc(x_130); -lean_inc(x_129); -lean_inc(x_128); -lean_inc(x_127); -lean_inc(x_126); -lean_inc(x_125); -lean_inc(x_124); -lean_inc(x_123); -lean_dec(x_106); -x_138 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__8; -lean_inc(x_103); -x_139 = l_Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2093_(x_103, x_94); -x_140 = l_Lean_MessageData_ofFormat(x_139); -x_141 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_141, 0, x_138); -lean_ctor_set(x_141, 1, x_140); -x_142 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -x_143 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_143, 0, x_141); -lean_ctor_set(x_143, 1, x_142); -x_144 = l_Lean_replaceRef(x_103, x_128); -lean_dec(x_128); -lean_dec(x_103); -x_145 = lean_alloc_ctor(0, 13, 2); -lean_ctor_set(x_145, 0, x_123); -lean_ctor_set(x_145, 1, x_124); -lean_ctor_set(x_145, 2, x_125); -lean_ctor_set(x_145, 3, x_126); -lean_ctor_set(x_145, 4, x_127); -lean_ctor_set(x_145, 5, x_144); -lean_ctor_set(x_145, 6, x_129); -lean_ctor_set(x_145, 7, x_130); -lean_ctor_set(x_145, 8, x_131); -lean_ctor_set(x_145, 9, x_132); -lean_ctor_set(x_145, 10, x_133); -lean_ctor_set(x_145, 11, x_135); -lean_ctor_set(x_145, 12, x_137); -lean_ctor_set_uint8(x_145, sizeof(void*)*13, x_134); -lean_ctor_set_uint8(x_145, sizeof(void*)*13 + 1, x_136); -x_146 = l_Lean_throwError___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg(x_143, x_104, x_105, x_145, x_107, x_108); -lean_dec(x_107); -lean_dec_ref(x_145); -lean_dec(x_105); -lean_dec_ref(x_104); -x_147 = lean_ctor_get(x_146, 0); -lean_inc(x_147); -x_148 = lean_ctor_get(x_146, 1); -lean_inc(x_148); -if (lean_is_exclusive(x_146)) { - lean_ctor_release(x_146, 0); - lean_ctor_release(x_146, 1); - x_149 = x_146; -} else { - lean_dec_ref(x_146); - x_149 = lean_box(0); -} -if (lean_is_scalar(x_149)) { - x_150 = lean_alloc_ctor(1, 2, 0); -} else { - x_150 = x_149; -} -lean_ctor_set(x_150, 0, x_147); -lean_ctor_set(x_150, 1, x_148); -return x_150; -} -} -block_209: -{ -if (lean_obj_tag(x_152) == 0) -{ -lean_object* x_153; -x_153 = lean_ctor_get(x_152, 0); -lean_inc(x_153); -if (lean_obj_tag(x_153) == 0) -{ -lean_object* x_154; -lean_dec(x_47); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_9); -lean_dec_ref(x_8); -x_154 = lean_ctor_get(x_152, 1); -lean_inc(x_154); -lean_dec_ref(x_152); -x_104 = x_10; -x_105 = x_11; -x_106 = x_12; -x_107 = x_13; -x_108 = x_154; -goto block_151; -} -else -{ -lean_object* x_155; -x_155 = lean_ctor_get(x_153, 0); -lean_inc(x_155); -lean_dec_ref(x_153); -switch (lean_obj_tag(x_155)) { -case 1: -{ -lean_object* x_156; lean_object* x_157; lean_object* x_158; -lean_dec(x_103); -lean_dec(x_28); -lean_dec(x_25); -x_156 = lean_ctor_get(x_152, 1); -lean_inc(x_156); -lean_dec_ref(x_152); -x_157 = lean_ctor_get(x_155, 0); -lean_inc(x_157); -lean_inc_ref(x_10); -x_158 = l_Lean_Meta_getFVarLocalDecl___redArg(x_155, x_10, x_12, x_13, x_156); -lean_dec_ref(x_155); -if (lean_obj_tag(x_158) == 0) -{ -lean_object* x_159; lean_object* x_160; -x_159 = lean_ctor_get(x_158, 1); -lean_inc(x_159); -lean_dec_ref(x_158); -x_160 = l_Lean_Elab_Tactic_saveState___redArg(x_7, x_9, x_11, x_13, x_159); -if (lean_obj_tag(x_160) == 0) -{ -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; -x_161 = lean_ctor_get(x_160, 0); -lean_inc(x_161); -x_162 = lean_ctor_get(x_160, 1); -lean_inc(x_162); -lean_dec_ref(x_160); -x_163 = lean_unsigned_to_nat(1000u); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -x_164 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal(x_157, x_163, x_10, x_11, x_12, x_13, x_162); -if (lean_obj_tag(x_164) == 0) -{ -lean_object* x_165; lean_object* x_166; lean_object* x_167; -lean_dec(x_161); -lean_dec(x_47); -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_ref(x_164); -x_167 = l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry(x_26, x_165); -x_35 = x_24; -x_36 = x_167; -x_37 = x_166; -goto block_40; -} -else -{ -lean_object* x_168; lean_object* x_169; uint8_t x_170; -x_168 = lean_ctor_get(x_164, 0); -lean_inc(x_168); -x_169 = lean_ctor_get(x_164, 1); -lean_inc(x_169); -lean_dec_ref(x_164); -x_170 = l_Lean_Exception_isInterrupt(x_168); -if (x_170 == 0) -{ -uint8_t x_171; -x_171 = l_Lean_Exception_isRuntime(x_168); -x_52 = x_168; -x_53 = x_161; -x_54 = x_169; -x_55 = x_171; -goto block_64; -} -else -{ -x_52 = x_168; -x_53 = x_161; -x_54 = x_169; -x_55 = x_170; -goto block_64; -} -} -} -else -{ -uint8_t x_172; -lean_dec(x_157); -lean_dec(x_47); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_172 = !lean_is_exclusive(x_160); -if (x_172 == 0) -{ -return x_160; -} -else -{ -lean_object* x_173; lean_object* x_174; lean_object* x_175; -x_173 = lean_ctor_get(x_160, 0); -x_174 = lean_ctor_get(x_160, 1); -lean_inc(x_174); -lean_inc(x_173); -lean_dec(x_160); -x_175 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_175, 0, x_173); -lean_ctor_set(x_175, 1, x_174); -return x_175; -} -} -} -else -{ -uint8_t x_176; -lean_dec(x_157); -lean_dec(x_47); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_176 = !lean_is_exclusive(x_158); -if (x_176 == 0) -{ -return x_158; -} -else -{ -lean_object* x_177; lean_object* x_178; lean_object* x_179; -x_177 = lean_ctor_get(x_158, 0); -x_178 = lean_ctor_get(x_158, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_158); -x_179 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_179, 0, x_177); -lean_ctor_set(x_179, 1, x_178); -return x_179; -} -} -} -case 4: -{ -lean_object* x_180; lean_object* x_181; lean_object* x_182; -lean_dec(x_103); -x_180 = lean_ctor_get(x_152, 1); -lean_inc(x_180); -lean_dec_ref(x_152); -x_181 = lean_ctor_get(x_155, 0); -lean_inc(x_181); -lean_dec_ref(x_155); -lean_inc_ref(x_12); -lean_inc(x_181); -x_182 = l_Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2(x_181, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_180); -if (lean_obj_tag(x_182) == 0) -{ -lean_object* x_183; lean_object* x_184; -x_183 = lean_ctor_get(x_182, 1); -lean_inc(x_183); -lean_dec_ref(x_182); -x_184 = l_Lean_Elab_Tactic_saveState___redArg(x_7, x_9, x_11, x_13, x_183); -if (lean_obj_tag(x_184) == 0) -{ -lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_185 = lean_ctor_get(x_184, 0); -lean_inc(x_185); -x_186 = lean_ctor_get(x_184, 1); -lean_inc(x_186); -lean_dec_ref(x_184); -x_187 = lean_unsigned_to_nat(1000u); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -x_188 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromConst(x_181, x_187, x_10, x_11, x_12, x_13, x_186); -if (lean_obj_tag(x_188) == 0) -{ -lean_object* x_189; lean_object* x_190; lean_object* x_191; -lean_dec(x_185); -lean_dec(x_47); -x_189 = lean_ctor_get(x_188, 0); -lean_inc(x_189); -x_190 = lean_ctor_get(x_188, 1); -lean_inc(x_190); -lean_dec_ref(x_188); -x_191 = l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry(x_26, x_189); -x_29 = x_24; -x_30 = x_191; -x_31 = x_190; -goto block_34; -} -else -{ -lean_object* x_192; lean_object* x_193; uint8_t x_194; -x_192 = lean_ctor_get(x_188, 0); -lean_inc(x_192); -x_193 = lean_ctor_get(x_188, 1); -lean_inc(x_193); -lean_dec_ref(x_188); -x_194 = l_Lean_Exception_isInterrupt(x_192); -if (x_194 == 0) -{ -uint8_t x_195; -x_195 = l_Lean_Exception_isRuntime(x_192); -x_65 = x_193; -x_66 = x_185; -x_67 = x_192; -x_68 = x_195; -goto block_77; -} -else -{ -x_65 = x_193; -x_66 = x_185; -x_67 = x_192; -x_68 = x_194; -goto block_77; -} -} -} -else -{ -uint8_t x_196; -lean_dec(x_181); -lean_dec(x_47); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_196 = !lean_is_exclusive(x_184); -if (x_196 == 0) -{ -return x_184; -} -else -{ -lean_object* x_197; lean_object* x_198; lean_object* x_199; -x_197 = lean_ctor_get(x_184, 0); -x_198 = lean_ctor_get(x_184, 1); -lean_inc(x_198); -lean_inc(x_197); -lean_dec(x_184); -x_199 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_199, 0, x_197); -lean_ctor_set(x_199, 1, x_198); -return x_199; -} -} -} -else -{ -uint8_t x_200; -lean_dec(x_181); -lean_dec(x_47); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_200 = !lean_is_exclusive(x_182); -if (x_200 == 0) -{ -return x_182; -} -else -{ -lean_object* x_201; lean_object* x_202; lean_object* x_203; -x_201 = lean_ctor_get(x_182, 0); -x_202 = lean_ctor_get(x_182, 1); -lean_inc(x_202); -lean_inc(x_201); -lean_dec(x_182); -x_203 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_203, 0, x_201); -lean_ctor_set(x_203, 1, x_202); -return x_203; -} -} -} -default: -{ -lean_object* x_204; -lean_dec(x_155); -lean_dec(x_47); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_9); -lean_dec_ref(x_8); -x_204 = lean_ctor_get(x_152, 1); -lean_inc(x_204); -lean_dec_ref(x_152); -x_104 = x_10; -x_105 = x_11; -x_106 = x_12; -x_107 = x_13; -x_108 = x_204; -goto block_151; -} -} -} -} -else -{ -uint8_t x_205; -lean_dec(x_103); -lean_dec(x_47); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_205 = !lean_is_exclusive(x_152); -if (x_205 == 0) -{ -return x_152; -} -else -{ -lean_object* x_206; lean_object* x_207; lean_object* x_208; -x_206 = lean_ctor_get(x_152, 0); -x_207 = lean_ctor_get(x_152, 1); -lean_inc(x_207); -lean_inc(x_206); -lean_dec(x_152); -x_208 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_208, 0, x_206); -lean_ctor_set(x_208, 1, x_207); -return x_208; -} -} -} -} -else -{ -uint8_t x_225; -lean_dec(x_47); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_225 = !lean_is_exclusive(x_99); -if (x_225 == 0) -{ -return x_99; -} -else -{ -lean_object* x_226; lean_object* x_227; lean_object* x_228; -x_226 = lean_ctor_get(x_99, 0); -x_227 = lean_ctor_get(x_99, 1); -lean_inc(x_227); -lean_inc(x_226); -lean_dec(x_99); -x_228 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_228, 0, x_226); -lean_ctor_set(x_228, 1, x_227); -return x_228; -} -} -} -} -} -} -else -{ -lean_object* x_229; -lean_dec(x_78); -lean_dec(x_28); -lean_dec(x_25); -x_229 = l_Lean_Elab_Tactic_saveState___redArg(x_7, x_9, x_11, x_13, x_14); -if (lean_obj_tag(x_229) == 0) -{ -lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; uint8_t x_235; lean_object* x_245; lean_object* x_246; lean_object* x_250; lean_object* x_257; lean_object* x_258; -x_230 = lean_ctor_get(x_229, 0); -lean_inc(x_230); -x_231 = lean_ctor_get(x_229, 1); -lean_inc(x_231); -if (lean_is_exclusive(x_229)) { - lean_ctor_release(x_229, 0); - lean_ctor_release(x_229, 1); - x_232 = x_229; -} else { - lean_dec_ref(x_229); - x_232 = lean_box(0); -} -x_257 = l_Lean_Syntax_getArg(x_47, x_1); -lean_inc_ref(x_12); -lean_inc_ref(x_10); -lean_inc(x_257); -x_258 = l_Lean_Elab_Term_isLocalIdent_x3f(x_257, x_8, x_9, x_10, x_11, x_12, x_13, x_231); -if (lean_obj_tag(x_258) == 0) -{ -lean_object* x_259; -x_259 = lean_ctor_get(x_258, 0); -lean_inc(x_259); -if (lean_obj_tag(x_259) == 0) -{ -lean_object* x_260; lean_object* x_261; -x_260 = lean_ctor_get(x_258, 1); -lean_inc(x_260); -lean_dec_ref(x_258); -x_261 = l_Lean_Elab_Tactic_saveState___redArg(x_7, x_9, x_11, x_13, x_260); -if (lean_obj_tag(x_261) == 0) -{ -lean_object* x_262; lean_object* x_263; lean_object* x_264; -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_ref(x_261); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_257); -x_264 = l_Lean_Elab_realizeGlobalConstNoOverloadWithInfo(x_257, x_259, x_12, x_13, x_263); -if (lean_obj_tag(x_264) == 0) -{ -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -lean_dec(x_262); -lean_dec(x_257); -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -lean_dec_ref(x_264); -x_267 = lean_unsigned_to_nat(1000u); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -x_268 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromConst(x_265, x_267, x_10, x_11, x_12, x_13, x_266); -if (lean_obj_tag(x_268) == 0) -{ -lean_object* x_269; lean_object* x_270; lean_object* x_271; -lean_dec(x_232); -lean_dec(x_230); -lean_dec(x_47); -x_269 = lean_ctor_get(x_268, 0); -lean_inc(x_269); -x_270 = lean_ctor_get(x_268, 1); -lean_inc(x_270); -lean_dec_ref(x_268); -x_271 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___lam__0(x_24, x_26, x_269, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_270); -x_250 = x_271; -goto block_256; -} -else -{ -lean_object* x_272; lean_object* x_273; -x_272 = lean_ctor_get(x_268, 0); -lean_inc(x_272); -x_273 = lean_ctor_get(x_268, 1); -lean_inc(x_273); -lean_dec_ref(x_268); -x_245 = x_272; -x_246 = x_273; -goto block_249; -} -} -else -{ -lean_object* x_274; lean_object* x_275; uint8_t x_276; uint8_t x_304; -x_274 = lean_ctor_get(x_264, 0); -lean_inc(x_274); -x_275 = lean_ctor_get(x_264, 1); -lean_inc(x_275); -lean_dec_ref(x_264); -x_304 = l_Lean_Exception_isInterrupt(x_274); -if (x_304 == 0) -{ -uint8_t x_305; -x_305 = l_Lean_Exception_isRuntime(x_274); -x_276 = x_305; -goto block_303; -} -else -{ -x_276 = x_304; -goto block_303; -} -block_303: -{ -if (x_276 == 0) -{ -lean_object* x_277; -lean_dec(x_274); -x_277 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_262, x_276, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_275); -if (lean_obj_tag(x_277) == 0) -{ -lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; uint8_t x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; -x_278 = lean_ctor_get(x_277, 1); -lean_inc(x_278); -lean_dec_ref(x_277); -x_279 = lean_ctor_get(x_12, 0); -lean_inc_ref(x_279); -x_280 = lean_ctor_get(x_12, 1); -lean_inc_ref(x_280); -x_281 = lean_ctor_get(x_12, 2); -lean_inc(x_281); -x_282 = lean_ctor_get(x_12, 3); -lean_inc(x_282); -x_283 = lean_ctor_get(x_12, 4); -lean_inc(x_283); -x_284 = lean_ctor_get(x_12, 5); -lean_inc(x_284); -x_285 = lean_ctor_get(x_12, 6); -lean_inc(x_285); -x_286 = lean_ctor_get(x_12, 7); -lean_inc(x_286); -x_287 = lean_ctor_get(x_12, 8); -lean_inc(x_287); -x_288 = lean_ctor_get(x_12, 9); -lean_inc(x_288); -x_289 = lean_ctor_get(x_12, 10); -lean_inc(x_289); -x_290 = lean_ctor_get_uint8(x_12, sizeof(void*)*13); -x_291 = lean_ctor_get(x_12, 11); -lean_inc(x_291); -x_292 = lean_ctor_get_uint8(x_12, sizeof(void*)*13 + 1); -x_293 = lean_ctor_get(x_12, 12); -lean_inc_ref(x_293); -x_294 = l_Lean_Syntax_getId(x_257); -x_295 = lean_erase_macro_scopes(x_294); -x_296 = l_Lean_replaceRef(x_257, x_284); -lean_dec(x_284); -lean_dec(x_257); -x_297 = lean_alloc_ctor(0, 13, 2); -lean_ctor_set(x_297, 0, x_279); -lean_ctor_set(x_297, 1, x_280); -lean_ctor_set(x_297, 2, x_281); -lean_ctor_set(x_297, 3, x_282); -lean_ctor_set(x_297, 4, x_283); -lean_ctor_set(x_297, 5, x_296); -lean_ctor_set(x_297, 6, x_285); -lean_ctor_set(x_297, 7, x_286); -lean_ctor_set(x_297, 8, x_287); -lean_ctor_set(x_297, 9, x_288); -lean_ctor_set(x_297, 10, x_289); -lean_ctor_set(x_297, 11, x_291); -lean_ctor_set(x_297, 12, x_293); -lean_ctor_set_uint8(x_297, sizeof(void*)*13, x_290); -lean_ctor_set_uint8(x_297, sizeof(void*)*13 + 1, x_292); -x_298 = l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___redArg(x_295, x_6, x_7, x_8, x_9, x_10, x_11, x_297, x_13, x_278); -x_299 = lean_ctor_get(x_298, 0); -lean_inc(x_299); -x_300 = lean_ctor_get(x_298, 1); -lean_inc(x_300); -lean_dec_ref(x_298); -x_245 = x_299; -x_246 = x_300; -goto block_249; -} -else -{ -lean_object* x_301; lean_object* x_302; -lean_dec(x_257); -x_301 = lean_ctor_get(x_277, 0); -lean_inc(x_301); -x_302 = lean_ctor_get(x_277, 1); -lean_inc(x_302); -lean_dec_ref(x_277); -x_245 = x_301; -x_246 = x_302; -goto block_249; -} -} -else -{ -lean_dec(x_262); -lean_dec(x_257); -x_245 = x_274; -x_246 = x_275; -goto block_249; -} -} -} -} -else -{ -lean_object* x_306; lean_object* x_307; -lean_dec(x_257); -x_306 = lean_ctor_get(x_261, 0); -lean_inc(x_306); -x_307 = lean_ctor_get(x_261, 1); -lean_inc(x_307); -lean_dec_ref(x_261); -x_245 = x_306; -x_246 = x_307; -goto block_249; -} -} -else -{ -lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; -lean_dec(x_257); -x_308 = lean_ctor_get(x_258, 1); -lean_inc(x_308); -lean_dec_ref(x_258); -x_309 = lean_ctor_get(x_259, 0); -lean_inc(x_309); -lean_dec_ref(x_259); -x_310 = l_Lean_Expr_fvarId_x21(x_309); -lean_dec(x_309); -x_311 = lean_unsigned_to_nat(1000u); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -x_312 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal(x_310, x_311, x_10, x_11, x_12, x_13, x_308); -if (lean_obj_tag(x_312) == 0) -{ -lean_object* x_313; lean_object* x_314; lean_object* x_315; -lean_dec(x_232); -lean_dec(x_230); -lean_dec(x_47); -x_313 = lean_ctor_get(x_312, 0); -lean_inc(x_313); -x_314 = lean_ctor_get(x_312, 1); -lean_inc(x_314); -lean_dec_ref(x_312); -x_315 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___lam__0(x_24, x_26, x_313, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_314); -x_250 = x_315; -goto block_256; -} -else -{ -lean_object* x_316; lean_object* x_317; -x_316 = lean_ctor_get(x_312, 0); -lean_inc(x_316); -x_317 = lean_ctor_get(x_312, 1); -lean_inc(x_317); -lean_dec_ref(x_312); -x_245 = x_316; -x_246 = x_317; -goto block_249; -} -} -} -else -{ -lean_object* x_318; lean_object* x_319; -lean_dec(x_257); -x_318 = lean_ctor_get(x_258, 0); -lean_inc(x_318); -x_319 = lean_ctor_get(x_258, 1); -lean_inc(x_319); -lean_dec_ref(x_258); -x_245 = x_318; -x_246 = x_319; -goto block_249; -} -block_244: -{ -if (x_235 == 0) -{ -lean_object* x_236; -lean_dec_ref(x_233); -lean_dec(x_232); -x_236 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_230, x_235, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_234); -if (lean_obj_tag(x_236) == 0) -{ -lean_object* x_237; lean_object* x_238; -x_237 = lean_ctor_get(x_236, 1); -lean_inc(x_237); -lean_dec_ref(x_236); -x_238 = lean_array_push(x_24, x_47); -x_41 = x_238; -x_42 = x_26; -x_43 = x_237; -goto block_46; -} -else -{ -uint8_t x_239; -lean_dec(x_47); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_239 = !lean_is_exclusive(x_236); -if (x_239 == 0) -{ -return x_236; -} -else -{ -lean_object* x_240; lean_object* x_241; lean_object* x_242; -x_240 = lean_ctor_get(x_236, 0); -x_241 = lean_ctor_get(x_236, 1); -lean_inc(x_241); -lean_inc(x_240); -lean_dec(x_236); -x_242 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_242, 0, x_240); -lean_ctor_set(x_242, 1, x_241); -return x_242; -} -} -} -else -{ -lean_object* x_243; -lean_dec(x_230); -lean_dec(x_47); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -if (lean_is_scalar(x_232)) { - x_243 = lean_alloc_ctor(1, 2, 0); -} else { - x_243 = x_232; - lean_ctor_set_tag(x_243, 1); -} -lean_ctor_set(x_243, 0, x_233); -lean_ctor_set(x_243, 1, x_234); -return x_243; -} -} -block_249: -{ -uint8_t x_247; -x_247 = l_Lean_Exception_isInterrupt(x_245); -if (x_247 == 0) -{ -uint8_t x_248; -x_248 = l_Lean_Exception_isRuntime(x_245); -x_233 = x_245; -x_234 = x_246; -x_235 = x_248; -goto block_244; -} -else -{ -x_233 = x_245; -x_234 = x_246; -x_235 = x_247; -goto block_244; -} -} -block_256: -{ -lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; -x_251 = lean_ctor_get(x_250, 0); -lean_inc(x_251); -x_252 = lean_ctor_get(x_251, 1); -lean_inc(x_252); -lean_dec(x_251); -x_253 = lean_ctor_get(x_250, 1); -lean_inc(x_253); -lean_dec_ref(x_250); -x_254 = lean_ctor_get(x_252, 0); -lean_inc(x_254); -x_255 = lean_ctor_get(x_252, 1); -lean_inc(x_255); -lean_dec(x_252); -x_41 = x_254; -x_42 = x_255; -x_43 = x_253; -goto block_46; -} -} -else -{ -uint8_t x_320; -lean_dec(x_47); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_320 = !lean_is_exclusive(x_229); -if (x_320 == 0) -{ -return x_229; -} -else -{ -lean_object* x_321; lean_object* x_322; lean_object* x_323; -x_321 = lean_ctor_get(x_229, 0); -x_322 = lean_ctor_get(x_229, 1); -lean_inc(x_322); -lean_inc(x_321); -lean_dec(x_229); -x_323 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_323, 0, x_321); -lean_ctor_set(x_323, 1, x_322); -return x_323; -} -} -} -block_34: -{ -lean_object* x_32; lean_object* x_33; -if (lean_is_scalar(x_28)) { - x_32 = lean_alloc_ctor(0, 2, 0); -} else { - x_32 = x_28; -} -lean_ctor_set(x_32, 0, x_30); -lean_ctor_set(x_32, 1, x_27); -if (lean_is_scalar(x_25)) { - x_33 = lean_alloc_ctor(0, 2, 0); -} else { - x_33 = x_25; -} -lean_ctor_set(x_33, 0, x_29); -lean_ctor_set(x_33, 1, x_32); -x_15 = x_33; -x_16 = x_31; -goto block_20; -} -block_40: -{ -lean_object* x_38; lean_object* x_39; -x_38 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_38, 0, x_36); -lean_ctor_set(x_38, 1, x_27); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_35); -lean_ctor_set(x_39, 1, x_38); -x_15 = x_39; -x_16 = x_37; -goto block_20; -} -block_46: -{ -lean_object* x_44; lean_object* x_45; -x_44 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_44, 0, x_42); -lean_ctor_set(x_44, 1, x_27); -x_45 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_45, 0, x_41); -lean_ctor_set(x_45, 1, x_44); -x_15 = x_45; -x_16 = x_43; -goto block_20; -} -block_51: -{ -lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_48 = lean_array_push(x_24, x_47); -x_49 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_49, 0, x_26); -lean_ctor_set(x_49, 1, x_27); -x_50 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_50, 0, x_48); -lean_ctor_set(x_50, 1, x_49); -x_15 = x_50; -x_16 = x_14; -goto block_20; -} -block_64: -{ -if (x_55 == 0) -{ -lean_object* x_56; -lean_dec_ref(x_52); -x_56 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_53, x_55, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_54); -if (lean_obj_tag(x_56) == 0) -{ -lean_object* x_57; lean_object* x_58; -x_57 = lean_ctor_get(x_56, 1); -lean_inc(x_57); -lean_dec_ref(x_56); -x_58 = lean_array_push(x_24, x_47); -x_35 = x_58; -x_36 = x_26; -x_37 = x_57; -goto block_40; -} -else -{ -uint8_t x_59; -lean_dec(x_47); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_59 = !lean_is_exclusive(x_56); -if (x_59 == 0) -{ -return x_56; -} -else -{ -lean_object* x_60; lean_object* x_61; lean_object* x_62; -x_60 = lean_ctor_get(x_56, 0); -x_61 = lean_ctor_get(x_56, 1); -lean_inc(x_61); -lean_inc(x_60); -lean_dec(x_56); -x_62 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_62, 0, x_60); -lean_ctor_set(x_62, 1, x_61); -return x_62; -} -} -} -else -{ -lean_object* x_63; -lean_dec_ref(x_53); -lean_dec(x_47); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_63 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_63, 0, x_52); -lean_ctor_set(x_63, 1, x_54); -return x_63; -} -} -block_77: -{ -if (x_68 == 0) -{ -lean_object* x_69; -lean_dec_ref(x_67); -x_69 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_66, x_68, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_65); -if (lean_obj_tag(x_69) == 0) -{ -lean_object* x_70; lean_object* x_71; -x_70 = lean_ctor_get(x_69, 1); -lean_inc(x_70); -lean_dec_ref(x_69); -x_71 = lean_array_push(x_24, x_47); -x_29 = x_71; -x_30 = x_26; -x_31 = x_70; -goto block_34; -} -else -{ -uint8_t x_72; -lean_dec(x_47); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_72 = !lean_is_exclusive(x_69); -if (x_72 == 0) -{ -return x_69; -} -else -{ -lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_73 = lean_ctor_get(x_69, 0); -x_74 = lean_ctor_get(x_69, 1); -lean_inc(x_74); -lean_inc(x_73); -lean_dec(x_69); -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 -{ -lean_object* x_76; -lean_dec_ref(x_66); -lean_dec(x_47); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_26); -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_76 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_76, 0, x_67); -lean_ctor_set(x_76, 1, x_65); -return x_76; -} -} -} -block_20: -{ -size_t x_17; size_t x_18; lean_object* x_19; -x_17 = 1; -x_18 = lean_usize_add(x_4, x_17); -x_19 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8(x_1, x_2, x_3, x_18, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_16); -return x_19; -} -} -} -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, size_t x_8, size_t x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { -_start: -{ -lean_object* x_20; -x_20 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8___redArg(x_1, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); -return x_20; -} -} -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__10___redArg(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; lean_object* x_14; uint8_t x_19; -x_19 = lean_usize_dec_lt(x_3, x_2); -if (x_19 == 0) -{ -lean_object* x_20; -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -x_20 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_20, 0, x_4); -lean_ctor_set(x_20, 1, x_12); -return x_20; -} -else -{ -lean_object* x_21; lean_object* x_22; uint8_t x_23; -x_21 = lean_array_uget(x_1, x_3); -lean_inc(x_21); -x_22 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_22, 0, x_21); -lean_inc_ref(x_4); -x_23 = l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased(x_4, x_22); -if (x_23 == 0) -{ -lean_object* x_24; -x_24 = l_Lean_Elab_Tactic_saveState___redArg(x_5, x_7, x_9, x_11, x_12); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -x_26 = lean_ctor_get(x_24, 1); -lean_inc(x_26); +uint8_t x_54; +lean_dec_ref(x_29); +lean_dec_ref(x_27); lean_dec_ref(x_24); -x_27 = lean_unsigned_to_nat(1000u); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -x_28 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal(x_21, x_27, x_8, x_9, x_10, x_11, x_26); -if (lean_obj_tag(x_28) == 0) -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -lean_dec(x_25); -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -x_30 = lean_ctor_get(x_28, 1); -lean_inc(x_30); -lean_dec_ref(x_28); -x_31 = l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry(x_4, x_29); -x_13 = x_31; -x_14 = x_30; -goto block_18; -} -else -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; uint8_t x_44; -x_32 = lean_ctor_get(x_28, 0); -lean_inc(x_32); -x_33 = lean_ctor_get(x_28, 1); -lean_inc(x_33); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - lean_ctor_release(x_28, 1); - x_34 = x_28; -} else { - lean_dec_ref(x_28); - x_34 = lean_box(0); -} -x_44 = l_Lean_Exception_isInterrupt(x_32); -if (x_44 == 0) -{ -uint8_t x_45; -x_45 = l_Lean_Exception_isRuntime(x_32); -x_35 = x_45; -goto block_43; -} -else -{ -x_35 = x_44; -goto block_43; -} -block_43: -{ -if (x_35 == 0) -{ -lean_object* x_36; -lean_dec(x_34); -lean_dec(x_32); -x_36 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_25, x_35, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_33); -if (lean_obj_tag(x_36) == 0) -{ -lean_object* x_37; -x_37 = lean_ctor_get(x_36, 1); -lean_inc(x_37); -lean_dec_ref(x_36); -x_13 = x_4; -x_14 = x_37; -goto block_18; -} -else -{ -uint8_t x_38; -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); +lean_dec_ref(x_21); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); lean_dec_ref(x_4); -x_38 = !lean_is_exclusive(x_36); -if (x_38 == 0) +lean_dec(x_2); +x_54 = !lean_is_exclusive(x_50); +if (x_54 == 0) { -return x_36; +return x_50; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_36, 0); -x_40 = lean_ctor_get(x_36, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_36); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_55 = lean_ctor_get(x_50, 0); +x_56 = lean_ctor_get(x_50, 1); +lean_inc(x_56); +lean_inc(x_55); +lean_dec(x_50); +x_57 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_55); +lean_ctor_set(x_57, 1, x_56); +return x_57; } } } else { -lean_object* x_42; -lean_dec(x_25); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_4); -if (lean_is_scalar(x_34)) { - x_42 = lean_alloc_ctor(1, 2, 0); -} else { - x_42 = x_34; -} -lean_ctor_set(x_42, 0, x_32); -lean_ctor_set(x_42, 1, x_33); -return x_42; -} -} +lean_object* x_58; lean_object* x_59; +lean_dec(x_30); +lean_dec_ref(x_20); +x_58 = lean_box(0); +x_59 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9(x_27, x_12, x_19, x_29, x_14, x_24, x_2, x_21, x_4, x_15, x_16, x_17, x_58, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_59; } } else { -uint8_t x_46; -lean_dec(x_21); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_4); -x_46 = !lean_is_exclusive(x_24); -if (x_46 == 0) +lean_object* x_60; +lean_dec(x_3); +lean_dec(x_2); +x_60 = lean_apply_8(x_4, x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_60; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38_spec__38___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: { -return x_24; +uint8_t x_11; uint8_t x_12; lean_object* x_13; +x_11 = 0; +x_12 = 0; +x_13 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg(x_1, x_11, x_2, x_3, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_13; } -else +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38_spec__38(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_24, 0); -x_48 = lean_ctor_get(x_24, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_24); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; +lean_object* x_12; +x_12 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38_spec__38___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_12; } } -} -else +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__0(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, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: { -lean_dec(x_21); -x_13 = x_4; -x_14 = x_12; -goto block_18; +lean_object* x_12; +x_12 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_1, x_2, x_3, x_7, x_8, x_9, x_10, x_11); +return x_12; } } -block_18: +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: { -size_t x_15; size_t x_16; -x_15 = 1; -x_16 = lean_usize_add(x_3, x_15); -x_3 = x_16; -x_4 = x_13; -x_12 = x_14; -goto _start; +lean_object* x_11; +x_11 = l_Lean_Meta_trySynthInstance(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; } } +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_isExprDefEq(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__10(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_ProofMode_transferHypNames(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__4(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_10; +x_10 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_1, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__5(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { _start: { lean_object* x_14; -x_14 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__10___redArg(x_1, x_2, x_3, x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x_11, x_12, x_13); return x_14; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__0() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(1u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Frame", 5, 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("frame", 5, 5); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22) { +_start: +{ +lean_object* x_23; +lean_inc(x_21); +lean_inc_ref(x_20); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc_ref(x_15); +lean_inc_ref(x_2); +x_23 = lean_apply_10(x_1, x_2, x_15, x_3, x_16, x_17, x_18, x_19, x_20, x_21, x_22); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t 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; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec_ref(x_23); +x_26 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__0; +x_27 = lean_array_push(x_26, x_15); +x_28 = 1; +x_29 = 1; +x_30 = lean_box(x_4); +x_31 = lean_box(x_28); +x_32 = lean_box(x_29); +x_33 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__5___boxed), 13, 5); +lean_closure_set(x_33, 0, x_27); +lean_closure_set(x_33, 1, x_24); +lean_closure_set(x_33, 2, x_30); +lean_closure_set(x_33, 3, x_31); +lean_closure_set(x_33, 4, x_32); +x_34 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_33, x_16, x_17, x_18, x_19, x_20, x_21, x_25); +lean_dec(x_17); +if (lean_obj_tag(x_34) == 0) +{ +uint8_t x_35; +x_35 = !lean_is_exclusive(x_34); +if (x_35 == 0) +{ +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_36 = lean_ctor_get(x_34, 0); +x_37 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__1; +x_38 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__2; +x_39 = l_Lean_Name_mkStr6(x_5, x_6, x_7, x_8, x_37, x_38); +x_40 = l_Lean_Expr_const___override(x_39, x_9); +x_41 = l_Lean_mkApp7(x_40, x_10, x_11, x_12, x_13, x_2, x_14, x_36); +lean_ctor_set(x_34, 0, x_41); +return x_34; +} +else +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_42 = lean_ctor_get(x_34, 0); +x_43 = lean_ctor_get(x_34, 1); +lean_inc(x_43); +lean_inc(x_42); +lean_dec(x_34); +x_44 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__1; +x_45 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__2; +x_46 = l_Lean_Name_mkStr6(x_5, x_6, x_7, x_8, x_44, x_45); +x_47 = l_Lean_Expr_const___override(x_46, x_9); +x_48 = l_Lean_mkApp7(x_47, x_10, x_11, x_12, x_13, x_2, x_14, x_42); +x_49 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_49, 1, x_43); +return x_49; +} +} +else +{ +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_2); +return x_34; +} +} +else +{ +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_2); +return x_23; +} +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__0() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg___closed__0; +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_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__2; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; +x_4 = l_Lean_Name_mkStr3(x_3, x_2, x_1); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("HasFrame", 8, 8); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__3() { +_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_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__2; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__2; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_5 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; +x_6 = l_Lean_Name_mkStr5(x_5, x_4, x_3, x_2, x_1); +return x_6; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("True", 4, 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__4; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__5; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("h", 1, 1); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__7; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_1); +if (x_11 == 0) +{ +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_19; lean_object* x_20; lean_object* x_21; +x_12 = lean_ctor_get(x_1, 0); +x_13 = lean_ctor_get(x_1, 1); +x_14 = lean_ctor_get(x_1, 2); +x_15 = lean_ctor_get(x_1, 3); +x_16 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__0; +x_17 = 0; +x_18 = lean_box(0); +x_19 = lean_box(x_17); +x_20 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__0___boxed), 11, 3); +lean_closure_set(x_20, 0, x_16); +lean_closure_set(x_20, 1, x_19); +lean_closure_set(x_20, 2, x_18); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_21 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_20, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_21) == 0) +{ +uint8_t x_22; +x_22 = !lean_is_exclusive(x_21); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_23 = lean_ctor_get(x_21, 0); +x_24 = lean_ctor_get(x_21, 1); +x_25 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; +x_26 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_27 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__2; +x_28 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__1; +x_29 = lean_box(0); +lean_inc(x_12); +lean_ctor_set_tag(x_21, 1); +lean_ctor_set(x_21, 1, x_29); +lean_ctor_set(x_21, 0, x_12); +lean_inc_ref(x_21); +x_30 = l_Lean_Expr_const___override(x_28, x_21); +lean_inc_ref(x_13); +x_31 = l_Lean_Expr_app___override(x_30, x_13); +x_32 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_32, 0, x_31); +x_33 = lean_box(x_17); +x_34 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__0___boxed), 11, 3); +lean_closure_set(x_34, 0, x_32); +lean_closure_set(x_34, 1, x_33); +lean_closure_set(x_34, 2, x_18); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_35 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_34, x_4, x_5, x_6, x_7, x_8, x_9, x_24); +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; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_36 = lean_ctor_get(x_35, 0); +lean_inc(x_36); +x_37 = lean_ctor_get(x_35, 1); +lean_inc(x_37); +lean_dec_ref(x_35); +x_38 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3; +x_39 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__3; +lean_inc_ref(x_21); +x_40 = l_Lean_Expr_const___override(x_39, x_21); +lean_inc(x_23); +lean_inc(x_36); +lean_inc_ref(x_14); +lean_inc_ref(x_13); +x_41 = l_Lean_mkApp4(x_40, x_13, x_14, x_36, x_23); +x_42 = lean_box(0); +x_43 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__2___boxed), 10, 2); +lean_closure_set(x_43, 0, x_41); +lean_closure_set(x_43, 1, x_42); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_44 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_43, x_4, x_5, x_6, x_7, x_8, x_9, x_37); +if (lean_obj_tag(x_44) == 0) +{ +lean_object* x_45; +x_45 = lean_ctor_get(x_44, 0); +lean_inc(x_45); +if (lean_obj_tag(x_45) == 1) +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_46 = lean_ctor_get(x_44, 1); +lean_inc(x_46); +lean_dec_ref(x_44); +x_47 = lean_ctor_get(x_45, 0); +lean_inc(x_47); +lean_dec_ref(x_45); +x_48 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__6; +lean_inc(x_23); +x_49 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__1___boxed), 10, 2); +lean_closure_set(x_49, 0, x_48); +lean_closure_set(x_49, 1, x_23); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_50 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_49, x_4, x_5, x_6, x_7, x_8, x_9, x_46); +if (lean_obj_tag(x_50) == 0) +{ +lean_object* x_51; uint8_t x_52; +x_51 = lean_ctor_get(x_50, 0); +lean_inc(x_51); +x_52 = lean_unbox(x_51); +if (x_52 == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; +lean_dec_ref(x_2); +x_53 = lean_ctor_get(x_50, 1); +lean_inc(x_53); +lean_dec_ref(x_50); +lean_inc_ref(x_14); +x_54 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__3___boxed), 10, 2); +lean_closure_set(x_54, 0, x_14); +lean_closure_set(x_54, 1, x_36); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_55 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_54, x_4, x_5, x_6, x_7, x_8, x_9, x_53); +if (lean_obj_tag(x_55) == 0) +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_56 = lean_ctor_get(x_55, 0); +lean_inc(x_56); +x_57 = lean_ctor_get(x_55, 1); +lean_inc(x_57); +lean_dec_ref(x_55); +x_58 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__8; +x_59 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__4___boxed), 9, 1); +lean_closure_set(x_59, 0, x_58); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_60 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_59, x_4, x_5, x_6, x_7, x_8, x_9, x_57); +if (lean_obj_tag(x_60) == 0) +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_61 = lean_ctor_get(x_60, 0); +lean_inc(x_61); +x_62 = lean_ctor_get(x_60, 1); +lean_inc(x_62); +lean_dec_ref(x_60); +lean_inc_ref(x_15); +lean_inc(x_56); +lean_inc_ref(x_13); +lean_ctor_set(x_1, 2, x_56); +lean_inc(x_23); +x_63 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___boxed), 22, 14); +lean_closure_set(x_63, 0, x_3); +lean_closure_set(x_63, 1, x_23); +lean_closure_set(x_63, 2, x_1); +lean_closure_set(x_63, 3, x_51); +lean_closure_set(x_63, 4, x_25); +lean_closure_set(x_63, 5, x_26); +lean_closure_set(x_63, 6, x_27); +lean_closure_set(x_63, 7, x_38); +lean_closure_set(x_63, 8, x_21); +lean_closure_set(x_63, 9, x_13); +lean_closure_set(x_63, 10, x_14); +lean_closure_set(x_63, 11, x_56); +lean_closure_set(x_63, 12, x_15); +lean_closure_set(x_63, 13, x_47); +x_64 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38_spec__38___redArg(x_61, x_23, x_63, x_4, x_5, x_6, x_7, x_8, x_9, x_62); +return x_64; +} +else +{ +uint8_t x_65; +lean_dec(x_56); +lean_dec(x_51); +lean_dec(x_47); +lean_dec_ref(x_21); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_65 = !lean_is_exclusive(x_60); +if (x_65 == 0) +{ +return x_60; +} +else +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_66 = lean_ctor_get(x_60, 0); +x_67 = lean_ctor_get(x_60, 1); +lean_inc(x_67); +lean_inc(x_66); +lean_dec(x_60); +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 +{ +lean_dec(x_51); +lean_dec(x_47); +lean_dec_ref(x_21); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +return x_55; +} +} +else +{ +lean_object* x_69; lean_object* x_70; +lean_dec(x_51); +lean_dec(x_47); +lean_dec(x_36); +lean_dec_ref(x_21); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_3); +x_69 = lean_ctor_get(x_50, 1); +lean_inc(x_69); +lean_dec_ref(x_50); +x_70 = lean_apply_7(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_69); +return x_70; +} +} +else +{ +uint8_t x_71; +lean_dec(x_47); +lean_dec(x_36); +lean_dec_ref(x_21); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_71 = !lean_is_exclusive(x_50); +if (x_71 == 0) +{ +return x_50; +} +else +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_72 = lean_ctor_get(x_50, 0); +x_73 = lean_ctor_get(x_50, 1); +lean_inc(x_73); +lean_inc(x_72); +lean_dec(x_50); +x_74 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_74, 0, x_72); +lean_ctor_set(x_74, 1, x_73); +return x_74; +} +} +} +else +{ +lean_object* x_75; lean_object* x_76; +lean_dec(x_45); +lean_dec(x_36); +lean_dec_ref(x_21); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_3); +x_75 = lean_ctor_get(x_44, 1); +lean_inc(x_75); +lean_dec_ref(x_44); +x_76 = lean_apply_7(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_75); +return x_76; +} +} +else +{ +uint8_t x_77; +lean_dec(x_36); +lean_dec_ref(x_21); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_77 = !lean_is_exclusive(x_44); +if (x_77 == 0) +{ +return x_44; +} +else +{ +lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_78 = lean_ctor_get(x_44, 0); +x_79 = lean_ctor_get(x_44, 1); +lean_inc(x_79); +lean_inc(x_78); +lean_dec(x_44); +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; +} +} +} +else +{ +lean_dec_ref(x_21); +lean_dec(x_23); +lean_free_object(x_1); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +return x_35; +} +} +else +{ +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; +x_81 = lean_ctor_get(x_21, 0); +x_82 = lean_ctor_get(x_21, 1); +lean_inc(x_82); +lean_inc(x_81); +lean_dec(x_21); +x_83 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; +x_84 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_85 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__2; +x_86 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__1; +x_87 = lean_box(0); +lean_inc(x_12); +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_12); +lean_ctor_set(x_88, 1, x_87); +lean_inc_ref(x_88); +x_89 = l_Lean_Expr_const___override(x_86, x_88); +lean_inc_ref(x_13); +x_90 = l_Lean_Expr_app___override(x_89, x_13); +x_91 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_91, 0, x_90); +x_92 = lean_box(x_17); +x_93 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__0___boxed), 11, 3); +lean_closure_set(x_93, 0, x_91); +lean_closure_set(x_93, 1, x_92); +lean_closure_set(x_93, 2, x_18); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_94 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_93, x_4, x_5, x_6, x_7, x_8, x_9, x_82); +if (lean_obj_tag(x_94) == 0) +{ +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; +x_95 = lean_ctor_get(x_94, 0); +lean_inc(x_95); +x_96 = lean_ctor_get(x_94, 1); +lean_inc(x_96); +lean_dec_ref(x_94); +x_97 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3; +x_98 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__3; +lean_inc_ref(x_88); +x_99 = l_Lean_Expr_const___override(x_98, x_88); +lean_inc(x_81); +lean_inc(x_95); +lean_inc_ref(x_14); +lean_inc_ref(x_13); +x_100 = l_Lean_mkApp4(x_99, x_13, x_14, x_95, x_81); +x_101 = lean_box(0); +x_102 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__2___boxed), 10, 2); +lean_closure_set(x_102, 0, x_100); +lean_closure_set(x_102, 1, x_101); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_103 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_102, x_4, x_5, x_6, x_7, x_8, x_9, x_96); +if (lean_obj_tag(x_103) == 0) +{ +lean_object* x_104; +x_104 = lean_ctor_get(x_103, 0); +lean_inc(x_104); +if (lean_obj_tag(x_104) == 1) +{ +lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; +x_105 = lean_ctor_get(x_103, 1); +lean_inc(x_105); +lean_dec_ref(x_103); +x_106 = lean_ctor_get(x_104, 0); +lean_inc(x_106); +lean_dec_ref(x_104); +x_107 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__6; +lean_inc(x_81); +x_108 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__1___boxed), 10, 2); +lean_closure_set(x_108, 0, x_107); +lean_closure_set(x_108, 1, x_81); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_109 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_108, x_4, x_5, x_6, x_7, x_8, x_9, x_105); +if (lean_obj_tag(x_109) == 0) +{ +lean_object* x_110; uint8_t x_111; +x_110 = lean_ctor_get(x_109, 0); +lean_inc(x_110); +x_111 = lean_unbox(x_110); +if (x_111 == 0) +{ +lean_object* x_112; lean_object* x_113; lean_object* x_114; +lean_dec_ref(x_2); +x_112 = lean_ctor_get(x_109, 1); +lean_inc(x_112); +lean_dec_ref(x_109); +lean_inc_ref(x_14); +x_113 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__3___boxed), 10, 2); +lean_closure_set(x_113, 0, x_14); +lean_closure_set(x_113, 1, x_95); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_114 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_113, x_4, x_5, x_6, x_7, x_8, x_9, x_112); +if (lean_obj_tag(x_114) == 0) +{ +lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; +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_ref(x_114); +x_117 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__8; +x_118 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__4___boxed), 9, 1); +lean_closure_set(x_118, 0, x_117); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_119 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_118, x_4, x_5, x_6, x_7, x_8, x_9, x_116); +if (lean_obj_tag(x_119) == 0) +{ +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; +x_120 = lean_ctor_get(x_119, 0); +lean_inc(x_120); +x_121 = lean_ctor_get(x_119, 1); +lean_inc(x_121); +lean_dec_ref(x_119); +lean_inc_ref(x_15); +lean_inc(x_115); +lean_inc_ref(x_13); +lean_ctor_set(x_1, 2, x_115); +lean_inc(x_81); +x_122 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___boxed), 22, 14); +lean_closure_set(x_122, 0, x_3); +lean_closure_set(x_122, 1, x_81); +lean_closure_set(x_122, 2, x_1); +lean_closure_set(x_122, 3, x_110); +lean_closure_set(x_122, 4, x_83); +lean_closure_set(x_122, 5, x_84); +lean_closure_set(x_122, 6, x_85); +lean_closure_set(x_122, 7, x_97); +lean_closure_set(x_122, 8, x_88); +lean_closure_set(x_122, 9, x_13); +lean_closure_set(x_122, 10, x_14); +lean_closure_set(x_122, 11, x_115); +lean_closure_set(x_122, 12, x_15); +lean_closure_set(x_122, 13, x_106); +x_123 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38_spec__38___redArg(x_120, x_81, x_122, x_4, x_5, x_6, x_7, x_8, x_9, x_121); +return x_123; +} +else +{ +lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; +lean_dec(x_115); +lean_dec(x_110); +lean_dec(x_106); +lean_dec_ref(x_88); +lean_dec(x_81); +lean_free_object(x_1); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_124 = lean_ctor_get(x_119, 0); +lean_inc(x_124); +x_125 = lean_ctor_get(x_119, 1); +lean_inc(x_125); +if (lean_is_exclusive(x_119)) { + lean_ctor_release(x_119, 0); + lean_ctor_release(x_119, 1); + x_126 = x_119; +} else { + lean_dec_ref(x_119); + x_126 = lean_box(0); +} +if (lean_is_scalar(x_126)) { + x_127 = lean_alloc_ctor(1, 2, 0); +} else { + x_127 = x_126; +} +lean_ctor_set(x_127, 0, x_124); +lean_ctor_set(x_127, 1, x_125); +return x_127; +} +} +else +{ +lean_dec(x_110); +lean_dec(x_106); +lean_dec_ref(x_88); +lean_dec(x_81); +lean_free_object(x_1); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +return x_114; +} +} +else +{ +lean_object* x_128; lean_object* x_129; +lean_dec(x_110); +lean_dec(x_106); +lean_dec(x_95); +lean_dec_ref(x_88); +lean_dec(x_81); +lean_free_object(x_1); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_3); +x_128 = lean_ctor_get(x_109, 1); +lean_inc(x_128); +lean_dec_ref(x_109); +x_129 = lean_apply_7(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_128); +return x_129; +} +} +else +{ +lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; +lean_dec(x_106); +lean_dec(x_95); +lean_dec_ref(x_88); +lean_dec(x_81); +lean_free_object(x_1); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_130 = lean_ctor_get(x_109, 0); +lean_inc(x_130); +x_131 = lean_ctor_get(x_109, 1); +lean_inc(x_131); +if (lean_is_exclusive(x_109)) { + lean_ctor_release(x_109, 0); + lean_ctor_release(x_109, 1); + x_132 = x_109; +} else { + lean_dec_ref(x_109); + x_132 = lean_box(0); +} +if (lean_is_scalar(x_132)) { + x_133 = lean_alloc_ctor(1, 2, 0); +} else { + x_133 = x_132; +} +lean_ctor_set(x_133, 0, x_130); +lean_ctor_set(x_133, 1, x_131); +return x_133; +} +} +else +{ +lean_object* x_134; lean_object* x_135; +lean_dec(x_104); +lean_dec(x_95); +lean_dec_ref(x_88); +lean_dec(x_81); +lean_free_object(x_1); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_3); +x_134 = lean_ctor_get(x_103, 1); +lean_inc(x_134); +lean_dec_ref(x_103); +x_135 = lean_apply_7(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_134); +return x_135; +} +} +else +{ +lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; +lean_dec(x_95); +lean_dec_ref(x_88); +lean_dec(x_81); +lean_free_object(x_1); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_136 = lean_ctor_get(x_103, 0); +lean_inc(x_136); +x_137 = lean_ctor_get(x_103, 1); +lean_inc(x_137); +if (lean_is_exclusive(x_103)) { + lean_ctor_release(x_103, 0); + lean_ctor_release(x_103, 1); + x_138 = x_103; +} else { + lean_dec_ref(x_103); + x_138 = lean_box(0); +} +if (lean_is_scalar(x_138)) { + x_139 = lean_alloc_ctor(1, 2, 0); +} else { + x_139 = x_138; +} +lean_ctor_set(x_139, 0, x_136); +lean_ctor_set(x_139, 1, x_137); +return x_139; +} +} +else +{ +lean_dec_ref(x_88); +lean_dec(x_81); +lean_free_object(x_1); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +return x_94; +} +} +} +else +{ +lean_free_object(x_1); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +return x_21; +} +} +else +{ +lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; uint8_t x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; +x_140 = lean_ctor_get(x_1, 0); +x_141 = lean_ctor_get(x_1, 1); +x_142 = lean_ctor_get(x_1, 2); +x_143 = lean_ctor_get(x_1, 3); +lean_inc(x_143); +lean_inc(x_142); +lean_inc(x_141); +lean_inc(x_140); +lean_dec(x_1); +x_144 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__0; +x_145 = 0; +x_146 = lean_box(0); +x_147 = lean_box(x_145); +x_148 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__0___boxed), 11, 3); +lean_closure_set(x_148, 0, x_144); +lean_closure_set(x_148, 1, x_147); +lean_closure_set(x_148, 2, x_146); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_149 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_148, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_149) == 0) +{ +lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; +} else { + lean_dec_ref(x_149); + x_152 = lean_box(0); +} +x_153 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; +x_154 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_155 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__2; +x_156 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__1; +x_157 = lean_box(0); +lean_inc(x_140); +if (lean_is_scalar(x_152)) { + x_158 = lean_alloc_ctor(1, 2, 0); +} else { + x_158 = x_152; + lean_ctor_set_tag(x_158, 1); +} +lean_ctor_set(x_158, 0, x_140); +lean_ctor_set(x_158, 1, x_157); +lean_inc_ref(x_158); +x_159 = l_Lean_Expr_const___override(x_156, x_158); +lean_inc_ref(x_141); +x_160 = l_Lean_Expr_app___override(x_159, x_141); +x_161 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_161, 0, x_160); +x_162 = lean_box(x_145); +x_163 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__0___boxed), 11, 3); +lean_closure_set(x_163, 0, x_161); +lean_closure_set(x_163, 1, x_162); +lean_closure_set(x_163, 2, x_146); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_164 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_163, x_4, x_5, x_6, x_7, x_8, x_9, x_151); +if (lean_obj_tag(x_164) == 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; lean_object* x_173; +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_ref(x_164); +x_167 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3; +x_168 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__3; +lean_inc_ref(x_158); +x_169 = l_Lean_Expr_const___override(x_168, x_158); +lean_inc(x_150); +lean_inc(x_165); +lean_inc_ref(x_142); +lean_inc_ref(x_141); +x_170 = l_Lean_mkApp4(x_169, x_141, x_142, x_165, x_150); +x_171 = lean_box(0); +x_172 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__2___boxed), 10, 2); +lean_closure_set(x_172, 0, x_170); +lean_closure_set(x_172, 1, x_171); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_173 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_172, x_4, x_5, x_6, x_7, x_8, x_9, x_166); +if (lean_obj_tag(x_173) == 0) +{ +lean_object* x_174; +x_174 = lean_ctor_get(x_173, 0); +lean_inc(x_174); +if (lean_obj_tag(x_174) == 1) +{ +lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; +x_175 = lean_ctor_get(x_173, 1); +lean_inc(x_175); +lean_dec_ref(x_173); +x_176 = lean_ctor_get(x_174, 0); +lean_inc(x_176); +lean_dec_ref(x_174); +x_177 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__6; +lean_inc(x_150); +x_178 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__1___boxed), 10, 2); +lean_closure_set(x_178, 0, x_177); +lean_closure_set(x_178, 1, x_150); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_179 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_178, x_4, x_5, x_6, x_7, x_8, x_9, x_175); +if (lean_obj_tag(x_179) == 0) +{ +lean_object* x_180; uint8_t x_181; +x_180 = lean_ctor_get(x_179, 0); +lean_inc(x_180); +x_181 = lean_unbox(x_180); +if (x_181 == 0) +{ +lean_object* x_182; lean_object* x_183; lean_object* x_184; +lean_dec_ref(x_2); +x_182 = lean_ctor_get(x_179, 1); +lean_inc(x_182); +lean_dec_ref(x_179); +lean_inc_ref(x_142); +x_183 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__3___boxed), 10, 2); +lean_closure_set(x_183, 0, x_142); +lean_closure_set(x_183, 1, x_165); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_184 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_183, x_4, x_5, x_6, x_7, x_8, x_9, x_182); +if (lean_obj_tag(x_184) == 0) +{ +lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; +x_185 = lean_ctor_get(x_184, 0); +lean_inc(x_185); +x_186 = lean_ctor_get(x_184, 1); +lean_inc(x_186); +lean_dec_ref(x_184); +x_187 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__8; +x_188 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__4___boxed), 9, 1); +lean_closure_set(x_188, 0, x_187); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_189 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_188, x_4, x_5, x_6, x_7, x_8, x_9, x_186); +if (lean_obj_tag(x_189) == 0) +{ +lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; +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_ref(x_189); +lean_inc_ref(x_143); +lean_inc(x_185); +lean_inc_ref(x_141); +x_192 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_192, 0, x_140); +lean_ctor_set(x_192, 1, x_141); +lean_ctor_set(x_192, 2, x_185); +lean_ctor_set(x_192, 3, x_143); +lean_inc(x_150); +x_193 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___boxed), 22, 14); +lean_closure_set(x_193, 0, x_3); +lean_closure_set(x_193, 1, x_150); +lean_closure_set(x_193, 2, x_192); +lean_closure_set(x_193, 3, x_180); +lean_closure_set(x_193, 4, x_153); +lean_closure_set(x_193, 5, x_154); +lean_closure_set(x_193, 6, x_155); +lean_closure_set(x_193, 7, x_167); +lean_closure_set(x_193, 8, x_158); +lean_closure_set(x_193, 9, x_141); +lean_closure_set(x_193, 10, x_142); +lean_closure_set(x_193, 11, x_185); +lean_closure_set(x_193, 12, x_143); +lean_closure_set(x_193, 13, x_176); +x_194 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38_spec__38___redArg(x_190, x_150, x_193, x_4, x_5, x_6, x_7, x_8, x_9, x_191); +return x_194; +} +else +{ +lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; +lean_dec(x_185); +lean_dec(x_180); +lean_dec(x_176); +lean_dec_ref(x_158); +lean_dec(x_150); +lean_dec_ref(x_143); +lean_dec_ref(x_142); +lean_dec_ref(x_141); +lean_dec(x_140); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_195 = lean_ctor_get(x_189, 0); +lean_inc(x_195); +x_196 = lean_ctor_get(x_189, 1); +lean_inc(x_196); +if (lean_is_exclusive(x_189)) { + lean_ctor_release(x_189, 0); + lean_ctor_release(x_189, 1); + x_197 = x_189; +} else { + lean_dec_ref(x_189); + x_197 = lean_box(0); +} +if (lean_is_scalar(x_197)) { + x_198 = lean_alloc_ctor(1, 2, 0); +} else { + x_198 = x_197; +} +lean_ctor_set(x_198, 0, x_195); +lean_ctor_set(x_198, 1, x_196); +return x_198; +} +} +else +{ +lean_dec(x_180); +lean_dec(x_176); +lean_dec_ref(x_158); +lean_dec(x_150); +lean_dec_ref(x_143); +lean_dec_ref(x_142); +lean_dec_ref(x_141); +lean_dec(x_140); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +return x_184; +} +} +else +{ +lean_object* x_199; lean_object* x_200; +lean_dec(x_180); +lean_dec(x_176); +lean_dec(x_165); +lean_dec_ref(x_158); +lean_dec(x_150); +lean_dec_ref(x_143); +lean_dec_ref(x_142); +lean_dec_ref(x_141); +lean_dec(x_140); +lean_dec_ref(x_3); +x_199 = lean_ctor_get(x_179, 1); +lean_inc(x_199); +lean_dec_ref(x_179); +x_200 = lean_apply_7(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_199); +return x_200; +} +} +else +{ +lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; +lean_dec(x_176); +lean_dec(x_165); +lean_dec_ref(x_158); +lean_dec(x_150); +lean_dec_ref(x_143); +lean_dec_ref(x_142); +lean_dec_ref(x_141); +lean_dec(x_140); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_201 = lean_ctor_get(x_179, 0); +lean_inc(x_201); +x_202 = lean_ctor_get(x_179, 1); +lean_inc(x_202); +if (lean_is_exclusive(x_179)) { + lean_ctor_release(x_179, 0); + lean_ctor_release(x_179, 1); + x_203 = x_179; +} else { + lean_dec_ref(x_179); + x_203 = lean_box(0); +} +if (lean_is_scalar(x_203)) { + x_204 = lean_alloc_ctor(1, 2, 0); +} else { + x_204 = x_203; +} +lean_ctor_set(x_204, 0, x_201); +lean_ctor_set(x_204, 1, x_202); +return x_204; +} +} +else +{ +lean_object* x_205; lean_object* x_206; +lean_dec(x_174); +lean_dec(x_165); +lean_dec_ref(x_158); +lean_dec(x_150); +lean_dec_ref(x_143); +lean_dec_ref(x_142); +lean_dec_ref(x_141); +lean_dec(x_140); +lean_dec_ref(x_3); +x_205 = lean_ctor_get(x_173, 1); +lean_inc(x_205); +lean_dec_ref(x_173); +x_206 = lean_apply_7(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_205); +return x_206; +} +} +else +{ +lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +lean_dec(x_165); +lean_dec_ref(x_158); +lean_dec(x_150); +lean_dec_ref(x_143); +lean_dec_ref(x_142); +lean_dec_ref(x_141); +lean_dec(x_140); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_207 = lean_ctor_get(x_173, 0); +lean_inc(x_207); +x_208 = lean_ctor_get(x_173, 1); +lean_inc(x_208); +if (lean_is_exclusive(x_173)) { + lean_ctor_release(x_173, 0); + lean_ctor_release(x_173, 1); + x_209 = x_173; +} else { + lean_dec_ref(x_173); + x_209 = lean_box(0); +} +if (lean_is_scalar(x_209)) { + x_210 = lean_alloc_ctor(1, 2, 0); +} else { + x_210 = x_209; +} +lean_ctor_set(x_210, 0, x_207); +lean_ctor_set(x_210, 1, x_208); +return x_210; +} +} +else +{ +lean_dec_ref(x_158); +lean_dec(x_150); +lean_dec_ref(x_143); +lean_dec_ref(x_142); +lean_dec_ref(x_141); +lean_dec(x_140); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +return x_164; +} +} +else +{ +lean_dec_ref(x_143); +lean_dec_ref(x_142); +lean_dec_ref(x_141); +lean_dec(x_140); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +return x_149; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = lean_apply_8(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38(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_10; lean_object* x_11; lean_object* x_12; +lean_inc_ref(x_2); +x_10 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38___lam__0___boxed), 11, 1); +lean_closure_set(x_10, 0, x_2); +lean_inc_ref(x_1); +x_11 = lean_apply_1(x_2, x_1); +x_12 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38(x_1, x_11, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__0(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; lean_object* x_10; +x_9 = lean_ctor_get(x_4, 2); +lean_inc_ref(x_9); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_mkAppM(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__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_10; +x_10 = lean_infer_type(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_MVarId_getType(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__4(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_10; +x_10 = lean_infer_type(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_rwIfOrMatcher(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_Simp_Result_mkEqMPR(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__8(lean_object* x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +size_t x_11; lean_object* x_12; +x_11 = lean_array_size(x_1); +x_12 = l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10(x_11, x_2, x_1, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__7(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x_11, x_12, x_13); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__9(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x_11, x_12, x_13); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__10(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x_11, x_12, x_13); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_zipWithMAux___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__9(x_1, x_2, x_3, x_4, x_8, x_9, x_10, x_11, x_12); +return x_13; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Unit", 4, 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("unit", 4, 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__1; +x_2 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__0; +x_3 = l_Lean_Name_mkStr2(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__0; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("joinParams: ", 12, 12); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__4; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(", actual joinParams: ", 21, 21); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__6; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13(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, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, size_t x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { +_start: +{ +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_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; uint8_t x_70; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_157; +lean_inc(x_20); +lean_inc_ref(x_19); +lean_inc(x_18); +lean_inc_ref(x_17); +lean_inc_ref(x_15); +lean_inc(x_1); +x_157 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7(x_1, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +if (lean_obj_tag(x_157) == 0) +{ +lean_object* x_158; uint8_t x_159; +x_158 = lean_ctor_get(x_157, 0); +lean_inc(x_158); +x_159 = lean_unbox(x_158); +lean_dec(x_158); +if (x_159 == 0) +{ +lean_object* x_160; +lean_dec(x_1); +x_160 = lean_ctor_get(x_157, 1); +lean_inc(x_160); +lean_dec_ref(x_157); +x_106 = x_15; +x_107 = x_16; +x_108 = x_17; +x_109 = x_18; +x_110 = x_19; +x_111 = x_20; +x_112 = x_160; +goto block_156; +} +else +{ +lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; +x_161 = lean_ctor_get(x_157, 1); +lean_inc(x_161); +lean_dec_ref(x_157); +x_162 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__5; +lean_inc_ref(x_13); +x_163 = lean_array_to_list(x_13); +x_164 = lean_box(0); +x_165 = l_List_mapTR_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__13(x_163, x_164); +x_166 = l_Lean_MessageData_ofList(x_165); +x_167 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_167, 0, x_162); +lean_ctor_set(x_167, 1, x_166); +x_168 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__7; +x_169 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_169, 0, x_167); +lean_ctor_set(x_169, 1, x_168); +lean_inc_ref(x_8); +x_170 = lean_array_to_list(x_8); +x_171 = l_List_mapTR_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__13(x_170, x_164); +x_172 = l_Lean_MessageData_ofList(x_171); +x_173 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_173, 0, x_169); +lean_ctor_set(x_173, 1, x_172); +x_174 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_175 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_175, 0, x_173); +lean_ctor_set(x_175, 1, x_174); +lean_inc(x_20); +lean_inc_ref(x_19); +lean_inc(x_18); +lean_inc_ref(x_17); +lean_inc_ref(x_15); +x_176 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14(x_1, x_175, x_15, x_16, x_17, x_18, x_19, x_20, x_161); +if (lean_obj_tag(x_176) == 0) +{ +lean_object* x_177; +x_177 = lean_ctor_get(x_176, 1); +lean_inc(x_177); +lean_dec_ref(x_176); +x_106 = x_15; +x_107 = x_16; +x_108 = x_17; +x_109 = x_18; +x_110 = x_19; +x_111 = x_20; +x_112 = x_177; +goto block_156; +} +else +{ +uint8_t x_178; +lean_dec(x_20); +lean_dec_ref(x_19); +lean_dec(x_18); +lean_dec_ref(x_17); +lean_dec_ref(x_15); +lean_dec_ref(x_13); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec_ref(x_3); +x_178 = !lean_is_exclusive(x_176); +if (x_178 == 0) +{ +return x_176; +} +else +{ +lean_object* x_179; lean_object* x_180; lean_object* x_181; +x_179 = lean_ctor_get(x_176, 0); +x_180 = lean_ctor_get(x_176, 1); +lean_inc(x_180); +lean_inc(x_179); +lean_dec(x_176); +x_181 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_181, 0, x_179); +lean_ctor_set(x_181, 1, x_180); +return x_181; +} +} +} +} +else +{ +uint8_t x_182; +lean_dec(x_20); +lean_dec_ref(x_19); +lean_dec(x_18); +lean_dec_ref(x_17); +lean_dec_ref(x_15); +lean_dec_ref(x_13); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +x_182 = !lean_is_exclusive(x_157); +if (x_182 == 0) +{ +return x_157; +} +else +{ +lean_object* x_183; lean_object* x_184; lean_object* x_185; +x_183 = lean_ctor_get(x_157, 0); +x_184 = lean_ctor_get(x_157, 1); +lean_inc(x_184); +lean_inc(x_183); +lean_dec(x_157); +x_185 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_185, 0, x_183); +lean_ctor_set(x_185, 1, x_184); +return x_185; +} +} +block_60: +{ +uint8_t x_31; uint8_t x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_31 = 0; +x_32 = 1; +x_33 = lean_box(x_31); +x_34 = lean_box(x_2); +x_35 = lean_box(x_32); +lean_inc_ref(x_13); +x_36 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__7___boxed), 13, 5); +lean_closure_set(x_36, 0, x_13); +lean_closure_set(x_36, 1, x_23); +lean_closure_set(x_36, 2, x_33); +lean_closure_set(x_36, 3, x_34); +lean_closure_set(x_36, 4, x_35); +lean_inc(x_29); +lean_inc_ref(x_28); +lean_inc(x_27); +lean_inc_ref(x_26); +lean_inc_ref(x_24); +x_37 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_36, x_24, x_25, x_26, x_27, x_28, x_29, x_30); +if (lean_obj_tag(x_37) == 0) +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_37, 1); +lean_inc(x_39); +lean_dec_ref(x_37); +x_40 = lean_box(x_31); +x_41 = lean_box(x_2); +x_42 = lean_box(x_32); +x_43 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__9___boxed), 13, 5); +lean_closure_set(x_43, 0, x_13); +lean_closure_set(x_43, 1, x_22); +lean_closure_set(x_43, 2, x_40); +lean_closure_set(x_43, 3, x_41); +lean_closure_set(x_43, 4, x_42); +x_44 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_43, x_24, x_25, x_26, x_27, x_28, x_29, x_39); +if (lean_obj_tag(x_44) == 0) +{ +uint8_t x_45; +x_45 = !lean_is_exclusive(x_44); +if (x_45 == 0) +{ +lean_object* x_46; lean_object* x_47; +x_46 = lean_ctor_get(x_44, 0); +x_47 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_47, 0, x_38); +lean_ctor_set(x_47, 1, x_46); +lean_ctor_set(x_44, 0, x_47); +return x_44; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_48 = lean_ctor_get(x_44, 0); +x_49 = lean_ctor_get(x_44, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_44); +x_50 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_50, 0, x_38); +lean_ctor_set(x_50, 1, x_48); +x_51 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_49); +return x_51; +} +} +else +{ +uint8_t x_52; +lean_dec(x_38); +x_52 = !lean_is_exclusive(x_44); +if (x_52 == 0) +{ +return x_44; +} +else +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_53 = lean_ctor_get(x_44, 0); +x_54 = lean_ctor_get(x_44, 1); +lean_inc(x_54); +lean_inc(x_53); +lean_dec(x_44); +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_54); +return x_55; +} +} +} +else +{ +uint8_t x_56; +lean_dec(x_29); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec_ref(x_24); +lean_dec_ref(x_22); +lean_dec_ref(x_13); +x_56 = !lean_is_exclusive(x_37); +if (x_56 == 0) +{ +return x_37; +} +else +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_57 = lean_ctor_get(x_37, 0); +x_58 = lean_ctor_get(x_37, 1); +lean_inc(x_58); +lean_inc(x_57); +lean_dec(x_37); +x_59 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_59, 0, x_57); +lean_ctor_set(x_59, 1, x_58); +return x_59; +} +} +} +block_83: +{ +uint8_t x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_71 = 1; +x_72 = lean_box(x_70); +x_73 = lean_box(x_2); +x_74 = lean_box(x_71); +x_75 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__10___boxed), 13, 5); +lean_closure_set(x_75, 0, x_3); +lean_closure_set(x_75, 1, x_64); +lean_closure_set(x_75, 2, x_72); +lean_closure_set(x_75, 3, x_73); +lean_closure_set(x_75, 4, x_74); +lean_inc(x_68); +lean_inc_ref(x_67); +lean_inc(x_65); +lean_inc_ref(x_69); +lean_inc_ref(x_62); +x_76 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_75, x_62, x_61, x_69, x_65, x_67, x_68, x_63); +if (lean_obj_tag(x_76) == 0) +{ +lean_object* x_77; lean_object* x_78; +x_77 = lean_ctor_get(x_76, 0); +lean_inc(x_77); +x_78 = lean_ctor_get(x_76, 1); +lean_inc(x_78); +lean_dec_ref(x_76); +x_22 = x_66; +x_23 = x_77; +x_24 = x_62; +x_25 = x_61; +x_26 = x_69; +x_27 = x_65; +x_28 = x_67; +x_29 = x_68; +x_30 = x_78; +goto block_60; +} +else +{ +uint8_t x_79; +lean_dec_ref(x_69); +lean_dec(x_68); +lean_dec_ref(x_67); +lean_dec_ref(x_66); +lean_dec(x_65); +lean_dec_ref(x_62); +lean_dec_ref(x_13); +x_79 = !lean_is_exclusive(x_76); +if (x_79 == 0) +{ +return x_76; +} +else +{ +lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_80 = lean_ctor_get(x_76, 0); +x_81 = lean_ctor_get(x_76, 1); +lean_inc(x_81); +lean_inc(x_80); +lean_dec(x_76); +x_82 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 1, x_81); +return x_82; +} +} +} +block_105: +{ +lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; uint8_t x_99; +x_93 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__2; +lean_inc(x_4); +x_94 = l_Lean_Expr_const___override(x_93, x_4); +x_95 = lean_mk_empty_array_with_capacity(x_5); +x_96 = lean_array_push(x_95, x_94); +x_97 = lean_array_get_size(x_3); +x_98 = lean_array_get_size(x_96); +x_99 = lean_nat_dec_eq(x_97, x_98); +lean_dec(x_98); +if (x_99 == 0) +{ +lean_dec(x_97); +lean_dec_ref(x_96); +lean_dec(x_6); +lean_dec(x_4); +x_61 = x_84; +x_62 = x_85; +x_63 = x_92; +x_64 = x_90; +x_65 = x_88; +x_66 = x_91; +x_67 = x_87; +x_68 = x_89; +x_69 = x_86; +x_70 = x_99; +goto block_83; +} +else +{ +uint8_t x_100; +x_100 = l_Array_isEqvAux___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg(x_3, x_96, x_97); +lean_dec_ref(x_96); +if (x_100 == 0) +{ +lean_dec(x_6); +lean_dec(x_4); +x_61 = x_84; +x_62 = x_85; +x_63 = x_92; +x_64 = x_90; +x_65 = x_88; +x_66 = x_91; +x_67 = x_87; +x_68 = x_89; +x_69 = x_86; +x_70 = x_100; +goto block_83; +} +else +{ +uint8_t x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; +lean_dec_ref(x_3); +x_101 = 0; +x_102 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__3; +x_103 = l_Lean_Expr_const___override(x_102, x_4); +x_104 = l_Lean_Expr_lam___override(x_6, x_103, x_90, x_101); +x_22 = x_91; +x_23 = x_104; +x_24 = x_85; +x_25 = x_84; +x_26 = x_86; +x_27 = x_88; +x_28 = x_87; +x_29 = x_89; +x_30 = x_92; +goto block_60; +} +} +} +block_156: +{ +lean_object* x_113; lean_object* x_114; lean_object* x_115; +x_113 = lean_mk_empty_array_with_capacity(x_7); +lean_inc(x_7); +lean_inc_ref(x_13); +x_114 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__11___boxed), 12, 4); +lean_closure_set(x_114, 0, x_13); +lean_closure_set(x_114, 1, x_8); +lean_closure_set(x_114, 2, x_7); +lean_closure_set(x_114, 3, x_113); +lean_inc(x_111); +lean_inc_ref(x_110); +lean_inc(x_109); +lean_inc_ref(x_108); +lean_inc_ref(x_106); +x_115 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_114, x_106, x_107, x_108, x_109, x_110, x_111, x_112); +if (lean_obj_tag(x_115) == 0) +{ +lean_object* x_116; lean_object* x_117; lean_object* x_118; +x_116 = lean_ctor_get(x_115, 0); +lean_inc(x_116); +x_117 = lean_ctor_get(x_115, 1); +lean_inc(x_117); +lean_dec_ref(x_115); +lean_inc(x_111); +lean_inc_ref(x_110); +lean_inc(x_109); +lean_inc_ref(x_108); +lean_inc_ref(x_106); +x_118 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_9, x_106, x_107, x_108, x_109, x_110, x_111, x_117); +if (lean_obj_tag(x_118) == 0) +{ +lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; +x_119 = lean_ctor_get(x_118, 0); +lean_inc(x_119); +x_120 = lean_ctor_get(x_118, 1); +lean_inc(x_120); +lean_dec_ref(x_118); +x_121 = lean_array_to_list(x_119); +x_122 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__6___boxed), 9, 1); +lean_closure_set(x_122, 0, x_121); +lean_inc(x_111); +lean_inc_ref(x_110); +lean_inc(x_109); +lean_inc_ref(x_108); +lean_inc_ref(x_106); +x_123 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_122, x_106, x_107, x_108, x_109, x_110, x_111, x_120); +if (lean_obj_tag(x_123) == 0) +{ +lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; uint8_t x_130; +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_ref(x_123); +x_126 = lean_array_to_list(x_116); +x_127 = l_Lean_mkAndN(x_126); +x_128 = lean_expr_abstract(x_127, x_10); +lean_dec_ref(x_127); +x_129 = lean_array_get_size(x_11); +x_130 = lean_nat_dec_lt(x_7, x_129); +lean_dec(x_7); +if (x_130 == 0) +{ +lean_dec(x_129); +lean_dec_ref(x_10); +x_84 = x_107; +x_85 = x_106; +x_86 = x_108; +x_87 = x_110; +x_88 = x_109; +x_89 = x_111; +x_90 = x_128; +x_91 = x_124; +x_92 = x_125; +goto block_105; +} +else +{ +lean_object* x_131; lean_object* x_132; size_t x_133; lean_object* x_134; +x_131 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_131, 0, x_128); +lean_ctor_set(x_131, 1, x_124); +x_132 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_132, 0, x_10); +lean_ctor_set(x_132, 1, x_131); +x_133 = lean_usize_of_nat(x_129); +lean_dec(x_129); +lean_inc(x_111); +lean_inc_ref(x_110); +lean_inc(x_109); +lean_inc_ref(x_108); +lean_inc_ref(x_106); +lean_inc(x_4); +x_134 = l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12(x_4, x_11, x_133, x_12, x_132, x_106, x_107, x_108, x_109, x_110, x_111, x_125); +if (lean_obj_tag(x_134) == 0) +{ +lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; +x_135 = lean_ctor_get(x_134, 0); +lean_inc(x_135); +x_136 = lean_ctor_get(x_135, 1); +lean_inc(x_136); +lean_dec(x_135); +x_137 = lean_ctor_get(x_134, 1); +lean_inc(x_137); +lean_dec_ref(x_134); +x_138 = lean_ctor_get(x_136, 0); +lean_inc(x_138); +x_139 = lean_ctor_get(x_136, 1); +lean_inc(x_139); +lean_dec(x_136); +x_84 = x_107; +x_85 = x_106; +x_86 = x_108; +x_87 = x_110; +x_88 = x_109; +x_89 = x_111; +x_90 = x_138; +x_91 = x_139; +x_92 = x_137; +goto block_105; +} +else +{ +uint8_t x_140; +lean_dec(x_111); +lean_dec_ref(x_110); +lean_dec(x_109); +lean_dec_ref(x_108); +lean_dec_ref(x_106); +lean_dec_ref(x_13); +lean_dec(x_6); +lean_dec(x_4); +lean_dec_ref(x_3); +x_140 = !lean_is_exclusive(x_134); +if (x_140 == 0) +{ +return x_134; +} +else +{ +lean_object* x_141; lean_object* x_142; lean_object* x_143; +x_141 = lean_ctor_get(x_134, 0); +x_142 = lean_ctor_get(x_134, 1); +lean_inc(x_142); +lean_inc(x_141); +lean_dec(x_134); +x_143 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_143, 0, x_141); +lean_ctor_set(x_143, 1, x_142); +return x_143; +} +} +} +} +else +{ +uint8_t x_144; +lean_dec(x_116); +lean_dec(x_111); +lean_dec_ref(x_110); +lean_dec(x_109); +lean_dec_ref(x_108); +lean_dec_ref(x_106); +lean_dec_ref(x_13); +lean_dec_ref(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec_ref(x_3); +x_144 = !lean_is_exclusive(x_123); +if (x_144 == 0) +{ +return x_123; +} +else +{ +lean_object* x_145; lean_object* x_146; lean_object* x_147; +x_145 = lean_ctor_get(x_123, 0); +x_146 = lean_ctor_get(x_123, 1); +lean_inc(x_146); +lean_inc(x_145); +lean_dec(x_123); +x_147 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_147, 0, x_145); +lean_ctor_set(x_147, 1, x_146); +return x_147; +} +} +} +else +{ +uint8_t x_148; +lean_dec(x_116); +lean_dec(x_111); +lean_dec_ref(x_110); +lean_dec(x_109); +lean_dec_ref(x_108); +lean_dec_ref(x_106); +lean_dec_ref(x_13); +lean_dec_ref(x_10); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec_ref(x_3); +x_148 = !lean_is_exclusive(x_118); +if (x_148 == 0) +{ +return x_118; +} +else +{ +lean_object* x_149; lean_object* x_150; lean_object* x_151; +x_149 = lean_ctor_get(x_118, 0); +x_150 = lean_ctor_get(x_118, 1); +lean_inc(x_150); +lean_inc(x_149); +lean_dec(x_118); +x_151 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_151, 0, x_149); +lean_ctor_set(x_151, 1, x_150); +return x_151; +} +} +} +else +{ +uint8_t x_152; +lean_dec(x_111); +lean_dec_ref(x_110); +lean_dec(x_109); +lean_dec_ref(x_108); +lean_dec_ref(x_106); +lean_dec_ref(x_13); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec_ref(x_3); +x_152 = !lean_is_exclusive(x_115); +if (x_152 == 0) +{ +return x_115; +} +else +{ +lean_object* x_153; lean_object* x_154; lean_object* x_155; +x_153 = lean_ctor_get(x_115, 0); +x_154 = lean_ctor_get(x_115, 1); +lean_inc(x_154); +lean_inc(x_153); +lean_dec(x_115); +x_155 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_155, 0, x_153); +lean_ctor_set(x_155, 1, x_154); +return x_155; +} +} +} +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("true_intro", 10, 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("entails", 7, 7); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("trans", 5, 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("joinPrf: ", 9, 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__3; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -7879,1603 +9026,3199 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__6() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("simp", 4, 4); +x_1 = lean_mk_string_unchecked("φ applied: ", 12, 11); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__1; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("optConfig", 9, 9); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__3; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("null", 4, 4); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__6() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__5; -x_2 = l_Lean_Name_mkStr1(x_1); +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__6; +x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__7() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__8() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("configItem", 10, 10); +x_1 = lean_mk_string_unchecked(", prf applied: ", 15, 15); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__7; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__9() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("posConfigItem", 13, 13); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__9; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__11() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("+", 1, 1); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__12() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("unfoldPartialApp", 16, 16); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__13() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__12; -x_2 = l_String_toSubstring_x27(x_1); +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__8; +x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__14() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(", type: ", 8, 8); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__12; -x_2 = l_Lean_Name_mkStr1(x_1); +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__10; +x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__15() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__12() { _start: { lean_object* x_1; -x_1 = l_Array_mkArray0(lean_box(0)); +x_1 = lean_mk_string_unchecked("jumpGoal ", 9, 9); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__16() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__12; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__14() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("[", 1, 1); +x_1 = lean_mk_string_unchecked(" is not a forall", 16, 16); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__17() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__14; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__16() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked(",", 1, 1); +x_1 = lean_mk_string_unchecked("Elab", 4, 4); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__18() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__17() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("]", 1, 1); +x_1 = lean_mk_string_unchecked("vcgen", 5, 5); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__19() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__18() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SpecAttr_getSpecSimpTheorems___boxed), 3, 0); +x_1 = lean_mk_string_unchecked("altParams: ", 11, 11); return x_1; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__19() { _start: { -lean_object* x_13; -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -x_13 = l_Lean_Elab_Tactic_Do_elabConfig___redArg(x_1, x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_13) == 0) +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__18; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__20() { +_start: { -lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -x_15 = lean_ctor_get(x_13, 1); -lean_inc(x_15); -lean_dec_ref(x_13); -x_16 = l_Lean_Elab_Tactic_Do_SpecAttr_getSpecTheorems___redArg(x_11, x_15); -if (lean_obj_tag(x_16) == 0) +lean_object* x_1; +x_1 = lean_mk_string_unchecked(", newLocals: ", 13, 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__21() { +_start: { -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; size_t x_27; size_t x_28; lean_object* x_29; -x_17 = lean_ctor_get(x_16, 0); -lean_inc(x_17); -x_18 = lean_ctor_get(x_16, 1); +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__20; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___boxed__const__1() { +_start: +{ +size_t x_1; lean_object* x_2; +x_1 = 0; +x_2 = lean_box_usize(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12(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, uint8_t x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { +_start: +{ +lean_object* x_22; +lean_inc(x_20); +lean_inc_ref(x_19); lean_inc(x_18); -lean_dec_ref(x_16); -x_19 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__0; -x_20 = 0; -x_21 = lean_unsigned_to_nat(1u); -x_22 = l_Lean_Syntax_getArg(x_2, x_21); -x_23 = l_Lean_Syntax_getSepArgs(x_22); -lean_dec(x_22); -x_24 = lean_box(x_20); -x_25 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_25, 0, x_17); -lean_ctor_set(x_25, 1, x_24); -x_26 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_26, 0, x_19); -lean_ctor_set(x_26, 1, x_25); -x_27 = lean_array_size(x_23); -x_28 = 0; -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -x_29 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8___redArg(x_21, x_23, x_27, x_28, x_26, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_18); -lean_dec_ref(x_23); -if (lean_obj_tag(x_29) == 0) +lean_inc_ref(x_17); +lean_inc_ref(x_15); +x_22 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_1, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +if (lean_obj_tag(x_22) == 0) { -lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; -x_30 = lean_ctor_get(x_29, 0); +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_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_393; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; uint8_t x_439; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec_ref(x_22); +x_25 = lean_ctor_get(x_23, 1); +lean_inc_ref(x_25); +lean_dec(x_23); +x_26 = lean_ctor_get(x_2, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_2, 1); +lean_inc(x_27); +x_28 = lean_ctor_get(x_2, 2); +lean_inc_ref(x_28); +x_29 = lean_ctor_get(x_2, 3); +lean_inc(x_29); +x_30 = lean_ctor_get(x_2, 4); lean_inc(x_30); -x_31 = lean_ctor_get(x_30, 1); -lean_inc(x_31); -x_32 = lean_ctor_get(x_29, 1); +x_31 = lean_ctor_get(x_2, 5); +lean_inc_ref(x_31); +lean_dec_ref(x_2); +x_32 = l_Lean_Expr_getAppNumArgs(x_3); lean_inc(x_32); -lean_dec_ref(x_29); -x_33 = !lean_is_exclusive(x_30); -if (x_33 == 0) +x_33 = lean_mk_array(x_32, x_4); +x_34 = lean_nat_sub(x_32, x_5); +lean_dec(x_32); +x_35 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_3, x_33, x_34); +x_119 = lean_unsigned_to_nat(0u); +x_120 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__5; +lean_inc_ref(x_31); +x_121 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__1___boxed), 9, 1); +lean_closure_set(x_121, 0, x_31); +lean_inc(x_30); +x_122 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__3___boxed), 9, 1); +lean_closure_set(x_122, 0, x_30); +x_435 = l_Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2(x_25, x_120, x_29); +lean_dec(x_29); +lean_dec_ref(x_25); +x_436 = lean_array_get_size(x_435); +x_437 = l_Array_filterMapM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__22(x_435, x_119, x_436); +lean_dec(x_436); +lean_dec_ref(x_435); +x_438 = lean_array_get_size(x_437); +x_439 = lean_nat_dec_lt(x_119, x_438); +if (x_439 == 0) { -lean_object* x_34; lean_object* x_35; uint8_t x_36; -x_34 = lean_ctor_get(x_30, 0); -x_35 = lean_ctor_get(x_30, 1); -lean_dec(x_35); -x_36 = !lean_is_exclusive(x_31); -if (x_36 == 0) +lean_dec(x_438); +lean_dec_ref(x_437); +x_393 = x_120; +goto block_434; +} +else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_40; -x_37 = lean_ctor_get(x_31, 0); -x_38 = lean_ctor_get(x_31, 1); -x_39 = lean_st_ref_get(x_11, x_32); -x_40 = !lean_is_exclusive(x_39); -if (x_40 == 0) +uint8_t x_440; +x_440 = lean_nat_dec_le(x_438, x_438); +if (x_440 == 0) { -lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; uint8_t x_75; lean_object* x_76; lean_object* x_77; -x_41 = lean_ctor_get(x_39, 0); -x_42 = lean_ctor_get(x_39, 1); -x_43 = lean_ctor_get(x_10, 5); -lean_inc(x_43); -x_44 = lean_ctor_get(x_10, 10); -lean_inc(x_44); -x_45 = lean_ctor_get(x_41, 0); -lean_inc_ref(x_45); -lean_dec(x_41); -x_46 = l_Lean_SourceInfo_fromRef(x_43, x_20); -lean_dec(x_43); -x_47 = l_Lean_Environment_mainModule(x_45); -lean_dec_ref(x_45); -x_48 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__1; -x_49 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__2; +lean_dec(x_438); +lean_dec_ref(x_437); +x_393 = x_120; +goto block_434; +} +else +{ +size_t x_441; size_t x_442; lean_object* x_443; +x_441 = 0; +x_442 = lean_usize_of_nat(x_438); +lean_dec(x_438); +x_443 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__24(x_437, x_441, x_442, x_120); +lean_dec_ref(x_437); +x_393 = x_443; +goto block_434; +} +} +block_63: +{ +lean_object* x_44; +lean_inc(x_42); +lean_inc_ref(x_41); +lean_inc(x_40); +lean_inc_ref(x_39); +lean_inc_ref(x_37); +x_44 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_36, x_37, x_38, x_39, x_40, x_41, x_42, x_43); +if (lean_obj_tag(x_44) == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; 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; +x_45 = lean_ctor_get(x_44, 0); +lean_inc(x_45); +x_46 = lean_ctor_get(x_44, 1); lean_inc(x_46); -lean_ctor_set_tag(x_39, 2); -lean_ctor_set(x_39, 1, x_48); -lean_ctor_set(x_39, 0, x_46); -x_50 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__4; -x_51 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__6; -x_52 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__8; -x_53 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__10; -x_54 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__11; -lean_inc(x_46); -lean_ctor_set_tag(x_31, 2); -lean_ctor_set(x_31, 1, x_54); -lean_ctor_set(x_31, 0, x_46); -x_55 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__13; -x_56 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__14; -x_57 = l_Lean_addMacroScope(x_47, x_56, x_44); -x_58 = lean_box(0); -lean_inc(x_46); -x_59 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_59, 0, x_46); -lean_ctor_set(x_59, 1, x_55); -lean_ctor_set(x_59, 2, x_57); -lean_ctor_set(x_59, 3, x_58); -lean_inc(x_46); -x_60 = l_Lean_Syntax_node2(x_46, x_53, x_31, x_59); -lean_inc(x_46); -x_61 = l_Lean_Syntax_node1(x_46, x_52, x_60); -lean_inc(x_46); -x_62 = l_Lean_Syntax_node1(x_46, x_51, x_61); -lean_inc(x_46); -x_63 = l_Lean_Syntax_node1(x_46, x_50, x_62); -x_64 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__15; -lean_inc(x_46); -x_65 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_65, 0, x_46); -lean_ctor_set(x_65, 1, x_51); -lean_ctor_set(x_65, 2, x_64); -x_66 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__16; -lean_inc(x_46); -lean_ctor_set_tag(x_30, 2); -lean_ctor_set(x_30, 1, x_66); -lean_ctor_set(x_30, 0, x_46); -x_67 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__17; -x_68 = l_Lean_Syntax_SepArray_ofElems(x_67, x_34); -lean_dec(x_34); -x_69 = l_Array_append___redArg(x_64, x_68); -lean_dec_ref(x_68); -lean_inc(x_46); -x_70 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_70, 0, x_46); -lean_ctor_set(x_70, 1, x_51); -lean_ctor_set(x_70, 2, x_69); -x_71 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__18; -lean_inc(x_46); -x_72 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_72, 0, x_46); -lean_ctor_set(x_72, 1, x_71); -lean_inc(x_46); -x_73 = l_Lean_Syntax_node3(x_46, x_51, x_30, x_70, x_72); -lean_inc_ref_n(x_65, 2); -x_74 = l_Lean_Syntax_node6(x_46, x_49, x_39, x_63, x_65, x_65, x_73, x_65); -x_75 = 0; -x_76 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__19; -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); +lean_dec_ref(x_44); +x_47 = lean_ctor_get(x_14, 2); +lean_inc_ref(x_47); +lean_dec_ref(x_14); +x_48 = lean_array_push(x_35, x_45); +x_49 = l_Lean_mkAppN(x_31, x_48); +lean_dec_ref(x_48); +x_50 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__2; +x_51 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__0; +lean_inc_ref(x_7); lean_inc_ref(x_6); -lean_inc(x_5); -x_77 = l_Lean_Elab_Tactic_mkSimpContext(x_74, x_20, x_75, x_3, x_76, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_42); -lean_dec(x_74); -if (lean_obj_tag(x_77) == 0) +x_52 = l_Lean_Name_mkStr4(x_6, x_7, x_50, x_51); +x_53 = l_Lean_Expr_const___override(x_52, x_8); +x_54 = l_Lean_mkAppB(x_53, x_9, x_47); +x_55 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__1; +x_56 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__2; +x_57 = l_Lean_Name_mkStr5(x_6, x_7, x_50, x_55, x_56); +x_58 = lean_mk_empty_array_with_capacity(x_10); +x_59 = lean_array_push(x_58, x_54); +x_60 = lean_array_push(x_59, x_49); +x_61 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__2___boxed), 10, 2); +lean_closure_set(x_61, 0, x_57); +lean_closure_set(x_61, 1, x_60); +x_62 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_61, x_37, x_38, x_39, x_40, x_41, x_42, x_46); +lean_dec(x_38); +return x_62; +} +else { -lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_89; -x_78 = lean_ctor_get(x_77, 0); -lean_inc(x_78); -x_79 = lean_ctor_get(x_77, 1); +lean_dec(x_42); +lean_dec_ref(x_41); +lean_dec(x_40); +lean_dec_ref(x_39); +lean_dec(x_38); +lean_dec_ref(x_37); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +return x_44; +} +} +block_118: +{ +lean_object* x_75; +lean_inc(x_73); +lean_inc_ref(x_72); +lean_inc(x_71); +lean_inc_ref(x_70); +lean_inc_ref(x_68); +x_75 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_64, x_68, x_69, x_70, x_71, x_72, x_73, x_74); +if (lean_obj_tag(x_75) == 0) +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_76 = lean_ctor_get(x_75, 0); +lean_inc(x_76); +x_77 = lean_ctor_get(x_75, 1); +lean_inc(x_77); +lean_dec_ref(x_75); +lean_inc(x_73); +lean_inc_ref(x_72); +lean_inc(x_71); +lean_inc_ref(x_70); +lean_inc_ref(x_68); +lean_inc(x_66); +x_78 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7(x_66, x_68, x_69, x_70, x_71, x_72, x_73, x_77); +if (lean_obj_tag(x_78) == 0) +{ +lean_object* x_79; lean_object* x_80; lean_object* x_81; uint8_t x_82; +x_79 = lean_ctor_get(x_78, 0); lean_inc(x_79); -if (lean_is_exclusive(x_77)) { - lean_ctor_release(x_77, 0); - lean_ctor_release(x_77, 1); - x_80 = x_77; -} else { - lean_dec_ref(x_77); - x_80 = lean_box(0); -} -x_89 = lean_unbox(x_38); -lean_dec(x_38); -if (x_89 == 0) +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +lean_dec_ref(x_78); +x_81 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__6___boxed), 10, 2); +lean_closure_set(x_81, 0, x_76); +lean_closure_set(x_81, 1, x_65); +x_82 = lean_unbox(x_79); +lean_dec(x_79); +if (x_82 == 0) { -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -x_81 = x_37; -x_82 = x_79; -goto block_88; +lean_dec_ref(x_67); +lean_dec(x_66); +x_36 = x_81; +x_37 = x_68; +x_38 = x_69; +x_39 = x_70; +x_40 = x_71; +x_41 = x_72; +x_42 = x_73; +x_43 = x_80; +goto block_63; } else { -if (x_3 == 0) +lean_object* x_83; +lean_inc(x_73); +lean_inc_ref(x_72); +lean_inc(x_71); +lean_inc_ref(x_70); +lean_inc_ref(x_68); +x_83 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_67, x_68, x_69, x_70, x_71, x_72, x_73, x_80); +if (lean_obj_tag(x_83) == 0) { -lean_object* x_90; -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -x_90 = l_Lean_Meta_getPropHyps(x_8, x_9, x_10, x_11, x_79); -if (lean_obj_tag(x_90) == 0) +uint8_t x_84; +x_84 = !lean_is_exclusive(x_83); +if (x_84 == 0) { -lean_object* x_91; lean_object* x_92; size_t x_93; lean_object* x_94; -x_91 = lean_ctor_get(x_90, 0); -lean_inc(x_91); -x_92 = lean_ctor_get(x_90, 1); +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; +x_85 = lean_ctor_get(x_83, 0); +x_86 = lean_ctor_get(x_83, 1); +x_87 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__4; +x_88 = l_Lean_MessageData_ofExpr(x_85); +lean_ctor_set_tag(x_83, 7); +lean_ctor_set(x_83, 1, x_88); +lean_ctor_set(x_83, 0, x_87); +x_89 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_90 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_90, 0, x_83); +lean_ctor_set(x_90, 1, x_89); +lean_inc(x_73); +lean_inc_ref(x_72); +lean_inc(x_71); +lean_inc_ref(x_70); +lean_inc_ref(x_68); +x_91 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14(x_66, x_90, x_68, x_69, x_70, x_71, x_72, x_73, x_86); +if (lean_obj_tag(x_91) == 0) +{ +lean_object* x_92; +x_92 = lean_ctor_get(x_91, 1); lean_inc(x_92); -lean_dec_ref(x_90); -x_93 = lean_array_size(x_91); -x_94 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__10___redArg(x_91, x_93, x_28, x_37, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_92); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec(x_91); -if (lean_obj_tag(x_94) == 0) +lean_dec_ref(x_91); +x_36 = x_81; +x_37 = x_68; +x_38 = x_69; +x_39 = x_70; +x_40 = x_71; +x_41 = x_72; +x_42 = x_73; +x_43 = x_92; +goto block_63; +} +else { -lean_object* x_95; lean_object* x_96; -x_95 = lean_ctor_get(x_94, 0); +uint8_t x_93; +lean_dec_ref(x_81); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec(x_71); +lean_dec_ref(x_70); +lean_dec(x_69); +lean_dec_ref(x_68); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_93 = !lean_is_exclusive(x_91); +if (x_93 == 0) +{ +return x_91; +} +else +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; +x_94 = lean_ctor_get(x_91, 0); +x_95 = lean_ctor_get(x_91, 1); lean_inc(x_95); -x_96 = lean_ctor_get(x_94, 1); -lean_inc(x_96); -lean_dec_ref(x_94); -x_81 = x_95; -x_82 = x_96; -goto block_88; +lean_inc(x_94); +lean_dec(x_91); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_94); +lean_ctor_set(x_96, 1, x_95); +return x_96; +} +} } else { -uint8_t x_97; -lean_dec(x_80); -lean_dec(x_78); -lean_dec(x_14); -x_97 = !lean_is_exclusive(x_94); -if (x_97 == 0) -{ -return x_94; -} -else -{ -lean_object* x_98; lean_object* x_99; lean_object* x_100; -x_98 = lean_ctor_get(x_94, 0); -x_99 = lean_ctor_get(x_94, 1); -lean_inc(x_99); +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; +x_97 = lean_ctor_get(x_83, 0); +x_98 = lean_ctor_get(x_83, 1); lean_inc(x_98); -lean_dec(x_94); -x_100 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_100, 0, x_98); -lean_ctor_set(x_100, 1, x_99); -return x_100; -} -} +lean_inc(x_97); +lean_dec(x_83); +x_99 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__4; +x_100 = l_Lean_MessageData_ofExpr(x_97); +x_101 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_101, 0, x_99); +lean_ctor_set(x_101, 1, x_100); +x_102 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_103 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_103, 0, x_101); +lean_ctor_set(x_103, 1, x_102); +lean_inc(x_73); +lean_inc_ref(x_72); +lean_inc(x_71); +lean_inc_ref(x_70); +lean_inc_ref(x_68); +x_104 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14(x_66, x_103, x_68, x_69, x_70, x_71, x_72, x_73, x_98); +if (lean_obj_tag(x_104) == 0) +{ +lean_object* x_105; +x_105 = lean_ctor_get(x_104, 1); +lean_inc(x_105); +lean_dec_ref(x_104); +x_36 = x_81; +x_37 = x_68; +x_38 = x_69; +x_39 = x_70; +x_40 = x_71; +x_41 = x_72; +x_42 = x_73; +x_43 = x_105; +goto block_63; } else { -uint8_t x_101; -lean_dec(x_80); -lean_dec(x_78); -lean_dec(x_37); -lean_dec(x_14); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); +lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; +lean_dec_ref(x_81); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec(x_71); +lean_dec_ref(x_70); +lean_dec(x_69); +lean_dec_ref(x_68); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec(x_5); -x_101 = !lean_is_exclusive(x_90); -if (x_101 == 0) -{ -return x_90; -} -else -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; -x_102 = lean_ctor_get(x_90, 0); -x_103 = lean_ctor_get(x_90, 1); -lean_inc(x_103); -lean_inc(x_102); -lean_dec(x_90); -x_104 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_104, 0, x_102); -lean_ctor_set(x_104, 1, x_103); -return x_104; -} -} -} -else -{ -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -x_81 = x_37; -x_82 = x_79; -goto block_88; -} -} -block_88: -{ -lean_object* x_83; lean_object* x_84; lean_object* x_85; uint8_t x_86; lean_object* x_87; -x_83 = lean_ctor_get(x_78, 0); -lean_inc_ref(x_83); -x_84 = lean_ctor_get(x_78, 1); -lean_inc_ref(x_84); -lean_dec(x_78); -x_85 = lean_alloc_ctor(0, 3, 1); -lean_ctor_set(x_85, 0, x_81); -lean_ctor_set(x_85, 1, x_83); -lean_ctor_set(x_85, 2, x_84); -x_86 = lean_unbox(x_14); -lean_dec(x_14); -lean_ctor_set_uint8(x_85, sizeof(void*)*3, x_86); -if (lean_is_scalar(x_80)) { - x_87 = lean_alloc_ctor(0, 2, 0); -} else { - x_87 = x_80; -} -lean_ctor_set(x_87, 0, x_85); -lean_ctor_set(x_87, 1, x_82); -return x_87; -} -} -else -{ -uint8_t x_105; -lean_dec(x_38); -lean_dec(x_37); -lean_dec(x_14); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -x_105 = !lean_is_exclusive(x_77); -if (x_105 == 0) -{ -return x_77; -} -else -{ -lean_object* x_106; lean_object* x_107; lean_object* x_108; -x_106 = lean_ctor_get(x_77, 0); -x_107 = lean_ctor_get(x_77, 1); -lean_inc(x_107); +x_106 = lean_ctor_get(x_104, 0); lean_inc(x_106); -lean_dec(x_77); -x_108 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_108, 0, x_106); -lean_ctor_set(x_108, 1, x_107); -return x_108; +x_107 = lean_ctor_get(x_104, 1); +lean_inc(x_107); +if (lean_is_exclusive(x_104)) { + lean_ctor_release(x_104, 0); + lean_ctor_release(x_104, 1); + x_108 = x_104; +} else { + lean_dec_ref(x_104); + x_108 = lean_box(0); +} +if (lean_is_scalar(x_108)) { + x_109 = lean_alloc_ctor(1, 2, 0); +} else { + x_109 = x_108; +} +lean_ctor_set(x_109, 0, x_106); +lean_ctor_set(x_109, 1, x_107); +return x_109; } } } else { -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; uint8_t x_144; lean_object* x_145; lean_object* x_146; -x_109 = lean_ctor_get(x_39, 0); -x_110 = lean_ctor_get(x_39, 1); -lean_inc(x_110); -lean_inc(x_109); -lean_dec(x_39); -x_111 = lean_ctor_get(x_10, 5); -lean_inc(x_111); -x_112 = lean_ctor_get(x_10, 10); +lean_dec_ref(x_81); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec(x_71); +lean_dec_ref(x_70); +lean_dec(x_69); +lean_dec_ref(x_68); +lean_dec(x_66); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +return x_83; +} +} +} +else +{ +uint8_t x_110; +lean_dec(x_76); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec(x_71); +lean_dec_ref(x_70); +lean_dec(x_69); +lean_dec_ref(x_68); +lean_dec_ref(x_67); +lean_dec(x_66); +lean_dec_ref(x_65); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_110 = !lean_is_exclusive(x_78); +if (x_110 == 0) +{ +return x_78; +} +else +{ +lean_object* x_111; lean_object* x_112; lean_object* x_113; +x_111 = lean_ctor_get(x_78, 0); +x_112 = lean_ctor_get(x_78, 1); lean_inc(x_112); -x_113 = lean_ctor_get(x_109, 0); -lean_inc_ref(x_113); -lean_dec(x_109); -x_114 = l_Lean_SourceInfo_fromRef(x_111, x_20); -lean_dec(x_111); -x_115 = l_Lean_Environment_mainModule(x_113); -lean_dec_ref(x_113); -x_116 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__1; -x_117 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__2; -lean_inc(x_114); -x_118 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_118, 0, x_114); -lean_ctor_set(x_118, 1, x_116); -x_119 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__4; -x_120 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__6; -x_121 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__8; -x_122 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__10; -x_123 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__11; -lean_inc(x_114); -lean_ctor_set_tag(x_31, 2); -lean_ctor_set(x_31, 1, x_123); -lean_ctor_set(x_31, 0, x_114); -x_124 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__13; -x_125 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__14; -x_126 = l_Lean_addMacroScope(x_115, x_125, x_112); -x_127 = lean_box(0); -lean_inc(x_114); -x_128 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_128, 0, x_114); -lean_ctor_set(x_128, 1, x_124); -lean_ctor_set(x_128, 2, x_126); -lean_ctor_set(x_128, 3, x_127); -lean_inc(x_114); -x_129 = l_Lean_Syntax_node2(x_114, x_122, x_31, x_128); -lean_inc(x_114); -x_130 = l_Lean_Syntax_node1(x_114, x_121, x_129); -lean_inc(x_114); -x_131 = l_Lean_Syntax_node1(x_114, x_120, x_130); -lean_inc(x_114); -x_132 = l_Lean_Syntax_node1(x_114, x_119, x_131); -x_133 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__15; -lean_inc(x_114); -x_134 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_134, 0, x_114); -lean_ctor_set(x_134, 1, x_120); -lean_ctor_set(x_134, 2, x_133); -x_135 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__16; -lean_inc(x_114); -lean_ctor_set_tag(x_30, 2); -lean_ctor_set(x_30, 1, x_135); -lean_ctor_set(x_30, 0, x_114); -x_136 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__17; -x_137 = l_Lean_Syntax_SepArray_ofElems(x_136, x_34); -lean_dec(x_34); -x_138 = l_Array_append___redArg(x_133, x_137); -lean_dec_ref(x_137); -lean_inc(x_114); -x_139 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_139, 0, x_114); -lean_ctor_set(x_139, 1, x_120); -lean_ctor_set(x_139, 2, x_138); -x_140 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__18; -lean_inc(x_114); -x_141 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_141, 0, x_114); -lean_ctor_set(x_141, 1, x_140); -lean_inc(x_114); -x_142 = l_Lean_Syntax_node3(x_114, x_120, x_30, x_139, x_141); -lean_inc_ref_n(x_134, 2); -x_143 = l_Lean_Syntax_node6(x_114, x_117, x_118, x_132, x_134, x_134, x_142, x_134); -x_144 = 0; -x_145 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__19; -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc(x_5); -x_146 = l_Lean_Elab_Tactic_mkSimpContext(x_143, x_20, x_144, x_3, x_145, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_110); -lean_dec(x_143); -if (lean_obj_tag(x_146) == 0) -{ -lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; uint8_t x_158; -x_147 = lean_ctor_get(x_146, 0); -lean_inc(x_147); -x_148 = lean_ctor_get(x_146, 1); -lean_inc(x_148); -if (lean_is_exclusive(x_146)) { - lean_ctor_release(x_146, 0); - lean_ctor_release(x_146, 1); - x_149 = x_146; -} else { - lean_dec_ref(x_146); - x_149 = lean_box(0); +lean_inc(x_111); +lean_dec(x_78); +x_113 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_113, 0, x_111); +lean_ctor_set(x_113, 1, x_112); +return x_113; } -x_158 = lean_unbox(x_38); -lean_dec(x_38); -if (x_158 == 0) -{ -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -x_150 = x_37; -x_151 = x_148; -goto block_157; -} -else -{ -if (x_3 == 0) -{ -lean_object* x_159; -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -x_159 = l_Lean_Meta_getPropHyps(x_8, x_9, x_10, x_11, x_148); -if (lean_obj_tag(x_159) == 0) -{ -lean_object* x_160; lean_object* x_161; size_t x_162; lean_object* x_163; -x_160 = lean_ctor_get(x_159, 0); -lean_inc(x_160); -x_161 = lean_ctor_get(x_159, 1); -lean_inc(x_161); -lean_dec_ref(x_159); -x_162 = lean_array_size(x_160); -x_163 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__10___redArg(x_160, x_162, x_28, x_37, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_161); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec(x_160); -if (lean_obj_tag(x_163) == 0) -{ -lean_object* x_164; lean_object* x_165; -x_164 = lean_ctor_get(x_163, 0); -lean_inc(x_164); -x_165 = lean_ctor_get(x_163, 1); -lean_inc(x_165); -lean_dec_ref(x_163); -x_150 = x_164; -x_151 = x_165; -goto block_157; -} -else -{ -lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; -lean_dec(x_149); -lean_dec(x_147); -lean_dec(x_14); -x_166 = lean_ctor_get(x_163, 0); -lean_inc(x_166); -x_167 = lean_ctor_get(x_163, 1); -lean_inc(x_167); -if (lean_is_exclusive(x_163)) { - lean_ctor_release(x_163, 0); - lean_ctor_release(x_163, 1); - x_168 = x_163; -} else { - lean_dec_ref(x_163); - x_168 = lean_box(0); -} -if (lean_is_scalar(x_168)) { - x_169 = lean_alloc_ctor(1, 2, 0); -} else { - x_169 = x_168; -} -lean_ctor_set(x_169, 0, x_166); -lean_ctor_set(x_169, 1, x_167); -return x_169; } } else { -lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; -lean_dec(x_149); -lean_dec(x_147); -lean_dec(x_37); -lean_dec(x_14); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); +uint8_t x_114; +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec(x_71); +lean_dec_ref(x_70); +lean_dec(x_69); +lean_dec_ref(x_68); +lean_dec_ref(x_67); +lean_dec(x_66); +lean_dec_ref(x_65); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec(x_5); -x_170 = lean_ctor_get(x_159, 0); -lean_inc(x_170); -x_171 = lean_ctor_get(x_159, 1); -lean_inc(x_171); -if (lean_is_exclusive(x_159)) { - lean_ctor_release(x_159, 0); - lean_ctor_release(x_159, 1); - x_172 = x_159; -} else { - lean_dec_ref(x_159); - x_172 = lean_box(0); -} -if (lean_is_scalar(x_172)) { - x_173 = lean_alloc_ctor(1, 2, 0); -} else { - x_173 = x_172; -} -lean_ctor_set(x_173, 0, x_170); -lean_ctor_set(x_173, 1, x_171); -return x_173; -} +x_114 = !lean_is_exclusive(x_75); +if (x_114 == 0) +{ +return x_75; } else { -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -x_150 = x_37; -x_151 = x_148; -goto block_157; +lean_object* x_115; lean_object* x_116; lean_object* x_117; +x_115 = lean_ctor_get(x_75, 0); +x_116 = lean_ctor_get(x_75, 1); +lean_inc(x_116); +lean_inc(x_115); +lean_dec(x_75); +x_117 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_117, 0, x_115); +lean_ctor_set(x_117, 1, x_116); +return x_117; } } -block_157: +} +block_392: { -lean_object* x_152; lean_object* x_153; lean_object* x_154; uint8_t x_155; lean_object* x_156; -x_152 = lean_ctor_get(x_147, 0); -lean_inc_ref(x_152); -x_153 = lean_ctor_get(x_147, 1); +lean_object* x_132; +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc_ref(x_125); +x_132 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_122, x_125, x_126, x_127, x_128, x_129, x_130, x_131); +if (lean_obj_tag(x_132) == 0) +{ +uint8_t x_133; +x_133 = !lean_is_exclusive(x_132); +if (x_133 == 0) +{ +lean_object* x_134; lean_object* x_135; lean_object* x_136; uint8_t x_137; lean_object* x_138; +x_134 = lean_ctor_get(x_132, 0); +x_135 = lean_ctor_get(x_132, 1); +x_136 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_136, 0, x_26); +x_137 = 0; +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc(x_126); +lean_inc_ref(x_125); +x_138 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(x_134, x_136, x_124, x_137, x_137, x_125, x_126, x_127, x_128, x_129, x_130, x_135); +if (lean_obj_tag(x_138) == 0) +{ +lean_object* x_139; lean_object* x_140; uint8_t x_141; +x_139 = lean_ctor_get(x_138, 0); +lean_inc(x_139); +x_140 = lean_ctor_get(x_138, 1); +lean_inc(x_140); +lean_dec_ref(x_138); +x_141 = !lean_is_exclusive(x_139); +if (x_141 == 0) +{ +lean_object* x_142; lean_object* x_143; lean_object* x_144; +x_142 = lean_ctor_get(x_139, 0); +x_143 = lean_ctor_get(x_139, 1); +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc_ref(x_125); +lean_inc(x_142); +x_144 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16(x_30, x_142, x_125, x_126, x_127, x_128, x_129, x_130, x_140); +if (lean_obj_tag(x_144) == 0) +{ +lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; +x_145 = lean_ctor_get(x_144, 1); +lean_inc(x_145); +lean_dec_ref(x_144); +lean_inc_ref(x_31); +x_146 = l_Lean_mkAppN(x_31, x_35); +x_147 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__4___boxed), 9, 1); +lean_closure_set(x_147, 0, x_146); +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc_ref(x_125); +x_148 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_147, x_125, x_126, x_127, x_128, x_129, x_130, x_145); +if (lean_obj_tag(x_148) == 0) +{ +lean_object* x_149; +x_149 = lean_ctor_get(x_148, 0); +lean_inc(x_149); +if (lean_obj_tag(x_149) == 7) +{ +uint8_t x_150; +x_150 = !lean_is_exclusive(x_148); +if (x_150 == 0) +{ +lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; +x_151 = lean_ctor_get(x_148, 1); +x_152 = lean_ctor_get(x_148, 0); +lean_dec(x_152); +x_153 = lean_ctor_get(x_149, 1); lean_inc_ref(x_153); -lean_dec(x_147); -x_154 = lean_alloc_ctor(0, 3, 1); -lean_ctor_set(x_154, 0, x_150); -lean_ctor_set(x_154, 1, x_152); -lean_ctor_set(x_154, 2, x_153); -x_155 = lean_unbox(x_14); -lean_dec(x_14); -lean_ctor_set_uint8(x_154, sizeof(void*)*3, x_155); -if (lean_is_scalar(x_149)) { - x_156 = lean_alloc_ctor(0, 2, 0); -} else { - x_156 = x_149; -} -lean_ctor_set(x_156, 0, x_154); -lean_ctor_set(x_156, 1, x_151); -return x_156; -} +lean_dec_ref(x_149); +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc_ref(x_125); +lean_inc(x_123); +x_154 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7(x_123, x_125, x_126, x_127, x_128, x_129, x_130, x_151); +if (lean_obj_tag(x_154) == 0) +{ +lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; uint8_t x_159; +x_155 = lean_ctor_get(x_154, 0); +lean_inc(x_155); +x_156 = lean_ctor_get(x_154, 1); +lean_inc(x_156); +lean_dec_ref(x_154); +x_157 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__5___boxed), 10, 2); +lean_closure_set(x_157, 0, x_27); +lean_closure_set(x_157, 1, x_153); +lean_inc_ref(x_35); +x_158 = l_Lean_Expr_beta(x_143, x_35); +x_159 = lean_unbox(x_155); +lean_dec(x_155); +if (x_159 == 0) +{ +lean_free_object(x_148); +lean_free_object(x_139); +lean_dec(x_142); +lean_free_object(x_132); +lean_dec_ref(x_28); +x_64 = x_157; +x_65 = x_158; +x_66 = x_123; +x_67 = x_121; +x_68 = x_125; +x_69 = x_126; +x_70 = x_127; +x_71 = x_128; +x_72 = x_129; +x_73 = x_130; +x_74 = x_156; +goto block_118; } else { -lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; -lean_dec(x_38); -lean_dec(x_37); -lean_dec(x_14); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); +lean_object* x_160; lean_object* x_161; +lean_inc_ref(x_158); +x_160 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__4___boxed), 9, 1); +lean_closure_set(x_160, 0, x_158); +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc_ref(x_125); +x_161 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_160, x_125, x_126, x_127, x_128, x_129, x_130, x_156); +if (lean_obj_tag(x_161) == 0) +{ +uint8_t x_162; +x_162 = !lean_is_exclusive(x_161); +if (x_162 == 0) +{ +lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; +x_163 = lean_ctor_get(x_161, 0); +x_164 = lean_ctor_get(x_161, 1); +lean_inc_ref(x_35); +x_165 = l_Array_append___redArg(x_35, x_28); +lean_dec_ref(x_28); +x_166 = l_Lean_Expr_beta(x_142, x_165); +x_167 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__7; +x_168 = l_Lean_MessageData_ofExpr(x_166); +lean_ctor_set_tag(x_161, 7); +lean_ctor_set(x_161, 1, x_168); +lean_ctor_set(x_161, 0, x_167); +x_169 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__9; +lean_ctor_set_tag(x_148, 7); +lean_ctor_set(x_148, 1, x_169); +lean_ctor_set(x_148, 0, x_161); +lean_inc_ref(x_158); +x_170 = l_Lean_MessageData_ofExpr(x_158); +lean_ctor_set_tag(x_139, 7); +lean_ctor_set(x_139, 1, x_170); +lean_ctor_set(x_139, 0, x_148); +x_171 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__11; +lean_ctor_set_tag(x_132, 7); +lean_ctor_set(x_132, 1, x_171); +lean_ctor_set(x_132, 0, x_139); +x_172 = l_Lean_MessageData_ofExpr(x_163); +x_173 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_173, 0, x_132); +lean_ctor_set(x_173, 1, x_172); +x_174 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_175 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_175, 0, x_173); +lean_ctor_set(x_175, 1, x_174); +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc_ref(x_125); +lean_inc(x_123); +x_176 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14(x_123, x_175, x_125, x_126, x_127, x_128, x_129, x_130, x_164); +if (lean_obj_tag(x_176) == 0) +{ +lean_object* x_177; +x_177 = lean_ctor_get(x_176, 1); +lean_inc(x_177); +lean_dec_ref(x_176); +x_64 = x_157; +x_65 = x_158; +x_66 = x_123; +x_67 = x_121; +x_68 = x_125; +x_69 = x_126; +x_70 = x_127; +x_71 = x_128; +x_72 = x_129; +x_73 = x_130; +x_74 = x_177; +goto block_118; +} +else +{ +uint8_t x_178; +lean_dec_ref(x_158); +lean_dec_ref(x_157); +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec(x_5); -x_174 = lean_ctor_get(x_146, 0); -lean_inc(x_174); -x_175 = lean_ctor_get(x_146, 1); -lean_inc(x_175); -if (lean_is_exclusive(x_146)) { - lean_ctor_release(x_146, 0); - lean_ctor_release(x_146, 1); - x_176 = x_146; -} else { - lean_dec_ref(x_146); - x_176 = lean_box(0); -} -if (lean_is_scalar(x_176)) { - x_177 = lean_alloc_ctor(1, 2, 0); -} else { - x_177 = x_176; -} -lean_ctor_set(x_177, 0, x_174); -lean_ctor_set(x_177, 1, x_175); -return x_177; -} -} +x_178 = !lean_is_exclusive(x_176); +if (x_178 == 0) +{ +return x_176; } else { -lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; lean_object* x_219; lean_object* x_220; -x_178 = lean_ctor_get(x_31, 0); -x_179 = lean_ctor_get(x_31, 1); +lean_object* x_179; lean_object* x_180; lean_object* x_181; +x_179 = lean_ctor_get(x_176, 0); +x_180 = lean_ctor_get(x_176, 1); +lean_inc(x_180); lean_inc(x_179); -lean_inc(x_178); -lean_dec(x_31); -x_180 = lean_st_ref_get(x_11, x_32); -x_181 = lean_ctor_get(x_180, 0); -lean_inc(x_181); -x_182 = lean_ctor_get(x_180, 1); -lean_inc(x_182); -if (lean_is_exclusive(x_180)) { - lean_ctor_release(x_180, 0); - lean_ctor_release(x_180, 1); - x_183 = x_180; -} else { - lean_dec_ref(x_180); - x_183 = lean_box(0); +lean_dec(x_176); +x_181 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_181, 0, x_179); +lean_ctor_set(x_181, 1, x_180); +return x_181; } -x_184 = lean_ctor_get(x_10, 5); -lean_inc(x_184); -x_185 = lean_ctor_get(x_10, 10); -lean_inc(x_185); -x_186 = lean_ctor_get(x_181, 0); -lean_inc_ref(x_186); -lean_dec(x_181); -x_187 = l_Lean_SourceInfo_fromRef(x_184, x_20); -lean_dec(x_184); -x_188 = l_Lean_Environment_mainModule(x_186); -lean_dec_ref(x_186); -x_189 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__1; -x_190 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__2; -lean_inc(x_187); -if (lean_is_scalar(x_183)) { - x_191 = lean_alloc_ctor(2, 2, 0); -} else { - x_191 = x_183; - lean_ctor_set_tag(x_191, 2); } -lean_ctor_set(x_191, 0, x_187); -lean_ctor_set(x_191, 1, x_189); -x_192 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__4; -x_193 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__6; -x_194 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__8; -x_195 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__10; -x_196 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__11; -lean_inc(x_187); -x_197 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_197, 0, x_187); -lean_ctor_set(x_197, 1, x_196); -x_198 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__13; -x_199 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__14; -x_200 = l_Lean_addMacroScope(x_188, x_199, x_185); -x_201 = lean_box(0); -lean_inc(x_187); -x_202 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_202, 0, x_187); -lean_ctor_set(x_202, 1, x_198); -lean_ctor_set(x_202, 2, x_200); -lean_ctor_set(x_202, 3, x_201); -lean_inc(x_187); -x_203 = l_Lean_Syntax_node2(x_187, x_195, x_197, x_202); -lean_inc(x_187); -x_204 = l_Lean_Syntax_node1(x_187, x_194, x_203); -lean_inc(x_187); -x_205 = l_Lean_Syntax_node1(x_187, x_193, x_204); -lean_inc(x_187); -x_206 = l_Lean_Syntax_node1(x_187, x_192, x_205); -x_207 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__15; -lean_inc(x_187); -x_208 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_208, 0, x_187); -lean_ctor_set(x_208, 1, x_193); -lean_ctor_set(x_208, 2, x_207); -x_209 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__16; -lean_inc(x_187); -lean_ctor_set_tag(x_30, 2); -lean_ctor_set(x_30, 1, x_209); -lean_ctor_set(x_30, 0, x_187); -x_210 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__17; -x_211 = l_Lean_Syntax_SepArray_ofElems(x_210, x_34); -lean_dec(x_34); -x_212 = l_Array_append___redArg(x_207, x_211); -lean_dec_ref(x_211); -lean_inc(x_187); -x_213 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_213, 0, x_187); -lean_ctor_set(x_213, 1, x_193); -lean_ctor_set(x_213, 2, x_212); -x_214 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__18; -lean_inc(x_187); -x_215 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_215, 0, x_187); -lean_ctor_set(x_215, 1, x_214); -lean_inc(x_187); -x_216 = l_Lean_Syntax_node3(x_187, x_193, x_30, x_213, x_215); -lean_inc_ref_n(x_208, 2); -x_217 = l_Lean_Syntax_node6(x_187, x_190, x_191, x_206, x_208, x_208, x_216, x_208); -x_218 = 0; -x_219 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__19; -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc(x_5); -x_220 = l_Lean_Elab_Tactic_mkSimpContext(x_217, x_20, x_218, x_3, x_219, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_182); -lean_dec(x_217); -if (lean_obj_tag(x_220) == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; uint8_t x_232; -x_221 = lean_ctor_get(x_220, 0); -lean_inc(x_221); -x_222 = lean_ctor_get(x_220, 1); -lean_inc(x_222); -if (lean_is_exclusive(x_220)) { - lean_ctor_release(x_220, 0); - lean_ctor_release(x_220, 1); - x_223 = x_220; -} else { - lean_dec_ref(x_220); - x_223 = lean_box(0); -} -x_232 = lean_unbox(x_179); -lean_dec(x_179); -if (x_232 == 0) -{ -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -x_224 = x_178; -x_225 = x_222; -goto block_231; } else { -if (x_3 == 0) +lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; +x_182 = lean_ctor_get(x_161, 0); +x_183 = lean_ctor_get(x_161, 1); +lean_inc(x_183); +lean_inc(x_182); +lean_dec(x_161); +lean_inc_ref(x_35); +x_184 = l_Array_append___redArg(x_35, x_28); +lean_dec_ref(x_28); +x_185 = l_Lean_Expr_beta(x_142, x_184); +x_186 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__7; +x_187 = l_Lean_MessageData_ofExpr(x_185); +x_188 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_188, 0, x_186); +lean_ctor_set(x_188, 1, x_187); +x_189 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__9; +lean_ctor_set_tag(x_148, 7); +lean_ctor_set(x_148, 1, x_189); +lean_ctor_set(x_148, 0, x_188); +lean_inc_ref(x_158); +x_190 = l_Lean_MessageData_ofExpr(x_158); +lean_ctor_set_tag(x_139, 7); +lean_ctor_set(x_139, 1, x_190); +lean_ctor_set(x_139, 0, x_148); +x_191 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__11; +lean_ctor_set_tag(x_132, 7); +lean_ctor_set(x_132, 1, x_191); +lean_ctor_set(x_132, 0, x_139); +x_192 = l_Lean_MessageData_ofExpr(x_182); +x_193 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_193, 0, x_132); +lean_ctor_set(x_193, 1, x_192); +x_194 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_195 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_195, 0, x_193); +lean_ctor_set(x_195, 1, x_194); +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc_ref(x_125); +lean_inc(x_123); +x_196 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14(x_123, x_195, x_125, x_126, x_127, x_128, x_129, x_130, x_183); +if (lean_obj_tag(x_196) == 0) +{ +lean_object* x_197; +x_197 = lean_ctor_get(x_196, 1); +lean_inc(x_197); +lean_dec_ref(x_196); +x_64 = x_157; +x_65 = x_158; +x_66 = x_123; +x_67 = x_121; +x_68 = x_125; +x_69 = x_126; +x_70 = x_127; +x_71 = x_128; +x_72 = x_129; +x_73 = x_130; +x_74 = x_197; +goto block_118; +} +else +{ +lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; +lean_dec_ref(x_158); +lean_dec_ref(x_157); +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_198 = lean_ctor_get(x_196, 0); +lean_inc(x_198); +x_199 = lean_ctor_get(x_196, 1); +lean_inc(x_199); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_200 = x_196; +} else { + lean_dec_ref(x_196); + x_200 = lean_box(0); +} +if (lean_is_scalar(x_200)) { + x_201 = lean_alloc_ctor(1, 2, 0); +} else { + x_201 = x_200; +} +lean_ctor_set(x_201, 0, x_198); +lean_ctor_set(x_201, 1, x_199); +return x_201; +} +} +} +else +{ +lean_dec_ref(x_158); +lean_dec_ref(x_157); +lean_free_object(x_148); +lean_free_object(x_139); +lean_dec(x_142); +lean_free_object(x_132); +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_28); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +return x_161; +} +} +} +else +{ +uint8_t x_202; +lean_dec_ref(x_153); +lean_free_object(x_148); +lean_free_object(x_139); +lean_dec(x_143); +lean_dec(x_142); +lean_free_object(x_132); +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_202 = !lean_is_exclusive(x_154); +if (x_202 == 0) +{ +return x_154; +} +else +{ +lean_object* x_203; lean_object* x_204; lean_object* x_205; +x_203 = lean_ctor_get(x_154, 0); +x_204 = lean_ctor_get(x_154, 1); +lean_inc(x_204); +lean_inc(x_203); +lean_dec(x_154); +x_205 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_205, 0, x_203); +lean_ctor_set(x_205, 1, x_204); +return x_205; +} +} +} +else +{ +lean_object* x_206; lean_object* x_207; lean_object* x_208; +x_206 = lean_ctor_get(x_148, 1); +lean_inc(x_206); +lean_dec(x_148); +x_207 = lean_ctor_get(x_149, 1); +lean_inc_ref(x_207); +lean_dec_ref(x_149); +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc_ref(x_125); +lean_inc(x_123); +x_208 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7(x_123, x_125, x_126, x_127, x_128, x_129, x_130, x_206); +if (lean_obj_tag(x_208) == 0) +{ +lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; +x_209 = lean_ctor_get(x_208, 0); +lean_inc(x_209); +x_210 = lean_ctor_get(x_208, 1); +lean_inc(x_210); +lean_dec_ref(x_208); +x_211 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__5___boxed), 10, 2); +lean_closure_set(x_211, 0, x_27); +lean_closure_set(x_211, 1, x_207); +lean_inc_ref(x_35); +x_212 = l_Lean_Expr_beta(x_143, x_35); +x_213 = lean_unbox(x_209); +lean_dec(x_209); +if (x_213 == 0) +{ +lean_free_object(x_139); +lean_dec(x_142); +lean_free_object(x_132); +lean_dec_ref(x_28); +x_64 = x_211; +x_65 = x_212; +x_66 = x_123; +x_67 = x_121; +x_68 = x_125; +x_69 = x_126; +x_70 = x_127; +x_71 = x_128; +x_72 = x_129; +x_73 = x_130; +x_74 = x_210; +goto block_118; +} +else +{ +lean_object* x_214; lean_object* x_215; +lean_inc_ref(x_212); +x_214 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__4___boxed), 9, 1); +lean_closure_set(x_214, 0, x_212); +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc_ref(x_125); +x_215 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_214, x_125, x_126, x_127, x_128, x_129, x_130, x_210); +if (lean_obj_tag(x_215) == 0) +{ +lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; +x_216 = lean_ctor_get(x_215, 0); +lean_inc(x_216); +x_217 = lean_ctor_get(x_215, 1); +lean_inc(x_217); +if (lean_is_exclusive(x_215)) { + lean_ctor_release(x_215, 0); + lean_ctor_release(x_215, 1); + x_218 = x_215; +} else { + lean_dec_ref(x_215); + x_218 = lean_box(0); +} +lean_inc_ref(x_35); +x_219 = l_Array_append___redArg(x_35, x_28); +lean_dec_ref(x_28); +x_220 = l_Lean_Expr_beta(x_142, x_219); +x_221 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__7; +x_222 = l_Lean_MessageData_ofExpr(x_220); +if (lean_is_scalar(x_218)) { + x_223 = lean_alloc_ctor(7, 2, 0); +} else { + x_223 = x_218; + lean_ctor_set_tag(x_223, 7); +} +lean_ctor_set(x_223, 0, x_221); +lean_ctor_set(x_223, 1, x_222); +x_224 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__9; +x_225 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_225, 0, x_223); +lean_ctor_set(x_225, 1, x_224); +lean_inc_ref(x_212); +x_226 = l_Lean_MessageData_ofExpr(x_212); +lean_ctor_set_tag(x_139, 7); +lean_ctor_set(x_139, 1, x_226); +lean_ctor_set(x_139, 0, x_225); +x_227 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__11; +lean_ctor_set_tag(x_132, 7); +lean_ctor_set(x_132, 1, x_227); +lean_ctor_set(x_132, 0, x_139); +x_228 = l_Lean_MessageData_ofExpr(x_216); +x_229 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_229, 0, x_132); +lean_ctor_set(x_229, 1, x_228); +x_230 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_231 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_231, 0, x_229); +lean_ctor_set(x_231, 1, x_230); +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc_ref(x_125); +lean_inc(x_123); +x_232 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14(x_123, x_231, x_125, x_126, x_127, x_128, x_129, x_130, x_217); +if (lean_obj_tag(x_232) == 0) { lean_object* x_233; -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -x_233 = l_Lean_Meta_getPropHyps(x_8, x_9, x_10, x_11, x_222); -if (lean_obj_tag(x_233) == 0) +x_233 = lean_ctor_get(x_232, 1); +lean_inc(x_233); +lean_dec_ref(x_232); +x_64 = x_211; +x_65 = x_212; +x_66 = x_123; +x_67 = x_121; +x_68 = x_125; +x_69 = x_126; +x_70 = x_127; +x_71 = x_128; +x_72 = x_129; +x_73 = x_130; +x_74 = x_233; +goto block_118; +} +else { -lean_object* x_234; lean_object* x_235; size_t x_236; lean_object* x_237; -x_234 = lean_ctor_get(x_233, 0); +lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; +lean_dec_ref(x_212); +lean_dec_ref(x_211); +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_234 = lean_ctor_get(x_232, 0); lean_inc(x_234); -x_235 = lean_ctor_get(x_233, 1); +x_235 = lean_ctor_get(x_232, 1); lean_inc(x_235); -lean_dec_ref(x_233); -x_236 = lean_array_size(x_234); -x_237 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__10___redArg(x_234, x_236, x_28, x_178, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_235); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec(x_234); -if (lean_obj_tag(x_237) == 0) +if (lean_is_exclusive(x_232)) { + lean_ctor_release(x_232, 0); + lean_ctor_release(x_232, 1); + x_236 = x_232; +} else { + lean_dec_ref(x_232); + x_236 = lean_box(0); +} +if (lean_is_scalar(x_236)) { + x_237 = lean_alloc_ctor(1, 2, 0); +} else { + x_237 = x_236; +} +lean_ctor_set(x_237, 0, x_234); +lean_ctor_set(x_237, 1, x_235); +return x_237; +} +} +else { -lean_object* x_238; lean_object* x_239; -x_238 = lean_ctor_get(x_237, 0); +lean_dec_ref(x_212); +lean_dec_ref(x_211); +lean_free_object(x_139); +lean_dec(x_142); +lean_free_object(x_132); +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_28); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +return x_215; +} +} +} +else +{ +lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; +lean_dec_ref(x_207); +lean_free_object(x_139); +lean_dec(x_143); +lean_dec(x_142); +lean_free_object(x_132); +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_238 = lean_ctor_get(x_208, 0); lean_inc(x_238); -x_239 = lean_ctor_get(x_237, 1); +x_239 = lean_ctor_get(x_208, 1); lean_inc(x_239); -lean_dec_ref(x_237); -x_224 = x_238; -x_225 = x_239; -goto block_231; -} -else -{ -lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; -lean_dec(x_223); -lean_dec(x_221); -lean_dec(x_14); -x_240 = lean_ctor_get(x_237, 0); -lean_inc(x_240); -x_241 = lean_ctor_get(x_237, 1); -lean_inc(x_241); -if (lean_is_exclusive(x_237)) { - lean_ctor_release(x_237, 0); - lean_ctor_release(x_237, 1); - x_242 = x_237; +if (lean_is_exclusive(x_208)) { + lean_ctor_release(x_208, 0); + lean_ctor_release(x_208, 1); + x_240 = x_208; } else { - lean_dec_ref(x_237); - x_242 = lean_box(0); + lean_dec_ref(x_208); + x_240 = lean_box(0); } -if (lean_is_scalar(x_242)) { - x_243 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_240)) { + x_241 = lean_alloc_ctor(1, 2, 0); } else { - x_243 = x_242; + x_241 = x_240; +} +lean_ctor_set(x_241, 0, x_238); +lean_ctor_set(x_241, 1, x_239); +return x_241; } -lean_ctor_set(x_243, 0, x_240); -lean_ctor_set(x_243, 1, x_241); -return x_243; } } else { -lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; -lean_dec(x_223); -lean_dec(x_221); -lean_dec(x_178); -lean_dec(x_14); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); +uint8_t x_242; +lean_dec(x_143); +lean_dec(x_142); +lean_free_object(x_132); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec(x_5); -x_244 = lean_ctor_get(x_233, 0); -lean_inc(x_244); -x_245 = lean_ctor_get(x_233, 1); -lean_inc(x_245); -if (lean_is_exclusive(x_233)) { - lean_ctor_release(x_233, 0); - lean_ctor_release(x_233, 1); - x_246 = x_233; -} else { - lean_dec_ref(x_233); - x_246 = lean_box(0); -} -if (lean_is_scalar(x_246)) { - x_247 = lean_alloc_ctor(1, 2, 0); -} else { - x_247 = x_246; -} -lean_ctor_set(x_247, 0, x_244); -lean_ctor_set(x_247, 1, x_245); -return x_247; -} +x_242 = !lean_is_exclusive(x_148); +if (x_242 == 0) +{ +lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; +x_243 = lean_ctor_get(x_148, 1); +x_244 = lean_ctor_get(x_148, 0); +lean_dec(x_244); +x_245 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__13; +x_246 = l_Lean_MessageData_ofExpr(x_149); +lean_ctor_set_tag(x_148, 7); +lean_ctor_set(x_148, 1, x_246); +lean_ctor_set(x_148, 0, x_245); +x_247 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__15; +lean_ctor_set_tag(x_139, 7); +lean_ctor_set(x_139, 1, x_247); +lean_ctor_set(x_139, 0, x_148); +x_248 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_139, x_125, x_126, x_127, x_128, x_129, x_130, x_243); +lean_dec(x_126); +return x_248; } else { -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -x_224 = x_178; -x_225 = x_222; -goto block_231; -} -} -block_231: -{ -lean_object* x_226; lean_object* x_227; lean_object* x_228; uint8_t x_229; lean_object* x_230; -x_226 = lean_ctor_get(x_221, 0); -lean_inc_ref(x_226); -x_227 = lean_ctor_get(x_221, 1); -lean_inc_ref(x_227); -lean_dec(x_221); -x_228 = lean_alloc_ctor(0, 3, 1); -lean_ctor_set(x_228, 0, x_224); -lean_ctor_set(x_228, 1, x_226); -lean_ctor_set(x_228, 2, x_227); -x_229 = lean_unbox(x_14); -lean_dec(x_14); -lean_ctor_set_uint8(x_228, sizeof(void*)*3, x_229); -if (lean_is_scalar(x_223)) { - x_230 = lean_alloc_ctor(0, 2, 0); -} else { - x_230 = x_223; -} -lean_ctor_set(x_230, 0, x_228); -lean_ctor_set(x_230, 1, x_225); -return x_230; -} -} -else -{ -lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; -lean_dec(x_179); -lean_dec(x_178); -lean_dec(x_14); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -x_248 = lean_ctor_get(x_220, 0); -lean_inc(x_248); -x_249 = lean_ctor_get(x_220, 1); +lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_249 = lean_ctor_get(x_148, 1); lean_inc(x_249); -if (lean_is_exclusive(x_220)) { - lean_ctor_release(x_220, 0); - lean_ctor_release(x_220, 1); - x_250 = x_220; -} else { - lean_dec_ref(x_220); - x_250 = lean_box(0); -} -if (lean_is_scalar(x_250)) { - x_251 = lean_alloc_ctor(1, 2, 0); -} else { - x_251 = x_250; -} -lean_ctor_set(x_251, 0, x_248); -lean_ctor_set(x_251, 1, x_249); -return x_251; +lean_dec(x_148); +x_250 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__13; +x_251 = l_Lean_MessageData_ofExpr(x_149); +x_252 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_252, 0, x_250); +lean_ctor_set(x_252, 1, x_251); +x_253 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__15; +lean_ctor_set_tag(x_139, 7); +lean_ctor_set(x_139, 1, x_253); +lean_ctor_set(x_139, 0, x_252); +x_254 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_139, x_125, x_126, x_127, x_128, x_129, x_130, x_249); +lean_dec(x_126); +return x_254; } } } else { -lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; uint8_t x_295; lean_object* x_296; lean_object* x_297; -x_252 = lean_ctor_get(x_30, 0); -lean_inc(x_252); -lean_dec(x_30); -x_253 = lean_ctor_get(x_31, 0); -lean_inc(x_253); -x_254 = lean_ctor_get(x_31, 1); -lean_inc(x_254); -if (lean_is_exclusive(x_31)) { - lean_ctor_release(x_31, 0); - lean_ctor_release(x_31, 1); - x_255 = x_31; -} else { - lean_dec_ref(x_31); - x_255 = lean_box(0); +lean_free_object(x_139); +lean_dec(x_143); +lean_dec(x_142); +lean_free_object(x_132); +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +return x_148; } -x_256 = lean_st_ref_get(x_11, x_32); -x_257 = lean_ctor_get(x_256, 0); +} +else +{ +uint8_t x_255; +lean_free_object(x_139); +lean_dec(x_143); +lean_dec(x_142); +lean_free_object(x_132); +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_255 = !lean_is_exclusive(x_144); +if (x_255 == 0) +{ +return x_144; +} +else +{ +lean_object* x_256; lean_object* x_257; lean_object* x_258; +x_256 = lean_ctor_get(x_144, 0); +x_257 = lean_ctor_get(x_144, 1); lean_inc(x_257); -x_258 = lean_ctor_get(x_256, 1); -lean_inc(x_258); -if (lean_is_exclusive(x_256)) { - lean_ctor_release(x_256, 0); - lean_ctor_release(x_256, 1); - x_259 = x_256; -} else { - lean_dec_ref(x_256); - x_259 = lean_box(0); +lean_inc(x_256); +lean_dec(x_144); +x_258 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_258, 0, x_256); +lean_ctor_set(x_258, 1, x_257); +return x_258; } -x_260 = lean_ctor_get(x_10, 5); +} +} +else +{ +lean_object* x_259; lean_object* x_260; lean_object* x_261; +x_259 = lean_ctor_get(x_139, 0); +x_260 = lean_ctor_get(x_139, 1); lean_inc(x_260); -x_261 = lean_ctor_get(x_10, 10); -lean_inc(x_261); -x_262 = lean_ctor_get(x_257, 0); -lean_inc_ref(x_262); -lean_dec(x_257); -x_263 = l_Lean_SourceInfo_fromRef(x_260, x_20); -lean_dec(x_260); -x_264 = l_Lean_Environment_mainModule(x_262); -lean_dec_ref(x_262); -x_265 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__1; -x_266 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__2; -lean_inc(x_263); -if (lean_is_scalar(x_259)) { - x_267 = lean_alloc_ctor(2, 2, 0); +lean_inc(x_259); +lean_dec(x_139); +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc_ref(x_125); +lean_inc(x_259); +x_261 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16(x_30, x_259, x_125, x_126, x_127, x_128, x_129, x_130, x_140); +if (lean_obj_tag(x_261) == 0) +{ +lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; +x_262 = lean_ctor_get(x_261, 1); +lean_inc(x_262); +lean_dec_ref(x_261); +lean_inc_ref(x_31); +x_263 = l_Lean_mkAppN(x_31, x_35); +x_264 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__4___boxed), 9, 1); +lean_closure_set(x_264, 0, x_263); +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc_ref(x_125); +x_265 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_264, x_125, x_126, x_127, x_128, x_129, x_130, x_262); +if (lean_obj_tag(x_265) == 0) +{ +lean_object* x_266; +x_266 = lean_ctor_get(x_265, 0); +lean_inc(x_266); +if (lean_obj_tag(x_266) == 7) +{ +lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_267 = lean_ctor_get(x_265, 1); +lean_inc(x_267); +if (lean_is_exclusive(x_265)) { + lean_ctor_release(x_265, 0); + lean_ctor_release(x_265, 1); + x_268 = x_265; } else { - x_267 = x_259; - lean_ctor_set_tag(x_267, 2); + lean_dec_ref(x_265); + x_268 = lean_box(0); } -lean_ctor_set(x_267, 0, x_263); -lean_ctor_set(x_267, 1, x_265); -x_268 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__4; -x_269 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__6; -x_270 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__8; -x_271 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__10; -x_272 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__11; -lean_inc(x_263); -if (lean_is_scalar(x_255)) { - x_273 = lean_alloc_ctor(2, 2, 0); +x_269 = lean_ctor_get(x_266, 1); +lean_inc_ref(x_269); +lean_dec_ref(x_266); +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc_ref(x_125); +lean_inc(x_123); +x_270 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7(x_123, x_125, x_126, x_127, x_128, x_129, x_130, x_267); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; uint8_t x_275; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +lean_dec_ref(x_270); +x_273 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__5___boxed), 10, 2); +lean_closure_set(x_273, 0, x_27); +lean_closure_set(x_273, 1, x_269); +lean_inc_ref(x_35); +x_274 = l_Lean_Expr_beta(x_260, x_35); +x_275 = lean_unbox(x_271); +lean_dec(x_271); +if (x_275 == 0) +{ +lean_dec(x_268); +lean_dec(x_259); +lean_free_object(x_132); +lean_dec_ref(x_28); +x_64 = x_273; +x_65 = x_274; +x_66 = x_123; +x_67 = x_121; +x_68 = x_125; +x_69 = x_126; +x_70 = x_127; +x_71 = x_128; +x_72 = x_129; +x_73 = x_130; +x_74 = x_272; +goto block_118; +} +else +{ +lean_object* x_276; lean_object* x_277; +lean_inc_ref(x_274); +x_276 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__4___boxed), 9, 1); +lean_closure_set(x_276, 0, x_274); +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc_ref(x_125); +x_277 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_276, x_125, x_126, x_127, x_128, x_129, x_130, x_272); +if (lean_obj_tag(x_277) == 0) +{ +lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; +x_278 = lean_ctor_get(x_277, 0); +lean_inc(x_278); +x_279 = lean_ctor_get(x_277, 1); +lean_inc(x_279); +if (lean_is_exclusive(x_277)) { + lean_ctor_release(x_277, 0); + lean_ctor_release(x_277, 1); + x_280 = x_277; } else { - x_273 = x_255; - lean_ctor_set_tag(x_273, 2); + lean_dec_ref(x_277); + x_280 = lean_box(0); } -lean_ctor_set(x_273, 0, x_263); -lean_ctor_set(x_273, 1, x_272); -x_274 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__13; -x_275 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__14; -x_276 = l_Lean_addMacroScope(x_264, x_275, x_261); -x_277 = lean_box(0); -lean_inc(x_263); -x_278 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_278, 0, x_263); -lean_ctor_set(x_278, 1, x_274); -lean_ctor_set(x_278, 2, x_276); -lean_ctor_set(x_278, 3, x_277); -lean_inc(x_263); -x_279 = l_Lean_Syntax_node2(x_263, x_271, x_273, x_278); -lean_inc(x_263); -x_280 = l_Lean_Syntax_node1(x_263, x_270, x_279); -lean_inc(x_263); -x_281 = l_Lean_Syntax_node1(x_263, x_269, x_280); -lean_inc(x_263); -x_282 = l_Lean_Syntax_node1(x_263, x_268, x_281); -x_283 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__15; -lean_inc(x_263); -x_284 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_284, 0, x_263); -lean_ctor_set(x_284, 1, x_269); -lean_ctor_set(x_284, 2, x_283); -x_285 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__16; -lean_inc(x_263); -x_286 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_286, 0, x_263); -lean_ctor_set(x_286, 1, x_285); -x_287 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__17; -x_288 = l_Lean_Syntax_SepArray_ofElems(x_287, x_252); -lean_dec(x_252); -x_289 = l_Array_append___redArg(x_283, x_288); -lean_dec_ref(x_288); -lean_inc(x_263); -x_290 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_290, 0, x_263); -lean_ctor_set(x_290, 1, x_269); -lean_ctor_set(x_290, 2, x_289); -x_291 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__18; -lean_inc(x_263); -x_292 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_292, 0, x_263); +lean_inc_ref(x_35); +x_281 = l_Array_append___redArg(x_35, x_28); +lean_dec_ref(x_28); +x_282 = l_Lean_Expr_beta(x_259, x_281); +x_283 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__7; +x_284 = l_Lean_MessageData_ofExpr(x_282); +if (lean_is_scalar(x_280)) { + x_285 = lean_alloc_ctor(7, 2, 0); +} else { + x_285 = x_280; + lean_ctor_set_tag(x_285, 7); +} +lean_ctor_set(x_285, 0, x_283); +lean_ctor_set(x_285, 1, x_284); +x_286 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__9; +if (lean_is_scalar(x_268)) { + x_287 = lean_alloc_ctor(7, 2, 0); +} else { + x_287 = x_268; + lean_ctor_set_tag(x_287, 7); +} +lean_ctor_set(x_287, 0, x_285); +lean_ctor_set(x_287, 1, x_286); +lean_inc_ref(x_274); +x_288 = l_Lean_MessageData_ofExpr(x_274); +x_289 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_289, 0, x_287); +lean_ctor_set(x_289, 1, x_288); +x_290 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__11; +lean_ctor_set_tag(x_132, 7); +lean_ctor_set(x_132, 1, x_290); +lean_ctor_set(x_132, 0, x_289); +x_291 = l_Lean_MessageData_ofExpr(x_278); +x_292 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_292, 0, x_132); lean_ctor_set(x_292, 1, x_291); -lean_inc(x_263); -x_293 = l_Lean_Syntax_node3(x_263, x_269, x_286, x_290, x_292); -lean_inc_ref_n(x_284, 2); -x_294 = l_Lean_Syntax_node6(x_263, x_266, x_267, x_282, x_284, x_284, x_293, x_284); -x_295 = 0; -x_296 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__19; -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc(x_5); -x_297 = l_Lean_Elab_Tactic_mkSimpContext(x_294, x_20, x_295, x_3, x_296, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_258); -lean_dec(x_294); -if (lean_obj_tag(x_297) == 0) +x_293 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_294 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_294, 0, x_292); +lean_ctor_set(x_294, 1, x_293); +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc_ref(x_125); +lean_inc(x_123); +x_295 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14(x_123, x_294, x_125, x_126, x_127, x_128, x_129, x_130, x_279); +if (lean_obj_tag(x_295) == 0) { -lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; uint8_t x_309; -x_298 = lean_ctor_get(x_297, 0); +lean_object* x_296; +x_296 = lean_ctor_get(x_295, 1); +lean_inc(x_296); +lean_dec_ref(x_295); +x_64 = x_273; +x_65 = x_274; +x_66 = x_123; +x_67 = x_121; +x_68 = x_125; +x_69 = x_126; +x_70 = x_127; +x_71 = x_128; +x_72 = x_129; +x_73 = x_130; +x_74 = x_296; +goto block_118; +} +else +{ +lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; +lean_dec_ref(x_274); +lean_dec_ref(x_273); +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_297 = lean_ctor_get(x_295, 0); +lean_inc(x_297); +x_298 = lean_ctor_get(x_295, 1); lean_inc(x_298); -x_299 = lean_ctor_get(x_297, 1); -lean_inc(x_299); -if (lean_is_exclusive(x_297)) { - lean_ctor_release(x_297, 0); - lean_ctor_release(x_297, 1); - x_300 = x_297; +if (lean_is_exclusive(x_295)) { + lean_ctor_release(x_295, 0); + lean_ctor_release(x_295, 1); + x_299 = x_295; } else { - lean_dec_ref(x_297); - x_300 = lean_box(0); + lean_dec_ref(x_295); + x_299 = lean_box(0); +} +if (lean_is_scalar(x_299)) { + x_300 = lean_alloc_ctor(1, 2, 0); +} else { + x_300 = x_299; +} +lean_ctor_set(x_300, 0, x_297); +lean_ctor_set(x_300, 1, x_298); +return x_300; } -x_309 = lean_unbox(x_254); -lean_dec(x_254); -if (x_309 == 0) -{ -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -x_301 = x_253; -x_302 = x_299; -goto block_308; } else { -if (x_3 == 0) -{ -lean_object* x_310; -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -x_310 = l_Lean_Meta_getPropHyps(x_8, x_9, x_10, x_11, x_299); -if (lean_obj_tag(x_310) == 0) -{ -lean_object* x_311; lean_object* x_312; size_t x_313; lean_object* x_314; -x_311 = lean_ctor_get(x_310, 0); -lean_inc(x_311); -x_312 = lean_ctor_get(x_310, 1); -lean_inc(x_312); -lean_dec_ref(x_310); -x_313 = lean_array_size(x_311); -x_314 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__10___redArg(x_311, x_313, x_28, x_253, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_312); -lean_dec(x_7); +lean_dec_ref(x_274); +lean_dec_ref(x_273); +lean_dec(x_268); +lean_dec(x_259); +lean_free_object(x_132); +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_28); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec(x_311); -if (lean_obj_tag(x_314) == 0) -{ -lean_object* x_315; lean_object* x_316; -x_315 = lean_ctor_get(x_314, 0); -lean_inc(x_315); -x_316 = lean_ctor_get(x_314, 1); -lean_inc(x_316); -lean_dec_ref(x_314); -x_301 = x_315; -x_302 = x_316; -goto block_308; +return x_277; +} +} } else { -lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; -lean_dec(x_300); -lean_dec(x_298); -lean_dec(x_14); -x_317 = lean_ctor_get(x_314, 0); -lean_inc(x_317); -x_318 = lean_ctor_get(x_314, 1); +lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; +lean_dec_ref(x_269); +lean_dec(x_268); +lean_dec(x_260); +lean_dec(x_259); +lean_free_object(x_132); +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_301 = lean_ctor_get(x_270, 0); +lean_inc(x_301); +x_302 = lean_ctor_get(x_270, 1); +lean_inc(x_302); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_303 = x_270; +} else { + lean_dec_ref(x_270); + x_303 = lean_box(0); +} +if (lean_is_scalar(x_303)) { + x_304 = lean_alloc_ctor(1, 2, 0); +} else { + x_304 = x_303; +} +lean_ctor_set(x_304, 0, x_301); +lean_ctor_set(x_304, 1, x_302); +return x_304; +} +} +else +{ +lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; +lean_dec(x_260); +lean_dec(x_259); +lean_free_object(x_132); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_305 = lean_ctor_get(x_265, 1); +lean_inc(x_305); +if (lean_is_exclusive(x_265)) { + lean_ctor_release(x_265, 0); + lean_ctor_release(x_265, 1); + x_306 = x_265; +} else { + lean_dec_ref(x_265); + x_306 = lean_box(0); +} +x_307 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__13; +x_308 = l_Lean_MessageData_ofExpr(x_266); +if (lean_is_scalar(x_306)) { + x_309 = lean_alloc_ctor(7, 2, 0); +} else { + x_309 = x_306; + lean_ctor_set_tag(x_309, 7); +} +lean_ctor_set(x_309, 0, x_307); +lean_ctor_set(x_309, 1, x_308); +x_310 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__15; +x_311 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_311, 0, x_309); +lean_ctor_set(x_311, 1, x_310); +x_312 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_311, x_125, x_126, x_127, x_128, x_129, x_130, x_305); +lean_dec(x_126); +return x_312; +} +} +else +{ +lean_dec(x_260); +lean_dec(x_259); +lean_free_object(x_132); +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +return x_265; +} +} +else +{ +lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; +lean_dec(x_260); +lean_dec(x_259); +lean_free_object(x_132); +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_313 = lean_ctor_get(x_261, 0); +lean_inc(x_313); +x_314 = lean_ctor_get(x_261, 1); +lean_inc(x_314); +if (lean_is_exclusive(x_261)) { + lean_ctor_release(x_261, 0); + lean_ctor_release(x_261, 1); + x_315 = x_261; +} else { + lean_dec_ref(x_261); + x_315 = lean_box(0); +} +if (lean_is_scalar(x_315)) { + x_316 = lean_alloc_ctor(1, 2, 0); +} else { + x_316 = x_315; +} +lean_ctor_set(x_316, 0, x_313); +lean_ctor_set(x_316, 1, x_314); +return x_316; +} +} +} +else +{ +uint8_t x_317; +lean_free_object(x_132); +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec(x_30); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_317 = !lean_is_exclusive(x_138); +if (x_317 == 0) +{ +return x_138; +} +else +{ +lean_object* x_318; lean_object* x_319; lean_object* x_320; +x_318 = lean_ctor_get(x_138, 0); +x_319 = lean_ctor_get(x_138, 1); +lean_inc(x_319); lean_inc(x_318); -if (lean_is_exclusive(x_314)) { - lean_ctor_release(x_314, 0); - lean_ctor_release(x_314, 1); - x_319 = x_314; -} else { - lean_dec_ref(x_314); - x_319 = lean_box(0); -} -if (lean_is_scalar(x_319)) { - x_320 = lean_alloc_ctor(1, 2, 0); -} else { - x_320 = x_319; -} -lean_ctor_set(x_320, 0, x_317); -lean_ctor_set(x_320, 1, x_318); +lean_dec(x_138); +x_320 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_320, 0, x_318); +lean_ctor_set(x_320, 1, x_319); return x_320; } } +} else { -lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; -lean_dec(x_300); -lean_dec(x_298); -lean_dec(x_253); -lean_dec(x_14); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -x_321 = lean_ctor_get(x_310, 0); -lean_inc(x_321); -x_322 = lean_ctor_get(x_310, 1); +lean_object* x_321; lean_object* x_322; lean_object* x_323; uint8_t x_324; lean_object* x_325; +x_321 = lean_ctor_get(x_132, 0); +x_322 = lean_ctor_get(x_132, 1); lean_inc(x_322); -if (lean_is_exclusive(x_310)) { - lean_ctor_release(x_310, 0); - lean_ctor_release(x_310, 1); - x_323 = x_310; -} else { - lean_dec_ref(x_310); - x_323 = lean_box(0); -} -if (lean_is_scalar(x_323)) { - x_324 = lean_alloc_ctor(1, 2, 0); -} else { - x_324 = x_323; -} -lean_ctor_set(x_324, 0, x_321); -lean_ctor_set(x_324, 1, x_322); -return x_324; -} -} -else +lean_inc(x_321); +lean_dec(x_132); +x_323 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_323, 0, x_26); +x_324 = 0; +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc(x_126); +lean_inc_ref(x_125); +x_325 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(x_321, x_323, x_124, x_324, x_324, x_125, x_126, x_127, x_128, x_129, x_130, x_322); +if (lean_obj_tag(x_325) == 0) { -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -x_301 = x_253; -x_302 = x_299; -goto block_308; -} -} -block_308: -{ -lean_object* x_303; lean_object* x_304; lean_object* x_305; uint8_t x_306; lean_object* x_307; -x_303 = lean_ctor_get(x_298, 0); -lean_inc_ref(x_303); -x_304 = lean_ctor_get(x_298, 1); -lean_inc_ref(x_304); -lean_dec(x_298); -x_305 = lean_alloc_ctor(0, 3, 1); -lean_ctor_set(x_305, 0, x_301); -lean_ctor_set(x_305, 1, x_303); -lean_ctor_set(x_305, 2, x_304); -x_306 = lean_unbox(x_14); -lean_dec(x_14); -lean_ctor_set_uint8(x_305, sizeof(void*)*3, x_306); -if (lean_is_scalar(x_300)) { - x_307 = lean_alloc_ctor(0, 2, 0); -} else { - x_307 = x_300; -} -lean_ctor_set(x_307, 0, x_305); -lean_ctor_set(x_307, 1, x_302); -return x_307; -} -} -else -{ -lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; -lean_dec(x_254); -lean_dec(x_253); -lean_dec(x_14); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -x_325 = lean_ctor_get(x_297, 0); -lean_inc(x_325); -x_326 = lean_ctor_get(x_297, 1); +lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; +x_326 = lean_ctor_get(x_325, 0); lean_inc(x_326); -if (lean_is_exclusive(x_297)) { - lean_ctor_release(x_297, 0); - lean_ctor_release(x_297, 1); - x_327 = x_297; +x_327 = lean_ctor_get(x_325, 1); +lean_inc(x_327); +lean_dec_ref(x_325); +x_328 = lean_ctor_get(x_326, 0); +lean_inc(x_328); +x_329 = lean_ctor_get(x_326, 1); +lean_inc(x_329); +if (lean_is_exclusive(x_326)) { + lean_ctor_release(x_326, 0); + lean_ctor_release(x_326, 1); + x_330 = x_326; } else { - lean_dec_ref(x_297); - x_327 = lean_box(0); + lean_dec_ref(x_326); + x_330 = lean_box(0); } -if (lean_is_scalar(x_327)) { - x_328 = lean_alloc_ctor(1, 2, 0); +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc_ref(x_125); +lean_inc(x_328); +x_331 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16(x_30, x_328, x_125, x_126, x_127, x_128, x_129, x_130, x_327); +if (lean_obj_tag(x_331) == 0) +{ +lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; +x_332 = lean_ctor_get(x_331, 1); +lean_inc(x_332); +lean_dec_ref(x_331); +lean_inc_ref(x_31); +x_333 = l_Lean_mkAppN(x_31, x_35); +x_334 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__4___boxed), 9, 1); +lean_closure_set(x_334, 0, x_333); +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc_ref(x_125); +x_335 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_334, x_125, x_126, x_127, x_128, x_129, x_130, x_332); +if (lean_obj_tag(x_335) == 0) +{ +lean_object* x_336; +x_336 = lean_ctor_get(x_335, 0); +lean_inc(x_336); +if (lean_obj_tag(x_336) == 7) +{ +lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; +x_337 = lean_ctor_get(x_335, 1); +lean_inc(x_337); +if (lean_is_exclusive(x_335)) { + lean_ctor_release(x_335, 0); + lean_ctor_release(x_335, 1); + x_338 = x_335; } else { - x_328 = x_327; -} -lean_ctor_set(x_328, 0, x_325); -lean_ctor_set(x_328, 1, x_326); -return x_328; -} + lean_dec_ref(x_335); + x_338 = lean_box(0); } +x_339 = lean_ctor_get(x_336, 1); +lean_inc_ref(x_339); +lean_dec_ref(x_336); +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc_ref(x_125); +lean_inc(x_123); +x_340 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7(x_123, x_125, x_126, x_127, x_128, x_129, x_130, x_337); +if (lean_obj_tag(x_340) == 0) +{ +lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; uint8_t x_345; +x_341 = lean_ctor_get(x_340, 0); +lean_inc(x_341); +x_342 = lean_ctor_get(x_340, 1); +lean_inc(x_342); +lean_dec_ref(x_340); +x_343 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__5___boxed), 10, 2); +lean_closure_set(x_343, 0, x_27); +lean_closure_set(x_343, 1, x_339); +lean_inc_ref(x_35); +x_344 = l_Lean_Expr_beta(x_329, x_35); +x_345 = lean_unbox(x_341); +lean_dec(x_341); +if (x_345 == 0) +{ +lean_dec(x_338); +lean_dec(x_330); +lean_dec(x_328); +lean_dec_ref(x_28); +x_64 = x_343; +x_65 = x_344; +x_66 = x_123; +x_67 = x_121; +x_68 = x_125; +x_69 = x_126; +x_70 = x_127; +x_71 = x_128; +x_72 = x_129; +x_73 = x_130; +x_74 = x_342; +goto block_118; } else { -uint8_t x_329; -lean_dec(x_14); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); +lean_object* x_346; lean_object* x_347; +lean_inc_ref(x_344); +x_346 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__4___boxed), 9, 1); +lean_closure_set(x_346, 0, x_344); +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc_ref(x_125); +x_347 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_346, x_125, x_126, x_127, x_128, x_129, x_130, x_342); +if (lean_obj_tag(x_347) == 0) +{ +lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; +x_348 = lean_ctor_get(x_347, 0); +lean_inc(x_348); +x_349 = lean_ctor_get(x_347, 1); +lean_inc(x_349); +if (lean_is_exclusive(x_347)) { + lean_ctor_release(x_347, 0); + lean_ctor_release(x_347, 1); + x_350 = x_347; +} else { + lean_dec_ref(x_347); + x_350 = lean_box(0); +} +lean_inc_ref(x_35); +x_351 = l_Array_append___redArg(x_35, x_28); +lean_dec_ref(x_28); +x_352 = l_Lean_Expr_beta(x_328, x_351); +x_353 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__7; +x_354 = l_Lean_MessageData_ofExpr(x_352); +if (lean_is_scalar(x_350)) { + x_355 = lean_alloc_ctor(7, 2, 0); +} else { + x_355 = x_350; + lean_ctor_set_tag(x_355, 7); +} +lean_ctor_set(x_355, 0, x_353); +lean_ctor_set(x_355, 1, x_354); +x_356 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__9; +if (lean_is_scalar(x_338)) { + x_357 = lean_alloc_ctor(7, 2, 0); +} else { + x_357 = x_338; + lean_ctor_set_tag(x_357, 7); +} +lean_ctor_set(x_357, 0, x_355); +lean_ctor_set(x_357, 1, x_356); +lean_inc_ref(x_344); +x_358 = l_Lean_MessageData_ofExpr(x_344); +if (lean_is_scalar(x_330)) { + x_359 = lean_alloc_ctor(7, 2, 0); +} else { + x_359 = x_330; + lean_ctor_set_tag(x_359, 7); +} +lean_ctor_set(x_359, 0, x_357); +lean_ctor_set(x_359, 1, x_358); +x_360 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__11; +x_361 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_361, 0, x_359); +lean_ctor_set(x_361, 1, x_360); +x_362 = l_Lean_MessageData_ofExpr(x_348); +x_363 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_363, 0, x_361); +lean_ctor_set(x_363, 1, x_362); +x_364 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_365 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_365, 0, x_363); +lean_ctor_set(x_365, 1, x_364); +lean_inc(x_130); +lean_inc_ref(x_129); +lean_inc(x_128); +lean_inc_ref(x_127); +lean_inc_ref(x_125); +lean_inc(x_123); +x_366 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14(x_123, x_365, x_125, x_126, x_127, x_128, x_129, x_130, x_349); +if (lean_obj_tag(x_366) == 0) +{ +lean_object* x_367; +x_367 = lean_ctor_get(x_366, 1); +lean_inc(x_367); +lean_dec_ref(x_366); +x_64 = x_343; +x_65 = x_344; +x_66 = x_123; +x_67 = x_121; +x_68 = x_125; +x_69 = x_126; +x_70 = x_127; +x_71 = x_128; +x_72 = x_129; +x_73 = x_130; +x_74 = x_367; +goto block_118; +} +else +{ +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; +lean_dec_ref(x_344); +lean_dec_ref(x_343); +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_329 = !lean_is_exclusive(x_29); -if (x_329 == 0) -{ -return x_29; +x_368 = lean_ctor_get(x_366, 0); +lean_inc(x_368); +x_369 = lean_ctor_get(x_366, 1); +lean_inc(x_369); +if (lean_is_exclusive(x_366)) { + lean_ctor_release(x_366, 0); + lean_ctor_release(x_366, 1); + x_370 = x_366; +} else { + lean_dec_ref(x_366); + x_370 = lean_box(0); } -else -{ -lean_object* x_330; lean_object* x_331; lean_object* x_332; -x_330 = lean_ctor_get(x_29, 0); -x_331 = lean_ctor_get(x_29, 1); -lean_inc(x_331); -lean_inc(x_330); -lean_dec(x_29); -x_332 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_332, 0, x_330); -lean_ctor_set(x_332, 1, x_331); -return x_332; +if (lean_is_scalar(x_370)) { + x_371 = lean_alloc_ctor(1, 2, 0); +} else { + x_371 = x_370; } +lean_ctor_set(x_371, 0, x_368); +lean_ctor_set(x_371, 1, x_369); +return x_371; } } else { -uint8_t x_333; -lean_dec(x_14); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); +lean_dec_ref(x_344); +lean_dec_ref(x_343); +lean_dec(x_338); +lean_dec(x_330); +lean_dec(x_328); +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_28); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_333 = !lean_is_exclusive(x_16); -if (x_333 == 0) -{ -return x_16; +return x_347; +} +} } else { -lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_334 = lean_ctor_get(x_16, 0); -x_335 = lean_ctor_get(x_16, 1); -lean_inc(x_335); -lean_inc(x_334); +lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; +lean_dec_ref(x_339); +lean_dec(x_338); +lean_dec(x_330); +lean_dec(x_329); +lean_dec(x_328); +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_372 = lean_ctor_get(x_340, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_340, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_340)) { + lean_ctor_release(x_340, 0); + lean_ctor_release(x_340, 1); + x_374 = x_340; +} else { + lean_dec_ref(x_340); + x_374 = lean_box(0); +} +if (lean_is_scalar(x_374)) { + x_375 = lean_alloc_ctor(1, 2, 0); +} else { + x_375 = x_374; +} +lean_ctor_set(x_375, 0, x_372); +lean_ctor_set(x_375, 1, x_373); +return x_375; +} +} +else +{ +lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; +lean_dec(x_329); +lean_dec(x_328); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_376 = lean_ctor_get(x_335, 1); +lean_inc(x_376); +if (lean_is_exclusive(x_335)) { + lean_ctor_release(x_335, 0); + lean_ctor_release(x_335, 1); + x_377 = x_335; +} else { + lean_dec_ref(x_335); + x_377 = lean_box(0); +} +x_378 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__13; +x_379 = l_Lean_MessageData_ofExpr(x_336); +if (lean_is_scalar(x_377)) { + x_380 = lean_alloc_ctor(7, 2, 0); +} else { + x_380 = x_377; + lean_ctor_set_tag(x_380, 7); +} +lean_ctor_set(x_380, 0, x_378); +lean_ctor_set(x_380, 1, x_379); +x_381 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__15; +if (lean_is_scalar(x_330)) { + x_382 = lean_alloc_ctor(7, 2, 0); +} else { + x_382 = x_330; + lean_ctor_set_tag(x_382, 7); +} +lean_ctor_set(x_382, 0, x_380); +lean_ctor_set(x_382, 1, x_381); +x_383 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_382, x_125, x_126, x_127, x_128, x_129, x_130, x_376); +lean_dec(x_126); +return x_383; +} +} +else +{ +lean_dec(x_330); +lean_dec(x_329); +lean_dec(x_328); +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +return x_335; +} +} +else +{ +lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; +lean_dec(x_330); +lean_dec(x_329); +lean_dec(x_328); +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_384 = lean_ctor_get(x_331, 0); +lean_inc(x_384); +x_385 = lean_ctor_get(x_331, 1); +lean_inc(x_385); +if (lean_is_exclusive(x_331)) { + lean_ctor_release(x_331, 0); + lean_ctor_release(x_331, 1); + x_386 = x_331; +} else { + lean_dec_ref(x_331); + x_386 = lean_box(0); +} +if (lean_is_scalar(x_386)) { + x_387 = lean_alloc_ctor(1, 2, 0); +} else { + x_387 = x_386; +} +lean_ctor_set(x_387, 0, x_384); +lean_ctor_set(x_387, 1, x_385); +return x_387; +} +} +else +{ +lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec(x_30); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_388 = lean_ctor_get(x_325, 0); +lean_inc(x_388); +x_389 = lean_ctor_get(x_325, 1); +lean_inc(x_389); +if (lean_is_exclusive(x_325)) { + lean_ctor_release(x_325, 0); + lean_ctor_release(x_325, 1); + x_390 = x_325; +} else { + lean_dec_ref(x_325); + x_390 = lean_box(0); +} +if (lean_is_scalar(x_390)) { + x_391 = lean_alloc_ctor(1, 2, 0); +} else { + x_391 = x_390; +} +lean_ctor_set(x_391, 0, x_388); +lean_ctor_set(x_391, 1, x_389); +return x_391; +} +} +} +else +{ +lean_dec(x_130); +lean_dec_ref(x_129); +lean_dec(x_128); +lean_dec_ref(x_127); +lean_dec(x_126); +lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec(x_123); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec(x_30); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec(x_26); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +return x_132; +} +} +block_434: +{ +lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; +x_394 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__16; +x_395 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3; +x_396 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__17; +lean_inc_ref(x_7); +x_397 = l_Lean_Name_mkStr4(x_394, x_395, x_7, x_396); +lean_inc(x_20); +lean_inc_ref(x_19); +lean_inc(x_18); +lean_inc_ref(x_17); +lean_inc_ref(x_15); +lean_inc(x_397); +x_398 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7(x_397, x_15, x_16, x_17, x_18, x_19, x_20, x_24); +if (lean_obj_tag(x_398) == 0) +{ +lean_object* x_399; lean_object* x_400; size_t x_401; size_t 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; uint8_t x_409; +x_399 = lean_ctor_get(x_398, 0); +lean_inc(x_399); +x_400 = lean_ctor_get(x_398, 1); +lean_inc(x_400); +lean_dec_ref(x_398); +x_401 = lean_array_size(x_393); +x_402 = 0; +x_403 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___boxed__const__1; +lean_inc_ref(x_35); +x_404 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__8___boxed), 10, 2); +lean_closure_set(x_404, 0, x_35); +lean_closure_set(x_404, 1, x_403); +lean_inc_ref(x_393); +x_405 = l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__8(x_401, x_402, x_393); +x_406 = lean_box(x_11); +x_407 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___boxed__const__1; +lean_inc_ref(x_405); +lean_inc_ref(x_35); +lean_inc_ref(x_28); +lean_inc(x_397); +x_408 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___boxed), 21, 12); +lean_closure_set(x_408, 0, x_397); +lean_closure_set(x_408, 1, x_406); +lean_closure_set(x_408, 2, x_28); +lean_closure_set(x_408, 3, x_12); +lean_closure_set(x_408, 4, x_5); +lean_closure_set(x_408, 5, x_13); +lean_closure_set(x_408, 6, x_119); +lean_closure_set(x_408, 7, x_35); +lean_closure_set(x_408, 8, x_404); +lean_closure_set(x_408, 9, x_405); +lean_closure_set(x_408, 10, x_393); +lean_closure_set(x_408, 11, x_407); +x_409 = lean_unbox(x_399); +lean_dec(x_399); +if (x_409 == 0) +{ +lean_dec_ref(x_405); +x_123 = x_397; +x_124 = x_408; +x_125 = x_15; +x_126 = x_16; +x_127 = x_17; +x_128 = x_18; +x_129 = x_19; +x_130 = x_20; +x_131 = x_400; +goto block_392; +} +else +{ +lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; +x_410 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__19; +lean_inc_ref(x_28); +x_411 = lean_array_to_list(x_28); +x_412 = lean_box(0); +x_413 = l_List_mapTR_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__13(x_411, x_412); +x_414 = l_Lean_MessageData_ofList(x_413); +x_415 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_415, 0, x_410); +lean_ctor_set(x_415, 1, x_414); +x_416 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__21; +x_417 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_417, 0, x_415); +lean_ctor_set(x_417, 1, x_416); +x_418 = lean_array_to_list(x_405); +x_419 = l_List_mapTR_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__13(x_418, x_412); +x_420 = l_Lean_MessageData_ofList(x_419); +x_421 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_421, 0, x_417); +lean_ctor_set(x_421, 1, x_420); +x_422 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_423 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_423, 0, x_421); +lean_ctor_set(x_423, 1, x_422); +lean_inc(x_20); +lean_inc_ref(x_19); +lean_inc(x_18); +lean_inc_ref(x_17); +lean_inc_ref(x_15); +lean_inc(x_397); +x_424 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14(x_397, x_423, x_15, x_16, x_17, x_18, x_19, x_20, x_400); +if (lean_obj_tag(x_424) == 0) +{ +lean_object* x_425; +x_425 = lean_ctor_get(x_424, 1); +lean_inc(x_425); +lean_dec_ref(x_424); +x_123 = x_397; +x_124 = x_408; +x_125 = x_15; +x_126 = x_16; +x_127 = x_17; +x_128 = x_18; +x_129 = x_19; +x_130 = x_20; +x_131 = x_425; +goto block_392; +} +else +{ +uint8_t x_426; +lean_dec_ref(x_408); +lean_dec(x_397); +lean_dec_ref(x_122); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec(x_30); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_20); +lean_dec_ref(x_19); +lean_dec(x_18); +lean_dec_ref(x_17); lean_dec(x_16); -x_336 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_336, 0, x_334); -lean_ctor_set(x_336, 1, x_335); -return x_336; +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_426 = !lean_is_exclusive(x_424); +if (x_426 == 0) +{ +return x_424; +} +else +{ +lean_object* x_427; lean_object* x_428; lean_object* x_429; +x_427 = lean_ctor_get(x_424, 0); +x_428 = lean_ctor_get(x_424, 1); +lean_inc(x_428); +lean_inc(x_427); +lean_dec(x_424); +x_429 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_429, 0, x_427); +lean_ctor_set(x_429, 1, x_428); +return x_429; +} } } } else { -uint8_t x_337; -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); +uint8_t x_430; +lean_dec(x_397); +lean_dec_ref(x_393); +lean_dec_ref(x_122); +lean_dec_ref(x_121); +lean_dec_ref(x_35); +lean_dec_ref(x_31); +lean_dec(x_30); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_20); +lean_dec_ref(x_19); +lean_dec(x_18); +lean_dec_ref(x_17); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +x_430 = !lean_is_exclusive(x_398); +if (x_430 == 0) +{ +return x_398; +} +else +{ +lean_object* x_431; lean_object* x_432; lean_object* x_433; +x_431 = lean_ctor_get(x_398, 0); +x_432 = lean_ctor_get(x_398, 1); +lean_inc(x_432); +lean_inc(x_431); +lean_dec(x_398); +x_433 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_433, 0, x_431); +lean_ctor_set(x_433, 1, x_432); +return x_433; +} +} +} +} +else +{ +uint8_t x_444; +lean_dec(x_20); +lean_dec_ref(x_19); +lean_dec(x_18); +lean_dec_ref(x_17); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); -x_337 = !lean_is_exclusive(x_13); -if (x_337 == 0) +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_444 = !lean_is_exclusive(x_22); +if (x_444 == 0) { -return x_13; +return x_22; } else { -lean_object* x_338; lean_object* x_339; lean_object* x_340; -x_338 = lean_ctor_get(x_13, 0); -x_339 = lean_ctor_get(x_13, 1); -lean_inc(x_339); -lean_inc(x_338); -lean_dec(x_13); -x_340 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_340, 0, x_338); -lean_ctor_set(x_340, 1, x_339); -return x_340; +lean_object* x_445; lean_object* x_446; lean_object* x_447; +x_445 = lean_ctor_get(x_22, 0); +x_446 = lean_ctor_get(x_22, 1); +lean_inc(x_446); +lean_inc(x_445); +lean_dec(x_22); +x_447 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_447, 0, x_445); +lean_ctor_set(x_447, 1, x_446); +return x_447; } } } } -LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0___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) { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14___closed__0() { _start: { -lean_object* x_11; -x_11 = l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); +lean_object* x_1; +x_1 = lean_mk_string_unchecked("_", 1, 1); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14___closed__0; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14(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, uint8_t x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { +_start: +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14___closed__1; +x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__4___boxed), 9, 1); +lean_closure_set(x_23, 0, x_22); +lean_inc(x_20); +lean_inc_ref(x_19); +lean_inc(x_18); +lean_inc_ref(x_17); +lean_inc_ref(x_15); +x_24 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_23, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +x_26 = lean_ctor_get(x_24, 1); +lean_inc(x_26); +lean_dec_ref(x_24); +x_27 = lean_box(x_11); +x_28 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___boxed), 21, 13); +lean_closure_set(x_28, 0, x_1); +lean_closure_set(x_28, 1, x_2); +lean_closure_set(x_28, 2, x_3); +lean_closure_set(x_28, 3, x_4); +lean_closure_set(x_28, 4, x_5); +lean_closure_set(x_28, 5, x_6); +lean_closure_set(x_28, 6, x_7); +lean_closure_set(x_28, 7, x_8); +lean_closure_set(x_28, 8, x_9); +lean_closure_set(x_28, 9, x_10); +lean_closure_set(x_28, 10, x_27); +lean_closure_set(x_28, 11, x_12); +lean_closure_set(x_28, 12, x_22); +x_29 = lean_array_get_size(x_13); +x_30 = lean_unsigned_to_nat(4u); +x_31 = lean_nat_sub(x_29, x_30); +lean_dec(x_29); +x_32 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25(x_14, x_31, x_25, x_28, x_15, x_16, x_17, x_18, x_19, x_20, x_26); +return x_32; +} +else +{ +uint8_t x_33; +lean_dec(x_20); +lean_dec_ref(x_19); +lean_dec(x_18); +lean_dec_ref(x_17); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec(x_12); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); -lean_dec(x_3); +lean_dec_ref(x_3); lean_dec_ref(x_2); -return x_11; +lean_dec_ref(x_1); +x_33 = !lean_is_exclusive(x_24); +if (x_33 == 0) +{ +return x_24; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_24, 0); +x_35 = lean_ctor_get(x_24, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_24); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; } } -LEAN_EXPORT lean_object* l_Lean_throwError___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg___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) { +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("PredTrans.apply has wrong number of levels", 42, 42); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__0; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Expected wp⟦e⟧ Q in goal.target, got ", 41, 37); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__2; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("WP", 2, 2); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("wp", 2, 2); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__5; +x_2 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__4; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("PostShape", 9, 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("args", 4, 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__8; +x_2 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__7; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite(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_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_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_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; +x_20 = lean_ctor_get(x_1, 3); +lean_inc_ref(x_20); +x_35 = l_Lean_instInhabitedExpr; +x_36 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg___closed__0; +x_37 = l_Lean_Expr_getAppNumArgs(x_20); +lean_inc(x_37); +x_38 = lean_mk_array(x_37, x_36); +x_39 = lean_unsigned_to_nat(1u); +x_40 = lean_nat_sub(x_37, x_39); +lean_dec(x_37); +lean_inc_ref(x_20); +x_41 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_20, x_38, x_40); +x_42 = lean_unsigned_to_nat(2u); +x_43 = lean_array_get(x_35, x_41, x_42); +x_44 = l_Lean_Expr_cleanupAnnotations(x_43); +x_45 = l_Lean_Expr_isApp(x_44); +if (x_45 == 0) +{ +lean_dec_ref(x_44); +lean_dec_ref(x_41); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_21 = x_3; +x_22 = x_4; +x_23 = x_5; +x_24 = x_6; +x_25 = x_7; +x_26 = x_8; +x_27 = x_9; +goto block_34; +} +else +{ +lean_object* x_46; lean_object* x_47; uint8_t x_48; +x_46 = lean_ctor_get(x_44, 1); +lean_inc_ref(x_46); +x_47 = l_Lean_Expr_appFnCleanup___redArg(x_44); +x_48 = l_Lean_Expr_isApp(x_47); +if (x_48 == 0) +{ +lean_dec_ref(x_47); +lean_dec_ref(x_46); +lean_dec_ref(x_41); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_21 = x_3; +x_22 = x_4; +x_23 = x_5; +x_24 = x_6; +x_25 = x_7; +x_26 = x_8; +x_27 = x_9; +goto block_34; +} +else +{ +lean_object* x_49; uint8_t x_50; +x_49 = l_Lean_Expr_appFnCleanup___redArg(x_47); +x_50 = l_Lean_Expr_isApp(x_49); +if (x_50 == 0) +{ +lean_dec_ref(x_49); +lean_dec_ref(x_46); +lean_dec_ref(x_41); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_21 = x_3; +x_22 = x_4; +x_23 = x_5; +x_24 = x_6; +x_25 = x_7; +x_26 = x_8; +x_27 = x_9; +goto block_34; +} +else +{ +lean_object* x_51; uint8_t x_52; +x_51 = l_Lean_Expr_appFnCleanup___redArg(x_49); +x_52 = l_Lean_Expr_isApp(x_51); +if (x_52 == 0) +{ +lean_dec_ref(x_51); +lean_dec_ref(x_46); +lean_dec_ref(x_41); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_21 = x_3; +x_22 = x_4; +x_23 = x_5; +x_24 = x_6; +x_25 = x_7; +x_26 = x_8; +x_27 = x_9; +goto block_34; +} +else +{ +lean_object* x_53; lean_object* x_54; uint8_t x_55; +x_53 = lean_ctor_get(x_51, 1); +lean_inc_ref(x_53); +x_54 = l_Lean_Expr_appFnCleanup___redArg(x_51); +x_55 = l_Lean_Expr_isApp(x_54); +if (x_55 == 0) +{ +lean_dec_ref(x_54); +lean_dec_ref(x_53); +lean_dec_ref(x_46); +lean_dec_ref(x_41); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_21 = x_3; +x_22 = x_4; +x_23 = x_5; +x_24 = x_6; +x_25 = x_7; +x_26 = x_8; +x_27 = x_9; +goto block_34; +} +else +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; +x_56 = l_Lean_Expr_appFnCleanup___redArg(x_54); +x_57 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; +x_58 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_59 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__6; +x_60 = l_Lean_Expr_isConstOf(x_56, x_59); +if (x_60 == 0) +{ +lean_dec_ref(x_56); +lean_dec_ref(x_53); +lean_dec_ref(x_46); +lean_dec_ref(x_41); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_21 = x_3; +x_22 = x_4; +x_23 = x_5; +x_24 = x_6; +x_25 = x_7; +x_26 = x_8; +x_27 = x_9; +goto block_34; +} +else +{ +lean_object* x_61; +lean_dec_ref(x_20); +x_61 = l_Lean_Expr_constLevels_x21(x_56); +lean_dec_ref(x_56); +if (lean_obj_tag(x_61) == 0) +{ +lean_dec_ref(x_53); +lean_dec_ref(x_46); +lean_dec_ref(x_41); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_10 = x_3; +x_11 = x_4; +x_12 = x_5; +x_13 = x_6; +x_14 = x_7; +x_15 = x_8; +x_16 = x_9; +goto block_19; +} +else +{ +lean_object* x_62; +x_62 = lean_ctor_get(x_61, 1); +lean_inc(x_62); +if (lean_obj_tag(x_62) == 0) +{ +lean_dec_ref(x_61); +lean_dec_ref(x_53); +lean_dec_ref(x_46); +lean_dec_ref(x_41); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_10 = x_3; +x_11 = x_4; +x_12 = x_5; +x_13 = x_6; +x_14 = x_7; +x_15 = x_8; +x_16 = x_9; +goto block_19; +} +else +{ +uint8_t x_63; +x_63 = !lean_is_exclusive(x_62); +if (x_63 == 0) +{ +lean_object* x_64; lean_object* x_65; +x_64 = lean_ctor_get(x_62, 1); +x_65 = lean_ctor_get(x_62, 0); +lean_dec(x_65); +if (lean_obj_tag(x_64) == 0) +{ +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; +x_66 = lean_ctor_get(x_61, 0); +lean_inc(x_66); +lean_dec_ref(x_61); +x_67 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__0___boxed), 8, 0); +x_68 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__9; +lean_ctor_set(x_62, 0, x_66); +lean_inc_ref(x_62); +x_69 = l_Lean_Expr_const___override(x_68, x_62); +x_70 = l_Lean_Expr_app___override(x_69, x_53); +x_71 = lean_box(x_60); +x_72 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14___boxed), 21, 13); +lean_closure_set(x_72, 0, x_67); +lean_closure_set(x_72, 1, x_2); +lean_closure_set(x_72, 2, x_46); +lean_closure_set(x_72, 3, x_36); +lean_closure_set(x_72, 4, x_39); +lean_closure_set(x_72, 5, x_57); +lean_closure_set(x_72, 6, x_58); +lean_closure_set(x_72, 7, x_62); +lean_closure_set(x_72, 8, x_70); +lean_closure_set(x_72, 9, x_42); +lean_closure_set(x_72, 10, x_71); +lean_closure_set(x_72, 11, x_64); +lean_closure_set(x_72, 12, x_41); +x_73 = l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38(x_1, x_72, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_73; +} +else +{ +lean_free_object(x_62); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_53); +lean_dec_ref(x_46); +lean_dec_ref(x_41); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_10 = x_3; +x_11 = x_4; +x_12 = x_5; +x_13 = x_6; +x_14 = x_7; +x_15 = x_8; +x_16 = x_9; +goto block_19; +} +} +else +{ +lean_object* x_74; +x_74 = lean_ctor_get(x_62, 1); +lean_inc(x_74); +lean_dec(x_62); +if (lean_obj_tag(x_74) == 0) +{ +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; +x_75 = lean_ctor_get(x_61, 0); +lean_inc(x_75); +lean_dec_ref(x_61); +x_76 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__0___boxed), 8, 0); +x_77 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__9; +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_75); +lean_ctor_set(x_78, 1, x_74); +lean_inc_ref(x_78); +x_79 = l_Lean_Expr_const___override(x_77, x_78); +x_80 = l_Lean_Expr_app___override(x_79, x_53); +x_81 = lean_box(x_60); +x_82 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14___boxed), 21, 13); +lean_closure_set(x_82, 0, x_76); +lean_closure_set(x_82, 1, x_2); +lean_closure_set(x_82, 2, x_46); +lean_closure_set(x_82, 3, x_36); +lean_closure_set(x_82, 4, x_39); +lean_closure_set(x_82, 5, x_57); +lean_closure_set(x_82, 6, x_58); +lean_closure_set(x_82, 7, x_78); +lean_closure_set(x_82, 8, x_80); +lean_closure_set(x_82, 9, x_42); +lean_closure_set(x_82, 10, x_81); +lean_closure_set(x_82, 11, x_74); +lean_closure_set(x_82, 12, x_41); +x_83 = l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38(x_1, x_82, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_83; +} +else +{ +lean_dec_ref(x_74); +lean_dec_ref(x_61); +lean_dec_ref(x_53); +lean_dec_ref(x_46); +lean_dec_ref(x_41); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_10 = x_3; +x_11 = x_4; +x_12 = x_5; +x_13 = x_6; +x_14 = x_7; +x_15 = x_8; +x_16 = x_9; +goto block_19; +} +} +} +} +} +} +} +} +} +} +block_19: +{ +lean_object* x_17; lean_object* x_18; +x_17 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__1; +x_18 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_17, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +lean_dec(x_11); +return x_18; +} +block_34: +{ +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_28 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__3; +x_29 = l_Lean_MessageData_ofExpr(x_20); +x_30 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +x_31 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_32 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +x_33 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_32, x_21, x_22, x_23, x_24, x_25, x_26, x_27); +lean_dec(x_22); +return x_33; +} +} +} +LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0_spec__0___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) { _start: { lean_object* x_7; -x_7 = l_Lean_throwError___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0_spec__0(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); @@ -9483,244 +12226,741 @@ lean_dec_ref(x_2); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_throwError___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg___lam__0___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: { -lean_object* x_12; -x_12 = l_Lean_throwError___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_10); -lean_dec_ref(x_9); +lean_object* x_10; +x_10 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); lean_dec_ref(x_5); lean_dec(x_4); lean_dec_ref(x_3); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__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: -{ -lean_object* x_12; -x_12 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_10); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_1); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; -x_13 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_11); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); lean_dec(x_2); -return x_13; +return x_10; } } -LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_13; -x_13 = l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_11); +lean_object* x_9; +x_9 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_3); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___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: +{ +lean_object* x_10; +x_10 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2_spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +size_t x_5; size_t x_6; lean_object* x_7; +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_7 = l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2_spec__2(x_1, x_5, x_6, x_4); +lean_dec_ref(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2_spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +size_t x_5; size_t x_6; lean_object* x_7; +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_7 = l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2_spec__3(x_1, x_5, x_6, x_4); +lean_dec_ref(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2_spec__2(x_1, x_2); +lean_dec_ref(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +size_t x_5; size_t x_6; lean_object* x_7; +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_7 = l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2(x_1, x_5, x_6, x_4); +lean_dec_ref(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec_ref(x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_3); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; size_t x_5; lean_object* x_6; +x_4 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__8(x_4, x_5, x_3); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Array_zipWithMAux___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__9___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: +{ +lean_object* x_10; +x_10 = l_Array_zipWithMAux___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +size_t x_9; size_t x_10; lean_object* x_11; +x_9 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_10 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_11 = l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10(x_9, x_10, x_3, x_4, x_5, x_6, x_7, x_8); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Array_isEqvAux___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Array_isEqvAux___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg(x_1, x_2, x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_5 = lean_box(x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Array_isEqvAux___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +uint8_t x_6; lean_object* x_7; +x_6 = l_Array_isEqvAux___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11(x_1, x_2, x_3, x_4, x_5); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_7 = lean_box(x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___lam__0___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: +{ +lean_object* x_10; +x_10 = l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +size_t x_13; size_t x_14; lean_object* x_15; +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_15 = l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_7); +lean_dec_ref(x_2); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___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: +{ +lean_object* x_10; +x_10 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; uint8_t x_14; lean_object* x_15; +x_13 = lean_unbox(x_4); +x_14 = lean_unbox(x_5); +x_15 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(x_1, x_2, x_3, x_13, x_14, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_unbox(x_5); +x_15 = lean_unbox(x_6); +x_16 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15(x_1, x_2, x_3, x_4, x_14, x_15, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__18___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +size_t x_6; lean_object* x_7; +x_6 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_7 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__18___redArg(x_6, x_2, x_3, x_4, x_5); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__18___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: +{ +size_t x_8; lean_object* x_9; +x_8 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_9 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16_spec__18(x_1, x_8, x_3, x_4, x_5, x_6, x_7); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +size_t x_6; size_t x_7; lean_object* x_8; +x_6 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_7 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_8 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg(x_1, x_6, x_7, x_4, x_5); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___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) { +_start: +{ +size_t x_7; size_t x_8; lean_object* x_9; +x_7 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_8 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_9 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16(x_1, x_2, x_7, x_8, x_5, x_6); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16___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: +{ +lean_object* x_10; +x_10 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__22_spec__22___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +size_t x_5; size_t x_6; lean_object* x_7; +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_7 = l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__22_spec__22(x_1, x_5, x_6, x_4); +lean_dec_ref(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Array_filterMapM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__22___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Array_filterMapM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__22(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__24___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +size_t x_5; size_t x_6; lean_object* x_7; +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_7 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__24(x_1, x_5, x_6, x_4); +lean_dec_ref(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__25___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__25___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__25___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +size_t x_11; size_t x_12; lean_object* x_13; +x_11 = lean_unbox_usize(x_1); lean_dec(x_1); +x_12 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_13 = l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__25(x_11, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__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, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__26___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_14; -x_14 = l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +size_t x_9; size_t x_10; lean_object* x_11; +x_9 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_10 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_11 = l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__26(x_9, x_10, x_3, x_4, x_5, x_6, x_7, x_8); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___lam__0___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: +{ +lean_object* x_10; +x_10 = l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_7); +lean_dec_ref(x_1); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__28___lam__0___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: +{ +lean_object* x_10; +x_10 = l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__28___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__28___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; size_t x_5; lean_object* x_6; +x_4 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__28(x_4, x_5, x_3); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__29___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; size_t x_5; lean_object* x_6; +x_4 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__29(x_4, x_5, x_3); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; uint8_t x_14; lean_object* x_15; +x_13 = lean_unbox(x_2); +x_14 = lean_unbox(x_5); +x_15 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg(x_1, x_13, x_3, x_4, x_14, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_unbox(x_3); +x_15 = lean_unbox(x_6); +x_16 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30(x_1, x_2, x_14, x_4, x_5, x_15, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___lam__0___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: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec_ref(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_1); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_2); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_1); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_2); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_1); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_2); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__35___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +size_t x_6; size_t x_7; lean_object* x_8; +x_6 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_7 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_8 = l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__35(x_1, x_2, x_6, x_7, x_5); +lean_dec_ref(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__36___redArg___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__36___redArg(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__36___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__36(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__0___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: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_14 = lean_unbox(x_3); +x_15 = lean_unbox(x_4); +x_16 = lean_unbox(x_5); +x_17 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__1(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_12); +lean_dec_ref(x_11); lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec_ref(x_5); +lean_dec_ref(x_1); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__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, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_14 = lean_unbox(x_3); +x_15 = lean_unbox(x_4); +x_16 = lean_unbox(x_5); +x_17 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__2(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +uint8_t x_16; lean_object* x_17; +x_16 = lean_unbox(x_5); +x_17 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__3(x_1, x_2, x_3, x_4, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +lean_dec_ref(x_1); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__4___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: +{ +size_t x_12; size_t x_13; lean_object* x_14; +x_12 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_13 = lean_unbox_usize(x_2); lean_dec(x_2); +x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__4(x_12, x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; -x_12 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_10); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); +size_t x_12; size_t x_13; lean_object* x_14; +x_12 = lean_unbox_usize(x_1); lean_dec(x_1); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__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, lean_object* x_12) { -_start: -{ -lean_object* x_13; -x_13 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_11); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); +x_13 = lean_unbox_usize(x_2); lean_dec(x_2); -return x_13; +x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__5(x_12, x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +return x_14; } } -LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___redArg___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__6___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: { -lean_object* x_11; -x_11 = l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_9); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -return x_11; +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; } } -LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__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) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__7___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: { -lean_object* x_12; -x_12 = l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_10); +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); lean_dec_ref(x_5); lean_dec(x_4); lean_dec_ref(x_3); -return x_12; +lean_dec(x_2); +return x_10; } } -LEAN_EXPORT lean_object* l_Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__8___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: { -lean_object* x_11; -x_11 = l_Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_9); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; -x_13 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -return x_13; -} -} -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { -_start: -{ -size_t x_15; size_t x_16; lean_object* x_17; -x_15 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_16 = lean_unbox_usize(x_4); +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_4); -x_17 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8(x_1, x_2, x_15, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_17; +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { -_start: -{ -size_t x_15; size_t x_16; lean_object* x_17; -x_15 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_16 = lean_unbox_usize(x_4); -lean_dec(x_4); -x_17 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8___redArg(x_1, x_2, x_15, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_17; -} -} -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -9740,337 +12980,101 @@ lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; _start: { -size_t x_20; size_t x_21; lean_object* x_22; -x_20 = lean_unbox_usize(x_8); -lean_dec(x_8); -x_21 = lean_unbox_usize(x_9); -lean_dec(x_9); -x_22 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_20, x_21, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); +lean_object* x_21; +x_21 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_22; +return x_21; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__10___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { -size_t x_13; size_t x_14; lean_object* x_15; -x_13 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_14 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_15 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__10___redArg(x_1, x_13, x_14, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_1); -return x_15; -} -} -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -size_t x_14; size_t x_15; lean_object* x_16; -x_14 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_15 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_16 = l_Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__10(x_1, x_14, x_15, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); lean_dec_ref(x_5); -lean_dec_ref(x_1); -return x_16; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -uint8_t x_13; lean_object* x_14; -x_13 = lean_unbox(x_3); -x_14 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext(x_1, x_2, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_4); +lean_dec_ref(x_3); lean_dec(x_2); -return x_14; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_isDuplicable___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("OfNat", 5, 5); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_isDuplicable___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("ofNat", 5, 5); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_isDuplicable___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Do_isDuplicable___closed__1; -x_2 = l_Lean_Elab_Tactic_Do_isDuplicable___closed__0; -x_3 = l_Lean_Name_mkStr2(x_2, x_1); -return x_3; -} -} -LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Do_isDuplicable(lean_object* x_1) { -_start: -{ -switch (lean_obj_tag(x_1)) { -case 5: -{ -lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Elab_Tactic_Do_isDuplicable___closed__2; -x_3 = l_Lean_Expr_isAppOf(x_1, x_2); -return x_3; -} -case 6: -{ -uint8_t x_4; -x_4 = 0; -return x_4; -} -case 7: -{ -uint8_t x_5; -x_5 = 0; -return x_5; -} -case 8: -{ -uint8_t x_6; -x_6 = 0; -return x_6; -} -case 10: -{ -lean_object* x_7; -x_7 = lean_ctor_get(x_1, 1); -x_1 = x_7; -goto _start; -} -case 11: -{ -lean_object* x_9; -x_9 = lean_ctor_get(x_1, 2); -x_1 = x_9; -goto _start; -} -default: -{ -uint8_t x_11; -x_11 = 1; -return x_11; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_isDuplicable___boxed(lean_object* x_1) { -_start: -{ -uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Elab_Tactic_Do_isDuplicable(x_1); -lean_dec_ref(x_1); -x_3 = lean_box(x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withSharing_spec__0___redArg___lam__0(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_10; -x_10 = lean_apply_8(x_1, x_4, x_2, x_3, x_5, x_6, x_7, x_8, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withSharing_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_14; lean_object* x_15; -x_14 = lean_alloc_closure((void*)(l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withSharing_spec__0___redArg___lam__0), 9, 3); -lean_closure_set(x_14, 0, x_4); -lean_closure_set(x_14, 1, x_7); -lean_closure_set(x_14, 2, x_8); -x_15 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp(lean_box(0), x_1, x_2, x_3, x_14, x_5, x_6, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_15) == 0) -{ -return x_15; -} -else -{ -uint8_t x_16; -x_16 = !lean_is_exclusive(x_15); -if (x_16 == 0) -{ -return x_15; -} -else -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_15, 0); -x_18 = lean_ctor_get(x_15, 1); -lean_inc(x_18); -lean_inc(x_17); -lean_dec(x_15); -x_19 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_19, 0, x_17); -lean_ctor_set(x_19, 1, x_18); -return x_19; +uint8_t x_12; lean_object* x_13; +x_12 = lean_unbox(x_2); +x_13 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__0(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +return x_13; } } -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withSharing_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t 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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__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) { _start: { -lean_object* x_15; -x_15 = l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withSharing_spec__0___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); -return x_15; +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -lean_object* x_14; -x_14 = l_Lean_Meta_mkForallFVars(x_1, x_2, x_3, x_4, x_4, x_5, x_9, x_10, x_11, x_12, x_13); -return x_14; +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__1___closed__0() { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(1u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__1(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__4___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: { -lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_12 = l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__1___closed__0; -x_13 = lean_array_push(x_12, x_1); -x_14 = 1; -x_15 = lean_box(x_2); -x_16 = lean_box(x_3); -x_17 = lean_box(x_14); -x_18 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__0___boxed), 13, 5); -lean_closure_set(x_18, 0, x_13); -lean_closure_set(x_18, 1, x_4); -lean_closure_set(x_18, 2, x_15); -lean_closure_set(x_18, 3, x_16); -lean_closure_set(x_18, 4, x_17); -x_19 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_18, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_19; +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__2(uint8_t 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, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_12 = lean_box(x_1); -x_13 = lean_box(x_2); -lean_inc_ref(x_4); -x_14 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__1___boxed), 11, 3); -lean_closure_set(x_14, 0, x_4); -lean_closure_set(x_14, 1, x_12); -lean_closure_set(x_14, 2, x_13); -x_15 = lean_apply_9(x_3, x_4, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_15; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -lean_object* x_9; -x_9 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_9, 0, x_1); -lean_ctor_set(x_9, 1, x_8); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -uint8_t x_13; -x_13 = l_Lean_Elab_Tactic_Do_isDuplicable(x_3); -if (x_13 == 0) -{ -uint8_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_14 = 1; -x_15 = lean_box(x_13); -x_16 = lean_box(x_14); -x_17 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__2___boxed), 11, 3); -lean_closure_set(x_17, 0, x_15); -lean_closure_set(x_17, 1, x_16); -lean_closure_set(x_17, 2, x_4); -x_18 = l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withSharing_spec__0___redArg(x_1, x_2, x_3, x_17, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -return x_18; -} -else -{ -lean_object* x_19; lean_object* x_20; -lean_dec_ref(x_2); -lean_dec(x_1); -x_19 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__3___boxed), 8, 0); -x_20 = lean_apply_9(x_4, x_3, x_19, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -return x_20; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing(lean_object* x_1, lean_object* x_2, lean_object* 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, lean_object* x_12, lean_object* x_13) { -_start: -{ -lean_object* x_14; -x_14 = l_Lean_Elab_Tactic_Do_withSharing___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_14; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withSharing_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -uint8_t x_14; uint8_t x_15; lean_object* x_16; -x_14 = lean_unbox(x_5); -x_15 = lean_unbox(x_6); -x_16 = l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withSharing_spec__0___redArg(x_1, x_2, x_3, x_4, x_14, x_15, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_16; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withSharing_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { -_start: -{ -uint8_t x_15; uint8_t x_16; lean_object* x_17; -x_15 = lean_unbox(x_6); -x_16 = lean_unbox(x_7); -x_17 = l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withSharing_spec__0(x_1, x_2, x_3, x_4, x_5, x_15, x_16, x_8, x_9, x_10, x_11, x_12, x_13, x_14); -return x_17; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; x_14 = lean_unbox(x_3); x_15 = lean_unbox(x_4); x_16 = lean_unbox(x_5); -x_17 = l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__0(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_17 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__5(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_12); lean_dec_ref(x_11); lean_dec(x_10); @@ -10082,654 +13086,318 @@ lean_dec_ref(x_1); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +lean_object* x_22 = _args[21]; _start: { -uint8_t x_12; uint8_t x_13; lean_object* x_14; -x_12 = lean_unbox(x_2); -x_13 = lean_unbox(x_3); -x_14 = l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__1(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_6); -return x_14; +uint8_t x_23; lean_object* x_24; +x_23 = lean_unbox(x_4); +x_24 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6(x_1, x_2, x_3, x_23, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22); +return x_24; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__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) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38___lam__0___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_1); -x_13 = lean_unbox(x_2); -x_14 = l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__2(x_12, x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_14; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -lean_object* x_9; -x_9 = l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -uint8_t x_13; lean_object* x_14; -x_13 = lean_unbox(x_5); -x_14 = l_Lean_Elab_Tactic_Do_withSharing___redArg(x_1, x_2, x_3, x_4, x_13, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -return x_14; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withSharing___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -uint8_t x_14; lean_object* x_15; -x_14 = lean_unbox(x_6); -x_15 = l_Lean_Elab_Tactic_Do_withSharing(x_1, x_2, x_3, x_4, x_5, x_14, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_15; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_reduceProjBeta_x3f_go___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Prod", 4, 4); -return x_1; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_reduceProjBeta_x3f_go(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: -{ -switch (lean_obj_tag(x_2)) { -case 4: -{ -lean_object* x_9; lean_object* x_10; uint8_t x_11; -x_9 = lean_ctor_get(x_2, 0); -lean_inc(x_9); -x_10 = lean_st_ref_get(x_7, x_8); -x_11 = !lean_is_exclusive(x_10); -if (x_11 == 0) -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -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_ref(x_14); -lean_dec(x_12); -x_15 = l_Lean_Environment_getProjectionStructureName_x3f(x_14, x_9); -if (lean_obj_tag(x_15) == 0) -{ -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); +lean_object* x_12; +x_12 = l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec_ref(x_3); lean_dec_ref(x_2); -lean_ctor_set(x_10, 0, x_1); -return x_10; -} -else -{ -lean_object* x_16; -x_16 = lean_ctor_get(x_15, 0); -lean_inc(x_16); -lean_dec_ref(x_15); -if (lean_obj_tag(x_16) == 1) -{ -lean_object* x_17; -x_17 = lean_ctor_get(x_16, 0); -lean_inc(x_17); -if (lean_obj_tag(x_17) == 0) -{ -lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_18 = lean_ctor_get(x_16, 1); -lean_inc_ref(x_18); -lean_dec_ref(x_16); -x_19 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_reduceProjBeta_x3f_go___closed__0; -x_20 = lean_string_dec_eq(x_18, x_19); -lean_dec_ref(x_18); -if (x_20 == 0) -{ -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_ctor_set(x_10, 0, x_1); -return x_10; -} -else -{ -lean_object* x_21; uint8_t x_22; lean_object* x_23; -lean_free_object(x_10); -x_21 = l_Lean_mkAppRev(x_2, x_3); -lean_dec_ref(x_3); -x_22 = 0; -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc(x_5); -lean_inc_ref(x_4); -x_23 = l_Lean_Meta_unfoldDefinition_x3f(x_21, x_22, x_4, x_5, x_6, x_7, x_13); -if (lean_obj_tag(x_23) == 0) -{ -lean_object* x_24; -x_24 = lean_ctor_get(x_23, 0); -lean_inc(x_24); -if (lean_obj_tag(x_24) == 0) -{ -uint8_t x_25; -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_25 = !lean_is_exclusive(x_23); -if (x_25 == 0) -{ -lean_object* x_26; -x_26 = lean_ctor_get(x_23, 0); -lean_dec(x_26); -lean_ctor_set(x_23, 0, x_1); -return x_23; -} -else -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_23, 1); -lean_inc(x_27); -lean_dec(x_23); -x_28 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_28, 0, x_1); -lean_ctor_set(x_28, 1, x_27); -return x_28; -} -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_29 = lean_ctor_get(x_23, 1); -lean_inc(x_29); -lean_dec_ref(x_23); -x_30 = lean_ctor_get(x_24, 0); -lean_inc(x_30); -lean_dec_ref(x_24); -x_31 = l_Lean_Expr_getAppFn(x_30); -x_32 = l_Lean_Expr_getAppNumArgs(x_30); -x_33 = lean_mk_empty_array_with_capacity(x_32); -lean_dec(x_32); -x_34 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_30, x_33); -x_2 = x_31; -x_3 = x_34; -x_8 = x_29; -goto _start; -} -} -else -{ -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_1); -return x_23; -} -} -} -else -{ -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_ctor_set(x_10, 0, x_1); -return x_10; -} -} -else -{ -lean_dec(x_16); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_ctor_set(x_10, 0, x_1); -return x_10; -} -} -} -else -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_36 = lean_ctor_get(x_10, 0); -x_37 = lean_ctor_get(x_10, 1); -lean_inc(x_37); -lean_inc(x_36); -lean_dec(x_10); -x_38 = lean_ctor_get(x_36, 0); -lean_inc_ref(x_38); -lean_dec(x_36); -x_39 = l_Lean_Environment_getProjectionStructureName_x3f(x_38, x_9); -if (lean_obj_tag(x_39) == 0) -{ -lean_object* x_40; -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_40 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_40, 0, x_1); -lean_ctor_set(x_40, 1, x_37); -return x_40; -} -else -{ -lean_object* x_41; -x_41 = lean_ctor_get(x_39, 0); -lean_inc(x_41); -lean_dec_ref(x_39); -if (lean_obj_tag(x_41) == 1) -{ -lean_object* x_42; -x_42 = lean_ctor_get(x_41, 0); -lean_inc(x_42); -if (lean_obj_tag(x_42) == 0) -{ -lean_object* x_43; lean_object* x_44; uint8_t x_45; -x_43 = lean_ctor_get(x_41, 1); -lean_inc_ref(x_43); -lean_dec_ref(x_41); -x_44 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_reduceProjBeta_x3f_go___closed__0; -x_45 = lean_string_dec_eq(x_43, x_44); -lean_dec_ref(x_43); -if (x_45 == 0) -{ -lean_object* x_46; -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_46 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_46, 0, x_1); -lean_ctor_set(x_46, 1, x_37); -return x_46; -} -else -{ -lean_object* x_47; uint8_t x_48; lean_object* x_49; -x_47 = l_Lean_mkAppRev(x_2, x_3); -lean_dec_ref(x_3); -x_48 = 0; -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc(x_5); -lean_inc_ref(x_4); -x_49 = l_Lean_Meta_unfoldDefinition_x3f(x_47, x_48, x_4, x_5, x_6, x_7, x_37); -if (lean_obj_tag(x_49) == 0) -{ -lean_object* x_50; -x_50 = lean_ctor_get(x_49, 0); -lean_inc(x_50); -if (lean_obj_tag(x_50) == 0) -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_51 = lean_ctor_get(x_49, 1); -lean_inc(x_51); -if (lean_is_exclusive(x_49)) { - lean_ctor_release(x_49, 0); - lean_ctor_release(x_49, 1); - x_52 = x_49; -} else { - lean_dec_ref(x_49); - x_52 = lean_box(0); -} -if (lean_is_scalar(x_52)) { - x_53 = lean_alloc_ctor(0, 2, 0); -} else { - x_53 = x_52; -} -lean_ctor_set(x_53, 0, x_1); -lean_ctor_set(x_53, 1, x_51); -return x_53; -} -else -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_54 = lean_ctor_get(x_49, 1); -lean_inc(x_54); -lean_dec_ref(x_49); -x_55 = lean_ctor_get(x_50, 0); -lean_inc(x_55); -lean_dec_ref(x_50); -x_56 = l_Lean_Expr_getAppFn(x_55); -x_57 = l_Lean_Expr_getAppNumArgs(x_55); -x_58 = lean_mk_empty_array_with_capacity(x_57); -lean_dec(x_57); -x_59 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_55, x_58); -x_2 = x_56; -x_3 = x_59; -x_8 = x_54; -goto _start; -} -} -else -{ -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_1); -return x_49; -} -} -} -else -{ -lean_object* x_61; -lean_dec(x_42); -lean_dec_ref(x_41); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_61 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_61, 0, x_1); -lean_ctor_set(x_61, 1, x_37); -return x_61; -} -} -else -{ -lean_object* x_62; -lean_dec(x_41); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_62 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_62, 0, x_1); -lean_ctor_set(x_62, 1, x_37); -return x_62; -} -} -} -} -case 5: -{ -lean_object* x_63; lean_object* x_64; lean_object* x_65; -x_63 = lean_ctor_get(x_2, 0); -lean_inc_ref(x_63); -x_64 = lean_ctor_get(x_2, 1); -lean_inc_ref(x_64); -lean_dec_ref(x_2); -x_65 = lean_array_push(x_3, x_64); -x_2 = x_63; -x_3 = x_65; -goto _start; -} -case 6: -{ -lean_object* x_67; lean_object* x_68; uint8_t x_69; -x_67 = lean_array_get_size(x_3); -x_68 = lean_unsigned_to_nat(0u); -x_69 = lean_nat_dec_eq(x_67, x_68); -lean_dec(x_67); -if (x_69 == 0) -{ -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -lean_dec(x_1); -x_70 = l_Lean_Expr_betaRev(x_2, x_3, x_69, x_69); -lean_dec_ref(x_3); -lean_inc_ref(x_70); -x_71 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_71, 0, x_70); -x_72 = l_Lean_Expr_getAppFn(x_70); -x_73 = l_Lean_Expr_getAppNumArgs(x_70); -x_74 = lean_mk_empty_array_with_capacity(x_73); -lean_dec(x_73); -x_75 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_70, x_74); -x_1 = x_71; -x_2 = x_72; -x_3 = x_75; -goto _start; -} -else -{ -lean_object* x_77; -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_77 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_77, 0, x_1); -lean_ctor_set(x_77, 1, x_8); -return x_77; -} -} -case 10: -{ -lean_object* x_78; -x_78 = lean_ctor_get(x_2, 1); -lean_inc_ref(x_78); -lean_dec_ref(x_2); -x_2 = x_78; -goto _start; -} -case 11: -{ -lean_object* x_80; -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc(x_5); -lean_inc_ref(x_4); -x_80 = l_Lean_Meta_reduceProj_x3f(x_2, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_80) == 0) -{ -lean_object* x_81; -x_81 = lean_ctor_get(x_80, 0); -lean_inc(x_81); -if (lean_obj_tag(x_81) == 0) -{ -uint8_t x_82; -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -x_82 = !lean_is_exclusive(x_80); -if (x_82 == 0) -{ -lean_object* x_83; -x_83 = lean_ctor_get(x_80, 0); -lean_dec(x_83); -lean_ctor_set(x_80, 0, x_1); -return x_80; -} -else -{ -lean_object* x_84; lean_object* x_85; -x_84 = lean_ctor_get(x_80, 1); -lean_inc(x_84); -lean_dec(x_80); -x_85 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_85, 0, x_1); -lean_ctor_set(x_85, 1, x_84); -return x_85; -} -} -else -{ -lean_object* x_86; uint8_t x_87; -lean_dec(x_1); -x_86 = lean_ctor_get(x_80, 1); -lean_inc(x_86); -lean_dec_ref(x_80); -x_87 = !lean_is_exclusive(x_81); -if (x_87 == 0) -{ -lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_88 = lean_ctor_get(x_81, 0); -x_89 = l_Lean_mkAppRev(x_88, x_3); -lean_dec_ref(x_3); -lean_inc_ref(x_89); -lean_ctor_set(x_81, 0, x_89); -x_90 = l_Lean_Expr_getAppFn(x_89); -x_91 = l_Lean_Expr_getAppNumArgs(x_89); -x_92 = lean_mk_empty_array_with_capacity(x_91); -lean_dec(x_91); -x_93 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_89, x_92); -x_1 = x_81; -x_2 = x_90; -x_3 = x_93; -x_8 = x_86; -goto _start; -} -else -{ -lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; -x_95 = lean_ctor_get(x_81, 0); -lean_inc(x_95); -lean_dec(x_81); -x_96 = l_Lean_mkAppRev(x_95, x_3); -lean_dec_ref(x_3); -lean_inc_ref(x_96); -x_97 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_97, 0, x_96); -x_98 = l_Lean_Expr_getAppFn(x_96); -x_99 = l_Lean_Expr_getAppNumArgs(x_96); -x_100 = lean_mk_empty_array_with_capacity(x_99); -lean_dec(x_99); -x_101 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_96, x_100); -x_1 = x_97; -x_2 = x_98; -x_3 = x_101; -x_8 = x_86; -goto _start; -} -} -} -else -{ -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec(x_1); -return x_80; -} -} -default: -{ -lean_object* x_103; -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_103 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_103, 0, x_1); -lean_ctor_set(x_103, 1, x_8); -return x_103; -} -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_reduceProjBeta_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { -_start: -{ -lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; -x_7 = lean_box(0); -x_8 = l_Lean_Expr_getAppFn(x_1); -x_9 = l_Lean_Expr_getAppNumArgs(x_1); -x_10 = lean_mk_empty_array_with_capacity(x_9); -lean_dec(x_9); -x_11 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_1, x_10); -x_12 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_reduceProjBeta_x3f_go(x_7, x_8, x_11, x_2, x_3, x_4, x_5, x_6); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onFail___redArg(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; lean_object* x_10; -x_9 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_1); -x_10 = l_Lean_Elab_Tactic_Do_emitVC___redArg(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onFail(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_10; -x_10 = l_Lean_Elab_Tactic_Do_step_onFail___redArg(x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onFail___redArg___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_Tactic_Do_step_onFail___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); +lean_dec_ref(x_4); lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onFail___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: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_step_onFail(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec(x_4); -lean_dec_ref(x_3); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_step_tryGoal_spec__0___redArg___lam__0(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__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) { _start: { lean_object* x_11; -x_11 = lean_apply_9(x_1, x_4, x_5, x_2, x_3, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_step_tryGoal_spec__0___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__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: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__4___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: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +size_t x_11; lean_object* x_12; +x_11 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_12 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__8(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_14 = lean_unbox(x_3); +x_15 = lean_unbox(x_4); +x_16 = lean_unbox(x_5); +x_17 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__7(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_14 = lean_unbox(x_3); +x_15 = lean_unbox(x_4); +x_16 = lean_unbox(x_5); +x_17 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__9(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_14 = lean_unbox(x_3); +x_15 = lean_unbox(x_4); +x_16 = lean_unbox(x_5); +x_17 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__10(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__11(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +_start: +{ +uint8_t x_22; size_t x_23; lean_object* x_24; +x_22 = lean_unbox(x_2); +x_23 = lean_unbox_usize(x_12); +lean_dec(x_12); +x_24 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13(x_1, x_22, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_23, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +lean_dec(x_16); +lean_dec_ref(x_14); +lean_dec_ref(x_11); +lean_dec(x_5); +return x_24; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +_start: +{ +uint8_t x_22; lean_object* x_23; +x_22 = lean_unbox(x_11); +x_23 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +lean_dec(x_10); +return x_23; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +_start: +{ +uint8_t x_22; lean_object* x_23; +x_22 = lean_unbox(x_11); +x_23 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_22, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +lean_dec_ref(x_13); +return x_23; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg(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; uint8_t x_12; lean_object* x_13; lean_object* x_14; -x_11 = lean_alloc_closure((void*)(l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_step_tryGoal_spec__0___redArg___lam__0), 10, 3); +x_11 = lean_alloc_closure((void*)(l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg___lam__0), 10, 3); lean_closure_set(x_11, 0, x_2); lean_closure_set(x_11, 1, x_4); lean_closure_set(x_11, 2, x_5); @@ -10764,15 +13432,15 @@ return x_18; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_step_tryGoal_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_step_tryGoal_spec__0___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_tryGoal___lam__0(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__0(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_10; @@ -10780,7 +13448,7 @@ x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mStart(x_1, x_5, x_6, x_7, x_8, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_tryGoal___lam__1(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__1(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { _start: { lean_object* x_14; @@ -10788,7 +13456,7 @@ x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_tryGoal___lam__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { _start: { lean_object* x_14; @@ -10796,12 +13464,12 @@ x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_tryGoal___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_inc_ref(x_4); -x_12 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_tryGoal___lam__0___boxed), 9, 1); +x_12 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__0___boxed), 9, 1); lean_closure_set(x_12, 0, x_4); lean_inc(x_10); lean_inc_ref(x_9); @@ -10829,7 +13497,7 @@ lean_inc(x_8); lean_inc_ref(x_7); lean_inc(x_6); lean_inc_ref(x_5); -x_18 = l_Lean_Elab_Tactic_Do_step_onGoal(x_1, x_16, x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_15); +x_18 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(x_1, x_16, x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_15); if (lean_obj_tag(x_18) == 0) { lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; @@ -10874,7 +13542,7 @@ x_30 = 1; x_31 = lean_box(x_28); x_32 = lean_box(x_29); x_33 = lean_box(x_30); -x_34 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_tryGoal___lam__1___boxed), 13, 5); +x_34 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__1___boxed), 13, 5); lean_closure_set(x_34, 0, x_3); lean_closure_set(x_34, 1, x_21); lean_closure_set(x_34, 2, x_31); @@ -10949,7 +13617,7 @@ x_47 = 1; x_48 = lean_box(x_42); x_49 = lean_box(x_46); x_50 = lean_box(x_47); -x_51 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_tryGoal___lam__2___boxed), 13, 5); +x_51 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__2___boxed), 13, 5); lean_closure_set(x_51, 0, x_3); lean_closure_set(x_51, 1, x_44); lean_closure_set(x_51, 2, x_48); @@ -10996,1453 +13664,64 @@ return x_53; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_tryGoal(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; uint8_t x_12; lean_object* x_13; -x_11 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_tryGoal___lam__3), 11, 2); +x_11 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__3), 11, 2); lean_closure_set(x_11, 0, x_1); lean_closure_set(x_11, 1, x_3); x_12 = 0; -x_13 = l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_step_tryGoal_spec__0___redArg(x_2, x_11, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg(x_2, x_11, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onGoal___lam__0(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_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_10; -x_10 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_reduceProjBeta_x3f(x_1, x_5, x_6, x_7, x_8, x_9); -return x_10; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onGoal___closed__0() { -_start: +lean_object* x_14; lean_object* x_15; +x_14 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg___lam__0), 9, 3); +lean_closure_set(x_14, 0, x_4); +lean_closure_set(x_14, 1, x_7); +lean_closure_set(x_14, 2, x_8); +x_15 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp(lean_box(0), x_1, x_2, x_3, x_14, x_5, x_6, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_15) == 0) { -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Std", 3, 3); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onGoal___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("SPred", 5, 5); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onGoal___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("imp", 3, 3); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onGoal___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__2; -x_2 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__1; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onGoal___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("PredTrans", 9, 9); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onGoal___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("apply", 5, 5); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onGoal___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__5; -x_2 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__4; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onGoal(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_11 = lean_ctor_get(x_2, 0); -lean_inc(x_11); -x_12 = lean_ctor_get(x_2, 1); -lean_inc_ref(x_12); -x_13 = lean_ctor_get(x_2, 2); -lean_inc_ref(x_13); -x_14 = lean_ctor_get(x_2, 3); -lean_inc_ref(x_14); -if (lean_is_exclusive(x_2)) { - lean_ctor_release(x_2, 0); - lean_ctor_release(x_2, 1); - lean_ctor_release(x_2, 2); - lean_ctor_release(x_2, 3); - x_15 = x_2; -} else { - lean_dec_ref(x_2); - x_15 = lean_box(0); -} -lean_inc_ref(x_14); -x_16 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onGoal___lam__0___boxed), 9, 1); -lean_closure_set(x_16, 0, x_14); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_17 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_17) == 0) -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_17, 0); -lean_inc(x_18); -x_19 = lean_ctor_get(x_17, 1); -lean_inc(x_19); -lean_dec_ref(x_17); -if (lean_obj_tag(x_18) == 0) -{ -x_20 = x_14; -goto block_34; -} -else -{ -lean_object* x_35; -lean_dec_ref(x_14); -x_35 = lean_ctor_get(x_18, 0); -lean_inc(x_35); -lean_dec_ref(x_18); -x_20 = x_35; -goto block_34; -} -block_34: -{ -lean_object* x_21; lean_object* x_22; uint8_t x_23; -lean_inc_ref(x_20); -if (lean_is_scalar(x_15)) { - x_21 = lean_alloc_ctor(0, 4, 0); -} else { - x_21 = x_15; -} -lean_ctor_set(x_21, 0, x_11); -lean_ctor_set(x_21, 1, x_12); -lean_ctor_set(x_21, 2, x_13); -lean_ctor_set(x_21, 3, x_20); -x_22 = l_Lean_Expr_getAppFn(x_20); -lean_dec_ref(x_20); -x_23 = l_Lean_Expr_isLambda(x_22); -if (x_23 == 0) -{ -uint8_t x_24; -x_24 = l_Lean_Expr_isLet(x_22); -if (x_24 == 0) -{ -lean_object* x_25; uint8_t x_26; -x_25 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__3; -x_26 = l_Lean_Expr_isConstOf(x_22, x_25); -if (x_26 == 0) -{ -lean_object* x_27; uint8_t x_28; -x_27 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__6; -x_28 = l_Lean_Expr_isConstOf(x_22, x_27); -lean_dec_ref(x_22); -if (x_28 == 0) -{ -lean_object* x_29; -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_29 = l_Lean_Elab_Tactic_Do_step_onFail___redArg(x_21, x_3, x_5, x_6, x_7, x_8, x_9, x_19); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_5); -return x_29; -} -else -{ -lean_object* x_30; -x_30 = l_Lean_Elab_Tactic_Do_step_onWPApp(x_1, x_21, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_19); -return x_30; -} -} -else -{ -lean_object* x_31; -lean_dec_ref(x_22); -x_31 = l_Lean_Elab_Tactic_Do_step_onImp(x_1, x_21, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_19); -return x_31; -} -} -else -{ -lean_object* x_32; -lean_dec_ref(x_22); -x_32 = l_Lean_Elab_Tactic_Do_step_onLet(x_1, x_21, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_19); -return x_32; -} -} -else -{ -lean_object* x_33; -lean_dec_ref(x_22); -x_33 = l_Lean_Elab_Tactic_Do_step_onLambda(x_1, x_21, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_19); -return x_33; -} -} -} -else -{ -uint8_t x_36; -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_36 = !lean_is_exclusive(x_17); -if (x_36 == 0) -{ -return x_17; -} -else -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_37 = lean_ctor_get(x_17, 0); -x_38 = lean_ctor_get(x_17, 1); -lean_inc(x_38); -lean_inc(x_37); -lean_dec(x_17); -x_39 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_39, 0, x_37); -lean_ctor_set(x_39, 1, x_38); -return x_39; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__0___redArg(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; uint8_t x_9; -x_7 = lean_ctor_get(x_4, 5); -x_8 = l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0(x_1, x_2, x_3, x_4, x_5, x_6); -x_9 = !lean_is_exclusive(x_8); -if (x_9 == 0) -{ -lean_object* x_10; lean_object* x_11; -x_10 = lean_ctor_get(x_8, 0); -lean_inc(x_7); -x_11 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_11, 0, x_7); -lean_ctor_set(x_11, 1, x_10); -lean_ctor_set_tag(x_8, 1); -lean_ctor_set(x_8, 0, x_11); -return x_8; -} -else -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_12 = lean_ctor_get(x_8, 0); -x_13 = lean_ctor_get(x_8, 1); -lean_inc(x_13); -lean_inc(x_12); -lean_dec(x_8); -lean_inc(x_7); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_7); -lean_ctor_set(x_14, 1, x_12); -x_15 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_15, 0, x_14); -lean_ctor_set(x_15, 1, x_13); return x_15; } -} -} -LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { -_start: -{ -lean_object* x_8; -x_8 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__0___redArg(x_2, x_3, x_4, x_5, x_6, x_7); -return x_8; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1_spec__1___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { -_start: -{ -lean_object* x_8; -x_8 = lean_apply_6(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -return x_8; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1_spec__1___redArg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; lean_object* x_12; -x_11 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1_spec__1___redArg___lam__0), 7, 1); -lean_closure_set(x_11, 0, x_4); -x_12 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp(lean_box(0), x_1, x_2, x_3, x_11, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_12) == 0) -{ -uint8_t x_13; -x_13 = !lean_is_exclusive(x_12); -if (x_13 == 0) -{ -return x_12; -} else { -lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_14 = lean_ctor_get(x_12, 0); -x_15 = lean_ctor_get(x_12, 1); -lean_inc(x_15); -lean_inc(x_14); -lean_dec(x_12); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_14); -lean_ctor_set(x_16, 1, x_15); -return x_16; -} +uint8_t x_16; +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +return x_15; } else { -uint8_t x_17; -x_17 = !lean_is_exclusive(x_12); -if (x_17 == 0) -{ -return x_12; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_12, 0); -x_19 = lean_ctor_get(x_12, 1); -lean_inc(x_19); -lean_inc(x_18); -lean_dec(x_12); -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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1_spec__1(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; -x_12 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1_spec__1___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1___redArg(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: -{ -uint8_t x_9; uint8_t x_10; lean_object* x_11; -x_9 = 0; -x_10 = 0; -x_11 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1_spec__1___redArg(x_1, x_9, x_2, x_3, x_10, x_4, x_5, x_6, x_7, x_8); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { -_start: -{ -lean_object* x_14; -x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x_11, x_12, x_13); -return x_14; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__1___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("entails_cons_intro", 18, 18); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__1___closed__0; -x_2 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__1; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__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, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { -_start: -{ lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_12, 2); -lean_inc_ref(x_17); -lean_inc_ref(x_1); -x_18 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_18, 0, x_1); -lean_inc(x_15); -lean_inc_ref(x_14); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc_ref(x_11); -x_19 = l_Lean_Elab_Tactic_Do_ProofMode_addLocalVarInfo(x_2, x_17, x_11, x_18, x_3, x_12, x_13, x_14, x_15, x_16); -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; uint8_t x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_20 = lean_ctor_get(x_19, 1); -lean_inc(x_20); -lean_dec_ref(x_19); -lean_inc_ref(x_11); -lean_inc_ref(x_4); -x_21 = l_Lean_Expr_app___override(x_4, x_11); -lean_inc_ref(x_5); -x_22 = l_Lean_Elab_Tactic_Do_ProofMode_pushForallContextIntoHyps(x_5, x_21); -x_23 = l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__1___closed__0; -x_24 = lean_array_push(x_23, x_11); -x_25 = 0; -lean_inc_ref(x_6); -x_26 = l_Lean_Expr_betaRev(x_6, x_24, x_25, x_25); -lean_inc_ref(x_5); -lean_inc(x_7); -x_27 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_27, 0, x_7); -lean_ctor_set(x_27, 1, x_5); -lean_ctor_set(x_27, 2, x_22); -lean_ctor_set(x_27, 3, x_26); -lean_inc(x_15); -lean_inc_ref(x_14); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_10); -lean_inc_ref(x_9); -x_28 = lean_apply_8(x_8, x_27, x_9, x_10, x_12, x_13, x_14, x_15, x_20); -if (lean_obj_tag(x_28) == 0) -{ -uint8_t x_29; -x_29 = !lean_is_exclusive(x_28); -if (x_29 == 0) -{ -lean_object* x_30; uint8_t x_31; -x_30 = lean_ctor_get(x_28, 0); -x_31 = !lean_is_exclusive(x_30); -if (x_31 == 0) -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_32 = lean_ctor_get(x_28, 1); -x_33 = lean_ctor_get(x_30, 0); -x_34 = lean_ctor_get(x_30, 1); -x_35 = 1; -x_36 = lean_box(x_25); -x_37 = lean_box(x_3); -x_38 = lean_box(x_35); -x_39 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__0___boxed), 13, 5); -lean_closure_set(x_39, 0, x_24); -lean_closure_set(x_39, 1, x_34); -lean_closure_set(x_39, 2, x_36); -lean_closure_set(x_39, 3, x_37); -lean_closure_set(x_39, 4, x_38); -x_40 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_39, x_9, x_10, x_12, x_13, x_14, x_15, x_32); -lean_dec(x_10); -if (lean_obj_tag(x_40) == 0) -{ -uint8_t x_41; -x_41 = !lean_is_exclusive(x_40); -if (x_41 == 0) -{ -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_42 = lean_ctor_get(x_40, 0); -x_43 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__1___closed__1; -x_44 = lean_box(0); -lean_ctor_set_tag(x_28, 1); -lean_ctor_set(x_28, 1, x_44); -lean_ctor_set(x_28, 0, x_7); -x_45 = l_Lean_Expr_const___override(x_43, x_28); -x_46 = l_Lean_mkApp5(x_45, x_5, x_1, x_4, x_6, x_42); -lean_ctor_set(x_30, 1, x_46); -lean_ctor_set(x_40, 0, x_30); -return x_40; -} -else -{ -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; -x_47 = lean_ctor_get(x_40, 0); -x_48 = lean_ctor_get(x_40, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_40); -x_49 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__1___closed__1; -x_50 = lean_box(0); -lean_ctor_set_tag(x_28, 1); -lean_ctor_set(x_28, 1, x_50); -lean_ctor_set(x_28, 0, x_7); -x_51 = l_Lean_Expr_const___override(x_49, x_28); -x_52 = l_Lean_mkApp5(x_51, x_5, x_1, x_4, x_6, x_47); -lean_ctor_set(x_30, 1, x_52); -x_53 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_53, 0, x_30); -lean_ctor_set(x_53, 1, x_48); -return x_53; -} -} -else -{ -uint8_t x_54; -lean_free_object(x_30); -lean_dec(x_33); -lean_free_object(x_28); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_54 = !lean_is_exclusive(x_40); -if (x_54 == 0) -{ -return x_40; -} -else -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_55 = lean_ctor_get(x_40, 0); -x_56 = lean_ctor_get(x_40, 1); -lean_inc(x_56); -lean_inc(x_55); -lean_dec(x_40); -x_57 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_57, 0, x_55); -lean_ctor_set(x_57, 1, x_56); -return x_57; -} -} -} -else -{ -lean_object* x_58; lean_object* x_59; lean_object* x_60; uint8_t x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; -x_58 = lean_ctor_get(x_28, 1); -x_59 = lean_ctor_get(x_30, 0); -x_60 = lean_ctor_get(x_30, 1); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_30); -x_61 = 1; -x_62 = lean_box(x_25); -x_63 = lean_box(x_3); -x_64 = lean_box(x_61); -x_65 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__0___boxed), 13, 5); -lean_closure_set(x_65, 0, x_24); -lean_closure_set(x_65, 1, x_60); -lean_closure_set(x_65, 2, x_62); -lean_closure_set(x_65, 3, x_63); -lean_closure_set(x_65, 4, x_64); -x_66 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_65, x_9, x_10, x_12, x_13, x_14, x_15, x_58); -lean_dec(x_10); -if (lean_obj_tag(x_66) == 0) -{ -lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_67 = lean_ctor_get(x_66, 0); -lean_inc(x_67); -x_68 = lean_ctor_get(x_66, 1); -lean_inc(x_68); -if (lean_is_exclusive(x_66)) { - lean_ctor_release(x_66, 0); - lean_ctor_release(x_66, 1); - x_69 = x_66; -} else { - lean_dec_ref(x_66); - x_69 = lean_box(0); -} -x_70 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__1___closed__1; -x_71 = lean_box(0); -lean_ctor_set_tag(x_28, 1); -lean_ctor_set(x_28, 1, x_71); -lean_ctor_set(x_28, 0, x_7); -x_72 = l_Lean_Expr_const___override(x_70, x_28); -x_73 = l_Lean_mkApp5(x_72, x_5, x_1, x_4, x_6, x_67); -x_74 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_74, 0, x_59); -lean_ctor_set(x_74, 1, x_73); -if (lean_is_scalar(x_69)) { - x_75 = lean_alloc_ctor(0, 2, 0); -} else { - x_75 = x_69; -} -lean_ctor_set(x_75, 0, x_74); -lean_ctor_set(x_75, 1, x_68); -return x_75; -} -else -{ -lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; -lean_dec(x_59); -lean_free_object(x_28); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_76 = lean_ctor_get(x_66, 0); -lean_inc(x_76); -x_77 = lean_ctor_get(x_66, 1); -lean_inc(x_77); -if (lean_is_exclusive(x_66)) { - lean_ctor_release(x_66, 0); - lean_ctor_release(x_66, 1); - x_78 = x_66; -} else { - lean_dec_ref(x_66); - x_78 = lean_box(0); -} -if (lean_is_scalar(x_78)) { - x_79 = lean_alloc_ctor(1, 2, 0); -} else { - x_79 = x_78; -} -lean_ctor_set(x_79, 0, x_76); -lean_ctor_set(x_79, 1, x_77); -return x_79; -} -} -} -else -{ -lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; uint8_t x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; -x_80 = lean_ctor_get(x_28, 0); -x_81 = lean_ctor_get(x_28, 1); -lean_inc(x_81); -lean_inc(x_80); -lean_dec(x_28); -x_82 = lean_ctor_get(x_80, 0); -lean_inc(x_82); -x_83 = lean_ctor_get(x_80, 1); -lean_inc(x_83); -if (lean_is_exclusive(x_80)) { - lean_ctor_release(x_80, 0); - lean_ctor_release(x_80, 1); - x_84 = x_80; -} else { - lean_dec_ref(x_80); - x_84 = lean_box(0); -} -x_85 = 1; -x_86 = lean_box(x_25); -x_87 = lean_box(x_3); -x_88 = lean_box(x_85); -x_89 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__0___boxed), 13, 5); -lean_closure_set(x_89, 0, x_24); -lean_closure_set(x_89, 1, x_83); -lean_closure_set(x_89, 2, x_86); -lean_closure_set(x_89, 3, x_87); -lean_closure_set(x_89, 4, x_88); -x_90 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_89, x_9, x_10, x_12, x_13, x_14, x_15, x_81); -lean_dec(x_10); -if (lean_obj_tag(x_90) == 0) -{ -lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; -x_91 = lean_ctor_get(x_90, 0); -lean_inc(x_91); -x_92 = lean_ctor_get(x_90, 1); -lean_inc(x_92); -if (lean_is_exclusive(x_90)) { - lean_ctor_release(x_90, 0); - lean_ctor_release(x_90, 1); - x_93 = x_90; -} else { - lean_dec_ref(x_90); - x_93 = lean_box(0); -} -x_94 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__1___closed__1; -x_95 = lean_box(0); -x_96 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_96, 0, x_7); -lean_ctor_set(x_96, 1, x_95); -x_97 = l_Lean_Expr_const___override(x_94, x_96); -x_98 = l_Lean_mkApp5(x_97, x_5, x_1, x_4, x_6, x_91); -if (lean_is_scalar(x_84)) { - x_99 = lean_alloc_ctor(0, 2, 0); -} else { - x_99 = x_84; -} -lean_ctor_set(x_99, 0, x_82); -lean_ctor_set(x_99, 1, x_98); -if (lean_is_scalar(x_93)) { - x_100 = lean_alloc_ctor(0, 2, 0); -} else { - x_100 = x_93; -} -lean_ctor_set(x_100, 0, x_99); -lean_ctor_set(x_100, 1, x_92); -return x_100; -} -else -{ -lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; -lean_dec(x_84); -lean_dec(x_82); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_101 = lean_ctor_get(x_90, 0); -lean_inc(x_101); -x_102 = lean_ctor_get(x_90, 1); -lean_inc(x_102); -if (lean_is_exclusive(x_90)) { - lean_ctor_release(x_90, 0); - lean_ctor_release(x_90, 1); - x_103 = x_90; -} else { - lean_dec_ref(x_90); - x_103 = lean_box(0); -} -if (lean_is_scalar(x_103)) { - x_104 = lean_alloc_ctor(1, 2, 0); -} else { - x_104 = x_103; -} -lean_ctor_set(x_104, 0, x_101); -lean_ctor_set(x_104, 1, x_102); -return x_104; -} -} -} -else -{ -lean_dec_ref(x_24); +x_17 = lean_ctor_get(x_15, 0); +x_18 = lean_ctor_get(x_15, 1); +lean_inc(x_18); +lean_inc(x_17); lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -return x_28; -} -} -else -{ -uint8_t x_105; -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_105 = !lean_is_exclusive(x_19); -if (x_105 == 0) -{ +x_19 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); return x_19; } -else -{ -lean_object* x_106; lean_object* x_107; lean_object* x_108; -x_106 = lean_ctor_get(x_19, 0); -x_107 = lean_ctor_get(x_19, 1); -lean_inc(x_107); -lean_inc(x_106); -lean_dec(x_19); -x_108 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_108, 0, x_106); -lean_ctor_set(x_108, 1, x_107); -return x_108; } } } -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__0() { +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t 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) { _start: { -lean_object* x_1; -x_1 = lean_mk_string_unchecked("List", 4, 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("cons", 4, 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__1; -x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__0; -x_3 = l_Lean_Name_mkStr2(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Ambient state list not a cons ", 30, 30); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__3; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("binderIdent", 11, 11); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__5; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Name_mkStr2(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__7() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("s", 1, 1); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__7; -x_2 = l_Lean_Name_mkStr1(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__9() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("ident", 5, 5); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__9; -x_2 = l_Lean_Name_mkStr1(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_17 = lean_ctor_get(x_1, 0); -lean_inc(x_17); -x_18 = lean_ctor_get(x_1, 1); -lean_inc_ref(x_18); -x_19 = lean_ctor_get(x_1, 2); -lean_inc_ref(x_19); -x_20 = lean_ctor_get(x_1, 3); -lean_inc_ref(x_20); -lean_dec_ref(x_1); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_18); -x_21 = lean_whnf(x_18, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_21) == 0) -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; -x_22 = lean_ctor_get(x_21, 0); -lean_inc(x_22); -x_23 = lean_ctor_get(x_21, 1); -lean_inc(x_23); -lean_dec_ref(x_21); -x_24 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__2; -x_25 = lean_unsigned_to_nat(3u); -x_26 = l_Lean_Expr_isAppOfArity(x_22, x_24, x_25); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; -lean_dec(x_22); -lean_dec_ref(x_20); -lean_dec_ref(x_19); -lean_dec(x_17); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -x_27 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__4; -x_28 = l_Lean_MessageData_ofExpr(x_18); -x_29 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_29, 0, x_27); -lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -x_31 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -x_32 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__0___redArg(x_31, x_6, x_7, x_8, x_9, x_23); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -x_11 = x_32; -goto block_16; -} -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; -lean_dec_ref(x_18); -x_33 = l_Lean_Expr_appFn_x21(x_22); -x_34 = l_Lean_Expr_appArg_x21(x_33); -lean_dec_ref(x_33); -x_35 = l_Lean_Expr_appArg_x21(x_22); -lean_dec(x_22); -x_36 = lean_box(x_26); -lean_inc(x_2); -lean_inc_ref(x_34); -x_37 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__1___boxed), 16, 10); -lean_closure_set(x_37, 0, x_34); -lean_closure_set(x_37, 1, x_2); -lean_closure_set(x_37, 2, x_36); -lean_closure_set(x_37, 3, x_19); -lean_closure_set(x_37, 4, x_35); -lean_closure_set(x_37, 5, x_20); -lean_closure_set(x_37, 6, x_17); -lean_closure_set(x_37, 7, x_3); -lean_closure_set(x_37, 8, x_4); -lean_closure_set(x_37, 9, x_5); -x_38 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__6; -lean_inc(x_2); -x_39 = l_Lean_Syntax_isOfKind(x_2, x_38); -if (x_39 == 0) -{ -lean_object* x_40; lean_object* x_41; -lean_dec(x_2); -x_40 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__8; -x_41 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_40, x_8, x_9, x_23); -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_ref(x_41); -x_44 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1___redArg(x_42, x_34, x_37, x_6, x_7, x_8, x_9, x_43); -x_11 = x_44; -goto block_16; -} -else -{ -uint8_t x_45; -lean_dec_ref(x_37); -lean_dec_ref(x_34); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -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_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; uint8_t x_52; -x_49 = lean_unsigned_to_nat(0u); -x_50 = l_Lean_Syntax_getArg(x_2, x_49); -lean_dec(x_2); -x_51 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__10; -lean_inc(x_50); -x_52 = l_Lean_Syntax_isOfKind(x_50, x_51); -if (x_52 == 0) -{ -lean_object* x_53; lean_object* x_54; -lean_dec(x_50); -x_53 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__8; -x_54 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_53, x_8, x_9, x_23); -if (lean_obj_tag(x_54) == 0) -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_55 = lean_ctor_get(x_54, 0); -lean_inc(x_55); -x_56 = lean_ctor_get(x_54, 1); -lean_inc(x_56); -lean_dec_ref(x_54); -x_57 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1___redArg(x_55, x_34, x_37, x_6, x_7, x_8, x_9, x_56); -x_11 = x_57; -goto block_16; -} -else -{ -uint8_t x_58; -lean_dec_ref(x_37); -lean_dec_ref(x_34); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -x_58 = !lean_is_exclusive(x_54); -if (x_58 == 0) -{ -return x_54; -} -else -{ -lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_59 = lean_ctor_get(x_54, 0); -x_60 = lean_ctor_get(x_54, 1); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_54); -x_61 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_61, 0, x_59); -lean_ctor_set(x_61, 1, x_60); -return x_61; -} -} -} -else -{ -lean_object* x_62; lean_object* x_63; -x_62 = l_Lean_Syntax_getId(x_50); -lean_dec(x_50); -x_63 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1___redArg(x_62, x_34, x_37, x_6, x_7, x_8, x_9, x_23); -x_11 = x_63; -goto block_16; -} -} -} -} -else -{ -uint8_t x_64; -lean_dec_ref(x_20); -lean_dec_ref(x_19); -lean_dec_ref(x_18); -lean_dec(x_17); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -x_64 = !lean_is_exclusive(x_21); -if (x_64 == 0) -{ -return x_21; -} -else -{ -lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_65 = lean_ctor_get(x_21, 0); -x_66 = lean_ctor_get(x_21, 1); -lean_inc(x_66); -lean_inc(x_65); -lean_dec(x_21); -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; -} -} -block_16: -{ -if (lean_obj_tag(x_11) == 0) -{ -return x_11; -} -else -{ -uint8_t x_12; -x_12 = !lean_is_exclusive(x_11); -if (x_12 == 0) -{ -return x_11; -} -else -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_13 = lean_ctor_get(x_11, 0); -x_14 = lean_ctor_get(x_11, 1); -lean_inc(x_14); -lean_inc(x_13); -lean_dec(x_11); -x_15 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_15, 0, x_13); -lean_ctor_set(x_15, 1, x_14); +lean_object* x_15; +x_15 = l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__0___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); return x_15; } } -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onLambda___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_step_onGoal(x_1, x_3, x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_11) == 0) -{ -uint8_t x_12; -x_12 = !lean_is_exclusive(x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_13 = lean_ctor_get(x_11, 0); -x_14 = lean_box(0); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_14); -lean_ctor_set(x_15, 1, x_13); -lean_ctor_set(x_11, 0, x_15); -return x_11; -} -else -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_16 = lean_ctor_get(x_11, 0); -x_17 = lean_ctor_get(x_11, 1); -lean_inc(x_17); -lean_inc(x_16); -lean_dec(x_11); -x_18 = lean_box(0); -x_19 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_19, 0, x_18); -lean_ctor_set(x_19, 1, x_16); -x_20 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_20, 0, x_19); -lean_ctor_set(x_20, 1, x_17); -return x_20; -} -} -else -{ -uint8_t x_21; -x_21 = !lean_is_exclusive(x_11); -if (x_21 == 0) -{ -return x_11; -} -else -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_11, 0); -x_23 = lean_ctor_get(x_11, 1); -lean_inc(x_23); -lean_inc(x_22); -lean_dec(x_11); -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; -} -} -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Term", 4, 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("hole", 4, 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__1; -x_2 = l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__0; -x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("_", 1, 1); -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onLambda___lam__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_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; -x_10 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_4, x_9); -x_11 = lean_ctor_get(x_10, 1); -lean_inc(x_11); -lean_dec_ref(x_10); -x_12 = lean_st_ref_get(x_8, x_11); -x_13 = !lean_is_exclusive(x_12); -if (x_13 == 0) -{ -lean_object* x_14; lean_object* x_15; 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; -x_14 = lean_ctor_get(x_12, 1); -x_15 = lean_ctor_get(x_12, 0); -lean_dec(x_15); -x_16 = lean_ctor_get(x_7, 5); -lean_inc(x_16); -x_17 = 0; -x_18 = l_Lean_SourceInfo_fromRef(x_16, x_17); -lean_dec(x_16); -x_19 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__6; -x_20 = l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__2; -x_21 = l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__3; -lean_inc(x_18); -lean_ctor_set_tag(x_12, 2); -lean_ctor_set(x_12, 1, x_21); -lean_ctor_set(x_12, 0, x_18); -lean_inc(x_18); -x_22 = l_Lean_Syntax_node1(x_18, x_20, x_12); -x_23 = l_Lean_Syntax_node1(x_18, x_19, x_22); -x_24 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg(x_1, x_23, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_14); -if (lean_obj_tag(x_24) == 0) -{ -uint8_t x_25; -x_25 = !lean_is_exclusive(x_24); -if (x_25 == 0) -{ -lean_object* x_26; lean_object* x_27; -x_26 = lean_ctor_get(x_24, 0); -x_27 = lean_ctor_get(x_26, 1); -lean_inc(x_27); -lean_dec(x_26); -lean_ctor_set(x_24, 0, x_27); -return x_24; -} -else -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_28 = lean_ctor_get(x_24, 0); -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_inc(x_28); -lean_dec(x_24); -x_30 = lean_ctor_get(x_28, 1); -lean_inc(x_30); -lean_dec(x_28); -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -uint8_t x_32; -x_32 = !lean_is_exclusive(x_24); -if (x_32 == 0) -{ -return x_24; -} -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_33 = lean_ctor_get(x_24, 0); -x_34 = lean_ctor_get(x_24, 1); -lean_inc(x_34); -lean_inc(x_33); -lean_dec(x_24); -x_35 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_35, 0, x_33); -lean_ctor_set(x_35, 1, x_34); -return x_35; -} -} -} -else -{ -lean_object* x_36; 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; lean_object* x_46; -x_36 = lean_ctor_get(x_12, 1); -lean_inc(x_36); -lean_dec(x_12); -x_37 = lean_ctor_get(x_7, 5); -lean_inc(x_37); -x_38 = 0; -x_39 = l_Lean_SourceInfo_fromRef(x_37, x_38); -lean_dec(x_37); -x_40 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__6; -x_41 = l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__2; -x_42 = l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__3; -lean_inc(x_39); -x_43 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_42); -lean_inc(x_39); -x_44 = l_Lean_Syntax_node1(x_39, x_41, x_43); -x_45 = l_Lean_Syntax_node1(x_39, x_40, x_44); -x_46 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg(x_1, x_45, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_36); -if (lean_obj_tag(x_46) == 0) -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_47 = lean_ctor_get(x_46, 0); -lean_inc(x_47); -x_48 = lean_ctor_get(x_46, 1); -lean_inc(x_48); -if (lean_is_exclusive(x_46)) { - lean_ctor_release(x_46, 0); - lean_ctor_release(x_46, 1); - x_49 = x_46; -} else { - lean_dec_ref(x_46); - x_49 = lean_box(0); -} -x_50 = lean_ctor_get(x_47, 1); -lean_inc(x_50); -lean_dec(x_47); -if (lean_is_scalar(x_49)) { - x_51 = lean_alloc_ctor(0, 2, 0); -} else { - x_51 = x_49; -} -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set(x_51, 1, x_48); -return x_51; -} -else -{ -lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_52 = lean_ctor_get(x_46, 0); -lean_inc(x_52); -x_53 = lean_ctor_get(x_46, 1); -lean_inc(x_53); -if (lean_is_exclusive(x_46)) { - lean_ctor_release(x_46, 0); - lean_ctor_release(x_46, 1); - x_54 = x_46; -} else { - lean_dec_ref(x_46); - x_54 = lean_box(0); -} -if (lean_is_scalar(x_54)) { - x_55 = lean_alloc_ctor(1, 2, 0); -} else { - x_55 = x_54; -} -lean_ctor_set(x_55, 0, x_52); -lean_ctor_set(x_55, 1, x_53); -return x_55; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onLambda(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -lean_inc(x_3); -x_11 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onLambda___lam__0), 10, 2); -lean_closure_set(x_11, 0, x_1); -lean_closure_set(x_11, 1, x_3); -lean_inc_ref(x_2); -x_12 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onLambda___lam__1), 9, 2); -lean_closure_set(x_12, 0, x_2); -lean_closure_set(x_12, 1, x_11); -x_13 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onFail___boxed), 9, 2); -lean_closure_set(x_13, 0, x_2); -lean_closure_set(x_13, 1, x_3); -x_14 = l_Lean_Elab_Tactic_Do_ifOutOfFuel___redArg(x_13, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_14; -} -} -LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0_spec__0___redArg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__1___redArg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; @@ -12646,15 +13925,15 @@ return x_62; } } } -LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__1(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; -x_6 = l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0_spec__0___redArg(x_4, x_5); +x_6 = l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__1___redArg(x_4, x_5); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t 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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; @@ -12662,7 +13941,7 @@ x_13 = l_Lean_Meta_mkLetFVars(x_1, x_2, x_3, x_3, x_4, x_8, x_9, x_10, x_11, x_1 return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { lean_object* x_14; lean_object* x_15; lean_object* x_16; @@ -12681,157 +13960,26 @@ lean_inc_ref(x_7); x_16 = lean_apply_8(x_5, x_15, x_7, x_8, x_9, x_10, x_11, x_12, x_13); if (lean_obj_tag(x_16) == 0) { -lean_object* x_17; lean_object* x_18; uint8_t x_19; +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; x_17 = lean_ctor_get(x_16, 0); lean_inc(x_17); x_18 = lean_ctor_get(x_16, 1); lean_inc(x_18); lean_dec_ref(x_16); -x_19 = !lean_is_exclusive(x_17); -if (x_19 == 0) -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; uint8_t x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_20 = lean_ctor_get(x_17, 0); -x_21 = lean_ctor_get(x_17, 1); -x_22 = l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__1___closed__0; -x_23 = lean_array_push(x_22, x_6); -x_24 = 1; -x_25 = 1; -x_26 = lean_box(x_24); -x_27 = lean_box(x_25); -x_28 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__0___boxed), 12, 4); -lean_closure_set(x_28, 0, x_23); -lean_closure_set(x_28, 1, x_21); -lean_closure_set(x_28, 2, x_26); -lean_closure_set(x_28, 3, x_27); -x_29 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_28, x_7, x_8, x_9, x_10, x_11, x_12, x_18); +x_19 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__0; +x_20 = lean_array_push(x_19, x_6); +x_21 = 1; +x_22 = 1; +x_23 = lean_box(x_21); +x_24 = lean_box(x_22); +x_25 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__0___boxed), 12, 4); +lean_closure_set(x_25, 0, x_20); +lean_closure_set(x_25, 1, x_17); +lean_closure_set(x_25, 2, x_23); +lean_closure_set(x_25, 3, x_24); +x_26 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_25, x_7, x_8, x_9, x_10, x_11, x_12, x_18); lean_dec(x_8); -if (lean_obj_tag(x_29) == 0) -{ -uint8_t x_30; -x_30 = !lean_is_exclusive(x_29); -if (x_30 == 0) -{ -lean_object* x_31; -x_31 = lean_ctor_get(x_29, 0); -lean_ctor_set(x_17, 1, x_31); -lean_ctor_set(x_29, 0, x_17); -return x_29; -} -else -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_32 = lean_ctor_get(x_29, 0); -x_33 = lean_ctor_get(x_29, 1); -lean_inc(x_33); -lean_inc(x_32); -lean_dec(x_29); -lean_ctor_set(x_17, 1, x_32); -x_34 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_34, 0, x_17); -lean_ctor_set(x_34, 1, x_33); -return x_34; -} -} -else -{ -uint8_t x_35; -lean_free_object(x_17); -lean_dec(x_20); -x_35 = !lean_is_exclusive(x_29); -if (x_35 == 0) -{ -return x_29; -} -else -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_36 = lean_ctor_get(x_29, 0); -x_37 = lean_ctor_get(x_29, 1); -lean_inc(x_37); -lean_inc(x_36); -lean_dec(x_29); -x_38 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_38, 0, x_36); -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_object* x_42; uint8_t x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_39 = lean_ctor_get(x_17, 0); -x_40 = lean_ctor_get(x_17, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_17); -x_41 = l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__1___closed__0; -x_42 = lean_array_push(x_41, x_6); -x_43 = 1; -x_44 = 1; -x_45 = lean_box(x_43); -x_46 = lean_box(x_44); -x_47 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__0___boxed), 12, 4); -lean_closure_set(x_47, 0, x_42); -lean_closure_set(x_47, 1, x_40); -lean_closure_set(x_47, 2, x_45); -lean_closure_set(x_47, 3, x_46); -x_48 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_47, x_7, x_8, x_9, x_10, x_11, x_12, x_18); -lean_dec(x_8); -if (lean_obj_tag(x_48) == 0) -{ -lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; -x_49 = lean_ctor_get(x_48, 0); -lean_inc(x_49); -x_50 = lean_ctor_get(x_48, 1); -lean_inc(x_50); -if (lean_is_exclusive(x_48)) { - lean_ctor_release(x_48, 0); - lean_ctor_release(x_48, 1); - x_51 = x_48; -} else { - lean_dec_ref(x_48); - x_51 = lean_box(0); -} -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_39); -lean_ctor_set(x_52, 1, x_49); -if (lean_is_scalar(x_51)) { - x_53 = lean_alloc_ctor(0, 2, 0); -} else { - x_53 = x_51; -} -lean_ctor_set(x_53, 0, x_52); -lean_ctor_set(x_53, 1, x_50); -return x_53; -} -else -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; -lean_dec(x_39); -x_54 = lean_ctor_get(x_48, 0); -lean_inc(x_54); -x_55 = lean_ctor_get(x_48, 1); -lean_inc(x_55); -if (lean_is_exclusive(x_48)) { - lean_ctor_release(x_48, 0); - lean_ctor_release(x_48, 1); - x_56 = x_48; -} else { - lean_dec_ref(x_48); - x_56 = lean_box(0); -} -if (lean_is_scalar(x_56)) { - x_57 = lean_alloc_ctor(1, 2, 0); -} else { - x_57 = x_56; -} -lean_ctor_set(x_57, 0, x_54); -lean_ctor_set(x_57, 1, x_55); -return x_57; -} -} +return x_26; } else { @@ -12846,16 +13994,16 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { uint8_t x_13; lean_object* x_14; x_13 = 0; -x_14 = l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withSharing_spec__0___redArg(x_5, x_1, x_2, x_3, x_4, x_13, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_14 = l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__0___redArg(x_5, x_1, x_2, x_3, x_4, x_13, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; @@ -12863,15 +14011,7 @@ x_10 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_1, x_7, x_8, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__5(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_10; -x_10 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__0___redArg(x_1, x_5, x_6, x_7, x_8, x_9); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__4(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__6(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_10; @@ -12879,15 +14019,15 @@ x_10 = l_Lean_Elab_Tactic_Do_ProofMode_getFreshHypName(x_1, x_7, x_8, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__6(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__4(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_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0_spec__0___redArg(x_7, x_8); +x_9 = l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__1___redArg(x_7, x_8); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; @@ -12895,7 +14035,70 @@ x_13 = l_Lean_Elab_Tactic_Do_ProofMode_addHypInfo(x_1, x_2, x_3, x_4, x_8, x_9, return x_13; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("imp", 3, 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__0; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__2; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Lean", 4, 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("binderIdent", 11, 11); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__3; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__2; +x_3 = l_Lean_Name_mkStr2(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("ident", 5, 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__5; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__7() { _start: { lean_object* x_1; @@ -12903,16 +14106,16 @@ x_1 = lean_mk_string_unchecked("Target not an implication or let-binding ", 41, return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__7; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__9() { _start: { lean_object* x_1; @@ -12920,29 +14123,21 @@ x_1 = lean_mk_string_unchecked("Intro", 5, 5); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("intro", 5, 5); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__10() { _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; lean_object* x_7; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__3; -x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__2; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__1; -x_5 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_6 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; +x_1 = l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__2; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__9; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__2; +x_5 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_6 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; x_7 = l_Lean_Name_mkStr6(x_6, x_5, x_4, x_3, x_2, x_1); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; @@ -12954,7 +14149,7 @@ x_12 = lean_ctor_get(x_1, 0); x_13 = lean_ctor_get(x_1, 1); x_14 = lean_ctor_get(x_1, 2); x_15 = lean_ctor_get(x_1, 3); -x_16 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__3; +x_16 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__1; x_17 = lean_unsigned_to_nat(3u); x_18 = l_Lean_Expr_isAppOfArity(x_15, x_16, x_17); if (x_18 == 0) @@ -12972,20 +14167,20 @@ lean_inc_ref(x_21); x_22 = lean_ctor_get(x_15, 3); lean_inc_ref(x_22); lean_dec_ref(x_15); -x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__1___boxed), 13, 5); +x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__1___boxed), 13, 5); lean_closure_set(x_23, 0, x_22); lean_closure_set(x_23, 1, x_12); lean_closure_set(x_23, 2, x_13); lean_closure_set(x_23, 3, x_14); lean_closure_set(x_23, 4, x_3); -x_24 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__6; +x_24 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__4; lean_inc(x_2); x_25 = l_Lean_Syntax_isOfKind(x_2, x_24); if (x_25 == 0) { lean_object* x_26; lean_object* x_27; lean_dec(x_2); -x_26 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__3___boxed), 9, 1); +x_26 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__3___boxed), 9, 1); lean_closure_set(x_26, 0, x_19); lean_inc(x_9); lean_inc_ref(x_8); @@ -13001,7 +14196,7 @@ lean_inc(x_28); x_29 = lean_ctor_get(x_27, 1); lean_inc(x_29); lean_dec_ref(x_27); -x_30 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__2(x_20, x_21, x_23, x_18, x_28, x_4, x_5, x_6, x_7, x_8, x_9, x_29); +x_30 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__2(x_20, x_21, x_23, x_18, x_28, x_4, x_5, x_6, x_7, x_8, x_9, x_29); return x_30; } else @@ -13042,14 +14237,14 @@ lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; x_35 = lean_unsigned_to_nat(0u); x_36 = l_Lean_Syntax_getArg(x_2, x_35); lean_dec(x_2); -x_37 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__10; +x_37 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__6; lean_inc(x_36); x_38 = l_Lean_Syntax_isOfKind(x_36, x_37); if (x_38 == 0) { lean_object* x_39; lean_object* x_40; lean_dec(x_36); -x_39 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__3___boxed), 9, 1); +x_39 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__3___boxed), 9, 1); lean_closure_set(x_39, 0, x_19); lean_inc(x_9); lean_inc_ref(x_8); @@ -13065,7 +14260,7 @@ lean_inc(x_41); x_42 = lean_ctor_get(x_40, 1); lean_inc(x_42); lean_dec_ref(x_40); -x_43 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__2(x_20, x_21, x_23, x_18, x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_42); +x_43 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__2(x_20, x_21, x_23, x_18, x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_42); return x_43; } else @@ -13106,7 +14301,7 @@ lean_object* x_48; lean_object* x_49; lean_dec(x_19); x_48 = l_Lean_Syntax_getId(x_36); lean_dec(x_36); -x_49 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__2(x_20, x_21, x_23, x_18, x_48, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_49 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__2(x_20, x_21, x_23, x_18, x_48, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_49; } } @@ -13119,16 +14314,16 @@ lean_dec_ref(x_13); lean_dec(x_12); lean_dec_ref(x_3); lean_dec(x_2); -x_50 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__1; +x_50 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__8; x_51 = l_Lean_MessageData_ofExpr(x_15); x_52 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_52, 0, x_50); lean_ctor_set(x_52, 1, x_51); -x_53 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; +x_53 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; x_54 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_54, 0, x_52); lean_ctor_set(x_54, 1, x_53); -x_55 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__5___boxed), 9, 1); +x_55 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__10___boxed), 9, 1); lean_closure_set(x_55, 0, x_54); x_56 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_55, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_5); @@ -13138,7 +14333,7 @@ return x_56; else { lean_object* x_57; lean_object* x_58; -x_57 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__4___boxed), 9, 1); +x_57 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__6___boxed), 9, 1); lean_closure_set(x_57, 0, x_2); lean_inc(x_9); lean_inc_ref(x_8); @@ -13159,7 +14354,7 @@ lean_inc(x_61); x_62 = lean_ctor_get(x_59, 1); lean_inc(x_62); lean_dec(x_59); -x_63 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__6___boxed), 8, 0); +x_63 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__4___boxed), 8, 0); lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_7); @@ -13187,7 +14382,7 @@ lean_ctor_set(x_71, 2, x_70); x_72 = lean_box(x_18); lean_inc_ref(x_71); lean_inc_ref(x_69); -x_73 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__7___boxed), 12, 4); +x_73 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__5___boxed), 12, 4); lean_closure_set(x_73, 0, x_62); lean_closure_set(x_73, 1, x_69); lean_closure_set(x_73, 2, x_71); @@ -13209,7 +14404,7 @@ lean_inc_ref(x_76); lean_inc_ref(x_14); lean_inc_ref(x_13); lean_inc(x_12); -x_77 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(x_12, x_13, x_14, x_76); +x_77 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_12, x_13, x_14, x_76); x_78 = !lean_is_exclusive(x_77); if (x_78 == 0) { @@ -13230,83 +14425,37 @@ uint8_t x_83; x_83 = !lean_is_exclusive(x_82); if (x_83 == 0) { -lean_object* x_84; uint8_t x_85; +lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; x_84 = lean_ctor_get(x_82, 0); -x_85 = !lean_is_exclusive(x_84); -if (x_85 == 0) -{ -lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; -x_86 = lean_ctor_get(x_84, 1); -x_87 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__4; -x_88 = lean_box(0); +x_85 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__10; +x_86 = lean_box(0); lean_ctor_set_tag(x_77, 1); -lean_ctor_set(x_77, 1, x_88); +lean_ctor_set(x_77, 1, x_86); lean_ctor_set(x_77, 0, x_12); -x_89 = l_Lean_Expr_const___override(x_87, x_77); -x_90 = l_Lean_mkApp7(x_89, x_69, x_79, x_14, x_76, x_81, x_80, x_86); -lean_ctor_set(x_84, 1, x_90); +x_87 = l_Lean_Expr_const___override(x_85, x_77); +x_88 = l_Lean_mkApp7(x_87, x_69, x_79, x_14, x_76, x_81, x_80, x_84); +lean_ctor_set(x_82, 0, x_88); return x_82; } else { -lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; -x_91 = lean_ctor_get(x_84, 0); -x_92 = lean_ctor_get(x_84, 1); -lean_inc(x_92); -lean_inc(x_91); -lean_dec(x_84); -x_93 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__4; -x_94 = lean_box(0); -lean_ctor_set_tag(x_77, 1); -lean_ctor_set(x_77, 1, x_94); -lean_ctor_set(x_77, 0, x_12); -x_95 = l_Lean_Expr_const___override(x_93, x_77); -x_96 = l_Lean_mkApp7(x_95, x_69, x_79, x_14, x_76, x_81, x_80, x_92); -x_97 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_97, 0, x_91); -lean_ctor_set(x_97, 1, x_96); -lean_ctor_set(x_82, 0, x_97); -return x_82; -} -} -else -{ -lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; -x_98 = lean_ctor_get(x_82, 0); -x_99 = lean_ctor_get(x_82, 1); -lean_inc(x_99); -lean_inc(x_98); +lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; +x_89 = lean_ctor_get(x_82, 0); +x_90 = lean_ctor_get(x_82, 1); +lean_inc(x_90); +lean_inc(x_89); lean_dec(x_82); -x_100 = lean_ctor_get(x_98, 0); -lean_inc(x_100); -x_101 = lean_ctor_get(x_98, 1); -lean_inc(x_101); -if (lean_is_exclusive(x_98)) { - lean_ctor_release(x_98, 0); - lean_ctor_release(x_98, 1); - x_102 = x_98; -} else { - lean_dec_ref(x_98); - x_102 = lean_box(0); -} -x_103 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__4; -x_104 = lean_box(0); +x_91 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__10; +x_92 = lean_box(0); lean_ctor_set_tag(x_77, 1); -lean_ctor_set(x_77, 1, x_104); +lean_ctor_set(x_77, 1, x_92); lean_ctor_set(x_77, 0, x_12); -x_105 = l_Lean_Expr_const___override(x_103, x_77); -x_106 = l_Lean_mkApp7(x_105, x_69, x_79, x_14, x_76, x_81, x_80, x_101); -if (lean_is_scalar(x_102)) { - x_107 = lean_alloc_ctor(0, 2, 0); -} else { - x_107 = x_102; -} -lean_ctor_set(x_107, 0, x_100); -lean_ctor_set(x_107, 1, x_106); -x_108 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_99); -return x_108; +x_93 = l_Lean_Expr_const___override(x_91, x_77); +x_94 = l_Lean_mkApp7(x_93, x_69, x_79, x_14, x_76, x_81, x_80, x_89); +x_95 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_95, 0, x_94); +lean_ctor_set(x_95, 1, x_90); +return x_95; } } else @@ -13324,86 +14473,67 @@ return x_82; } else { -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_ctor_get(x_77, 0); -x_110 = lean_ctor_get(x_77, 1); -lean_inc(x_110); -lean_inc(x_109); +lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; +x_96 = lean_ctor_get(x_77, 0); +x_97 = lean_ctor_get(x_77, 1); +lean_inc(x_97); +lean_inc(x_96); lean_dec(x_77); -x_111 = l_Lean_Expr_appArg_x21(x_15); +x_98 = l_Lean_Expr_appArg_x21(x_15); lean_dec_ref(x_15); -lean_inc_ref(x_111); -lean_inc(x_109); +lean_inc_ref(x_98); +lean_inc(x_96); lean_inc(x_12); -lean_ctor_set(x_1, 3, x_111); -lean_ctor_set(x_1, 2, x_109); -x_112 = lean_apply_8(x_3, x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_75); -if (lean_obj_tag(x_112) == 0) +lean_ctor_set(x_1, 3, x_98); +lean_ctor_set(x_1, 2, x_96); +x_99 = lean_apply_8(x_3, x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_75); +if (lean_obj_tag(x_99) == 0) { -lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; -x_113 = lean_ctor_get(x_112, 0); -lean_inc(x_113); -x_114 = lean_ctor_get(x_112, 1); -lean_inc(x_114); -if (lean_is_exclusive(x_112)) { - lean_ctor_release(x_112, 0); - lean_ctor_release(x_112, 1); - x_115 = x_112; +lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; +x_100 = lean_ctor_get(x_99, 0); +lean_inc(x_100); +x_101 = lean_ctor_get(x_99, 1); +lean_inc(x_101); +if (lean_is_exclusive(x_99)) { + lean_ctor_release(x_99, 0); + lean_ctor_release(x_99, 1); + x_102 = x_99; } else { - lean_dec_ref(x_112); - x_115 = lean_box(0); + lean_dec_ref(x_99); + x_102 = lean_box(0); } -x_116 = lean_ctor_get(x_113, 0); -lean_inc(x_116); -x_117 = lean_ctor_get(x_113, 1); -lean_inc(x_117); -if (lean_is_exclusive(x_113)) { - lean_ctor_release(x_113, 0); - lean_ctor_release(x_113, 1); - x_118 = x_113; +x_103 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__10; +x_104 = lean_box(0); +x_105 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_105, 0, x_12); +lean_ctor_set(x_105, 1, x_104); +x_106 = l_Lean_Expr_const___override(x_103, x_105); +x_107 = l_Lean_mkApp7(x_106, x_69, x_96, x_14, x_76, x_98, x_97, x_100); +if (lean_is_scalar(x_102)) { + x_108 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_113); - x_118 = lean_box(0); + x_108 = x_102; } -x_119 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__4; -x_120 = lean_box(0); -x_121 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_121, 0, x_12); -lean_ctor_set(x_121, 1, x_120); -x_122 = l_Lean_Expr_const___override(x_119, x_121); -x_123 = l_Lean_mkApp7(x_122, x_69, x_109, x_14, x_76, x_111, x_110, x_117); -if (lean_is_scalar(x_118)) { - x_124 = lean_alloc_ctor(0, 2, 0); -} else { - x_124 = x_118; -} -lean_ctor_set(x_124, 0, x_116); -lean_ctor_set(x_124, 1, x_123); -if (lean_is_scalar(x_115)) { - x_125 = lean_alloc_ctor(0, 2, 0); -} else { - x_125 = x_115; -} -lean_ctor_set(x_125, 0, x_124); -lean_ctor_set(x_125, 1, x_114); -return x_125; +lean_ctor_set(x_108, 0, x_107); +lean_ctor_set(x_108, 1, x_101); +return x_108; } else { -lean_dec_ref(x_111); -lean_dec(x_110); -lean_dec(x_109); +lean_dec_ref(x_98); +lean_dec(x_97); +lean_dec(x_96); lean_dec_ref(x_76); lean_dec_ref(x_69); lean_dec_ref(x_14); lean_dec(x_12); -return x_112; +return x_99; } } } else { -uint8_t x_126; +uint8_t x_109; lean_dec_ref(x_71); lean_dec_ref(x_69); lean_free_object(x_1); @@ -13418,29 +14548,29 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); -x_126 = !lean_is_exclusive(x_74); -if (x_126 == 0) +x_109 = !lean_is_exclusive(x_74); +if (x_109 == 0) { return x_74; } else { -lean_object* x_127; lean_object* x_128; lean_object* x_129; -x_127 = lean_ctor_get(x_74, 0); -x_128 = lean_ctor_get(x_74, 1); -lean_inc(x_128); -lean_inc(x_127); +lean_object* x_110; lean_object* x_111; lean_object* x_112; +x_110 = lean_ctor_get(x_74, 0); +x_111 = lean_ctor_get(x_74, 1); +lean_inc(x_111); +lean_inc(x_110); lean_dec(x_74); -x_129 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_129, 0, x_127); -lean_ctor_set(x_129, 1, x_128); -return x_129; +x_112 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_112, 0, x_110); +lean_ctor_set(x_112, 1, x_111); +return x_112; } } } else { -uint8_t x_130; +uint8_t x_113; lean_dec(x_62); lean_dec(x_61); lean_free_object(x_1); @@ -13455,29 +14585,29 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); -x_130 = !lean_is_exclusive(x_64); -if (x_130 == 0) +x_113 = !lean_is_exclusive(x_64); +if (x_113 == 0) { return x_64; } else { -lean_object* x_131; lean_object* x_132; lean_object* x_133; -x_131 = lean_ctor_get(x_64, 0); -x_132 = lean_ctor_get(x_64, 1); -lean_inc(x_132); -lean_inc(x_131); +lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_114 = lean_ctor_get(x_64, 0); +x_115 = lean_ctor_get(x_64, 1); +lean_inc(x_115); +lean_inc(x_114); lean_dec(x_64); -x_133 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_133, 0, x_131); -lean_ctor_set(x_133, 1, x_132); -return x_133; +x_116 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_116, 0, x_114); +lean_ctor_set(x_116, 1, x_115); +return x_116; } } } else { -uint8_t x_134; +uint8_t x_117; lean_free_object(x_1); lean_dec_ref(x_15); lean_dec_ref(x_14); @@ -13490,398 +14620,453 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); -x_134 = !lean_is_exclusive(x_58); -if (x_134 == 0) +x_117 = !lean_is_exclusive(x_58); +if (x_117 == 0) { return x_58; } else { -lean_object* x_135; lean_object* x_136; lean_object* x_137; -x_135 = lean_ctor_get(x_58, 0); -x_136 = lean_ctor_get(x_58, 1); -lean_inc(x_136); -lean_inc(x_135); +lean_object* x_118; lean_object* x_119; lean_object* x_120; +x_118 = lean_ctor_get(x_58, 0); +x_119 = lean_ctor_get(x_58, 1); +lean_inc(x_119); +lean_inc(x_118); lean_dec(x_58); -x_137 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_137, 0, x_135); -lean_ctor_set(x_137, 1, x_136); -return x_137; +x_120 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_120, 0, x_118); +lean_ctor_set(x_120, 1, x_119); +return x_120; } } } } else { -lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; uint8_t x_144; -x_138 = lean_ctor_get(x_1, 0); -x_139 = lean_ctor_get(x_1, 1); -x_140 = lean_ctor_get(x_1, 2); -x_141 = lean_ctor_get(x_1, 3); -lean_inc(x_141); -lean_inc(x_140); -lean_inc(x_139); -lean_inc(x_138); +lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; uint8_t x_127; +x_121 = lean_ctor_get(x_1, 0); +x_122 = lean_ctor_get(x_1, 1); +x_123 = lean_ctor_get(x_1, 2); +x_124 = lean_ctor_get(x_1, 3); +lean_inc(x_124); +lean_inc(x_123); +lean_inc(x_122); +lean_inc(x_121); lean_dec(x_1); -x_142 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__3; -x_143 = lean_unsigned_to_nat(3u); -x_144 = l_Lean_Expr_isAppOfArity(x_141, x_142, x_143); -if (x_144 == 0) +x_125 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__1; +x_126 = lean_unsigned_to_nat(3u); +x_127 = l_Lean_Expr_isAppOfArity(x_124, x_125, x_126); +if (x_127 == 0) { -if (lean_obj_tag(x_141) == 8) +if (lean_obj_tag(x_124) == 8) { -lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; uint8_t x_151; -x_145 = lean_ctor_get(x_141, 0); -lean_inc(x_145); -x_146 = lean_ctor_get(x_141, 1); -lean_inc_ref(x_146); -x_147 = lean_ctor_get(x_141, 2); -lean_inc_ref(x_147); -x_148 = lean_ctor_get(x_141, 3); -lean_inc_ref(x_148); -lean_dec_ref(x_141); -x_149 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__1___boxed), 13, 5); -lean_closure_set(x_149, 0, x_148); -lean_closure_set(x_149, 1, x_138); -lean_closure_set(x_149, 2, x_139); -lean_closure_set(x_149, 3, x_140); -lean_closure_set(x_149, 4, x_3); -x_150 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__6; +lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; uint8_t x_134; +x_128 = lean_ctor_get(x_124, 0); +lean_inc(x_128); +x_129 = lean_ctor_get(x_124, 1); +lean_inc_ref(x_129); +x_130 = lean_ctor_get(x_124, 2); +lean_inc_ref(x_130); +x_131 = lean_ctor_get(x_124, 3); +lean_inc_ref(x_131); +lean_dec_ref(x_124); +x_132 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__1___boxed), 13, 5); +lean_closure_set(x_132, 0, x_131); +lean_closure_set(x_132, 1, x_121); +lean_closure_set(x_132, 2, x_122); +lean_closure_set(x_132, 3, x_123); +lean_closure_set(x_132, 4, x_3); +x_133 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__4; lean_inc(x_2); -x_151 = l_Lean_Syntax_isOfKind(x_2, x_150); -if (x_151 == 0) +x_134 = l_Lean_Syntax_isOfKind(x_2, x_133); +if (x_134 == 0) { -lean_object* x_152; lean_object* x_153; +lean_object* x_135; lean_object* x_136; lean_dec(x_2); -x_152 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__3___boxed), 9, 1); -lean_closure_set(x_152, 0, x_145); +x_135 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__3___boxed), 9, 1); +lean_closure_set(x_135, 0, x_128); lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_6); lean_inc_ref(x_4); -x_153 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_152, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_153) == 0) +x_136 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_135, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_136) == 0) { -lean_object* x_154; lean_object* x_155; lean_object* x_156; -x_154 = lean_ctor_get(x_153, 0); +lean_object* x_137; lean_object* x_138; lean_object* x_139; +x_137 = lean_ctor_get(x_136, 0); +lean_inc(x_137); +x_138 = lean_ctor_get(x_136, 1); +lean_inc(x_138); +lean_dec_ref(x_136); +x_139 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__2(x_129, x_130, x_132, x_127, x_137, x_4, x_5, x_6, x_7, x_8, x_9, x_138); +return x_139; +} +else +{ +lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; +lean_dec_ref(x_132); +lean_dec_ref(x_130); +lean_dec_ref(x_129); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_140 = lean_ctor_get(x_136, 0); +lean_inc(x_140); +x_141 = lean_ctor_get(x_136, 1); +lean_inc(x_141); +if (lean_is_exclusive(x_136)) { + lean_ctor_release(x_136, 0); + lean_ctor_release(x_136, 1); + x_142 = x_136; +} else { + lean_dec_ref(x_136); + x_142 = lean_box(0); +} +if (lean_is_scalar(x_142)) { + x_143 = lean_alloc_ctor(1, 2, 0); +} else { + x_143 = x_142; +} +lean_ctor_set(x_143, 0, x_140); +lean_ctor_set(x_143, 1, x_141); +return x_143; +} +} +else +{ +lean_object* x_144; lean_object* x_145; lean_object* x_146; uint8_t x_147; +x_144 = lean_unsigned_to_nat(0u); +x_145 = l_Lean_Syntax_getArg(x_2, x_144); +lean_dec(x_2); +x_146 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__6; +lean_inc(x_145); +x_147 = l_Lean_Syntax_isOfKind(x_145, x_146); +if (x_147 == 0) +{ +lean_object* x_148; lean_object* x_149; +lean_dec(x_145); +x_148 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__3___boxed), 9, 1); +lean_closure_set(x_148, 0, x_128); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_149 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_148, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_149) == 0) +{ +lean_object* x_150; lean_object* x_151; lean_object* x_152; +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +lean_dec_ref(x_149); +x_152 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__2(x_129, x_130, x_132, x_127, x_150, x_4, x_5, x_6, x_7, x_8, x_9, x_151); +return x_152; +} +else +{ +lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; +lean_dec_ref(x_132); +lean_dec_ref(x_130); +lean_dec_ref(x_129); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_153 = lean_ctor_get(x_149, 0); +lean_inc(x_153); +x_154 = lean_ctor_get(x_149, 1); lean_inc(x_154); -x_155 = lean_ctor_get(x_153, 1); -lean_inc(x_155); -lean_dec_ref(x_153); -x_156 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__2(x_146, x_147, x_149, x_144, x_154, x_4, x_5, x_6, x_7, x_8, x_9, x_155); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_155 = x_149; +} else { + lean_dec_ref(x_149); + x_155 = lean_box(0); +} +if (lean_is_scalar(x_155)) { + x_156 = lean_alloc_ctor(1, 2, 0); +} else { + x_156 = x_155; +} +lean_ctor_set(x_156, 0, x_153); +lean_ctor_set(x_156, 1, x_154); return x_156; } -else -{ -lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; -lean_dec_ref(x_149); -lean_dec_ref(x_147); -lean_dec_ref(x_146); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_157 = lean_ctor_get(x_153, 0); -lean_inc(x_157); -x_158 = lean_ctor_get(x_153, 1); -lean_inc(x_158); -if (lean_is_exclusive(x_153)) { - lean_ctor_release(x_153, 0); - lean_ctor_release(x_153, 1); - x_159 = x_153; -} else { - lean_dec_ref(x_153); - x_159 = lean_box(0); -} -if (lean_is_scalar(x_159)) { - x_160 = lean_alloc_ctor(1, 2, 0); -} else { - x_160 = x_159; -} -lean_ctor_set(x_160, 0, x_157); -lean_ctor_set(x_160, 1, x_158); -return x_160; -} } else { -lean_object* x_161; lean_object* x_162; lean_object* x_163; uint8_t x_164; -x_161 = lean_unsigned_to_nat(0u); -x_162 = l_Lean_Syntax_getArg(x_2, x_161); -lean_dec(x_2); -x_163 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__10; -lean_inc(x_162); -x_164 = l_Lean_Syntax_isOfKind(x_162, x_163); -if (x_164 == 0) -{ -lean_object* x_165; lean_object* x_166; -lean_dec(x_162); -x_165 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__3___boxed), 9, 1); -lean_closure_set(x_165, 0, x_145); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_166 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_165, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_166) == 0) -{ -lean_object* x_167; lean_object* x_168; lean_object* x_169; -x_167 = lean_ctor_get(x_166, 0); -lean_inc(x_167); -x_168 = lean_ctor_get(x_166, 1); -lean_inc(x_168); -lean_dec_ref(x_166); -x_169 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__2(x_146, x_147, x_149, x_144, x_167, x_4, x_5, x_6, x_7, x_8, x_9, x_168); -return x_169; -} -else -{ -lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; -lean_dec_ref(x_149); -lean_dec_ref(x_147); -lean_dec_ref(x_146); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_170 = lean_ctor_get(x_166, 0); -lean_inc(x_170); -x_171 = lean_ctor_get(x_166, 1); -lean_inc(x_171); -if (lean_is_exclusive(x_166)) { - lean_ctor_release(x_166, 0); - lean_ctor_release(x_166, 1); - x_172 = x_166; -} else { - lean_dec_ref(x_166); - x_172 = lean_box(0); -} -if (lean_is_scalar(x_172)) { - x_173 = lean_alloc_ctor(1, 2, 0); -} else { - x_173 = x_172; -} -lean_ctor_set(x_173, 0, x_170); -lean_ctor_set(x_173, 1, x_171); -return x_173; -} -} -else -{ -lean_object* x_174; lean_object* x_175; +lean_object* x_157; lean_object* x_158; +lean_dec(x_128); +x_157 = l_Lean_Syntax_getId(x_145); lean_dec(x_145); -x_174 = l_Lean_Syntax_getId(x_162); -lean_dec(x_162); -x_175 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__2(x_146, x_147, x_149, x_144, x_174, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_175; +x_158 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__2(x_129, x_130, x_132, x_127, x_157, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_158; } } } else { -lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; -lean_dec_ref(x_140); -lean_dec_ref(x_139); -lean_dec(x_138); +lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; +lean_dec_ref(x_123); +lean_dec_ref(x_122); +lean_dec(x_121); lean_dec_ref(x_3); lean_dec(x_2); -x_176 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__1; -x_177 = l_Lean_MessageData_ofExpr(x_141); -x_178 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_178, 0, x_176); -lean_ctor_set(x_178, 1, x_177); -x_179 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -x_180 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_180, 0, x_178); -lean_ctor_set(x_180, 1, x_179); -x_181 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__5___boxed), 9, 1); -lean_closure_set(x_181, 0, x_180); -x_182 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_181, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_159 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__8; +x_160 = l_Lean_MessageData_ofExpr(x_124); +x_161 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_161, 0, x_159); +lean_ctor_set(x_161, 1, x_160); +x_162 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_163 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_163, 0, x_161); +lean_ctor_set(x_163, 1, x_162); +x_164 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__10___boxed), 9, 1); +lean_closure_set(x_164, 0, x_163); +x_165 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_164, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_5); -return x_182; +return x_165; } } else { -lean_object* x_183; lean_object* x_184; -x_183 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__4___boxed), 9, 1); -lean_closure_set(x_183, 0, x_2); +lean_object* x_166; lean_object* x_167; +x_166 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__6___boxed), 9, 1); +lean_closure_set(x_166, 0, x_2); lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_6); lean_inc_ref(x_4); -x_184 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_183, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_184) == 0) +x_167 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_166, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_167) == 0) { -lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; -x_185 = lean_ctor_get(x_184, 0); -lean_inc(x_185); -x_186 = lean_ctor_get(x_184, 1); -lean_inc(x_186); -lean_dec_ref(x_184); -x_187 = lean_ctor_get(x_185, 0); +lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; +x_168 = lean_ctor_get(x_167, 0); +lean_inc(x_168); +x_169 = lean_ctor_get(x_167, 1); +lean_inc(x_169); +lean_dec_ref(x_167); +x_170 = lean_ctor_get(x_168, 0); +lean_inc(x_170); +x_171 = lean_ctor_get(x_168, 1); +lean_inc(x_171); +lean_dec(x_168); +x_172 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__4___boxed), 8, 0); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_173 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_172, x_4, x_5, x_6, x_7, x_8, x_9, x_169); +if (lean_obj_tag(x_173) == 0) +{ +lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; +x_174 = lean_ctor_get(x_173, 0); +lean_inc(x_174); +x_175 = lean_ctor_get(x_173, 1); +lean_inc(x_175); +lean_dec_ref(x_173); +x_176 = l_Lean_Expr_appFn_x21(x_124); +x_177 = l_Lean_Expr_appFn_x21(x_176); +x_178 = l_Lean_Expr_appArg_x21(x_177); +lean_dec_ref(x_177); +x_179 = l_Lean_Expr_appArg_x21(x_176); +lean_dec_ref(x_176); +x_180 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_180, 0, x_170); +lean_ctor_set(x_180, 1, x_174); +lean_ctor_set(x_180, 2, x_179); +x_181 = lean_box(x_127); +lean_inc_ref(x_180); +lean_inc_ref(x_178); +x_182 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__5___boxed), 12, 4); +lean_closure_set(x_182, 0, x_171); +lean_closure_set(x_182, 1, x_178); +lean_closure_set(x_182, 2, x_180); +lean_closure_set(x_182, 3, x_181); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_183 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_182, x_4, x_5, x_6, x_7, x_8, x_9, x_175); +if (lean_obj_tag(x_183) == 0) +{ +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_184 = lean_ctor_get(x_183, 1); +lean_inc(x_184); +lean_dec_ref(x_183); +x_185 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_180); +lean_inc_ref(x_185); +lean_inc_ref(x_123); +lean_inc_ref(x_122); +lean_inc(x_121); +x_186 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_121, x_122, x_123, x_185); +x_187 = lean_ctor_get(x_186, 0); lean_inc(x_187); -x_188 = lean_ctor_get(x_185, 1); +x_188 = lean_ctor_get(x_186, 1); lean_inc(x_188); -lean_dec(x_185); -x_189 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__6___boxed), 8, 0); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_190 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_189, x_4, x_5, x_6, x_7, x_8, x_9, x_186); -if (lean_obj_tag(x_190) == 0) +if (lean_is_exclusive(x_186)) { + lean_ctor_release(x_186, 0); + lean_ctor_release(x_186, 1); + x_189 = x_186; +} else { + lean_dec_ref(x_186); + x_189 = lean_box(0); +} +x_190 = l_Lean_Expr_appArg_x21(x_124); +lean_dec_ref(x_124); +lean_inc_ref(x_190); +lean_inc(x_187); +lean_inc(x_121); +x_191 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_191, 0, x_121); +lean_ctor_set(x_191, 1, x_122); +lean_ctor_set(x_191, 2, x_187); +lean_ctor_set(x_191, 3, x_190); +x_192 = lean_apply_8(x_3, x_191, x_4, x_5, x_6, x_7, x_8, x_9, x_184); +if (lean_obj_tag(x_192) == 0) { -lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; -x_191 = lean_ctor_get(x_190, 0); -lean_inc(x_191); -x_192 = lean_ctor_get(x_190, 1); -lean_inc(x_192); -lean_dec_ref(x_190); -x_193 = l_Lean_Expr_appFn_x21(x_141); -x_194 = l_Lean_Expr_appFn_x21(x_193); -x_195 = l_Lean_Expr_appArg_x21(x_194); -lean_dec_ref(x_194); -x_196 = l_Lean_Expr_appArg_x21(x_193); -lean_dec_ref(x_193); -x_197 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_197, 0, x_187); -lean_ctor_set(x_197, 1, x_191); -lean_ctor_set(x_197, 2, x_196); -x_198 = lean_box(x_144); -lean_inc_ref(x_197); -lean_inc_ref(x_195); -x_199 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__7___boxed), 12, 4); -lean_closure_set(x_199, 0, x_188); -lean_closure_set(x_199, 1, x_195); -lean_closure_set(x_199, 2, x_197); -lean_closure_set(x_199, 3, x_198); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_200 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_199, x_4, x_5, x_6, x_7, x_8, x_9, x_192); -if (lean_obj_tag(x_200) == 0) -{ -lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; -x_201 = lean_ctor_get(x_200, 1); -lean_inc(x_201); -lean_dec_ref(x_200); -x_202 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_197); -lean_inc_ref(x_202); -lean_inc_ref(x_140); -lean_inc_ref(x_139); -lean_inc(x_138); -x_203 = l_Lean_Elab_Tactic_Do_ProofMode_mkAnd(x_138, x_139, x_140, x_202); -x_204 = lean_ctor_get(x_203, 0); -lean_inc(x_204); -x_205 = lean_ctor_get(x_203, 1); -lean_inc(x_205); -if (lean_is_exclusive(x_203)) { - lean_ctor_release(x_203, 0); - lean_ctor_release(x_203, 1); - x_206 = x_203; +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; +x_193 = lean_ctor_get(x_192, 0); +lean_inc(x_193); +x_194 = lean_ctor_get(x_192, 1); +lean_inc(x_194); +if (lean_is_exclusive(x_192)) { + lean_ctor_release(x_192, 0); + lean_ctor_release(x_192, 1); + x_195 = x_192; } else { - lean_dec_ref(x_203); - x_206 = lean_box(0); + lean_dec_ref(x_192); + x_195 = lean_box(0); } -x_207 = l_Lean_Expr_appArg_x21(x_141); -lean_dec_ref(x_141); -lean_inc_ref(x_207); -lean_inc(x_204); -lean_inc(x_138); -x_208 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_208, 0, x_138); -lean_ctor_set(x_208, 1, x_139); -lean_ctor_set(x_208, 2, x_204); -lean_ctor_set(x_208, 3, x_207); -x_209 = lean_apply_8(x_3, x_208, x_4, x_5, x_6, x_7, x_8, x_9, x_201); -if (lean_obj_tag(x_209) == 0) -{ -lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; -x_210 = lean_ctor_get(x_209, 0); -lean_inc(x_210); -x_211 = lean_ctor_get(x_209, 1); -lean_inc(x_211); -if (lean_is_exclusive(x_209)) { - lean_ctor_release(x_209, 0); - lean_ctor_release(x_209, 1); - x_212 = x_209; +x_196 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__10; +x_197 = lean_box(0); +if (lean_is_scalar(x_189)) { + x_198 = lean_alloc_ctor(1, 2, 0); } else { - lean_dec_ref(x_209); - x_212 = lean_box(0); + x_198 = x_189; + lean_ctor_set_tag(x_198, 1); } -x_213 = lean_ctor_get(x_210, 0); -lean_inc(x_213); -x_214 = lean_ctor_get(x_210, 1); -lean_inc(x_214); -if (lean_is_exclusive(x_210)) { - lean_ctor_release(x_210, 0); - lean_ctor_release(x_210, 1); - x_215 = x_210; +lean_ctor_set(x_198, 0, x_121); +lean_ctor_set(x_198, 1, x_197); +x_199 = l_Lean_Expr_const___override(x_196, x_198); +x_200 = l_Lean_mkApp7(x_199, x_178, x_187, x_123, x_185, x_190, x_188, x_193); +if (lean_is_scalar(x_195)) { + x_201 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_210); - x_215 = lean_box(0); + x_201 = x_195; } -x_216 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__4; -x_217 = lean_box(0); -if (lean_is_scalar(x_206)) { - x_218 = lean_alloc_ctor(1, 2, 0); -} else { - x_218 = x_206; - lean_ctor_set_tag(x_218, 1); -} -lean_ctor_set(x_218, 0, x_138); -lean_ctor_set(x_218, 1, x_217); -x_219 = l_Lean_Expr_const___override(x_216, x_218); -x_220 = l_Lean_mkApp7(x_219, x_195, x_204, x_140, x_202, x_207, x_205, x_214); -if (lean_is_scalar(x_215)) { - x_221 = lean_alloc_ctor(0, 2, 0); -} else { - x_221 = x_215; -} -lean_ctor_set(x_221, 0, x_213); -lean_ctor_set(x_221, 1, x_220); -if (lean_is_scalar(x_212)) { - x_222 = lean_alloc_ctor(0, 2, 0); -} else { - x_222 = x_212; -} -lean_ctor_set(x_222, 0, x_221); -lean_ctor_set(x_222, 1, x_211); -return x_222; +lean_ctor_set(x_201, 0, x_200); +lean_ctor_set(x_201, 1, x_194); +return x_201; } else { -lean_dec_ref(x_207); -lean_dec(x_206); -lean_dec(x_205); -lean_dec(x_204); -lean_dec_ref(x_202); -lean_dec_ref(x_195); -lean_dec_ref(x_140); -lean_dec(x_138); +lean_dec_ref(x_190); +lean_dec(x_189); +lean_dec(x_188); +lean_dec(x_187); +lean_dec_ref(x_185); +lean_dec_ref(x_178); +lean_dec_ref(x_123); +lean_dec(x_121); +return x_192; +} +} +else +{ +lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; +lean_dec_ref(x_180); +lean_dec_ref(x_178); +lean_dec_ref(x_124); +lean_dec_ref(x_123); +lean_dec_ref(x_122); +lean_dec(x_121); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_202 = lean_ctor_get(x_183, 0); +lean_inc(x_202); +x_203 = lean_ctor_get(x_183, 1); +lean_inc(x_203); +if (lean_is_exclusive(x_183)) { + lean_ctor_release(x_183, 0); + lean_ctor_release(x_183, 1); + x_204 = x_183; +} else { + lean_dec_ref(x_183); + x_204 = lean_box(0); +} +if (lean_is_scalar(x_204)) { + x_205 = lean_alloc_ctor(1, 2, 0); +} else { + x_205 = x_204; +} +lean_ctor_set(x_205, 0, x_202); +lean_ctor_set(x_205, 1, x_203); +return x_205; +} +} +else +{ +lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; +lean_dec(x_171); +lean_dec(x_170); +lean_dec_ref(x_124); +lean_dec_ref(x_123); +lean_dec_ref(x_122); +lean_dec(x_121); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_206 = lean_ctor_get(x_173, 0); +lean_inc(x_206); +x_207 = lean_ctor_get(x_173, 1); +lean_inc(x_207); +if (lean_is_exclusive(x_173)) { + lean_ctor_release(x_173, 0); + lean_ctor_release(x_173, 1); + x_208 = x_173; +} else { + lean_dec_ref(x_173); + x_208 = lean_box(0); +} +if (lean_is_scalar(x_208)) { + x_209 = lean_alloc_ctor(1, 2, 0); +} else { + x_209 = x_208; +} +lean_ctor_set(x_209, 0, x_206); +lean_ctor_set(x_209, 1, x_207); return x_209; } } else { -lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; -lean_dec_ref(x_197); -lean_dec_ref(x_195); -lean_dec_ref(x_141); -lean_dec_ref(x_140); -lean_dec_ref(x_139); -lean_dec(x_138); +lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; +lean_dec_ref(x_124); +lean_dec_ref(x_123); +lean_dec_ref(x_122); +lean_dec(x_121); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); @@ -13889,1287 +15074,71 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); -x_223 = lean_ctor_get(x_200, 0); -lean_inc(x_223); -x_224 = lean_ctor_get(x_200, 1); -lean_inc(x_224); -if (lean_is_exclusive(x_200)) { - lean_ctor_release(x_200, 0); - lean_ctor_release(x_200, 1); - x_225 = x_200; +x_210 = lean_ctor_get(x_167, 0); +lean_inc(x_210); +x_211 = lean_ctor_get(x_167, 1); +lean_inc(x_211); +if (lean_is_exclusive(x_167)) { + lean_ctor_release(x_167, 0); + lean_ctor_release(x_167, 1); + x_212 = x_167; } else { - lean_dec_ref(x_200); - x_225 = lean_box(0); + lean_dec_ref(x_167); + x_212 = lean_box(0); } -if (lean_is_scalar(x_225)) { - x_226 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_212)) { + x_213 = lean_alloc_ctor(1, 2, 0); } else { - x_226 = x_225; + x_213 = x_212; } -lean_ctor_set(x_226, 0, x_223); -lean_ctor_set(x_226, 1, x_224); -return x_226; -} -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; -lean_dec(x_188); -lean_dec(x_187); -lean_dec_ref(x_141); -lean_dec_ref(x_140); -lean_dec_ref(x_139); -lean_dec(x_138); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -x_227 = lean_ctor_get(x_190, 0); -lean_inc(x_227); -x_228 = lean_ctor_get(x_190, 1); -lean_inc(x_228); -if (lean_is_exclusive(x_190)) { - lean_ctor_release(x_190, 0); - lean_ctor_release(x_190, 1); - x_229 = x_190; -} else { - lean_dec_ref(x_190); - x_229 = lean_box(0); -} -if (lean_is_scalar(x_229)) { - x_230 = lean_alloc_ctor(1, 2, 0); -} else { - x_230 = x_229; -} -lean_ctor_set(x_230, 0, x_227); -lean_ctor_set(x_230, 1, x_228); -return x_230; -} -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; -lean_dec_ref(x_141); -lean_dec_ref(x_140); -lean_dec_ref(x_139); -lean_dec(x_138); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -x_231 = lean_ctor_get(x_184, 0); -lean_inc(x_231); -x_232 = lean_ctor_get(x_184, 1); -lean_inc(x_232); -if (lean_is_exclusive(x_184)) { - lean_ctor_release(x_184, 0); - lean_ctor_release(x_184, 1); - x_233 = x_184; -} else { - lean_dec_ref(x_184); - x_233 = lean_box(0); -} -if (lean_is_scalar(x_233)) { - x_234 = lean_alloc_ctor(1, 2, 0); -} else { - x_234 = x_233; -} -lean_ctor_set(x_234, 0, x_231); -lean_ctor_set(x_234, 1, x_232); -return x_234; +lean_ctor_set(x_213, 0, x_210); +lean_ctor_set(x_213, 1, x_211); +return x_213; } } } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3_spec__3___redArg___lam__0(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_12; -x_12 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_12; +lean_object* x_8; +x_8 = lean_apply_6(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onLet___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3_spec__3___redArg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, uint8_t 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_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; -x_10 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_4, x_9); -x_11 = lean_ctor_get(x_10, 1); -lean_inc(x_11); -lean_dec_ref(x_10); -x_12 = lean_st_ref_get(x_8, x_11); +lean_object* x_11; lean_object* x_12; +x_11 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3_spec__3___redArg___lam__0), 7, 1); +lean_closure_set(x_11, 0, x_4); +x_12 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp(lean_box(0), x_1, x_2, x_3, x_11, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_12) == 0) +{ +uint8_t x_13; x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { -lean_object* x_14; lean_object* x_15; 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; -x_14 = lean_ctor_get(x_12, 1); -x_15 = lean_ctor_get(x_12, 0); -lean_dec(x_15); -x_16 = lean_ctor_get(x_7, 5); -lean_inc(x_16); -x_17 = 0; -x_18 = l_Lean_SourceInfo_fromRef(x_16, x_17); -lean_dec(x_16); -x_19 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__6; -x_20 = l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__2; -x_21 = l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__3; -lean_inc(x_18); -lean_ctor_set_tag(x_12, 2); -lean_ctor_set(x_12, 1, x_21); -lean_ctor_set(x_12, 0, x_18); -lean_inc(x_18); -x_22 = l_Lean_Syntax_node1(x_18, x_20, x_12); -x_23 = l_Lean_Syntax_node1(x_18, x_19, x_22); -x_24 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg(x_1, x_23, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_14); -if (lean_obj_tag(x_24) == 0) -{ -uint8_t x_25; -x_25 = !lean_is_exclusive(x_24); -if (x_25 == 0) -{ -lean_object* x_26; lean_object* x_27; -x_26 = lean_ctor_get(x_24, 0); -x_27 = lean_ctor_get(x_26, 1); -lean_inc(x_27); -lean_dec(x_26); -lean_ctor_set(x_24, 0, x_27); -return x_24; +return x_12; } else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_28 = lean_ctor_get(x_24, 0); -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); -lean_inc(x_28); -lean_dec(x_24); -x_30 = lean_ctor_get(x_28, 1); -lean_inc(x_30); -lean_dec(x_28); -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -uint8_t x_32; -x_32 = !lean_is_exclusive(x_24); -if (x_32 == 0) -{ -return x_24; -} -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_33 = lean_ctor_get(x_24, 0); -x_34 = lean_ctor_get(x_24, 1); -lean_inc(x_34); -lean_inc(x_33); -lean_dec(x_24); -x_35 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_35, 0, x_33); -lean_ctor_set(x_35, 1, x_34); -return x_35; -} -} -} -else -{ -lean_object* x_36; 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; lean_object* x_46; -x_36 = lean_ctor_get(x_12, 1); -lean_inc(x_36); -lean_dec(x_12); -x_37 = lean_ctor_get(x_7, 5); -lean_inc(x_37); -x_38 = 0; -x_39 = l_Lean_SourceInfo_fromRef(x_37, x_38); -lean_dec(x_37); -x_40 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__6; -x_41 = l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__2; -x_42 = l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__3; -lean_inc(x_39); -x_43 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_42); -lean_inc(x_39); -x_44 = l_Lean_Syntax_node1(x_39, x_41, x_43); -x_45 = l_Lean_Syntax_node1(x_39, x_40, x_44); -x_46 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg(x_1, x_45, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_36); -if (lean_obj_tag(x_46) == 0) -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_47 = lean_ctor_get(x_46, 0); -lean_inc(x_47); -x_48 = lean_ctor_get(x_46, 1); -lean_inc(x_48); -if (lean_is_exclusive(x_46)) { - lean_ctor_release(x_46, 0); - lean_ctor_release(x_46, 1); - x_49 = x_46; -} else { - lean_dec_ref(x_46); - x_49 = lean_box(0); -} -x_50 = lean_ctor_get(x_47, 1); -lean_inc(x_50); -lean_dec(x_47); -if (lean_is_scalar(x_49)) { - x_51 = lean_alloc_ctor(0, 2, 0); -} else { - x_51 = x_49; -} -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set(x_51, 1, x_48); -return x_51; -} -else -{ -lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_52 = lean_ctor_get(x_46, 0); -lean_inc(x_52); -x_53 = lean_ctor_get(x_46, 1); -lean_inc(x_53); -if (lean_is_exclusive(x_46)) { - lean_ctor_release(x_46, 0); - lean_ctor_release(x_46, 1); - x_54 = x_46; -} else { - lean_dec_ref(x_46); - x_54 = lean_box(0); -} -if (lean_is_scalar(x_54)) { - x_55 = lean_alloc_ctor(1, 2, 0); -} else { - x_55 = x_54; -} -lean_ctor_set(x_55, 0, x_52); -lean_ctor_set(x_55, 1, x_53); -return x_55; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onLet(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -lean_inc(x_3); -x_11 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onLambda___lam__0), 10, 2); -lean_closure_set(x_11, 0, x_1); -lean_closure_set(x_11, 1, x_3); -lean_inc_ref(x_2); -x_12 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onLet___lam__1), 9, 2); -lean_closure_set(x_12, 0, x_2); -lean_closure_set(x_12, 1, x_11); -x_13 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onFail___boxed), 9, 2); -lean_closure_set(x_13, 0, x_2); -lean_closure_set(x_13, 1, x_3); -x_14 = l_Lean_Elab_Tactic_Do_ifOutOfFuel___redArg(x_13, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_14; -} -} -static lean_object* _init_l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = l_instMonadEIO(lean_box(0)); -return x_1; -} -} -static lean_object* _init_l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Core_instMonadCoreM___lam__0___boxed), 5, 0); -return x_1; -} -} -static lean_object* _init_l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Core_instMonadCoreM___lam__1), 7, 0); -return x_1; -} -} -static lean_object* _init_l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Meta_instMonadMetaM___lam__0___boxed), 7, 0); -return x_1; -} -} -static lean_object* _init_l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Meta_instMonadMetaM___lam__1), 9, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0(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; lean_object* x_10; uint8_t x_11; -x_9 = l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__0; -x_10 = l_ReaderT_instMonad___redArg(x_9); -x_11 = !lean_is_exclusive(x_10); -if (x_11 == 0) -{ -lean_object* x_12; lean_object* x_13; uint8_t x_14; -x_12 = lean_ctor_get(x_10, 0); -x_13 = lean_ctor_get(x_10, 1); -lean_dec(x_13); -x_14 = !lean_is_exclusive(x_12); -if (x_14 == 0) -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; -x_15 = lean_ctor_get(x_12, 0); -x_16 = lean_ctor_get(x_12, 2); -x_17 = lean_ctor_get(x_12, 3); -x_18 = lean_ctor_get(x_12, 4); -x_19 = lean_ctor_get(x_12, 1); -lean_dec(x_19); -x_20 = l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__1; -x_21 = l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__2; -lean_inc_ref(x_15); -x_22 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_22, 0, x_15); -x_23 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_23, 0, x_15); -x_24 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_24, 0, x_22); -lean_ctor_set(x_24, 1, x_23); -x_25 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_25, 0, x_18); -x_26 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_26, 0, x_17); -x_27 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_27, 0, x_16); -lean_ctor_set(x_12, 4, x_25); -lean_ctor_set(x_12, 3, x_26); -lean_ctor_set(x_12, 2, x_27); -lean_ctor_set(x_12, 1, x_20); -lean_ctor_set(x_12, 0, x_24); -lean_ctor_set(x_10, 1, x_21); -x_28 = l_ReaderT_instMonad___redArg(x_10); -x_29 = !lean_is_exclusive(x_28); -if (x_29 == 0) -{ -lean_object* x_30; lean_object* x_31; uint8_t x_32; -x_30 = lean_ctor_get(x_28, 0); -x_31 = lean_ctor_get(x_28, 1); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_30); -if (x_32 == 0) -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_33 = lean_ctor_get(x_30, 0); -x_34 = lean_ctor_get(x_30, 2); -x_35 = lean_ctor_get(x_30, 3); -x_36 = lean_ctor_get(x_30, 4); -x_37 = lean_ctor_get(x_30, 1); -lean_dec(x_37); -x_38 = l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__3; -x_39 = l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__4; -lean_inc_ref(x_33); -x_40 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_40, 0, x_33); -x_41 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_41, 0, x_33); -x_42 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_42, 0, x_40); -lean_ctor_set(x_42, 1, x_41); -x_43 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_43, 0, x_36); -x_44 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_44, 0, x_35); -x_45 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_45, 0, x_34); -lean_ctor_set(x_30, 4, x_43); -lean_ctor_set(x_30, 3, x_44); -lean_ctor_set(x_30, 2, x_45); -lean_ctor_set(x_30, 1, x_38); -lean_ctor_set(x_30, 0, x_42); -lean_ctor_set(x_28, 1, x_39); -x_46 = l_ReaderT_instMonad___redArg(x_28); -x_47 = l_Lean_instInhabitedExpr; -x_48 = l_instInhabitedOfMonad___redArg(x_46, x_47); -x_49 = lean_alloc_closure((void*)(l_instInhabitedForall___redArg___lam__0___boxed), 2, 1); -lean_closure_set(x_49, 0, x_48); -x_50 = lean_panic_fn(x_49, x_1); -x_51 = lean_apply_7(x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_51; -} -else -{ -lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_52 = lean_ctor_get(x_30, 0); -x_53 = lean_ctor_get(x_30, 2); -x_54 = lean_ctor_get(x_30, 3); -x_55 = lean_ctor_get(x_30, 4); -lean_inc(x_55); -lean_inc(x_54); -lean_inc(x_53); -lean_inc(x_52); -lean_dec(x_30); -x_56 = l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__3; -x_57 = l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__4; -lean_inc_ref(x_52); -x_58 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_58, 0, x_52); -x_59 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_59, 0, x_52); -x_60 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_60, 0, x_58); -lean_ctor_set(x_60, 1, x_59); -x_61 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_61, 0, x_55); -x_62 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_62, 0, x_54); -x_63 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_63, 0, x_53); -x_64 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_64, 0, x_60); -lean_ctor_set(x_64, 1, x_56); -lean_ctor_set(x_64, 2, x_63); -lean_ctor_set(x_64, 3, x_62); -lean_ctor_set(x_64, 4, x_61); -lean_ctor_set(x_28, 1, x_57); -lean_ctor_set(x_28, 0, x_64); -x_65 = l_ReaderT_instMonad___redArg(x_28); -x_66 = l_Lean_instInhabitedExpr; -x_67 = l_instInhabitedOfMonad___redArg(x_65, x_66); -x_68 = lean_alloc_closure((void*)(l_instInhabitedForall___redArg___lam__0___boxed), 2, 1); -lean_closure_set(x_68, 0, x_67); -x_69 = lean_panic_fn(x_68, x_1); -x_70 = lean_apply_7(x_69, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_70; -} -} -else -{ -lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; -x_71 = lean_ctor_get(x_28, 0); -lean_inc(x_71); -lean_dec(x_28); -x_72 = lean_ctor_get(x_71, 0); -lean_inc_ref(x_72); -x_73 = lean_ctor_get(x_71, 2); -lean_inc_ref(x_73); -x_74 = lean_ctor_get(x_71, 3); -lean_inc_ref(x_74); -x_75 = lean_ctor_get(x_71, 4); -lean_inc_ref(x_75); -if (lean_is_exclusive(x_71)) { - lean_ctor_release(x_71, 0); - lean_ctor_release(x_71, 1); - lean_ctor_release(x_71, 2); - lean_ctor_release(x_71, 3); - lean_ctor_release(x_71, 4); - x_76 = x_71; -} else { - lean_dec_ref(x_71); - x_76 = lean_box(0); -} -x_77 = l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__3; -x_78 = l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__4; -lean_inc_ref(x_72); -x_79 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_79, 0, x_72); -x_80 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_80, 0, x_72); -x_81 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_81, 0, x_79); -lean_ctor_set(x_81, 1, x_80); -x_82 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_82, 0, x_75); -x_83 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_83, 0, x_74); -x_84 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_84, 0, x_73); -if (lean_is_scalar(x_76)) { - x_85 = lean_alloc_ctor(0, 5, 0); -} else { - x_85 = x_76; -} -lean_ctor_set(x_85, 0, x_81); -lean_ctor_set(x_85, 1, x_77); -lean_ctor_set(x_85, 2, x_84); -lean_ctor_set(x_85, 3, x_83); -lean_ctor_set(x_85, 4, x_82); -x_86 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_86, 0, x_85); -lean_ctor_set(x_86, 1, x_78); -x_87 = l_ReaderT_instMonad___redArg(x_86); -x_88 = l_Lean_instInhabitedExpr; -x_89 = l_instInhabitedOfMonad___redArg(x_87, x_88); -x_90 = lean_alloc_closure((void*)(l_instInhabitedForall___redArg___lam__0___boxed), 2, 1); -lean_closure_set(x_90, 0, x_89); -x_91 = lean_panic_fn(x_90, x_1); -x_92 = lean_apply_7(x_91, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_92; -} -} -else -{ -lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; -x_93 = lean_ctor_get(x_12, 0); -x_94 = lean_ctor_get(x_12, 2); -x_95 = lean_ctor_get(x_12, 3); -x_96 = lean_ctor_get(x_12, 4); -lean_inc(x_96); -lean_inc(x_95); -lean_inc(x_94); -lean_inc(x_93); -lean_dec(x_12); -x_97 = l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__1; -x_98 = l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__2; -lean_inc_ref(x_93); -x_99 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_99, 0, x_93); -x_100 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_100, 0, x_93); -x_101 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_101, 0, x_99); -lean_ctor_set(x_101, 1, x_100); -x_102 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_102, 0, x_96); -x_103 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_103, 0, x_95); -x_104 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_104, 0, x_94); -x_105 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_105, 0, x_101); -lean_ctor_set(x_105, 1, x_97); -lean_ctor_set(x_105, 2, x_104); -lean_ctor_set(x_105, 3, x_103); -lean_ctor_set(x_105, 4, x_102); -lean_ctor_set(x_10, 1, x_98); -lean_ctor_set(x_10, 0, x_105); -x_106 = l_ReaderT_instMonad___redArg(x_10); -x_107 = lean_ctor_get(x_106, 0); -lean_inc_ref(x_107); -if (lean_is_exclusive(x_106)) { - lean_ctor_release(x_106, 0); - lean_ctor_release(x_106, 1); - x_108 = x_106; -} else { - lean_dec_ref(x_106); - x_108 = lean_box(0); -} -x_109 = lean_ctor_get(x_107, 0); -lean_inc_ref(x_109); -x_110 = lean_ctor_get(x_107, 2); -lean_inc_ref(x_110); -x_111 = lean_ctor_get(x_107, 3); -lean_inc_ref(x_111); -x_112 = lean_ctor_get(x_107, 4); -lean_inc_ref(x_112); -if (lean_is_exclusive(x_107)) { - lean_ctor_release(x_107, 0); - lean_ctor_release(x_107, 1); - lean_ctor_release(x_107, 2); - lean_ctor_release(x_107, 3); - lean_ctor_release(x_107, 4); - x_113 = x_107; -} else { - lean_dec_ref(x_107); - x_113 = lean_box(0); -} -x_114 = l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__3; -x_115 = l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__4; -lean_inc_ref(x_109); -x_116 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_116, 0, x_109); -x_117 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_117, 0, x_109); -x_118 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_118, 0, x_116); -lean_ctor_set(x_118, 1, x_117); -x_119 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_119, 0, x_112); -x_120 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_120, 0, x_111); -x_121 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_121, 0, x_110); -if (lean_is_scalar(x_113)) { - x_122 = lean_alloc_ctor(0, 5, 0); -} else { - x_122 = x_113; -} -lean_ctor_set(x_122, 0, x_118); -lean_ctor_set(x_122, 1, x_114); -lean_ctor_set(x_122, 2, x_121); -lean_ctor_set(x_122, 3, x_120); -lean_ctor_set(x_122, 4, x_119); -if (lean_is_scalar(x_108)) { - x_123 = lean_alloc_ctor(0, 2, 0); -} else { - x_123 = x_108; -} -lean_ctor_set(x_123, 0, x_122); -lean_ctor_set(x_123, 1, x_115); -x_124 = l_ReaderT_instMonad___redArg(x_123); -x_125 = l_Lean_instInhabitedExpr; -x_126 = l_instInhabitedOfMonad___redArg(x_124, x_125); -x_127 = lean_alloc_closure((void*)(l_instInhabitedForall___redArg___lam__0___boxed), 2, 1); -lean_closure_set(x_127, 0, x_126); -x_128 = lean_panic_fn(x_127, x_1); -x_129 = lean_apply_7(x_128, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_129; -} -} -else -{ -lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; -x_130 = lean_ctor_get(x_10, 0); -lean_inc(x_130); -lean_dec(x_10); -x_131 = lean_ctor_get(x_130, 0); -lean_inc_ref(x_131); -x_132 = lean_ctor_get(x_130, 2); -lean_inc_ref(x_132); -x_133 = lean_ctor_get(x_130, 3); -lean_inc_ref(x_133); -x_134 = lean_ctor_get(x_130, 4); -lean_inc_ref(x_134); -if (lean_is_exclusive(x_130)) { - lean_ctor_release(x_130, 0); - lean_ctor_release(x_130, 1); - lean_ctor_release(x_130, 2); - lean_ctor_release(x_130, 3); - lean_ctor_release(x_130, 4); - x_135 = x_130; -} else { - lean_dec_ref(x_130); - x_135 = lean_box(0); -} -x_136 = l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__1; -x_137 = l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__2; -lean_inc_ref(x_131); -x_138 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_138, 0, x_131); -x_139 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_139, 0, x_131); -x_140 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_140, 0, x_138); -lean_ctor_set(x_140, 1, x_139); -x_141 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_141, 0, x_134); -x_142 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_142, 0, x_133); -x_143 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_143, 0, x_132); -if (lean_is_scalar(x_135)) { - x_144 = lean_alloc_ctor(0, 5, 0); -} else { - x_144 = x_135; -} -lean_ctor_set(x_144, 0, x_140); -lean_ctor_set(x_144, 1, x_136); -lean_ctor_set(x_144, 2, x_143); -lean_ctor_set(x_144, 3, x_142); -lean_ctor_set(x_144, 4, x_141); -x_145 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_145, 0, x_144); -lean_ctor_set(x_145, 1, x_137); -x_146 = l_ReaderT_instMonad___redArg(x_145); -x_147 = lean_ctor_get(x_146, 0); -lean_inc_ref(x_147); -if (lean_is_exclusive(x_146)) { - lean_ctor_release(x_146, 0); - lean_ctor_release(x_146, 1); - x_148 = x_146; -} else { - lean_dec_ref(x_146); - x_148 = lean_box(0); -} -x_149 = lean_ctor_get(x_147, 0); -lean_inc_ref(x_149); -x_150 = lean_ctor_get(x_147, 2); -lean_inc_ref(x_150); -x_151 = lean_ctor_get(x_147, 3); -lean_inc_ref(x_151); -x_152 = lean_ctor_get(x_147, 4); -lean_inc_ref(x_152); -if (lean_is_exclusive(x_147)) { - lean_ctor_release(x_147, 0); - lean_ctor_release(x_147, 1); - lean_ctor_release(x_147, 2); - lean_ctor_release(x_147, 3); - lean_ctor_release(x_147, 4); - x_153 = x_147; -} else { - lean_dec_ref(x_147); - x_153 = lean_box(0); -} -x_154 = l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__3; -x_155 = l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__4; -lean_inc_ref(x_149); -x_156 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_156, 0, x_149); -x_157 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_157, 0, x_149); -x_158 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_159, 0, x_152); -x_160 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_160, 0, x_151); -x_161 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_161, 0, x_150); -if (lean_is_scalar(x_153)) { - x_162 = lean_alloc_ctor(0, 5, 0); -} else { - x_162 = x_153; -} -lean_ctor_set(x_162, 0, x_158); -lean_ctor_set(x_162, 1, x_154); -lean_ctor_set(x_162, 2, x_161); -lean_ctor_set(x_162, 3, x_160); -lean_ctor_set(x_162, 4, x_159); -if (lean_is_scalar(x_148)) { - x_163 = lean_alloc_ctor(0, 2, 0); -} else { - x_163 = x_148; -} -lean_ctor_set(x_163, 0, x_162); -lean_ctor_set(x_163, 1, x_155); -x_164 = l_ReaderT_instMonad___redArg(x_163); -x_165 = l_Lean_instInhabitedExpr; -x_166 = l_instInhabitedOfMonad___redArg(x_164, x_165); -x_167 = lean_alloc_closure((void*)(l_instInhabitedForall___redArg___lam__0___boxed), 2, 1); -lean_closure_set(x_167, 0, x_166); -x_168 = lean_panic_fn(x_167, x_1); -x_169 = lean_apply_7(x_168, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_169; -} -} -} -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1___lam__0(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; lean_object* x_10; -x_9 = lean_ctor_get(x_6, 12); -lean_inc_ref(x_9); -x_10 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_10, 0, x_9); -lean_ctor_set(x_10, 1, x_8); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -lean_object* x_9; lean_object* x_10; -x_9 = lean_ctor_get(x_6, 2); -lean_inc(x_9); -x_10 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_10, 0, x_9); -lean_ctor_set(x_10, 1, x_8); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -lean_object* x_9; lean_object* x_10; -x_9 = lean_alloc_closure((void*)(l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1___lam__0___boxed), 8, 0); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc(x_5); -lean_inc_ref(x_4); -lean_inc_ref(x_2); -x_10 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_10) == 0) -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -x_12 = lean_ctor_get(x_10, 1); -lean_inc(x_12); -lean_dec_ref(x_10); -x_13 = lean_alloc_closure((void*)(l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1___lam__1___boxed), 8, 0); -x_14 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_13, x_2, x_3, x_4, x_5, x_6, x_7, x_12); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -x_15 = !lean_is_exclusive(x_14); -if (x_15 == 0) -{ -lean_object* x_16; uint8_t x_17; lean_object* x_18; -x_16 = lean_ctor_get(x_14, 0); -x_17 = l_Lean_checkTraceOption(x_11, x_16, x_1); -lean_dec(x_16); -lean_dec(x_11); -x_18 = lean_box(x_17); -lean_ctor_set(x_14, 0, x_18); -return x_14; -} -else -{ -lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; -x_19 = lean_ctor_get(x_14, 0); -x_20 = lean_ctor_get(x_14, 1); -lean_inc(x_20); -lean_inc(x_19); -lean_dec(x_14); -x_21 = l_Lean_checkTraceOption(x_11, x_19, x_1); -lean_dec(x_19); -lean_dec(x_11); -x_22 = lean_box(x_21); -x_23 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_23, 0, x_22); -lean_ctor_set(x_23, 1, x_20); -return x_23; -} -} -else -{ -uint8_t x_24; -lean_dec(x_11); -lean_dec(x_1); -x_24 = !lean_is_exclusive(x_14); -if (x_24 == 0) -{ -return x_14; -} -else -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_14, 0); -x_26 = lean_ctor_get(x_14, 1); -lean_inc(x_26); -lean_inc(x_25); -lean_dec(x_14); -x_27 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -} -else -{ -uint8_t x_28; -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_2); -lean_dec(x_1); -x_28 = !lean_is_exclusive(x_10); -if (x_28 == 0) -{ -return x_10; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_10, 0); -x_30 = lean_ctor_get(x_10, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_10); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__0(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_10; -x_10 = l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0(x_1, x_5, x_6, x_7, x_8, x_9); -return x_10; -} -} -static double _init_l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__0() { -_start: -{ -lean_object* x_1; double x_2; -x_1 = lean_unsigned_to_nat(0u); -x_2 = lean_float_of_nat(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(0u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; -x_12 = lean_st_ref_take(x_10, x_11); -x_13 = lean_ctor_get(x_12, 0); -lean_inc(x_13); -x_14 = lean_ctor_get(x_13, 4); -lean_inc_ref(x_14); -x_15 = !lean_is_exclusive(x_12); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_16 = lean_ctor_get(x_12, 1); -x_17 = lean_ctor_get(x_12, 0); -lean_dec(x_17); -x_18 = !lean_is_exclusive(x_13); -if (x_18 == 0) -{ -lean_object* x_19; uint8_t x_20; -x_19 = lean_ctor_get(x_13, 4); -lean_dec(x_19); -x_20 = !lean_is_exclusive(x_14); -if (x_20 == 0) -{ -lean_object* x_21; double x_22; uint8_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; -x_21 = lean_ctor_get(x_14, 0); -x_22 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__0; -x_23 = 0; -x_24 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4; -x_25 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_25, 0, x_1); -lean_ctor_set(x_25, 1, x_24); -lean_ctor_set_float(x_25, sizeof(void*)*2, x_22); -lean_ctor_set_float(x_25, sizeof(void*)*2 + 8, x_22); -lean_ctor_set_uint8(x_25, sizeof(void*)*2 + 16, x_23); -x_26 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__1; -x_27 = lean_alloc_ctor(9, 3, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_2); -lean_ctor_set(x_27, 2, x_26); -lean_ctor_set(x_12, 1, x_27); -lean_ctor_set(x_12, 0, x_3); -x_28 = l_Lean_PersistentArray_push___redArg(x_21, x_12); -lean_ctor_set(x_14, 0, x_28); -x_29 = lean_st_ref_set(x_10, x_13, x_16); -x_30 = !lean_is_exclusive(x_29); -if (x_30 == 0) -{ -lean_object* x_31; lean_object* x_32; -x_31 = lean_ctor_get(x_29, 0); -lean_dec(x_31); -x_32 = lean_box(0); -lean_ctor_set(x_29, 0, x_32); -return x_29; -} -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_33 = lean_ctor_get(x_29, 1); -lean_inc(x_33); -lean_dec(x_29); -x_34 = lean_box(0); -x_35 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_35, 0, x_34); -lean_ctor_set(x_35, 1, x_33); -return x_35; -} -} -else -{ -uint64_t x_36; lean_object* x_37; double x_38; uint8_t x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_36 = lean_ctor_get_uint64(x_14, sizeof(void*)*1); -x_37 = lean_ctor_get(x_14, 0); -lean_inc(x_37); -lean_dec(x_14); -x_38 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__0; -x_39 = 0; -x_40 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4; -x_41 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_41, 0, x_1); -lean_ctor_set(x_41, 1, x_40); -lean_ctor_set_float(x_41, sizeof(void*)*2, x_38); -lean_ctor_set_float(x_41, sizeof(void*)*2 + 8, x_38); -lean_ctor_set_uint8(x_41, sizeof(void*)*2 + 16, x_39); -x_42 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__1; -x_43 = lean_alloc_ctor(9, 3, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_2); -lean_ctor_set(x_43, 2, x_42); -lean_ctor_set(x_12, 1, x_43); -lean_ctor_set(x_12, 0, x_3); -x_44 = l_Lean_PersistentArray_push___redArg(x_37, x_12); -x_45 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set_uint64(x_45, sizeof(void*)*1, x_36); -lean_ctor_set(x_13, 4, x_45); -x_46 = lean_st_ref_set(x_10, x_13, x_16); -x_47 = lean_ctor_get(x_46, 1); -lean_inc(x_47); -if (lean_is_exclusive(x_46)) { - lean_ctor_release(x_46, 0); - lean_ctor_release(x_46, 1); - x_48 = x_46; -} else { - lean_dec_ref(x_46); - x_48 = lean_box(0); -} -x_49 = lean_box(0); -if (lean_is_scalar(x_48)) { - x_50 = lean_alloc_ctor(0, 2, 0); -} else { - x_50 = x_48; -} -lean_ctor_set(x_50, 0, x_49); -lean_ctor_set(x_50, 1, x_47); -return x_50; -} -} -else -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint64_t x_59; lean_object* x_60; lean_object* x_61; double x_62; uint8_t x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_51 = lean_ctor_get(x_13, 0); -x_52 = lean_ctor_get(x_13, 1); -x_53 = lean_ctor_get(x_13, 2); -x_54 = lean_ctor_get(x_13, 3); -x_55 = lean_ctor_get(x_13, 5); -x_56 = lean_ctor_get(x_13, 6); -x_57 = lean_ctor_get(x_13, 7); -x_58 = lean_ctor_get(x_13, 8); -lean_inc(x_58); -lean_inc(x_57); -lean_inc(x_56); -lean_inc(x_55); -lean_inc(x_54); -lean_inc(x_53); -lean_inc(x_52); -lean_inc(x_51); -lean_dec(x_13); -x_59 = lean_ctor_get_uint64(x_14, sizeof(void*)*1); -x_60 = lean_ctor_get(x_14, 0); -lean_inc_ref(x_60); -if (lean_is_exclusive(x_14)) { - lean_ctor_release(x_14, 0); - x_61 = x_14; -} else { - lean_dec_ref(x_14); - x_61 = lean_box(0); -} -x_62 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__0; -x_63 = 0; -x_64 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4; -x_65 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_65, 0, x_1); -lean_ctor_set(x_65, 1, x_64); -lean_ctor_set_float(x_65, sizeof(void*)*2, x_62); -lean_ctor_set_float(x_65, sizeof(void*)*2 + 8, x_62); -lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 16, x_63); -x_66 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__1; -x_67 = lean_alloc_ctor(9, 3, 0); -lean_ctor_set(x_67, 0, x_65); -lean_ctor_set(x_67, 1, x_2); -lean_ctor_set(x_67, 2, x_66); -lean_ctor_set(x_12, 1, x_67); -lean_ctor_set(x_12, 0, x_3); -x_68 = l_Lean_PersistentArray_push___redArg(x_60, x_12); -if (lean_is_scalar(x_61)) { - x_69 = lean_alloc_ctor(0, 1, 8); -} else { - x_69 = x_61; -} -lean_ctor_set(x_69, 0, x_68); -lean_ctor_set_uint64(x_69, sizeof(void*)*1, x_59); -x_70 = lean_alloc_ctor(0, 9, 0); -lean_ctor_set(x_70, 0, x_51); -lean_ctor_set(x_70, 1, x_52); -lean_ctor_set(x_70, 2, x_53); -lean_ctor_set(x_70, 3, x_54); -lean_ctor_set(x_70, 4, x_69); -lean_ctor_set(x_70, 5, x_55); -lean_ctor_set(x_70, 6, x_56); -lean_ctor_set(x_70, 7, x_57); -lean_ctor_set(x_70, 8, x_58); -x_71 = lean_st_ref_set(x_10, x_70, x_16); -x_72 = lean_ctor_get(x_71, 1); -lean_inc(x_72); -if (lean_is_exclusive(x_71)) { - lean_ctor_release(x_71, 0); - lean_ctor_release(x_71, 1); - x_73 = x_71; -} else { - lean_dec_ref(x_71); - x_73 = lean_box(0); -} -x_74 = lean_box(0); -if (lean_is_scalar(x_73)) { - x_75 = lean_alloc_ctor(0, 2, 0); -} else { - x_75 = x_73; -} -lean_ctor_set(x_75, 0, x_74); -lean_ctor_set(x_75, 1, x_72); -return x_75; -} -} -else -{ -lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; uint64_t x_86; lean_object* x_87; lean_object* x_88; double x_89; uint8_t x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; -x_76 = lean_ctor_get(x_12, 1); -lean_inc(x_76); -lean_dec(x_12); -x_77 = lean_ctor_get(x_13, 0); -lean_inc_ref(x_77); -x_78 = lean_ctor_get(x_13, 1); -lean_inc(x_78); -x_79 = lean_ctor_get(x_13, 2); -lean_inc_ref(x_79); -x_80 = lean_ctor_get(x_13, 3); -lean_inc_ref(x_80); -x_81 = lean_ctor_get(x_13, 5); -lean_inc_ref(x_81); -x_82 = lean_ctor_get(x_13, 6); -lean_inc_ref(x_82); -x_83 = lean_ctor_get(x_13, 7); -lean_inc_ref(x_83); -x_84 = lean_ctor_get(x_13, 8); -lean_inc_ref(x_84); -if (lean_is_exclusive(x_13)) { - lean_ctor_release(x_13, 0); - lean_ctor_release(x_13, 1); - lean_ctor_release(x_13, 2); - lean_ctor_release(x_13, 3); - lean_ctor_release(x_13, 4); - lean_ctor_release(x_13, 5); - lean_ctor_release(x_13, 6); - lean_ctor_release(x_13, 7); - lean_ctor_release(x_13, 8); - x_85 = x_13; -} else { - lean_dec_ref(x_13); - x_85 = lean_box(0); -} -x_86 = lean_ctor_get_uint64(x_14, sizeof(void*)*1); -x_87 = lean_ctor_get(x_14, 0); -lean_inc_ref(x_87); -if (lean_is_exclusive(x_14)) { - lean_ctor_release(x_14, 0); - x_88 = x_14; -} else { - lean_dec_ref(x_14); - x_88 = lean_box(0); -} -x_89 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__0; -x_90 = 0; -x_91 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4; -x_92 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_92, 0, x_1); -lean_ctor_set(x_92, 1, x_91); -lean_ctor_set_float(x_92, sizeof(void*)*2, x_89); -lean_ctor_set_float(x_92, sizeof(void*)*2 + 8, x_89); -lean_ctor_set_uint8(x_92, sizeof(void*)*2 + 16, x_90); -x_93 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__1; -x_94 = lean_alloc_ctor(9, 3, 0); -lean_ctor_set(x_94, 0, x_92); -lean_ctor_set(x_94, 1, x_2); -lean_ctor_set(x_94, 2, x_93); -x_95 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_95, 0, x_3); -lean_ctor_set(x_95, 1, x_94); -x_96 = l_Lean_PersistentArray_push___redArg(x_87, x_95); -if (lean_is_scalar(x_88)) { - x_97 = lean_alloc_ctor(0, 1, 8); -} else { - x_97 = x_88; -} -lean_ctor_set(x_97, 0, x_96); -lean_ctor_set_uint64(x_97, sizeof(void*)*1, x_86); -if (lean_is_scalar(x_85)) { - x_98 = lean_alloc_ctor(0, 9, 0); -} else { - x_98 = x_85; -} -lean_ctor_set(x_98, 0, x_77); -lean_ctor_set(x_98, 1, x_78); -lean_ctor_set(x_98, 2, x_79); -lean_ctor_set(x_98, 3, x_80); -lean_ctor_set(x_98, 4, x_97); -lean_ctor_set(x_98, 5, x_81); -lean_ctor_set(x_98, 6, x_82); -lean_ctor_set(x_98, 7, x_83); -lean_ctor_set(x_98, 8, x_84); -x_99 = lean_st_ref_set(x_10, x_98, x_76); -x_100 = lean_ctor_get(x_99, 1); -lean_inc(x_100); -if (lean_is_exclusive(x_99)) { - lean_ctor_release(x_99, 0); - lean_ctor_release(x_99, 1); - x_101 = x_99; -} else { - lean_dec_ref(x_99); - x_101 = lean_box(0); -} -x_102 = lean_box(0); -if (lean_is_scalar(x_101)) { - x_103 = lean_alloc_ctor(0, 2, 0); -} else { - x_103 = x_101; -} -lean_ctor_set(x_103, 0, x_102); -lean_ctor_set(x_103, 1, x_100); -return x_103; -} -} -} -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2(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_10; lean_object* x_11; lean_object* x_12; -x_10 = lean_ctor_get(x_7, 5); -lean_inc(x_10); -x_11 = lean_alloc_closure((void*)(l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__0___boxed), 9, 1); -lean_closure_set(x_11, 0, x_2); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc(x_6); -lean_inc_ref(x_5); -lean_inc_ref(x_3); -x_12 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_12) == 0) -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -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_12, 0); +x_15 = lean_ctor_get(x_12, 1); +lean_inc(x_15); lean_inc(x_14); -lean_dec_ref(x_12); -x_15 = lean_alloc_closure((void*)(l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___boxed), 11, 3); -lean_closure_set(x_15, 0, x_1); -lean_closure_set(x_15, 1, x_13); -lean_closure_set(x_15, 2, x_10); -x_16 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_14); +lean_dec(x_12); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_14); +lean_ctor_set(x_16, 1, x_15); return x_16; } +} else { uint8_t x_17; -lean_dec(x_10); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_3); -lean_dec(x_1); x_17 = !lean_is_exclusive(x_12); if (x_17 == 0) { @@ -15191,150 +15160,33 @@ return x_20; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3_spec__3___redArg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; lean_object* x_14; -x_13 = lean_alloc_closure((void*)(l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withSharing_spec__0___redArg___lam__0), 9, 3); -lean_closure_set(x_13, 0, x_4); -lean_closure_set(x_13, 1, x_6); -lean_closure_set(x_13, 2, x_7); -x_14 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp(lean_box(0), x_1, x_2, x_3, x_13, x_5, x_8, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_14) == 0) -{ -return x_14; -} -else -{ -uint8_t x_15; -x_15 = !lean_is_exclusive(x_14); -if (x_15 == 0) -{ -return x_14; -} -else -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_16 = lean_ctor_get(x_14, 0); -x_17 = lean_ctor_get(x_14, 1); -lean_inc(x_17); -lean_inc(x_16); -lean_dec(x_14); -x_18 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_18, 0, x_16); -lean_ctor_set(x_18, 1, x_17); -return x_18; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3_spec__3(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, lean_object* x_12, lean_object* x_13) { -_start: -{ -lean_object* x_14; -x_14 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3_spec__3___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_14; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -uint8_t x_11; uint8_t x_12; lean_object* x_13; -x_11 = 0; -x_12 = 0; -x_13 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3_spec__3___redArg(x_1, x_11, x_2, x_3, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_13; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3_spec__3(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; -x_12 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3_spec__3___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__0(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_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3___redArg(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_11; -x_11 = l_Lean_Meta_isExprDefEq(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +uint8_t x_9; uint8_t x_10; lean_object* x_11; +x_9 = 0; +x_10 = 0; +x_11 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3_spec__3___redArg(x_1, x_9, x_2, x_3, x_10, x_4, x_5, x_6, x_7, x_8); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Meta_isExprDefEq(x_1, x_2, x_6, x_7, x_8, x_9, x_10); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Meta_isExprDefEq(x_1, x_2, x_6, x_7, x_8, x_9, x_10); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_1, x_2, x_6, x_7, x_8, x_9, x_10); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__4(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_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l_Lean_Meta_whnfR(x_1, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__5(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_10; -x_10 = l_Lean_Meta_whnfR(x_1, x_5, x_6, x_7, x_8, x_9); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__6(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_10; -x_10 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_1, x_7, x_8, x_9); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__7(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_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0_spec__0___redArg(x_7, x_8); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_mkProj_x27(x_1, x_2, x_3, x_7, x_8, x_9, x_10, x_11); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_1, x_2, x_6, x_7, x_8, x_9, x_10); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__9(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { _start: { lean_object* x_14; @@ -15342,41 +15194,1287 @@ x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x return x_14; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("entails_cons_intro", 18, 18); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1___closed__0; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__2; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__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, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +_start: +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_12, 2); +lean_inc_ref(x_17); +lean_inc_ref(x_1); +x_18 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_18, 0, x_1); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc_ref(x_11); +x_19 = l_Lean_Elab_Tactic_Do_ProofMode_addLocalVarInfo(x_2, x_17, x_11, x_18, x_3, x_12, x_13, x_14, x_15, x_16); +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; uint8_t x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_20 = lean_ctor_get(x_19, 1); +lean_inc(x_20); +lean_dec_ref(x_19); +lean_inc_ref(x_11); +lean_inc_ref(x_4); +x_21 = l_Lean_Expr_app___override(x_4, x_11); +lean_inc_ref(x_5); +x_22 = l_Lean_Elab_Tactic_Do_ProofMode_pushForallContextIntoHyps(x_5, x_21); +x_23 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__0; +x_24 = lean_array_push(x_23, x_11); +x_25 = 0; +lean_inc_ref(x_6); +x_26 = l_Lean_Expr_betaRev(x_6, x_24, x_25, x_25); +lean_inc_ref(x_5); +lean_inc(x_7); +x_27 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_27, 0, x_7); +lean_ctor_set(x_27, 1, x_5); +lean_ctor_set(x_27, 2, x_22); +lean_ctor_set(x_27, 3, x_26); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_10); +lean_inc_ref(x_9); +x_28 = lean_apply_8(x_8, x_27, x_9, x_10, x_12, x_13, x_14, x_15, x_20); +if (lean_obj_tag(x_28) == 0) +{ +uint8_t x_29; +x_29 = !lean_is_exclusive(x_28); +if (x_29 == 0) +{ +lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_30 = lean_ctor_get(x_28, 0); +x_31 = lean_ctor_get(x_28, 1); +x_32 = 1; +x_33 = lean_box(x_25); +x_34 = lean_box(x_3); +x_35 = lean_box(x_32); +x_36 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__0___boxed), 13, 5); +lean_closure_set(x_36, 0, x_24); +lean_closure_set(x_36, 1, x_30); +lean_closure_set(x_36, 2, x_33); +lean_closure_set(x_36, 3, x_34); +lean_closure_set(x_36, 4, x_35); +x_37 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_36, x_9, x_10, x_12, x_13, x_14, x_15, x_31); +lean_dec(x_10); +if (lean_obj_tag(x_37) == 0) +{ +uint8_t x_38; +x_38 = !lean_is_exclusive(x_37); +if (x_38 == 0) +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_39 = lean_ctor_get(x_37, 0); +x_40 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1___closed__1; +x_41 = lean_box(0); +lean_ctor_set_tag(x_28, 1); +lean_ctor_set(x_28, 1, x_41); +lean_ctor_set(x_28, 0, x_7); +x_42 = l_Lean_Expr_const___override(x_40, x_28); +x_43 = l_Lean_mkApp5(x_42, x_5, x_1, x_4, x_6, x_39); +lean_ctor_set(x_37, 0, x_43); +return x_37; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_44 = lean_ctor_get(x_37, 0); +x_45 = lean_ctor_get(x_37, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_37); +x_46 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1___closed__1; +x_47 = lean_box(0); +lean_ctor_set_tag(x_28, 1); +lean_ctor_set(x_28, 1, x_47); +lean_ctor_set(x_28, 0, x_7); +x_48 = l_Lean_Expr_const___override(x_46, x_28); +x_49 = l_Lean_mkApp5(x_48, x_5, x_1, x_4, x_6, x_44); +x_50 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_45); +return x_50; +} +} +else +{ +lean_free_object(x_28); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_1); +return x_37; +} +} +else +{ +lean_object* x_51; lean_object* x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_51 = lean_ctor_get(x_28, 0); +x_52 = lean_ctor_get(x_28, 1); +lean_inc(x_52); +lean_inc(x_51); +lean_dec(x_28); +x_53 = 1; +x_54 = lean_box(x_25); +x_55 = lean_box(x_3); +x_56 = lean_box(x_53); +x_57 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__0___boxed), 13, 5); +lean_closure_set(x_57, 0, x_24); +lean_closure_set(x_57, 1, x_51); +lean_closure_set(x_57, 2, x_54); +lean_closure_set(x_57, 3, x_55); +lean_closure_set(x_57, 4, x_56); +x_58 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_57, x_9, x_10, x_12, x_13, x_14, x_15, x_52); +lean_dec(x_10); +if (lean_obj_tag(x_58) == 0) +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_59 = lean_ctor_get(x_58, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_58, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_58)) { + lean_ctor_release(x_58, 0); + lean_ctor_release(x_58, 1); + x_61 = x_58; +} else { + lean_dec_ref(x_58); + x_61 = lean_box(0); +} +x_62 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1___closed__1; +x_63 = lean_box(0); +x_64 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_64, 0, x_7); +lean_ctor_set(x_64, 1, x_63); +x_65 = l_Lean_Expr_const___override(x_62, x_64); +x_66 = l_Lean_mkApp5(x_65, x_5, x_1, x_4, x_6, x_59); +if (lean_is_scalar(x_61)) { + x_67 = lean_alloc_ctor(0, 2, 0); +} else { + x_67 = x_61; +} +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_60); +return x_67; +} +else +{ +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_1); +return x_58; +} +} +} +else +{ +lean_dec_ref(x_24); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_1); +return x_28; +} +} +else +{ +uint8_t x_68; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_1); +x_68 = !lean_is_exclusive(x_19); +if (x_68 == 0) +{ +return x_19; +} +else +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_19, 0); +x_70 = lean_ctor_get(x_19, 1); +lean_inc(x_70); +lean_inc(x_69); +lean_dec(x_19); +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; +} +} +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("List", 4, 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("cons", 4, 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__1; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__0; +x_3 = l_Lean_Name_mkStr2(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Ambient state list not a cons ", 30, 30); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_reduceProjBeta_x3f_go___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__3; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_17 = lean_ctor_get(x_1, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_18); +x_19 = lean_ctor_get(x_1, 2); +lean_inc_ref(x_19); +x_20 = lean_ctor_get(x_1, 3); +lean_inc_ref(x_20); +lean_dec_ref(x_1); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_18); +x_21 = lean_whnf(x_18, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_21) == 0) +{ +uint8_t x_22; +x_22 = !lean_is_exclusive(x_21); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_23 = lean_ctor_get(x_21, 0); +x_24 = lean_ctor_get(x_21, 1); +x_25 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2; +x_26 = lean_unsigned_to_nat(3u); +x_27 = l_Lean_Expr_isAppOfArity(x_23, x_25, x_26); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +lean_dec(x_23); +lean_dec_ref(x_20); +lean_dec_ref(x_19); +lean_dec(x_17); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +x_28 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__4; +x_29 = l_Lean_MessageData_ofExpr(x_18); +lean_ctor_set_tag(x_21, 7); +lean_ctor_set(x_21, 1, x_29); +lean_ctor_set(x_21, 0, x_28); +x_30 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_31 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_31, 0, x_21); +lean_ctor_set(x_31, 1, x_30); +x_32 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__36___redArg(x_31, x_6, x_7, x_8, x_9, x_24); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +x_11 = x_32; +goto block_16; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; +lean_free_object(x_21); +lean_dec_ref(x_18); +x_33 = l_Lean_Expr_appFn_x21(x_23); +x_34 = l_Lean_Expr_appArg_x21(x_33); +lean_dec_ref(x_33); +x_35 = l_Lean_Expr_appArg_x21(x_23); +lean_dec(x_23); +x_36 = lean_box(x_27); +lean_inc(x_2); +lean_inc_ref(x_34); +x_37 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1___boxed), 16, 10); +lean_closure_set(x_37, 0, x_34); +lean_closure_set(x_37, 1, x_2); +lean_closure_set(x_37, 2, x_36); +lean_closure_set(x_37, 3, x_19); +lean_closure_set(x_37, 4, x_35); +lean_closure_set(x_37, 5, x_20); +lean_closure_set(x_37, 6, x_17); +lean_closure_set(x_37, 7, x_3); +lean_closure_set(x_37, 8, x_4); +lean_closure_set(x_37, 9, x_5); +x_38 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__4; +lean_inc(x_2); +x_39 = l_Lean_Syntax_isOfKind(x_2, x_38); +if (x_39 == 0) +{ +lean_object* x_40; lean_object* x_41; +lean_dec(x_2); +x_40 = l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___closed__1; +x_41 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_40, x_8, x_9, x_24); +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_ref(x_41); +x_44 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3___redArg(x_42, x_34, x_37, x_6, x_7, x_8, x_9, x_43); +x_11 = x_44; +goto block_16; +} +else +{ +uint8_t x_45; +lean_dec_ref(x_37); +lean_dec_ref(x_34); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +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_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; uint8_t x_52; +x_49 = lean_unsigned_to_nat(0u); +x_50 = l_Lean_Syntax_getArg(x_2, x_49); +lean_dec(x_2); +x_51 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__6; +lean_inc(x_50); +x_52 = l_Lean_Syntax_isOfKind(x_50, x_51); +if (x_52 == 0) +{ +lean_object* x_53; lean_object* x_54; +lean_dec(x_50); +x_53 = l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___closed__1; +x_54 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_53, x_8, x_9, x_24); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +lean_dec_ref(x_54); +x_57 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3___redArg(x_55, x_34, x_37, x_6, x_7, x_8, x_9, x_56); +x_11 = x_57; +goto block_16; +} +else +{ +uint8_t x_58; +lean_dec_ref(x_37); +lean_dec_ref(x_34); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +x_58 = !lean_is_exclusive(x_54); +if (x_58 == 0) +{ +return x_54; +} +else +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_59 = lean_ctor_get(x_54, 0); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +lean_inc(x_59); +lean_dec(x_54); +x_61 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_61, 0, x_59); +lean_ctor_set(x_61, 1, x_60); +return x_61; +} +} +} +else +{ +lean_object* x_62; lean_object* x_63; +x_62 = l_Lean_Syntax_getId(x_50); +lean_dec(x_50); +x_63 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3___redArg(x_62, x_34, x_37, x_6, x_7, x_8, x_9, x_24); +x_11 = x_63; +goto block_16; +} +} +} +} +else +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; +x_64 = lean_ctor_get(x_21, 0); +x_65 = lean_ctor_get(x_21, 1); +lean_inc(x_65); +lean_inc(x_64); +lean_dec(x_21); +x_66 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2; +x_67 = lean_unsigned_to_nat(3u); +x_68 = l_Lean_Expr_isAppOfArity(x_64, x_66, x_67); +if (x_68 == 0) +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +lean_dec(x_64); +lean_dec_ref(x_20); +lean_dec_ref(x_19); +lean_dec(x_17); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +x_69 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__4; +x_70 = l_Lean_MessageData_ofExpr(x_18); +x_71 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_71, 0, x_69); +lean_ctor_set(x_71, 1, x_70); +x_72 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_73 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_73, 0, x_71); +lean_ctor_set(x_73, 1, x_72); +x_74 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__36___redArg(x_73, x_6, x_7, x_8, x_9, x_65); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +x_11 = x_74; +goto block_16; +} +else +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; uint8_t x_81; +lean_dec_ref(x_18); +x_75 = l_Lean_Expr_appFn_x21(x_64); +x_76 = l_Lean_Expr_appArg_x21(x_75); +lean_dec_ref(x_75); +x_77 = l_Lean_Expr_appArg_x21(x_64); +lean_dec(x_64); +x_78 = lean_box(x_68); +lean_inc(x_2); +lean_inc_ref(x_76); +x_79 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1___boxed), 16, 10); +lean_closure_set(x_79, 0, x_76); +lean_closure_set(x_79, 1, x_2); +lean_closure_set(x_79, 2, x_78); +lean_closure_set(x_79, 3, x_19); +lean_closure_set(x_79, 4, x_77); +lean_closure_set(x_79, 5, x_20); +lean_closure_set(x_79, 6, x_17); +lean_closure_set(x_79, 7, x_3); +lean_closure_set(x_79, 8, x_4); +lean_closure_set(x_79, 9, x_5); +x_80 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__4; +lean_inc(x_2); +x_81 = l_Lean_Syntax_isOfKind(x_2, x_80); +if (x_81 == 0) +{ +lean_object* x_82; lean_object* x_83; +lean_dec(x_2); +x_82 = l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___closed__1; +x_83 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_82, x_8, x_9, x_65); +if (lean_obj_tag(x_83) == 0) +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_84 = lean_ctor_get(x_83, 0); +lean_inc(x_84); +x_85 = lean_ctor_get(x_83, 1); +lean_inc(x_85); +lean_dec_ref(x_83); +x_86 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3___redArg(x_84, x_76, x_79, x_6, x_7, x_8, x_9, x_85); +x_11 = x_86; +goto block_16; +} +else +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; +lean_dec_ref(x_79); +lean_dec_ref(x_76); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +x_87 = lean_ctor_get(x_83, 0); +lean_inc(x_87); +x_88 = lean_ctor_get(x_83, 1); +lean_inc(x_88); +if (lean_is_exclusive(x_83)) { + lean_ctor_release(x_83, 0); + lean_ctor_release(x_83, 1); + x_89 = x_83; +} else { + lean_dec_ref(x_83); + x_89 = lean_box(0); +} +if (lean_is_scalar(x_89)) { + x_90 = lean_alloc_ctor(1, 2, 0); +} else { + x_90 = x_89; +} +lean_ctor_set(x_90, 0, x_87); +lean_ctor_set(x_90, 1, x_88); +return x_90; +} +} +else +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; +x_91 = lean_unsigned_to_nat(0u); +x_92 = l_Lean_Syntax_getArg(x_2, x_91); +lean_dec(x_2); +x_93 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__6; +lean_inc(x_92); +x_94 = l_Lean_Syntax_isOfKind(x_92, x_93); +if (x_94 == 0) +{ +lean_object* x_95; lean_object* x_96; +lean_dec(x_92); +x_95 = l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___closed__1; +x_96 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_95, x_8, x_9, x_65); +if (lean_obj_tag(x_96) == 0) +{ +lean_object* x_97; lean_object* x_98; lean_object* x_99; +x_97 = lean_ctor_get(x_96, 0); +lean_inc(x_97); +x_98 = lean_ctor_get(x_96, 1); +lean_inc(x_98); +lean_dec_ref(x_96); +x_99 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3___redArg(x_97, x_76, x_79, x_6, x_7, x_8, x_9, x_98); +x_11 = x_99; +goto block_16; +} +else +{ +lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; +lean_dec_ref(x_79); +lean_dec_ref(x_76); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +x_100 = lean_ctor_get(x_96, 0); +lean_inc(x_100); +x_101 = lean_ctor_get(x_96, 1); +lean_inc(x_101); +if (lean_is_exclusive(x_96)) { + lean_ctor_release(x_96, 0); + lean_ctor_release(x_96, 1); + x_102 = x_96; +} else { + lean_dec_ref(x_96); + x_102 = lean_box(0); +} +if (lean_is_scalar(x_102)) { + x_103 = lean_alloc_ctor(1, 2, 0); +} else { + x_103 = x_102; +} +lean_ctor_set(x_103, 0, x_100); +lean_ctor_set(x_103, 1, x_101); +return x_103; +} +} +else +{ +lean_object* x_104; lean_object* x_105; +x_104 = l_Lean_Syntax_getId(x_92); +lean_dec(x_92); +x_105 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3___redArg(x_104, x_76, x_79, x_6, x_7, x_8, x_9, x_65); +x_11 = x_105; +goto block_16; +} +} +} +} +} +else +{ +lean_dec_ref(x_20); +lean_dec_ref(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_21; +} +block_16: +{ +if (lean_obj_tag(x_11) == 0) +{ +return x_11; +} +else +{ +uint8_t x_12; +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) +{ +return x_11; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_11, 0); +x_14 = lean_ctor_get(x_11, 1); +lean_inc(x_14); +lean_inc(x_13); +lean_dec(x_11); +x_15 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_15, 0, x_13); +lean_ctor_set(x_15, 1, x_14); +return x_15; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__0(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_10; +x_10 = l_Lean_Elab_Tactic_Do_reduceProjBeta_x3f(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(x_1, x_3, x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_1, x_7, x_8, x_9); +return x_10; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("PredTrans", 9, 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("apply", 5, 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__1; +x_2 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__0; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Parser", 6, 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Term", 4, 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("hole", 4, 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__5; +x_2 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__4; +x_3 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__3; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__2; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_11 = lean_ctor_get(x_2, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_2, 1); +lean_inc_ref(x_12); +x_13 = lean_ctor_get(x_2, 2); +lean_inc_ref(x_13); +x_14 = lean_ctor_get(x_2, 3); +lean_inc_ref(x_14); +if (lean_is_exclusive(x_2)) { + lean_ctor_release(x_2, 0); + lean_ctor_release(x_2, 1); + lean_ctor_release(x_2, 2); + lean_ctor_release(x_2, 3); + x_15 = x_2; +} else { + lean_dec_ref(x_2); + x_15 = lean_box(0); +} +lean_inc_ref(x_14); +x_16 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__0___boxed), 9, 1); +lean_closure_set(x_16, 0, x_14); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_17 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_59; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); +lean_inc(x_19); +lean_dec_ref(x_17); +lean_inc(x_3); +lean_inc_ref(x_1); +x_20 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__1), 10, 2); +lean_closure_set(x_20, 0, x_1); +lean_closure_set(x_20, 1, x_3); +if (lean_obj_tag(x_18) == 0) +{ +x_59 = x_14; +goto block_82; +} +else +{ +lean_object* x_83; +lean_dec_ref(x_14); +x_83 = lean_ctor_get(x_18, 0); +lean_inc(x_83); +lean_dec_ref(x_18); +x_59 = x_83; +goto block_82; +} +block_58: +{ +if (x_23 == 0) +{ +lean_object* x_24; uint8_t x_25; +lean_dec_ref(x_20); +x_24 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__2; +x_25 = l_Lean_Expr_isConstOf(x_22, x_24); +lean_dec_ref(x_22); +if (x_25 == 0) +{ +lean_object* x_26; +lean_dec_ref(x_4); +lean_dec_ref(x_1); +x_26 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onFail___redArg(x_21, x_3, x_5, x_6, x_7, x_8, x_9, x_19); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_5); +return x_26; +} +else +{ +lean_object* x_27; +x_27 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_1, x_21, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_19); +return x_27; +} +} +else +{ +lean_object* x_28; +lean_dec_ref(x_22); +lean_dec(x_3); +lean_dec_ref(x_1); +x_28 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_5, x_19); +if (lean_obj_tag(x_28) == 0) +{ +lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_29 = lean_ctor_get(x_28, 1); +lean_inc(x_29); +lean_dec_ref(x_28); +x_30 = lean_st_ref_get(x_9, x_29); +x_31 = !lean_is_exclusive(x_30); +if (x_31 == 0) +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_32 = lean_ctor_get(x_30, 1); +x_33 = lean_ctor_get(x_30, 0); +lean_dec(x_33); +x_34 = lean_ctor_get(x_8, 5); +lean_inc(x_34); +x_35 = 0; +x_36 = l_Lean_SourceInfo_fromRef(x_34, x_35); +lean_dec(x_34); +x_37 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__4; +x_38 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__6; +x_39 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14___closed__0; +lean_inc(x_36); +lean_ctor_set_tag(x_30, 2); +lean_ctor_set(x_30, 1, x_39); +lean_ctor_set(x_30, 0, x_36); +lean_inc(x_36); +x_40 = l_Lean_Syntax_node1(x_36, x_38, x_30); +x_41 = l_Lean_Syntax_node1(x_36, x_37, x_40); +x_42 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0(x_21, x_41, x_20, x_4, x_5, x_6, x_7, x_8, x_9, x_32); +return x_42; +} +else +{ +lean_object* x_43; lean_object* x_44; uint8_t 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; +x_43 = lean_ctor_get(x_30, 1); +lean_inc(x_43); +lean_dec(x_30); +x_44 = lean_ctor_get(x_8, 5); +lean_inc(x_44); +x_45 = 0; +x_46 = l_Lean_SourceInfo_fromRef(x_44, x_45); +lean_dec(x_44); +x_47 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__4; +x_48 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__6; +x_49 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14___closed__0; +lean_inc(x_46); +x_50 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_50, 0, x_46); +lean_ctor_set(x_50, 1, x_49); +lean_inc(x_46); +x_51 = l_Lean_Syntax_node1(x_46, x_48, x_50); +x_52 = l_Lean_Syntax_node1(x_46, x_47, x_51); +x_53 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0(x_21, x_52, x_20, x_4, x_5, x_6, x_7, x_8, x_9, x_43); +return x_53; +} +} +else +{ +uint8_t x_54; +lean_dec_ref(x_21); +lean_dec_ref(x_20); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_54 = !lean_is_exclusive(x_28); +if (x_54 == 0) +{ +return x_28; +} +else +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_55 = lean_ctor_get(x_28, 0); +x_56 = lean_ctor_get(x_28, 1); +lean_inc(x_56); +lean_inc(x_55); +lean_dec(x_28); +x_57 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_55); +lean_ctor_set(x_57, 1, x_56); +return x_57; +} +} +} +} +block_82: +{ +lean_object* x_60; lean_object* x_61; +lean_inc_ref(x_59); +if (lean_is_scalar(x_15)) { + x_60 = lean_alloc_ctor(0, 4, 0); +} else { + x_60 = x_15; +} +lean_ctor_set(x_60, 0, x_11); +lean_ctor_set(x_60, 1, x_12); +lean_ctor_set(x_60, 2, x_13); +lean_ctor_set(x_60, 3, x_59); +x_61 = l_Lean_Expr_getAppFn(x_59); +lean_dec_ref(x_59); +if (lean_obj_tag(x_61) == 6) +{ +lean_object* x_62; lean_object* x_63; +lean_dec(x_3); +lean_dec_ref(x_1); +x_62 = lean_ctor_get(x_61, 0); +lean_inc(x_62); +lean_dec_ref(x_61); +x_63 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_5, x_19); +if (lean_obj_tag(x_63) == 0) +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_64 = lean_ctor_get(x_63, 1); +lean_inc(x_64); +lean_dec_ref(x_63); +x_65 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__3___boxed), 9, 1); +lean_closure_set(x_65, 0, x_62); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_66 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_65, x_4, x_5, x_6, x_7, x_8, x_9, x_64); +if (lean_obj_tag(x_66) == 0) +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_67 = lean_ctor_get(x_66, 0); +lean_inc(x_67); +x_68 = lean_ctor_get(x_66, 1); +lean_inc(x_68); +lean_dec_ref(x_66); +x_69 = lean_mk_syntax_ident(x_67); +x_70 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3(x_60, x_69, x_20, x_4, x_5, x_6, x_7, x_8, x_9, x_68); +return x_70; +} +else +{ +uint8_t x_71; +lean_dec_ref(x_60); +lean_dec_ref(x_20); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_71 = !lean_is_exclusive(x_66); +if (x_71 == 0) +{ +return x_66; +} +else +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_72 = lean_ctor_get(x_66, 0); +x_73 = lean_ctor_get(x_66, 1); +lean_inc(x_73); +lean_inc(x_72); +lean_dec(x_66); +x_74 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_74, 0, x_72); +lean_ctor_set(x_74, 1, x_73); +return x_74; +} +} +} +else +{ +uint8_t x_75; +lean_dec(x_62); +lean_dec_ref(x_60); +lean_dec_ref(x_20); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_75 = !lean_is_exclusive(x_63); +if (x_75 == 0) +{ +return x_63; +} +else +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_76 = lean_ctor_get(x_63, 0); +x_77 = lean_ctor_get(x_63, 1); +lean_inc(x_77); +lean_inc(x_76); +lean_dec(x_63); +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_76); +lean_ctor_set(x_78, 1, x_77); +return x_78; +} +} +} +else +{ +uint8_t x_79; +x_79 = l_Lean_Expr_isLet(x_61); +if (x_79 == 0) +{ +lean_object* x_80; uint8_t x_81; +x_80 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__1; +x_81 = l_Lean_Expr_isConstOf(x_61, x_80); +x_21 = x_60; +x_22 = x_61; +x_23 = x_81; +goto block_58; +} +else +{ +x_21 = x_60; +x_22 = x_61; +x_23 = x_79; +goto block_58; +} +} +} +} +else +{ +uint8_t x_84; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_1); +x_84 = !lean_is_exclusive(x_17); +if (x_84 == 0) +{ +return x_17; +} +else +{ +lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_85 = lean_ctor_get(x_17, 0); +x_86 = lean_ctor_get(x_17, 1); +lean_inc(x_86); +lean_inc(x_85); +lean_dec(x_17); +x_87 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_87, 0, x_85); +lean_ctor_set(x_87, 1, x_86); +return x_87; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_isExprDefEq(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_isExprDefEq(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_isExprDefEq(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__4(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_10; +x_10 = l_Lean_Meta_whnfR(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__5(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_10; +x_10 = l_Lean_Meta_whnfR(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__7(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_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__1___redArg(x_7, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_mkProj_x27(x_1, x_2, x_3, x_7, x_8, x_9, x_10, x_11); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__8(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x_11, x_12, x_13); +return x_14; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Prod", 4, 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__0; x_2 = l_Lean_Name_mkStr1(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("h", 1, 1); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__1; -x_2 = l_Lean_Name_mkStr1(x_1); +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__8; +x_2 = lean_alloc_closure((void*)(l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___lam__0___boxed), 9, 1); +lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("args", 4, 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__3() { _start: { lean_object* x_1; @@ -15384,22 +16482,22 @@ x_1 = lean_mk_string_unchecked("handle", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__5() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__4; +x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__3; x_2 = l_Lean_Name_mkStr1(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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, uint8_t x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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, uint8_t x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20) { _start: { lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__0; +x_21 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__1; x_22 = lean_unsigned_to_nat(0u); -x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__8___boxed), 11, 3); +x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__6___boxed), 11, 3); lean_closure_set(x_23, 0, x_21); lean_closure_set(x_23, 1, x_22); lean_closure_set(x_23, 2, x_1); @@ -15417,7 +16515,7 @@ lean_inc(x_25); x_26 = lean_ctor_get(x_24, 1); lean_inc(x_26); lean_dec_ref(x_24); -x_27 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__8___boxed), 11, 3); +x_27 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__6___boxed), 11, 3); lean_closure_set(x_27, 0, x_21); lean_closure_set(x_27, 1, x_22); lean_closure_set(x_27, 2, x_2); @@ -15443,94 +16541,92 @@ lean_inc_ref(x_14); x_31 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_3, x_14, x_15, x_16, x_17, x_18, x_19, x_30); if (lean_obj_tag(x_31) == 0) { -lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; x_32 = lean_ctor_get(x_31, 0); lean_inc(x_32); x_33 = lean_ctor_get(x_31, 1); lean_inc(x_33); lean_dec_ref(x_31); -x_34 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__2; -x_35 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__6___boxed), 9, 1); -lean_closure_set(x_35, 0, x_34); +x_34 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__2; lean_inc(x_19); lean_inc_ref(x_18); lean_inc(x_17); lean_inc_ref(x_16); lean_inc_ref(x_14); -x_36 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_35, x_14, x_15, x_16, x_17, x_18, x_19, x_33); -if (lean_obj_tag(x_36) == 0) +x_35 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_34, x_14, x_15, x_16, x_17, x_18, x_19, x_33); +if (lean_obj_tag(x_35) == 0) { -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_37 = lean_ctor_get(x_36, 0); +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; +x_36 = lean_ctor_get(x_35, 0); +lean_inc(x_36); +x_37 = lean_ctor_get(x_35, 1); lean_inc(x_37); -x_38 = lean_ctor_get(x_36, 1); -lean_inc(x_38); -lean_dec_ref(x_36); -x_39 = l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__1___closed__0; -x_40 = lean_array_push(x_39, x_13); -x_41 = l_Lean_Expr_betaRev(x_25, x_40, x_4, x_4); -x_42 = l_Lean_Expr_betaRev(x_29, x_40, x_4, x_4); -x_43 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__3; -x_44 = l_Lean_Name_mkStr4(x_5, x_6, x_7, x_43); -x_45 = l_Lean_Expr_const___override(x_44, x_8); -x_46 = l_Lean_Expr_app___override(x_45, x_9); -x_47 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_47, 0, x_37); -lean_ctor_set(x_47, 1, x_32); -lean_ctor_set(x_47, 2, x_41); -x_48 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_47); -x_49 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_49, 0, x_10); -lean_ctor_set(x_49, 1, x_46); -lean_ctor_set(x_49, 2, x_48); -lean_ctor_set(x_49, 3, x_42); -x_50 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_49); -x_51 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__5; -x_52 = l_Lean_Name_append(x_11, x_51); -x_53 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__11___boxed), 10, 2); -lean_closure_set(x_53, 0, x_50); -lean_closure_set(x_53, 1, x_52); +lean_dec_ref(x_35); +x_38 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__0; +x_39 = lean_array_push(x_38, x_13); +x_40 = l_Lean_Expr_betaRev(x_25, x_39, x_4, x_4); +x_41 = l_Lean_Expr_betaRev(x_29, x_39, x_4, x_4); +x_42 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__8; +x_43 = l_Lean_Name_mkStr4(x_5, x_6, x_7, x_42); +x_44 = l_Lean_Expr_const___override(x_43, x_8); +x_45 = l_Lean_Expr_app___override(x_44, x_9); +x_46 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_46, 0, x_36); +lean_ctor_set(x_46, 1, x_32); +lean_ctor_set(x_46, 2, x_40); +x_47 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_46); +x_48 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_48, 0, x_10); +lean_ctor_set(x_48, 1, x_45); +lean_ctor_set(x_48, 2, x_47); +lean_ctor_set(x_48, 3, x_41); +x_49 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_48); +x_50 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__4; +x_51 = l_Lean_Name_append(x_11, x_50); +x_52 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__10___boxed), 10, 2); +lean_closure_set(x_52, 0, x_49); +lean_closure_set(x_52, 1, x_51); lean_inc(x_19); lean_inc_ref(x_18); lean_inc(x_17); lean_inc_ref(x_16); lean_inc_ref(x_14); -x_54 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_53, x_14, x_15, x_16, x_17, x_18, x_19, x_38); -if (lean_obj_tag(x_54) == 0) +x_53 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_52, x_14, x_15, x_16, x_17, x_18, x_19, x_37); +if (lean_obj_tag(x_53) == 0) { -lean_object* x_55; lean_object* x_56; uint8_t x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; -x_55 = lean_ctor_get(x_54, 0); +lean_object* x_54; lean_object* x_55; uint8_t x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_54 = lean_ctor_get(x_53, 0); +lean_inc(x_54); +x_55 = lean_ctor_get(x_53, 1); lean_inc(x_55); -x_56 = lean_ctor_get(x_54, 1); -lean_inc(x_56); -lean_dec_ref(x_54); -x_57 = 1; -x_58 = lean_box(x_4); -x_59 = lean_box(x_12); -x_60 = lean_box(x_57); -x_61 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__9___boxed), 13, 5); -lean_closure_set(x_61, 0, x_40); -lean_closure_set(x_61, 1, x_55); -lean_closure_set(x_61, 2, x_58); -lean_closure_set(x_61, 3, x_59); -lean_closure_set(x_61, 4, x_60); -x_62 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_61, x_14, x_15, x_16, x_17, x_18, x_19, x_56); -return x_62; +lean_dec_ref(x_53); +x_56 = 1; +x_57 = lean_box(x_4); +x_58 = lean_box(x_12); +x_59 = lean_box(x_56); +x_60 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__8___boxed), 13, 5); +lean_closure_set(x_60, 0, x_39); +lean_closure_set(x_60, 1, x_54); +lean_closure_set(x_60, 2, x_57); +lean_closure_set(x_60, 3, x_58); +lean_closure_set(x_60, 4, x_59); +x_61 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_60, x_14, x_15, x_16, x_17, x_18, x_19, x_55); +return x_61; } else { -lean_dec_ref(x_40); +lean_dec_ref(x_39); lean_dec(x_19); lean_dec_ref(x_18); lean_dec(x_17); lean_dec_ref(x_16); lean_dec_ref(x_14); -return x_54; +return x_53; } } else { -uint8_t x_63; +uint8_t x_62; lean_dec(x_32); lean_dec(x_29); lean_dec(x_25); @@ -15547,29 +16643,29 @@ lean_dec(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); -x_63 = !lean_is_exclusive(x_36); -if (x_63 == 0) +x_62 = !lean_is_exclusive(x_35); +if (x_62 == 0) { -return x_36; +return x_35; } else { -lean_object* x_64; lean_object* x_65; lean_object* x_66; -x_64 = lean_ctor_get(x_36, 0); -x_65 = lean_ctor_get(x_36, 1); -lean_inc(x_65); +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_35, 0); +x_64 = lean_ctor_get(x_35, 1); lean_inc(x_64); -lean_dec(x_36); -x_66 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_66, 0, x_64); -lean_ctor_set(x_66, 1, x_65); -return x_66; +lean_inc(x_63); +lean_dec(x_35); +x_65 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_65, 0, x_63); +lean_ctor_set(x_65, 1, x_64); +return x_65; } } } else { -uint8_t x_67; +uint8_t x_66; lean_dec(x_29); lean_dec(x_25); lean_dec(x_19); @@ -15585,23 +16681,23 @@ lean_dec(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); -x_67 = !lean_is_exclusive(x_31); -if (x_67 == 0) +x_66 = !lean_is_exclusive(x_31); +if (x_66 == 0) { return x_31; } else { -lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_68 = lean_ctor_get(x_31, 0); -x_69 = lean_ctor_get(x_31, 1); -lean_inc(x_69); +lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_67 = lean_ctor_get(x_31, 0); +x_68 = lean_ctor_get(x_31, 1); lean_inc(x_68); +lean_inc(x_67); lean_dec(x_31); -x_70 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_70, 0, x_68); -lean_ctor_set(x_70, 1, x_69); -return x_70; +x_69 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_69, 0, x_67); +lean_ctor_set(x_69, 1, x_68); +return x_69; } } } @@ -15646,7 +16742,7 @@ return x_24; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__14(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; @@ -15654,15 +16750,7 @@ x_11 = l_Lean_Meta_mkAppM(x_1, x_2, x_6, x_7, x_8, x_9, x_10); return x_11; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("PostShape", 9, 9); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__0() { _start: { lean_object* x_1; @@ -15670,19 +16758,19 @@ x_1 = lean_mk_string_unchecked("pure", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__1; -x_2 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__0; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__0; +x_2 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__7; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__2() { _start: { lean_object* x_1; @@ -15690,7 +16778,7 @@ x_1 = lean_mk_string_unchecked("FailConds", 9, 9); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__3() { _start: { lean_object* x_1; @@ -15698,19 +16786,19 @@ x_1 = lean_mk_string_unchecked("false", 5, 5); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__5() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__4; -x_2 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__3; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__3; +x_2 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__2; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__6() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__5() { _start: { lean_object* x_1; @@ -15718,19 +16806,19 @@ x_1 = lean_mk_string_unchecked("true", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__7() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__6; -x_2 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__3; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__5; +x_2 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__2; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__8() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__7() { _start: { lean_object* x_1; @@ -15738,19 +16826,19 @@ x_1 = lean_mk_string_unchecked("arg", 3, 3); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__9() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__8; -x_2 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__0; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__7; +x_2 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__7; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__10() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__9() { _start: { lean_object* x_1; @@ -15758,39 +16846,31 @@ x_1 = lean_mk_string_unchecked("except", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__11() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__10; -x_2 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__0; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__9; +x_2 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__7; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__12() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("entails", 7, 7); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__13() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__12; -x_2 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__3; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__1; +x_2 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__2; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__14() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__12() { _start: { lean_object* x_1; @@ -15798,25 +16878,35 @@ x_1 = lean_mk_string_unchecked("e", 1, 1); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__15() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__13() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__14; +x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__12; x_2 = l_Lean_Name_mkStr1(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__16() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__10; +x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__13; +x_2 = lean_alloc_closure((void*)(l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___lam__0___boxed), 9, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__9; x_2 = l_Lean_Name_mkStr1(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__17() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__16() { _start: { lean_object* x_1; @@ -15824,17 +16914,17 @@ x_1 = lean_mk_string_unchecked("And", 3, 3); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__18() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__3; -x_2 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__17; +x_1 = l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__2; +x_2 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__16; x_3 = l_Lean_Name_mkStr2(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__19() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__18() { _start: { lean_object* x_1; lean_object* x_2; @@ -15843,7 +16933,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__20() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__19() { _start: { lean_object* x_1; @@ -15851,19 +16941,19 @@ x_1 = lean_mk_string_unchecked("entails_true", 12, 12); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__21() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__20; -x_2 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__3; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__19; +x_2 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__2; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__22() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__21() { _start: { lean_object* x_1; @@ -15871,19 +16961,19 @@ x_1 = lean_mk_string_unchecked("entails_false", 13, 13); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__23() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__22; -x_2 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__3; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__21; +x_2 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__2; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__24() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__23() { _start: { lean_object* x_1; @@ -15891,62 +16981,54 @@ x_1 = lean_mk_string_unchecked("refl", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__25() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__24() { _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_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__24; -x_2 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__12; -x_3 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__3; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__23; +x_2 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__1; +x_3 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__2; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_5 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; x_6 = l_Lean_Name_mkStr5(x_5, x_4, x_3, x_2, x_1); return x_6; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__26() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("True", 4, 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__27() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__3; -x_2 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__26; +x_1 = l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__2; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__4; x_3 = l_Lean_Name_mkStr2(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__28() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__27; +x_2 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__25; x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; -x_13 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; -x_14 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_15 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__0; -x_16 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__2; +x_13 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; +x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_15 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__7; +x_16 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__1; x_17 = l_Lean_Expr_isAppOf(x_2, x_16); if (x_17 == 0) { lean_object* x_18; lean_object* x_19; lean_inc_ref(x_4); lean_inc_ref(x_3); -x_18 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__0___boxed), 10, 2); +x_18 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__0___boxed), 10, 2); lean_closure_set(x_18, 0, x_3); lean_closure_set(x_18, 1, x_4); lean_inc(x_11); @@ -15968,7 +17050,7 @@ lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean x_22 = lean_ctor_get(x_19, 1); lean_inc(x_22); lean_dec_ref(x_19); -x_23 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__5; +x_23 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__4; x_24 = lean_box(0); lean_inc(x_1); x_25 = lean_alloc_ctor(1, 2, 0); @@ -15979,7 +17061,7 @@ x_26 = l_Lean_Expr_const___override(x_23, x_25); lean_inc_ref(x_2); x_27 = l_Lean_Expr_app___override(x_26, x_2); lean_inc_ref(x_3); -x_28 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__1___boxed), 10, 2); +x_28 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__1___boxed), 10, 2); lean_closure_set(x_28, 0, x_3); lean_closure_set(x_28, 1, x_27); lean_inc(x_11); @@ -16001,13 +17083,13 @@ lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean x_32 = lean_ctor_get(x_29, 1); lean_inc(x_32); lean_dec_ref(x_29); -x_33 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__7; +x_33 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__6; lean_inc_ref(x_25); x_34 = l_Lean_Expr_const___override(x_33, x_25); lean_inc_ref(x_2); x_35 = l_Lean_Expr_app___override(x_34, x_2); lean_inc_ref(x_4); -x_36 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__2___boxed), 10, 2); +x_36 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__2___boxed), 10, 2); lean_closure_set(x_36, 0, x_4); lean_closure_set(x_36, 1, x_35); lean_inc(x_11); @@ -16029,22 +17111,22 @@ lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; x_40 = lean_ctor_get(x_37, 1); lean_inc(x_40); lean_dec_ref(x_37); -x_41 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__9; +x_41 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__8; x_42 = lean_unsigned_to_nat(2u); x_43 = l_Lean_Expr_isAppOfArity(x_2, x_41, x_42); if (x_43 == 0) { lean_object* x_44; uint8_t x_45; -x_44 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__11; +x_44 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__10; x_45 = l_Lean_Expr_isAppOfArity(x_2, x_44, x_42); if (x_45 == 0) { lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_dec(x_1); -x_46 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__13; +x_46 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__11; x_47 = l_Lean_Expr_const___override(x_46, x_25); x_48 = l_Lean_mkApp3(x_47, x_2, x_3, x_4); -x_49 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__3___boxed), 10, 2); +x_49 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__3___boxed), 10, 2); lean_closure_set(x_49, 0, x_48); lean_closure_set(x_49, 1, x_5); x_50 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_49, x_6, x_7, x_8, x_9, x_10, x_11, x_40); @@ -16054,7 +17136,7 @@ return x_50; else { lean_object* x_51; lean_object* x_52; -x_51 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__4___boxed), 9, 1); +x_51 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__4___boxed), 9, 1); lean_closure_set(x_51, 0, x_3); lean_inc(x_11); lean_inc_ref(x_10); @@ -16070,7 +17152,7 @@ lean_inc(x_53); x_54 = lean_ctor_get(x_52, 1); lean_inc(x_54); lean_dec_ref(x_52); -x_55 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__5___boxed), 9, 1); +x_55 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__5___boxed), 9, 1); lean_closure_set(x_55, 0, x_4); lean_inc(x_11); lean_inc_ref(x_10); @@ -16080,153 +17162,151 @@ lean_inc_ref(x_6); x_56 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_55, x_6, x_7, x_8, x_9, x_10, x_11, x_54); if (lean_obj_tag(x_56) == 0) { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; x_57 = lean_ctor_get(x_56, 0); lean_inc(x_57); x_58 = lean_ctor_get(x_56, 1); lean_inc(x_58); lean_dec_ref(x_56); -x_59 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__15; -x_60 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__6___boxed), 9, 1); -lean_closure_set(x_60, 0, x_59); +x_59 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__14; lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); lean_inc_ref(x_6); -x_61 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_60, x_6, x_7, x_8, x_9, x_10, x_11, x_58); -if (lean_obj_tag(x_61) == 0) +x_60 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_59, x_6, x_7, x_8, x_9, x_10, x_11, x_58); +if (lean_obj_tag(x_60) == 0) { -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; -x_62 = lean_ctor_get(x_61, 0); +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_61 = lean_ctor_get(x_60, 0); +lean_inc(x_61); +x_62 = lean_ctor_get(x_60, 1); lean_inc(x_62); -x_63 = lean_ctor_get(x_61, 1); -lean_inc(x_63); -lean_dec_ref(x_61); -x_64 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__7___boxed), 8, 0); -x_65 = l_Lean_Expr_appFn_x21(x_2); -x_66 = l_Lean_Expr_appArg_x21(x_65); -lean_dec_ref(x_65); -x_67 = l_Lean_Expr_appArg_x21(x_2); +lean_dec_ref(x_60); +x_63 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__7___boxed), 8, 0); +x_64 = l_Lean_Expr_appFn_x21(x_2); +x_65 = l_Lean_Expr_appArg_x21(x_64); +lean_dec_ref(x_64); +x_66 = l_Lean_Expr_appArg_x21(x_2); lean_dec_ref(x_2); -x_68 = lean_box(x_43); -x_69 = lean_box(x_45); +x_67 = lean_box(x_43); +x_68 = lean_box(x_45); lean_inc(x_5); lean_inc(x_1); -lean_inc_ref(x_67); +lean_inc_ref(x_66); lean_inc(x_57); lean_inc(x_53); -x_70 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___boxed), 20, 12); -lean_closure_set(x_70, 0, x_53); -lean_closure_set(x_70, 1, x_57); -lean_closure_set(x_70, 2, x_64); -lean_closure_set(x_70, 3, x_68); -lean_closure_set(x_70, 4, x_13); -lean_closure_set(x_70, 5, x_14); -lean_closure_set(x_70, 6, x_15); -lean_closure_set(x_70, 7, x_25); -lean_closure_set(x_70, 8, x_67); -lean_closure_set(x_70, 9, x_1); -lean_closure_set(x_70, 10, x_5); -lean_closure_set(x_70, 11, x_69); +x_69 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___boxed), 20, 12); +lean_closure_set(x_69, 0, x_53); +lean_closure_set(x_69, 1, x_57); +lean_closure_set(x_69, 2, x_63); +lean_closure_set(x_69, 3, x_67); +lean_closure_set(x_69, 4, x_13); +lean_closure_set(x_69, 5, x_14); +lean_closure_set(x_69, 6, x_15); +lean_closure_set(x_69, 7, x_25); +lean_closure_set(x_69, 8, x_66); +lean_closure_set(x_69, 9, x_1); +lean_closure_set(x_69, 10, x_5); +lean_closure_set(x_69, 11, x_68); lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_6); -x_71 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3___redArg(x_62, x_66, x_70, x_6, x_7, x_8, x_9, x_10, x_11, x_63); -if (lean_obj_tag(x_71) == 0) +x_70 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38_spec__38___redArg(x_61, x_65, x_69, x_6, x_7, x_8, x_9, x_10, x_11, x_62); +if (lean_obj_tag(x_70) == 0) { -lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; -x_72 = lean_ctor_get(x_71, 0); +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_71 = lean_ctor_get(x_70, 0); +lean_inc(x_71); +x_72 = lean_ctor_get(x_70, 1); lean_inc(x_72); -x_73 = lean_ctor_get(x_71, 1); -lean_inc(x_73); -lean_dec_ref(x_71); -x_74 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__0; -x_75 = lean_unsigned_to_nat(1u); -x_76 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__8___boxed), 11, 3); -lean_closure_set(x_76, 0, x_74); -lean_closure_set(x_76, 1, x_75); -lean_closure_set(x_76, 2, x_53); +lean_dec_ref(x_70); +x_73 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__1; +x_74 = lean_unsigned_to_nat(1u); +x_75 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__6___boxed), 11, 3); +lean_closure_set(x_75, 0, x_73); +lean_closure_set(x_75, 1, x_74); +lean_closure_set(x_75, 2, x_53); lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); lean_inc_ref(x_6); -x_77 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_76, x_6, x_7, x_8, x_9, x_10, x_11, x_73); -if (lean_obj_tag(x_77) == 0) +x_76 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_75, x_6, x_7, x_8, x_9, x_10, x_11, x_72); +if (lean_obj_tag(x_76) == 0) { -lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; -x_78 = lean_ctor_get(x_77, 0); +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_77 = lean_ctor_get(x_76, 0); +lean_inc(x_77); +x_78 = lean_ctor_get(x_76, 1); lean_inc(x_78); -x_79 = lean_ctor_get(x_77, 1); -lean_inc(x_79); -lean_dec_ref(x_77); -x_80 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__8___boxed), 11, 3); -lean_closure_set(x_80, 0, x_74); -lean_closure_set(x_80, 1, x_75); -lean_closure_set(x_80, 2, x_57); +lean_dec_ref(x_76); +x_79 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__6___boxed), 11, 3); +lean_closure_set(x_79, 0, x_73); +lean_closure_set(x_79, 1, x_74); +lean_closure_set(x_79, 2, x_57); lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); lean_inc_ref(x_6); -x_81 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_80, x_6, x_7, x_8, x_9, x_10, x_11, x_79); -if (lean_obj_tag(x_81) == 0) +x_80 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_79, x_6, x_7, x_8, x_9, x_10, x_11, x_78); +if (lean_obj_tag(x_80) == 0) { -lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; -x_82 = lean_ctor_get(x_81, 0); +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_81 = lean_ctor_get(x_80, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_80, 1); lean_inc(x_82); -x_83 = lean_ctor_get(x_81, 1); -lean_inc(x_83); -lean_dec_ref(x_81); -x_84 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__16; -x_85 = l_Lean_Name_append(x_5, x_84); +lean_dec_ref(x_80); +x_83 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__15; +x_84 = l_Lean_Name_append(x_5, x_83); lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_6); -x_86 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5(x_1, x_67, x_78, x_82, x_85, x_6, x_7, x_8, x_9, x_10, x_11, x_83); -if (lean_obj_tag(x_86) == 0) +x_85 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0(x_1, x_66, x_77, x_81, x_84, x_6, x_7, x_8, x_9, x_10, x_11, x_82); +if (lean_obj_tag(x_85) == 0) { -lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; -x_87 = lean_ctor_get(x_86, 0); +lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_86 = lean_ctor_get(x_85, 0); +lean_inc(x_86); +x_87 = lean_ctor_get(x_85, 1); lean_inc(x_87); -x_88 = lean_ctor_get(x_86, 1); -lean_inc(x_88); -lean_dec_ref(x_86); -x_89 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__18; -x_90 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__19; -x_91 = lean_array_push(x_90, x_72); -x_92 = lean_array_push(x_91, x_87); -x_93 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__14___boxed), 10, 2); -lean_closure_set(x_93, 0, x_89); -lean_closure_set(x_93, 1, x_92); -x_94 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_93, x_6, x_7, x_8, x_9, x_10, x_11, x_88); +lean_dec_ref(x_85); +x_88 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__17; +x_89 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__18; +x_90 = lean_array_push(x_89, x_71); +x_91 = lean_array_push(x_90, x_86); +x_92 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__13___boxed), 10, 2); +lean_closure_set(x_92, 0, x_88); +lean_closure_set(x_92, 1, x_91); +x_93 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_92, x_6, x_7, x_8, x_9, x_10, x_11, x_87); lean_dec(x_7); -return x_94; +return x_93; } else { -lean_dec(x_72); +lean_dec(x_71); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); lean_dec_ref(x_6); -return x_86; +return x_85; } } else { -lean_dec(x_78); -lean_dec(x_72); -lean_dec_ref(x_67); +lean_dec(x_77); +lean_dec(x_71); +lean_dec_ref(x_66); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -16235,13 +17315,13 @@ lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec(x_1); -return x_81; +return x_80; } } else { -lean_dec(x_72); -lean_dec_ref(x_67); +lean_dec(x_71); +lean_dec_ref(x_66); lean_dec(x_57); lean_dec(x_11); lean_dec_ref(x_10); @@ -16251,12 +17331,12 @@ lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec(x_1); -return x_77; +return x_76; } } else { -lean_dec_ref(x_67); +lean_dec_ref(x_66); lean_dec(x_57); lean_dec(x_53); lean_dec(x_11); @@ -16267,12 +17347,12 @@ lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec(x_1); -return x_71; +return x_70; } } else { -uint8_t x_95; +uint8_t x_94; lean_dec(x_57); lean_dec(x_53); lean_dec_ref(x_25); @@ -16285,23 +17365,23 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_2); lean_dec(x_1); -x_95 = !lean_is_exclusive(x_61); -if (x_95 == 0) +x_94 = !lean_is_exclusive(x_60); +if (x_94 == 0) { -return x_61; +return x_60; } else { -lean_object* x_96; lean_object* x_97; lean_object* x_98; -x_96 = lean_ctor_get(x_61, 0); -x_97 = lean_ctor_get(x_61, 1); -lean_inc(x_97); +lean_object* x_95; lean_object* x_96; lean_object* x_97; +x_95 = lean_ctor_get(x_60, 0); +x_96 = lean_ctor_get(x_60, 1); lean_inc(x_96); -lean_dec(x_61); -x_98 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_98, 0, x_96); -lean_ctor_set(x_98, 1, x_97); -return x_98; +lean_inc(x_95); +lean_dec(x_60); +x_97 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_97, 0, x_95); +lean_ctor_set(x_97, 1, x_96); +return x_97; } } } @@ -16340,18 +17420,18 @@ return x_52; } else { -lean_object* x_99; +lean_object* x_98; lean_dec_ref(x_25); -x_99 = l_Lean_Expr_appArg_x21(x_2); +x_98 = l_Lean_Expr_appArg_x21(x_2); lean_dec_ref(x_2); -x_2 = x_99; +x_2 = x_98; x_12 = x_40; goto _start; } } else { -uint8_t x_101; +uint8_t x_100; lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -16361,37 +17441,37 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_1); -x_101 = !lean_is_exclusive(x_37); -if (x_101 == 0) +x_100 = !lean_is_exclusive(x_37); +if (x_100 == 0) { -lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; -x_102 = lean_ctor_get(x_37, 0); -lean_dec(x_102); -x_103 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__21; -x_104 = l_Lean_Expr_const___override(x_103, x_25); -x_105 = l_Lean_mkAppB(x_104, x_2, x_3); -lean_ctor_set(x_37, 0, x_105); +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; +x_101 = lean_ctor_get(x_37, 0); +lean_dec(x_101); +x_102 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__20; +x_103 = l_Lean_Expr_const___override(x_102, x_25); +x_104 = l_Lean_mkAppB(x_103, x_2, x_3); +lean_ctor_set(x_37, 0, x_104); return x_37; } else { -lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; -x_106 = lean_ctor_get(x_37, 1); -lean_inc(x_106); +lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; +x_105 = lean_ctor_get(x_37, 1); +lean_inc(x_105); lean_dec(x_37); -x_107 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__21; -x_108 = l_Lean_Expr_const___override(x_107, x_25); -x_109 = l_Lean_mkAppB(x_108, x_2, x_3); -x_110 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_110, 0, x_109); -lean_ctor_set(x_110, 1, x_106); -return x_110; +x_106 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__20; +x_107 = l_Lean_Expr_const___override(x_106, x_25); +x_108 = l_Lean_mkAppB(x_107, x_2, x_3); +x_109 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_109, 0, x_108); +lean_ctor_set(x_109, 1, x_105); +return x_109; } } } else { -uint8_t x_111; +uint8_t x_110; lean_dec_ref(x_25); lean_dec(x_11); lean_dec_ref(x_10); @@ -16404,29 +17484,29 @@ lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); lean_dec(x_1); -x_111 = !lean_is_exclusive(x_37); -if (x_111 == 0) +x_110 = !lean_is_exclusive(x_37); +if (x_110 == 0) { return x_37; } else { -lean_object* x_112; lean_object* x_113; lean_object* x_114; -x_112 = lean_ctor_get(x_37, 0); -x_113 = lean_ctor_get(x_37, 1); -lean_inc(x_113); +lean_object* x_111; lean_object* x_112; lean_object* x_113; +x_111 = lean_ctor_get(x_37, 0); +x_112 = lean_ctor_get(x_37, 1); lean_inc(x_112); +lean_inc(x_111); lean_dec(x_37); -x_114 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_114, 0, x_112); -lean_ctor_set(x_114, 1, x_113); -return x_114; +x_113 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_113, 0, x_111); +lean_ctor_set(x_113, 1, x_112); +return x_113; } } } else { -uint8_t x_115; +uint8_t x_114; lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -16436,37 +17516,37 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_3); lean_dec(x_1); -x_115 = !lean_is_exclusive(x_29); -if (x_115 == 0) +x_114 = !lean_is_exclusive(x_29); +if (x_114 == 0) { -lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; -x_116 = lean_ctor_get(x_29, 0); -lean_dec(x_116); -x_117 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__23; -x_118 = l_Lean_Expr_const___override(x_117, x_25); -x_119 = l_Lean_mkAppB(x_118, x_2, x_4); -lean_ctor_set(x_29, 0, x_119); +lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; +x_115 = lean_ctor_get(x_29, 0); +lean_dec(x_115); +x_116 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__22; +x_117 = l_Lean_Expr_const___override(x_116, x_25); +x_118 = l_Lean_mkAppB(x_117, x_2, x_4); +lean_ctor_set(x_29, 0, x_118); return x_29; } else { -lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; -x_120 = lean_ctor_get(x_29, 1); -lean_inc(x_120); +lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; +x_119 = lean_ctor_get(x_29, 1); +lean_inc(x_119); lean_dec(x_29); -x_121 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__23; -x_122 = l_Lean_Expr_const___override(x_121, x_25); -x_123 = l_Lean_mkAppB(x_122, x_2, x_4); -x_124 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_124, 0, x_123); -lean_ctor_set(x_124, 1, x_120); -return x_124; +x_120 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__22; +x_121 = l_Lean_Expr_const___override(x_120, x_25); +x_122 = l_Lean_mkAppB(x_121, x_2, x_4); +x_123 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_123, 0, x_122); +lean_ctor_set(x_123, 1, x_119); +return x_123; } } } else { -uint8_t x_125; +uint8_t x_124; lean_dec_ref(x_25); lean_dec(x_11); lean_dec_ref(x_10); @@ -16479,29 +17559,29 @@ lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); lean_dec(x_1); -x_125 = !lean_is_exclusive(x_29); -if (x_125 == 0) +x_124 = !lean_is_exclusive(x_29); +if (x_124 == 0) { return x_29; } else { -lean_object* x_126; lean_object* x_127; lean_object* x_128; -x_126 = lean_ctor_get(x_29, 0); -x_127 = lean_ctor_get(x_29, 1); -lean_inc(x_127); +lean_object* x_125; lean_object* x_126; lean_object* x_127; +x_125 = lean_ctor_get(x_29, 0); +x_126 = lean_ctor_get(x_29, 1); lean_inc(x_126); +lean_inc(x_125); lean_dec(x_29); -x_128 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_128, 0, x_126); -lean_ctor_set(x_128, 1, x_127); -return x_128; +x_127 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_127, 0, x_125); +lean_ctor_set(x_127, 1, x_126); +return x_127; } } } else { -uint8_t x_129; +uint8_t x_128; lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -16510,45 +17590,45 @@ lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); -x_129 = !lean_is_exclusive(x_19); -if (x_129 == 0) +x_128 = !lean_is_exclusive(x_19); +if (x_128 == 0) { -lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; -x_130 = lean_ctor_get(x_19, 0); -lean_dec(x_130); -x_131 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__25; -x_132 = lean_box(0); -x_133 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_133, 0, x_1); -lean_ctor_set(x_133, 1, x_132); -x_134 = l_Lean_Expr_const___override(x_131, x_133); -x_135 = l_Lean_mkAppB(x_134, x_2, x_3); -lean_ctor_set(x_19, 0, x_135); +lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; +x_129 = lean_ctor_get(x_19, 0); +lean_dec(x_129); +x_130 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__24; +x_131 = lean_box(0); +x_132 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_132, 0, x_1); +lean_ctor_set(x_132, 1, x_131); +x_133 = l_Lean_Expr_const___override(x_130, x_132); +x_134 = l_Lean_mkAppB(x_133, x_2, x_3); +lean_ctor_set(x_19, 0, x_134); return x_19; } else { -lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; -x_136 = lean_ctor_get(x_19, 1); -lean_inc(x_136); +lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; +x_135 = lean_ctor_get(x_19, 1); +lean_inc(x_135); lean_dec(x_19); -x_137 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__25; -x_138 = lean_box(0); -x_139 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_139, 0, x_1); -lean_ctor_set(x_139, 1, x_138); -x_140 = l_Lean_Expr_const___override(x_137, x_139); -x_141 = l_Lean_mkAppB(x_140, x_2, x_3); -x_142 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_142, 0, x_141); -lean_ctor_set(x_142, 1, x_136); -return x_142; +x_136 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__24; +x_137 = lean_box(0); +x_138 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_138, 0, x_1); +lean_ctor_set(x_138, 1, x_137); +x_139 = l_Lean_Expr_const___override(x_136, x_138); +x_140 = l_Lean_mkAppB(x_139, x_2, x_3); +x_141 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_141, 0, x_140); +lean_ctor_set(x_141, 1, x_135); +return x_141; } } } else { -uint8_t x_143; +uint8_t x_142; lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -16560,29 +17640,29 @@ lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); lean_dec(x_1); -x_143 = !lean_is_exclusive(x_19); -if (x_143 == 0) +x_142 = !lean_is_exclusive(x_19); +if (x_142 == 0) { return x_19; } else { -lean_object* x_144; lean_object* x_145; lean_object* x_146; -x_144 = lean_ctor_get(x_19, 0); -x_145 = lean_ctor_get(x_19, 1); -lean_inc(x_145); +lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_143 = lean_ctor_get(x_19, 0); +x_144 = lean_ctor_get(x_19, 1); lean_inc(x_144); +lean_inc(x_143); lean_dec(x_19); -x_146 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_146, 0, x_144); -lean_ctor_set(x_146, 1, x_145); -return x_146; +x_145 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +return x_145; } } } else { -lean_object* x_147; lean_object* x_148; +lean_object* x_146; lean_object* x_147; lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -16594,15 +17674,15 @@ lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); lean_dec(x_1); -x_147 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__28; -x_148 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_148, 0, x_147); -lean_ctor_set(x_148, 1, x_12); -return x_148; +x_146 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__26; +x_147 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_147, 0, x_146); +lean_ctor_set(x_147, 1, x_12); +return x_147; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__0(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__0(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_10; @@ -16632,7 +17712,7 @@ return x_10; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; @@ -16640,7 +17720,7 @@ x_11 = l_Lean_Meta_isExprDefEq(x_1, x_2, x_6, x_7, x_8, x_9, x_10); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__2(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__2(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_10; @@ -16648,7 +17728,7 @@ x_10 = l_Lean_Meta_whnfR(x_1, x_5, x_6, x_7, x_8, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; @@ -16656,15 +17736,7 @@ x_10 = l_Lean_Meta_whnfR(x_1, x_5, x_6, x_7, x_8, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__4(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_10; -x_10 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_1, x_7, x_8, x_9); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; @@ -16672,7 +17744,7 @@ x_12 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_mkProj_x27(x_ return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__8(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; @@ -16680,27 +17752,17 @@ x_11 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_1, x_2, x_6, x_7, x_8, x_9, return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__5(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__0() { _start: { -lean_object* x_14; -x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x_11, x_12, x_13); -return x_14; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__8; +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__4___boxed), 9, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___closed__0() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__3; -x_2 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__0; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__1() { _start: { lean_object* x_1; @@ -16708,22 +17770,22 @@ x_1 = lean_mk_string_unchecked("success", 7, 7); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___closed__1; +x_1 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__1; x_2 = l_Lean_Name_mkStr1(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_16 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__0; +x_16 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__1; x_17 = lean_unsigned_to_nat(0u); -x_18 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__6___boxed), 11, 3); +x_18 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__6___boxed), 11, 3); lean_closure_set(x_18, 0, x_16); lean_closure_set(x_18, 1, x_17); lean_closure_set(x_18, 2, x_1); @@ -16741,7 +17803,7 @@ lean_inc(x_20); x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); lean_dec_ref(x_19); -x_22 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__6___boxed), 11, 3); +x_22 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__6___boxed), 11, 3); lean_closure_set(x_22, 0, x_16); lean_closure_set(x_22, 1, x_17); lean_closure_set(x_22, 2, x_2); @@ -16768,99 +17830,97 @@ lean_inc_ref(x_9); x_27 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_3, x_9, x_10, x_11, x_12, x_13, x_14, x_26); if (lean_obj_tag(x_27) == 0) { -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; x_28 = lean_ctor_get(x_27, 0); lean_inc(x_28); x_29 = lean_ctor_get(x_27, 1); lean_inc(x_29); lean_dec_ref(x_27); -x_30 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__2; -x_31 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__4___boxed), 9, 1); -lean_closure_set(x_31, 0, x_30); +x_30 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__0; lean_inc(x_14); lean_inc_ref(x_13); lean_inc(x_12); lean_inc_ref(x_11); lean_inc_ref(x_9); -x_32 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_31, x_9, x_10, x_11, x_12, x_13, x_14, x_29); -if (lean_obj_tag(x_32) == 0) +x_31 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_30, x_9, x_10, x_11, x_12, x_13, x_14, x_29); +if (lean_obj_tag(x_31) == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_33 = lean_ctor_get(x_32, 0); +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +x_33 = lean_ctor_get(x_31, 1); lean_inc(x_33); -x_34 = lean_ctor_get(x_32, 1); -lean_inc(x_34); -lean_dec_ref(x_32); -x_35 = l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__1___closed__0; -x_36 = lean_array_push(x_35, x_8); -x_37 = l_Lean_Expr_betaRev(x_20, x_36, x_4, x_4); -x_38 = l_Lean_Expr_betaRev(x_25, x_36, x_4, x_4); -x_39 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___closed__0; -x_40 = lean_box(0); +lean_dec_ref(x_31); +x_34 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__0; +x_35 = lean_array_push(x_34, x_8); +x_36 = l_Lean_Expr_betaRev(x_20, x_35, x_4, x_4); +x_37 = l_Lean_Expr_betaRev(x_25, x_35, x_4, x_4); +x_38 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__9; +x_39 = lean_box(0); lean_inc(x_5); lean_ctor_set_tag(x_23, 1); -lean_ctor_set(x_23, 1, x_40); +lean_ctor_set(x_23, 1, x_39); lean_ctor_set(x_23, 0, x_5); -x_41 = l_Lean_Expr_const___override(x_39, x_23); -x_42 = l_Lean_Expr_app___override(x_41, x_6); -x_43 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_43, 0, x_33); -lean_ctor_set(x_43, 1, x_28); -lean_ctor_set(x_43, 2, x_37); -x_44 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_43); -x_45 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_45, 0, x_5); -lean_ctor_set(x_45, 1, x_42); -lean_ctor_set(x_45, 2, x_44); -lean_ctor_set(x_45, 3, x_38); -x_46 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_45); -x_47 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___closed__2; -x_48 = l_Lean_Name_append(x_7, x_47); -x_49 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__8___boxed), 10, 2); -lean_closure_set(x_49, 0, x_46); -lean_closure_set(x_49, 1, x_48); +x_40 = l_Lean_Expr_const___override(x_38, x_23); +x_41 = l_Lean_Expr_app___override(x_40, x_6); +x_42 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_42, 0, x_32); +lean_ctor_set(x_42, 1, x_28); +lean_ctor_set(x_42, 2, x_36); +x_43 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_42); +x_44 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_44, 0, x_5); +lean_ctor_set(x_44, 1, x_41); +lean_ctor_set(x_44, 2, x_43); +lean_ctor_set(x_44, 3, x_37); +x_45 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_44); +x_46 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__2; +x_47 = l_Lean_Name_append(x_7, x_46); +x_48 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__7___boxed), 10, 2); +lean_closure_set(x_48, 0, x_45); +lean_closure_set(x_48, 1, x_47); lean_inc(x_14); lean_inc_ref(x_13); lean_inc(x_12); lean_inc_ref(x_11); lean_inc_ref(x_9); -x_50 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_49, x_9, x_10, x_11, x_12, x_13, x_14, x_34); -if (lean_obj_tag(x_50) == 0) +x_49 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_48, x_9, x_10, x_11, x_12, x_13, x_14, x_33); +if (lean_obj_tag(x_49) == 0) { -lean_object* x_51; lean_object* x_52; uint8_t x_53; uint8_t x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_51 = lean_ctor_get(x_50, 0); +lean_object* x_50; lean_object* x_51; uint8_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_50 = lean_ctor_get(x_49, 0); +lean_inc(x_50); +x_51 = lean_ctor_get(x_49, 1); lean_inc(x_51); -x_52 = lean_ctor_get(x_50, 1); -lean_inc(x_52); -lean_dec_ref(x_50); +lean_dec_ref(x_49); +x_52 = 1; x_53 = 1; -x_54 = 1; -x_55 = lean_box(x_4); +x_54 = lean_box(x_4); +x_55 = lean_box(x_52); x_56 = lean_box(x_53); -x_57 = lean_box(x_54); -x_58 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__5___boxed), 13, 5); -lean_closure_set(x_58, 0, x_36); -lean_closure_set(x_58, 1, x_51); -lean_closure_set(x_58, 2, x_55); -lean_closure_set(x_58, 3, x_56); -lean_closure_set(x_58, 4, x_57); -x_59 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_58, x_9, x_10, x_11, x_12, x_13, x_14, x_52); -return x_59; +x_57 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__5___boxed), 13, 5); +lean_closure_set(x_57, 0, x_35); +lean_closure_set(x_57, 1, x_50); +lean_closure_set(x_57, 2, x_54); +lean_closure_set(x_57, 3, x_55); +lean_closure_set(x_57, 4, x_56); +x_58 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_57, x_9, x_10, x_11, x_12, x_13, x_14, x_51); +return x_58; } else { -lean_dec_ref(x_36); +lean_dec_ref(x_35); lean_dec(x_14); lean_dec_ref(x_13); lean_dec(x_12); lean_dec_ref(x_11); lean_dec_ref(x_9); -return x_50; +return x_49; } } else { -uint8_t x_60; +uint8_t x_59; lean_dec(x_28); lean_free_object(x_23); lean_dec(x_25); @@ -16874,29 +17934,29 @@ lean_dec_ref(x_8); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); -x_60 = !lean_is_exclusive(x_32); -if (x_60 == 0) +x_59 = !lean_is_exclusive(x_31); +if (x_59 == 0) { -return x_32; +return x_31; } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_61 = lean_ctor_get(x_32, 0); -x_62 = lean_ctor_get(x_32, 1); -lean_inc(x_62); +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = lean_ctor_get(x_31, 0); +x_61 = lean_ctor_get(x_31, 1); lean_inc(x_61); -lean_dec(x_32); -x_63 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_63, 0, x_61); -lean_ctor_set(x_63, 1, x_62); -return x_63; +lean_inc(x_60); +lean_dec(x_31); +x_62 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_62, 0, x_60); +lean_ctor_set(x_62, 1, x_61); +return x_62; } } } else { -uint8_t x_64; +uint8_t x_63; lean_free_object(x_23); lean_dec(x_25); lean_dec(x_20); @@ -16909,137 +17969,135 @@ lean_dec_ref(x_8); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); -x_64 = !lean_is_exclusive(x_27); -if (x_64 == 0) +x_63 = !lean_is_exclusive(x_27); +if (x_63 == 0) { return x_27; } else { -lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_65 = lean_ctor_get(x_27, 0); -x_66 = lean_ctor_get(x_27, 1); -lean_inc(x_66); +lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_64 = lean_ctor_get(x_27, 0); +x_65 = lean_ctor_get(x_27, 1); lean_inc(x_65); +lean_inc(x_64); lean_dec(x_27); -x_67 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_67, 0, x_65); -lean_ctor_set(x_67, 1, x_66); -return x_67; +x_66 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_66, 0, x_64); +lean_ctor_set(x_66, 1, x_65); +return x_66; } } } else { -lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_68 = lean_ctor_get(x_23, 0); -x_69 = lean_ctor_get(x_23, 1); -lean_inc(x_69); +lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_67 = lean_ctor_get(x_23, 0); +x_68 = lean_ctor_get(x_23, 1); lean_inc(x_68); +lean_inc(x_67); lean_dec(x_23); lean_inc(x_14); lean_inc_ref(x_13); lean_inc(x_12); lean_inc_ref(x_11); lean_inc_ref(x_9); -x_70 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_3, x_9, x_10, x_11, x_12, x_13, x_14, x_69); -if (lean_obj_tag(x_70) == 0) +x_69 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_3, x_9, x_10, x_11, x_12, x_13, x_14, x_68); +if (lean_obj_tag(x_69) == 0) { -lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_71 = lean_ctor_get(x_70, 0); +lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; +x_70 = lean_ctor_get(x_69, 0); +lean_inc(x_70); +x_71 = lean_ctor_get(x_69, 1); lean_inc(x_71); -x_72 = lean_ctor_get(x_70, 1); -lean_inc(x_72); -lean_dec_ref(x_70); -x_73 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__2; -x_74 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__4___boxed), 9, 1); -lean_closure_set(x_74, 0, x_73); +lean_dec_ref(x_69); +x_72 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__0; lean_inc(x_14); lean_inc_ref(x_13); lean_inc(x_12); lean_inc_ref(x_11); lean_inc_ref(x_9); -x_75 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_74, x_9, x_10, x_11, x_12, x_13, x_14, x_72); -if (lean_obj_tag(x_75) == 0) +x_73 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_72, x_9, x_10, x_11, x_12, x_13, x_14, x_71); +if (lean_obj_tag(x_73) == 0) { -lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; -x_76 = lean_ctor_get(x_75, 0); -lean_inc(x_76); -x_77 = lean_ctor_get(x_75, 1); -lean_inc(x_77); -lean_dec_ref(x_75); -x_78 = l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__1___closed__0; -x_79 = lean_array_push(x_78, x_8); -x_80 = l_Lean_Expr_betaRev(x_20, x_79, x_4, x_4); -x_81 = l_Lean_Expr_betaRev(x_68, x_79, x_4, x_4); -x_82 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___closed__0; -x_83 = lean_box(0); +lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; +x_74 = lean_ctor_get(x_73, 0); +lean_inc(x_74); +x_75 = lean_ctor_get(x_73, 1); +lean_inc(x_75); +lean_dec_ref(x_73); +x_76 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__0; +x_77 = lean_array_push(x_76, x_8); +x_78 = l_Lean_Expr_betaRev(x_20, x_77, x_4, x_4); +x_79 = l_Lean_Expr_betaRev(x_67, x_77, x_4, x_4); +x_80 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__9; +x_81 = lean_box(0); lean_inc(x_5); -x_84 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_84, 0, x_5); -lean_ctor_set(x_84, 1, x_83); -x_85 = l_Lean_Expr_const___override(x_82, x_84); -x_86 = l_Lean_Expr_app___override(x_85, x_6); -x_87 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_87, 0, x_76); -lean_ctor_set(x_87, 1, x_71); -lean_ctor_set(x_87, 2, x_80); -x_88 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_87); -x_89 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_89, 0, x_5); -lean_ctor_set(x_89, 1, x_86); -lean_ctor_set(x_89, 2, x_88); -lean_ctor_set(x_89, 3, x_81); -x_90 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_89); -x_91 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___closed__2; -x_92 = l_Lean_Name_append(x_7, x_91); -x_93 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__8___boxed), 10, 2); -lean_closure_set(x_93, 0, x_90); -lean_closure_set(x_93, 1, x_92); +x_82 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_82, 0, x_5); +lean_ctor_set(x_82, 1, x_81); +x_83 = l_Lean_Expr_const___override(x_80, x_82); +x_84 = l_Lean_Expr_app___override(x_83, x_6); +x_85 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_85, 0, x_74); +lean_ctor_set(x_85, 1, x_70); +lean_ctor_set(x_85, 2, x_78); +x_86 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_85); +x_87 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_87, 0, x_5); +lean_ctor_set(x_87, 1, x_84); +lean_ctor_set(x_87, 2, x_86); +lean_ctor_set(x_87, 3, x_79); +x_88 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_87); +x_89 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__2; +x_90 = l_Lean_Name_append(x_7, x_89); +x_91 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__7___boxed), 10, 2); +lean_closure_set(x_91, 0, x_88); +lean_closure_set(x_91, 1, x_90); lean_inc(x_14); lean_inc_ref(x_13); lean_inc(x_12); lean_inc_ref(x_11); lean_inc_ref(x_9); -x_94 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_93, x_9, x_10, x_11, x_12, x_13, x_14, x_77); -if (lean_obj_tag(x_94) == 0) +x_92 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_91, x_9, x_10, x_11, x_12, x_13, x_14, x_75); +if (lean_obj_tag(x_92) == 0) { -lean_object* x_95; lean_object* x_96; uint8_t x_97; uint8_t x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; -x_95 = lean_ctor_get(x_94, 0); -lean_inc(x_95); -x_96 = lean_ctor_get(x_94, 1); -lean_inc(x_96); -lean_dec_ref(x_94); -x_97 = 1; -x_98 = 1; -x_99 = lean_box(x_4); -x_100 = lean_box(x_97); -x_101 = lean_box(x_98); -x_102 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__5___boxed), 13, 5); -lean_closure_set(x_102, 0, x_79); -lean_closure_set(x_102, 1, x_95); -lean_closure_set(x_102, 2, x_99); -lean_closure_set(x_102, 3, x_100); -lean_closure_set(x_102, 4, x_101); -x_103 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_102, x_9, x_10, x_11, x_12, x_13, x_14, x_96); -return x_103; +lean_object* x_93; lean_object* x_94; uint8_t x_95; uint8_t x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; +x_93 = lean_ctor_get(x_92, 0); +lean_inc(x_93); +x_94 = lean_ctor_get(x_92, 1); +lean_inc(x_94); +lean_dec_ref(x_92); +x_95 = 1; +x_96 = 1; +x_97 = lean_box(x_4); +x_98 = lean_box(x_95); +x_99 = lean_box(x_96); +x_100 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__5___boxed), 13, 5); +lean_closure_set(x_100, 0, x_77); +lean_closure_set(x_100, 1, x_93); +lean_closure_set(x_100, 2, x_97); +lean_closure_set(x_100, 3, x_98); +lean_closure_set(x_100, 4, x_99); +x_101 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_100, x_9, x_10, x_11, x_12, x_13, x_14, x_94); +return x_101; } else { -lean_dec_ref(x_79); +lean_dec_ref(x_77); lean_dec(x_14); lean_dec_ref(x_13); lean_dec(x_12); lean_dec_ref(x_11); lean_dec_ref(x_9); -return x_94; +return x_92; } } else { -lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; -lean_dec(x_71); -lean_dec(x_68); +lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; +lean_dec(x_70); +lean_dec(x_67); lean_dec(x_20); lean_dec(x_14); lean_dec_ref(x_13); @@ -17050,32 +18108,32 @@ lean_dec_ref(x_8); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); -x_104 = lean_ctor_get(x_75, 0); -lean_inc(x_104); -x_105 = lean_ctor_get(x_75, 1); -lean_inc(x_105); -if (lean_is_exclusive(x_75)) { - lean_ctor_release(x_75, 0); - lean_ctor_release(x_75, 1); - x_106 = x_75; +x_102 = lean_ctor_get(x_73, 0); +lean_inc(x_102); +x_103 = lean_ctor_get(x_73, 1); +lean_inc(x_103); +if (lean_is_exclusive(x_73)) { + lean_ctor_release(x_73, 0); + lean_ctor_release(x_73, 1); + x_104 = x_73; } else { - lean_dec_ref(x_75); - x_106 = lean_box(0); + lean_dec_ref(x_73); + x_104 = lean_box(0); } -if (lean_is_scalar(x_106)) { - x_107 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_104)) { + x_105 = lean_alloc_ctor(1, 2, 0); } else { - x_107 = x_106; + x_105 = x_104; } -lean_ctor_set(x_107, 0, x_104); -lean_ctor_set(x_107, 1, x_105); -return x_107; +lean_ctor_set(x_105, 0, x_102); +lean_ctor_set(x_105, 1, x_103); +return x_105; } } else { -lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; -lean_dec(x_68); +lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; +lean_dec(x_67); lean_dec(x_20); lean_dec(x_14); lean_dec_ref(x_13); @@ -17086,26 +18144,26 @@ lean_dec_ref(x_8); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); -x_108 = lean_ctor_get(x_70, 0); -lean_inc(x_108); -x_109 = lean_ctor_get(x_70, 1); -lean_inc(x_109); -if (lean_is_exclusive(x_70)) { - lean_ctor_release(x_70, 0); - lean_ctor_release(x_70, 1); - x_110 = x_70; +x_106 = lean_ctor_get(x_69, 0); +lean_inc(x_106); +x_107 = lean_ctor_get(x_69, 1); +lean_inc(x_107); +if (lean_is_exclusive(x_69)) { + lean_ctor_release(x_69, 0); + lean_ctor_release(x_69, 1); + x_108 = x_69; } else { - lean_dec_ref(x_70); - x_110 = lean_box(0); + lean_dec_ref(x_69); + x_108 = lean_box(0); } -if (lean_is_scalar(x_110)) { - x_111 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_108)) { + x_109 = lean_alloc_ctor(1, 2, 0); } else { - x_111 = x_110; + x_109 = x_108; } -lean_ctor_set(x_111, 0, x_108); -lean_ctor_set(x_111, 1, x_109); -return x_111; +lean_ctor_set(x_109, 0, x_106); +lean_ctor_set(x_109, 1, x_107); +return x_109; } } } @@ -17142,15 +18200,7 @@ return x_19; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Meta_mkAppM(x_1, x_2, x_6, x_7, x_8, x_9, x_10); -return x_11; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__0() { _start: { lean_object* x_1; @@ -17158,16 +18208,26 @@ x_1 = lean_mk_string_unchecked("r", 1, 1); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__0; x_2 = l_Lean_Name_mkStr1(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__1; +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__4___boxed), 9, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__3() { _start: { lean_object* x_1; @@ -17175,19 +18235,19 @@ x_1 = lean_mk_string_unchecked("PostCond", 8, 8); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__12; -x_2 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__2; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__1; +x_2 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__3; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__5() { _start: { lean_object* x_1; @@ -17195,34 +18255,34 @@ x_1 = lean_mk_string_unchecked("post", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__5() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__4; +x_1 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__5; x_2 = l_Lean_Name_mkStr1(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__6() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__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_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__24; -x_2 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__12; -x_3 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__2; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__23; +x_2 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__1; +x_3 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__3; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_5 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; x_6 = l_Lean_Name_mkStr5(x_5, x_4, x_3, x_2, x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; lean_object* x_14; lean_inc_ref(x_1); -x_13 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__0___boxed), 9, 1); +x_13 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__0___boxed), 9, 1); lean_closure_set(x_13, 0, x_1); lean_inc(x_11); lean_inc_ref(x_10); @@ -17240,7 +18300,7 @@ lean_inc(x_16); lean_dec_ref(x_14); lean_inc_ref(x_4); lean_inc_ref(x_3); -x_17 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__1___boxed), 10, 2); +x_17 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__1___boxed), 10, 2); lean_closure_set(x_17, 0, x_3); lean_closure_set(x_17, 1, x_4); lean_inc(x_11); @@ -17261,7 +18321,7 @@ lean_object* x_21; lean_object* x_22; lean_object* x_23; x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); lean_dec_ref(x_18); -x_22 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__2___boxed), 9, 1); +x_22 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__2___boxed), 9, 1); lean_closure_set(x_22, 0, x_3); lean_inc(x_11); lean_inc_ref(x_10); @@ -17277,7 +18337,7 @@ lean_inc(x_24); x_25 = lean_ctor_get(x_23, 1); lean_inc(x_25); lean_dec_ref(x_23); -x_26 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__3___boxed), 9, 1); +x_26 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__3___boxed), 9, 1); lean_closure_set(x_26, 0, x_4); lean_inc(x_11); lean_inc_ref(x_10); @@ -17297,136 +18357,134 @@ x_30 = lean_ctor_get(x_27, 1); x_31 = l_Lean_Expr_fvarId_x3f(x_24); if (lean_obj_tag(x_31) == 0) { -lean_object* x_32; lean_object* x_33; lean_object* x_34; +lean_object* x_32; lean_object* x_33; lean_free_object(x_27); -x_32 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__1; -x_33 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__4___boxed), 9, 1); -lean_closure_set(x_33, 0, x_32); +x_32 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__2; lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); lean_inc_ref(x_6); -x_34 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_33, x_6, x_7, x_8, x_9, x_10, x_11, x_30); -if (lean_obj_tag(x_34) == 0) +x_33 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_32, x_6, x_7, x_8, x_9, x_10, x_11, x_30); +if (lean_obj_tag(x_33) == 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_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +x_35 = lean_ctor_get(x_33, 1); lean_inc(x_35); -x_36 = lean_ctor_get(x_34, 1); -lean_inc(x_36); -lean_dec_ref(x_34); -x_37 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__6___boxed), 8, 0); +lean_dec_ref(x_33); +x_36 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__4___boxed), 8, 0); lean_inc(x_5); lean_inc_ref(x_2); lean_inc(x_15); lean_inc(x_29); lean_inc(x_24); -x_38 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___boxed), 15, 7); -lean_closure_set(x_38, 0, x_24); -lean_closure_set(x_38, 1, x_29); -lean_closure_set(x_38, 2, x_37); -lean_closure_set(x_38, 3, x_19); -lean_closure_set(x_38, 4, x_15); -lean_closure_set(x_38, 5, x_2); -lean_closure_set(x_38, 6, x_5); +x_37 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___boxed), 15, 7); +lean_closure_set(x_37, 0, x_24); +lean_closure_set(x_37, 1, x_29); +lean_closure_set(x_37, 2, x_36); +lean_closure_set(x_37, 3, x_19); +lean_closure_set(x_37, 4, x_15); +lean_closure_set(x_37, 5, x_2); +lean_closure_set(x_37, 6, x_5); lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_6); -x_39 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3___redArg(x_35, x_1, x_38, x_6, x_7, x_8, x_9, x_10, x_11, x_36); -if (lean_obj_tag(x_39) == 0) +x_38 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38_spec__38___redArg(x_34, x_1, x_37, x_6, x_7, x_8, x_9, x_10, x_11, x_35); +if (lean_obj_tag(x_38) == 0) { -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_40 = lean_ctor_get(x_39, 0); +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_39 = lean_ctor_get(x_38, 0); +lean_inc(x_39); +x_40 = lean_ctor_get(x_38, 1); lean_inc(x_40); -x_41 = lean_ctor_get(x_39, 1); -lean_inc(x_41); -lean_dec_ref(x_39); -x_42 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__0; -x_43 = lean_unsigned_to_nat(1u); -x_44 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__6___boxed), 11, 3); -lean_closure_set(x_44, 0, x_42); -lean_closure_set(x_44, 1, x_43); -lean_closure_set(x_44, 2, x_24); +lean_dec_ref(x_38); +x_41 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__1; +x_42 = lean_unsigned_to_nat(1u); +x_43 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__6___boxed), 11, 3); +lean_closure_set(x_43, 0, x_41); +lean_closure_set(x_43, 1, x_42); +lean_closure_set(x_43, 2, x_24); lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); lean_inc_ref(x_6); -x_45 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_44, x_6, x_7, x_8, x_9, x_10, x_11, x_41); -if (lean_obj_tag(x_45) == 0) +x_44 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_43, x_6, x_7, x_8, x_9, x_10, x_11, x_40); +if (lean_obj_tag(x_44) == 0) { -lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_46 = lean_ctor_get(x_45, 0); +lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_45 = lean_ctor_get(x_44, 0); +lean_inc(x_45); +x_46 = lean_ctor_get(x_44, 1); lean_inc(x_46); -x_47 = lean_ctor_get(x_45, 1); -lean_inc(x_47); -lean_dec_ref(x_45); -x_48 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__6___boxed), 11, 3); -lean_closure_set(x_48, 0, x_42); -lean_closure_set(x_48, 1, x_43); -lean_closure_set(x_48, 2, x_29); +lean_dec_ref(x_44); +x_47 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__6___boxed), 11, 3); +lean_closure_set(x_47, 0, x_41); +lean_closure_set(x_47, 1, x_42); +lean_closure_set(x_47, 2, x_29); lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); lean_inc_ref(x_6); -x_49 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_48, x_6, x_7, x_8, x_9, x_10, x_11, x_47); -if (lean_obj_tag(x_49) == 0) +x_48 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_47, x_6, x_7, x_8, x_9, x_10, x_11, x_46); +if (lean_obj_tag(x_48) == 0) { -lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_50 = lean_ctor_get(x_49, 0); +lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; +x_49 = lean_ctor_get(x_48, 0); +lean_inc(x_49); +x_50 = lean_ctor_get(x_48, 1); lean_inc(x_50); -x_51 = lean_ctor_get(x_49, 1); -lean_inc(x_51); -lean_dec_ref(x_49); -x_52 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__16; -x_53 = l_Lean_Name_append(x_5, x_52); +lean_dec_ref(x_48); +x_51 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__15; +x_52 = l_Lean_Name_append(x_5, x_51); lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_6); -x_54 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5(x_15, x_2, x_46, x_50, x_53, x_6, x_7, x_8, x_9, x_10, x_11, x_51); -if (lean_obj_tag(x_54) == 0) +x_53 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0(x_15, x_2, x_45, x_49, x_52, x_6, x_7, x_8, x_9, x_10, x_11, x_50); +if (lean_obj_tag(x_53) == 0) { -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; -x_55 = lean_ctor_get(x_54, 0); +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; +x_54 = lean_ctor_get(x_53, 0); +lean_inc(x_54); +x_55 = lean_ctor_get(x_53, 1); lean_inc(x_55); -x_56 = lean_ctor_get(x_54, 1); -lean_inc(x_56); -lean_dec_ref(x_54); -x_57 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__18; -x_58 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__19; -x_59 = lean_array_push(x_58, x_40); -x_60 = lean_array_push(x_59, x_55); -x_61 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__11___boxed), 10, 2); -lean_closure_set(x_61, 0, x_57); -lean_closure_set(x_61, 1, x_60); -x_62 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_61, x_6, x_7, x_8, x_9, x_10, x_11, x_56); +lean_dec_ref(x_53); +x_56 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__17; +x_57 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__18; +x_58 = lean_array_push(x_57, x_39); +x_59 = lean_array_push(x_58, x_54); +x_60 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__2___boxed), 10, 2); +lean_closure_set(x_60, 0, x_56); +lean_closure_set(x_60, 1, x_59); +x_61 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_60, x_6, x_7, x_8, x_9, x_10, x_11, x_55); lean_dec(x_7); -return x_62; +return x_61; } else { -lean_dec(x_40); +lean_dec(x_39); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); lean_dec_ref(x_6); -return x_54; +return x_53; } } else { -lean_dec(x_46); -lean_dec(x_40); +lean_dec(x_45); +lean_dec(x_39); lean_dec(x_15); lean_dec(x_11); lean_dec_ref(x_10); @@ -17436,12 +18494,12 @@ lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_2); -return x_49; +return x_48; } } else { -lean_dec(x_40); +lean_dec(x_39); lean_dec(x_29); lean_dec(x_15); lean_dec(x_11); @@ -17452,7 +18510,7 @@ lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_2); -return x_45; +return x_44; } } else @@ -17468,12 +18526,12 @@ lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_2); -return x_39; +return x_38; } } else { -uint8_t x_63; +uint8_t x_62; lean_dec(x_29); lean_dec(x_24); lean_dec(x_19); @@ -17487,188 +18545,186 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_63 = !lean_is_exclusive(x_34); -if (x_63 == 0) +x_62 = !lean_is_exclusive(x_33); +if (x_62 == 0) { -return x_34; +return x_33; } else { -lean_object* x_64; lean_object* x_65; lean_object* x_66; -x_64 = lean_ctor_get(x_34, 0); -x_65 = lean_ctor_get(x_34, 1); -lean_inc(x_65); +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_33, 0); +x_64 = lean_ctor_get(x_33, 1); lean_inc(x_64); -lean_dec(x_34); -x_66 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_66, 0, x_64); -lean_ctor_set(x_66, 1, x_65); -return x_66; +lean_inc(x_63); +lean_dec(x_33); +x_65 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_65, 0, x_63); +lean_ctor_set(x_65, 1, x_64); +return x_65; } } } else { -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_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_dec_ref(x_31); lean_dec(x_19); -x_67 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__3; -x_68 = lean_box(0); +x_66 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__4; +x_67 = lean_box(0); lean_ctor_set_tag(x_27, 1); -lean_ctor_set(x_27, 1, x_68); +lean_ctor_set(x_27, 1, x_67); lean_ctor_set(x_27, 0, x_15); -x_69 = l_Lean_Expr_const___override(x_67, x_27); -x_70 = l_Lean_mkApp4(x_69, x_1, x_2, x_24, x_29); -x_71 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__5; -x_72 = l_Lean_Name_append(x_5, x_71); -x_73 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__8___boxed), 10, 2); -lean_closure_set(x_73, 0, x_70); -lean_closure_set(x_73, 1, x_72); -x_74 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_73, x_6, x_7, x_8, x_9, x_10, x_11, x_30); +x_68 = l_Lean_Expr_const___override(x_66, x_27); +x_69 = l_Lean_mkApp4(x_68, x_1, x_2, x_24, x_29); +x_70 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__6; +x_71 = l_Lean_Name_append(x_5, x_70); +x_72 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__7___boxed), 10, 2); +lean_closure_set(x_72, 0, x_69); +lean_closure_set(x_72, 1, x_71); +x_73 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_72, x_6, x_7, x_8, x_9, x_10, x_11, x_30); lean_dec(x_7); -return x_74; +return x_73; } } else { -lean_object* x_75; lean_object* x_76; lean_object* x_77; -x_75 = lean_ctor_get(x_27, 0); -x_76 = lean_ctor_get(x_27, 1); -lean_inc(x_76); +lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_74 = lean_ctor_get(x_27, 0); +x_75 = lean_ctor_get(x_27, 1); lean_inc(x_75); +lean_inc(x_74); lean_dec(x_27); -x_77 = l_Lean_Expr_fvarId_x3f(x_24); -if (lean_obj_tag(x_77) == 0) +x_76 = l_Lean_Expr_fvarId_x3f(x_24); +if (lean_obj_tag(x_76) == 0) { -lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_78 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__1; -x_79 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__4___boxed), 9, 1); -lean_closure_set(x_79, 0, x_78); +lean_object* x_77; lean_object* x_78; +x_77 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__2; lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); lean_inc_ref(x_6); -x_80 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_79, x_6, x_7, x_8, x_9, x_10, x_11, x_76); -if (lean_obj_tag(x_80) == 0) +x_78 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_77, x_6, x_7, x_8, x_9, x_10, x_11, x_75); +if (lean_obj_tag(x_78) == 0) { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; -x_81 = lean_ctor_get(x_80, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_80, 1); -lean_inc(x_82); -lean_dec_ref(x_80); -x_83 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__6___boxed), 8, 0); +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +lean_dec_ref(x_78); +x_81 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__4___boxed), 8, 0); lean_inc(x_5); lean_inc_ref(x_2); lean_inc(x_15); -lean_inc(x_75); +lean_inc(x_74); lean_inc(x_24); -x_84 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___boxed), 15, 7); -lean_closure_set(x_84, 0, x_24); -lean_closure_set(x_84, 1, x_75); -lean_closure_set(x_84, 2, x_83); -lean_closure_set(x_84, 3, x_19); -lean_closure_set(x_84, 4, x_15); -lean_closure_set(x_84, 5, x_2); -lean_closure_set(x_84, 6, x_5); +x_82 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___boxed), 15, 7); +lean_closure_set(x_82, 0, x_24); +lean_closure_set(x_82, 1, x_74); +lean_closure_set(x_82, 2, x_81); +lean_closure_set(x_82, 3, x_19); +lean_closure_set(x_82, 4, x_15); +lean_closure_set(x_82, 5, x_2); +lean_closure_set(x_82, 6, x_5); lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_6); -x_85 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3___redArg(x_81, x_1, x_84, x_6, x_7, x_8, x_9, x_10, x_11, x_82); -if (lean_obj_tag(x_85) == 0) +x_83 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38_spec__38___redArg(x_79, x_1, x_82, x_6, x_7, x_8, x_9, x_10, x_11, x_80); +if (lean_obj_tag(x_83) == 0) { -lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; -x_86 = lean_ctor_get(x_85, 0); -lean_inc(x_86); -x_87 = lean_ctor_get(x_85, 1); -lean_inc(x_87); -lean_dec_ref(x_85); -x_88 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__0; -x_89 = lean_unsigned_to_nat(1u); -x_90 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__6___boxed), 11, 3); -lean_closure_set(x_90, 0, x_88); -lean_closure_set(x_90, 1, x_89); -lean_closure_set(x_90, 2, x_24); +lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_84 = lean_ctor_get(x_83, 0); +lean_inc(x_84); +x_85 = lean_ctor_get(x_83, 1); +lean_inc(x_85); +lean_dec_ref(x_83); +x_86 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__1; +x_87 = lean_unsigned_to_nat(1u); +x_88 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__6___boxed), 11, 3); +lean_closure_set(x_88, 0, x_86); +lean_closure_set(x_88, 1, x_87); +lean_closure_set(x_88, 2, x_24); lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); lean_inc_ref(x_6); -x_91 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_90, x_6, x_7, x_8, x_9, x_10, x_11, x_87); -if (lean_obj_tag(x_91) == 0) +x_89 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_88, x_6, x_7, x_8, x_9, x_10, x_11, x_85); +if (lean_obj_tag(x_89) == 0) { -lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; -x_92 = lean_ctor_get(x_91, 0); -lean_inc(x_92); -x_93 = lean_ctor_get(x_91, 1); -lean_inc(x_93); -lean_dec_ref(x_91); -x_94 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__6___boxed), 11, 3); -lean_closure_set(x_94, 0, x_88); -lean_closure_set(x_94, 1, x_89); -lean_closure_set(x_94, 2, x_75); +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_90 = lean_ctor_get(x_89, 0); +lean_inc(x_90); +x_91 = lean_ctor_get(x_89, 1); +lean_inc(x_91); +lean_dec_ref(x_89); +x_92 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__6___boxed), 11, 3); +lean_closure_set(x_92, 0, x_86); +lean_closure_set(x_92, 1, x_87); +lean_closure_set(x_92, 2, x_74); lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); lean_inc_ref(x_6); -x_95 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_94, x_6, x_7, x_8, x_9, x_10, x_11, x_93); -if (lean_obj_tag(x_95) == 0) +x_93 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_92, x_6, x_7, x_8, x_9, x_10, x_11, x_91); +if (lean_obj_tag(x_93) == 0) { -lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; -x_96 = lean_ctor_get(x_95, 0); -lean_inc(x_96); -x_97 = lean_ctor_get(x_95, 1); -lean_inc(x_97); -lean_dec_ref(x_95); -x_98 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__16; -x_99 = l_Lean_Name_append(x_5, x_98); +lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; +x_94 = lean_ctor_get(x_93, 0); +lean_inc(x_94); +x_95 = lean_ctor_get(x_93, 1); +lean_inc(x_95); +lean_dec_ref(x_93); +x_96 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__15; +x_97 = l_Lean_Name_append(x_5, x_96); lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_6); -x_100 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5(x_15, x_2, x_92, x_96, x_99, x_6, x_7, x_8, x_9, x_10, x_11, x_97); -if (lean_obj_tag(x_100) == 0) +x_98 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0(x_15, x_2, x_90, x_94, x_97, x_6, x_7, x_8, x_9, x_10, x_11, x_95); +if (lean_obj_tag(x_98) == 0) { -lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; -x_101 = lean_ctor_get(x_100, 0); -lean_inc(x_101); -x_102 = lean_ctor_get(x_100, 1); -lean_inc(x_102); -lean_dec_ref(x_100); -x_103 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__18; -x_104 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__19; -x_105 = lean_array_push(x_104, x_86); -x_106 = lean_array_push(x_105, x_101); -x_107 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__11___boxed), 10, 2); -lean_closure_set(x_107, 0, x_103); -lean_closure_set(x_107, 1, x_106); -x_108 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_107, x_6, x_7, x_8, x_9, x_10, x_11, x_102); +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_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +x_100 = lean_ctor_get(x_98, 1); +lean_inc(x_100); +lean_dec_ref(x_98); +x_101 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__17; +x_102 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__18; +x_103 = lean_array_push(x_102, x_84); +x_104 = lean_array_push(x_103, x_99); +x_105 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__2___boxed), 10, 2); +lean_closure_set(x_105, 0, x_101); +lean_closure_set(x_105, 1, x_104); +x_106 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_105, x_6, x_7, x_8, x_9, x_10, x_11, x_100); lean_dec(x_7); -return x_108; +return x_106; } else { -lean_dec(x_86); +lean_dec(x_84); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); lean_dec_ref(x_6); -return x_100; +return x_98; } } else { -lean_dec(x_92); -lean_dec(x_86); +lean_dec(x_90); +lean_dec(x_84); lean_dec(x_15); lean_dec(x_11); lean_dec_ref(x_10); @@ -17678,13 +18734,13 @@ lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_2); -return x_95; +return x_93; } } else { -lean_dec(x_86); -lean_dec(x_75); +lean_dec(x_84); +lean_dec(x_74); lean_dec(x_15); lean_dec(x_11); lean_dec_ref(x_10); @@ -17694,12 +18750,12 @@ lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_2); -return x_91; +return x_89; } } else { -lean_dec(x_75); +lean_dec(x_74); lean_dec(x_24); lean_dec(x_15); lean_dec(x_11); @@ -17710,13 +18766,13 @@ lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_2); -return x_85; +return x_83; } } else { -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -lean_dec(x_75); +lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; +lean_dec(x_74); lean_dec(x_24); lean_dec(x_19); lean_dec(x_15); @@ -17729,48 +18785,48 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_109 = lean_ctor_get(x_80, 0); -lean_inc(x_109); -x_110 = lean_ctor_get(x_80, 1); -lean_inc(x_110); -if (lean_is_exclusive(x_80)) { - lean_ctor_release(x_80, 0); - lean_ctor_release(x_80, 1); - x_111 = x_80; +x_107 = lean_ctor_get(x_78, 0); +lean_inc(x_107); +x_108 = lean_ctor_get(x_78, 1); +lean_inc(x_108); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_109 = x_78; } else { - lean_dec_ref(x_80); - x_111 = lean_box(0); + lean_dec_ref(x_78); + x_109 = lean_box(0); } -if (lean_is_scalar(x_111)) { - x_112 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_109)) { + x_110 = lean_alloc_ctor(1, 2, 0); } else { - x_112 = x_111; + x_110 = x_109; } -lean_ctor_set(x_112, 0, x_109); -lean_ctor_set(x_112, 1, x_110); -return x_112; +lean_ctor_set(x_110, 0, x_107); +lean_ctor_set(x_110, 1, x_108); +return x_110; } } else { -lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; -lean_dec_ref(x_77); +lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; +lean_dec_ref(x_76); lean_dec(x_19); -x_113 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__3; -x_114 = lean_box(0); -x_115 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_115, 0, x_15); -lean_ctor_set(x_115, 1, x_114); -x_116 = l_Lean_Expr_const___override(x_113, x_115); -x_117 = l_Lean_mkApp4(x_116, x_1, x_2, x_24, x_75); -x_118 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__5; -x_119 = l_Lean_Name_append(x_5, x_118); -x_120 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__8___boxed), 10, 2); -lean_closure_set(x_120, 0, x_117); -lean_closure_set(x_120, 1, x_119); -x_121 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_120, x_6, x_7, x_8, x_9, x_10, x_11, x_76); +x_111 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__4; +x_112 = lean_box(0); +x_113 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_113, 0, x_15); +lean_ctor_set(x_113, 1, x_112); +x_114 = l_Lean_Expr_const___override(x_111, x_113); +x_115 = l_Lean_mkApp4(x_114, x_1, x_2, x_24, x_74); +x_116 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__6; +x_117 = l_Lean_Name_append(x_5, x_116); +x_118 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__7___boxed), 10, 2); +lean_closure_set(x_118, 0, x_115); +lean_closure_set(x_118, 1, x_117); +x_119 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_118, x_6, x_7, x_8, x_9, x_10, x_11, x_75); lean_dec(x_7); -return x_121; +return x_119; } } } @@ -17810,7 +18866,7 @@ return x_23; } else { -uint8_t x_122; +uint8_t x_120; lean_dec(x_19); lean_dec(x_11); lean_dec_ref(x_10); @@ -17820,45 +18876,45 @@ lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_3); -x_122 = !lean_is_exclusive(x_18); -if (x_122 == 0) +x_120 = !lean_is_exclusive(x_18); +if (x_120 == 0) { -lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; -x_123 = lean_ctor_get(x_18, 0); -lean_dec(x_123); -x_124 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__6; -x_125 = lean_box(0); -x_126 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_126, 0, x_15); -lean_ctor_set(x_126, 1, x_125); -x_127 = l_Lean_Expr_const___override(x_124, x_126); -x_128 = l_Lean_mkApp3(x_127, x_1, x_2, x_4); -lean_ctor_set(x_18, 0, x_128); +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_121 = lean_ctor_get(x_18, 0); +lean_dec(x_121); +x_122 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__7; +x_123 = lean_box(0); +x_124 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_124, 0, x_15); +lean_ctor_set(x_124, 1, x_123); +x_125 = l_Lean_Expr_const___override(x_122, x_124); +x_126 = l_Lean_mkApp3(x_125, x_1, x_2, x_4); +lean_ctor_set(x_18, 0, x_126); return x_18; } else { -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; -x_129 = lean_ctor_get(x_18, 1); -lean_inc(x_129); +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; +x_127 = lean_ctor_get(x_18, 1); +lean_inc(x_127); lean_dec(x_18); -x_130 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__6; -x_131 = lean_box(0); -x_132 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_132, 0, x_15); -lean_ctor_set(x_132, 1, x_131); -x_133 = l_Lean_Expr_const___override(x_130, x_132); -x_134 = l_Lean_mkApp3(x_133, x_1, x_2, x_4); -x_135 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_135, 0, x_134); -lean_ctor_set(x_135, 1, x_129); -return x_135; +x_128 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__7; +x_129 = lean_box(0); +x_130 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_130, 0, x_15); +lean_ctor_set(x_130, 1, x_129); +x_131 = l_Lean_Expr_const___override(x_128, x_130); +x_132 = l_Lean_mkApp3(x_131, x_1, x_2, x_4); +x_133 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_133, 0, x_132); +lean_ctor_set(x_133, 1, x_127); +return x_133; } } } else { -uint8_t x_136; +uint8_t x_134; lean_dec(x_15); lean_dec(x_11); lean_dec_ref(x_10); @@ -17871,29 +18927,29 @@ lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_136 = !lean_is_exclusive(x_18); -if (x_136 == 0) +x_134 = !lean_is_exclusive(x_18); +if (x_134 == 0) { return x_18; } else { -lean_object* x_137; lean_object* x_138; lean_object* x_139; -x_137 = lean_ctor_get(x_18, 0); -x_138 = lean_ctor_get(x_18, 1); -lean_inc(x_138); -lean_inc(x_137); +lean_object* x_135; lean_object* x_136; lean_object* x_137; +x_135 = lean_ctor_get(x_18, 0); +x_136 = lean_ctor_get(x_18, 1); +lean_inc(x_136); +lean_inc(x_135); lean_dec(x_18); -x_139 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_139, 0, x_137); -lean_ctor_set(x_139, 1, x_138); -return x_139; +x_137 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_137, 0, x_135); +lean_ctor_set(x_137, 1, x_136); +return x_137; } } } else { -uint8_t x_140; +uint8_t x_138; lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -17905,28 +18961,28 @@ lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_140 = !lean_is_exclusive(x_14); -if (x_140 == 0) +x_138 = !lean_is_exclusive(x_14); +if (x_138 == 0) { return x_14; } else { -lean_object* x_141; lean_object* x_142; lean_object* x_143; -x_141 = lean_ctor_get(x_14, 0); -x_142 = lean_ctor_get(x_14, 1); -lean_inc(x_142); -lean_inc(x_141); +lean_object* x_139; lean_object* x_140; lean_object* x_141; +x_139 = lean_ctor_get(x_14, 0); +x_140 = lean_ctor_get(x_14, 1); +lean_inc(x_140); +lean_inc(x_139); lean_dec(x_14); -x_143 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_143, 0, x_141); -lean_ctor_set(x_143, 1, x_142); -return x_143; +x_141 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_141, 0, x_139); +lean_ctor_set(x_141, 1, x_140); +return x_141; } } } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7_spec__7___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2_spec__2___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; lean_object* x_8; @@ -17940,20 +18996,20 @@ lean_ctor_set(x_8, 1, x_3); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7_spec__7(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_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2_spec__2(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; -x_7 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7_spec__7___redArg(x_1, x_4, x_6); +x_7 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2_spec__2___redArg(x_1, x_4, x_6); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7_spec__8(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_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { 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; uint8_t x_15; x_8 = lean_ctor_get(x_5, 5); -x_9 = l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0(x_2, x_3, x_4, x_5, x_6, x_7); +x_9 = l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0_spec__0(x_2, x_3, x_4, x_5, x_6, x_7); x_10 = lean_ctor_get(x_9, 0); lean_inc(x_10); x_11 = lean_ctor_get(x_9, 1); @@ -17982,16 +19038,16 @@ if (x_20 == 0) { lean_object* x_21; double x_22; uint8_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; x_21 = lean_ctor_get(x_14, 0); -x_22 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__0; +x_22 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__0; x_23 = 0; -x_24 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4; +x_24 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__1; x_25 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_25, 0, x_1); lean_ctor_set(x_25, 1, x_24); lean_ctor_set_float(x_25, sizeof(void*)*2, x_22); lean_ctor_set_float(x_25, sizeof(void*)*2 + 8, x_22); lean_ctor_set_uint8(x_25, sizeof(void*)*2 + 16, x_23); -x_26 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__1; +x_26 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__2; x_27 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_10); @@ -18032,16 +19088,16 @@ x_36 = lean_ctor_get_uint64(x_14, sizeof(void*)*1); x_37 = lean_ctor_get(x_14, 0); lean_inc(x_37); lean_dec(x_14); -x_38 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__0; +x_38 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__0; x_39 = 0; -x_40 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4; +x_40 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__1; x_41 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_41, 0, x_1); lean_ctor_set(x_41, 1, x_40); lean_ctor_set_float(x_41, sizeof(void*)*2, x_38); lean_ctor_set_float(x_41, sizeof(void*)*2 + 8, x_38); lean_ctor_set_uint8(x_41, sizeof(void*)*2 + 16, x_39); -x_42 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__1; +x_42 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__2; x_43 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_43, 0, x_41); lean_ctor_set(x_43, 1, x_10); @@ -18106,16 +19162,16 @@ if (lean_is_exclusive(x_14)) { lean_dec_ref(x_14); x_61 = lean_box(0); } -x_62 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__0; +x_62 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__0; x_63 = 0; -x_64 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4; +x_64 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__1; x_65 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_65, 0, x_1); lean_ctor_set(x_65, 1, x_64); lean_ctor_set_float(x_65, sizeof(void*)*2, x_62); lean_ctor_set_float(x_65, sizeof(void*)*2 + 8, x_62); lean_ctor_set_uint8(x_65, sizeof(void*)*2 + 16, x_63); -x_66 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__1; +x_66 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__2; x_67 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_67, 0, x_65); lean_ctor_set(x_67, 1, x_10); @@ -18210,16 +19266,16 @@ if (lean_is_exclusive(x_14)) { lean_dec_ref(x_14); x_88 = lean_box(0); } -x_89 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__0; +x_89 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__0; x_90 = 0; -x_91 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4; +x_91 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__1; x_92 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_92, 0, x_1); lean_ctor_set(x_92, 1, x_91); lean_ctor_set_float(x_92, sizeof(void*)*2, x_89); lean_ctor_set_float(x_92, sizeof(void*)*2 + 8, x_89); lean_ctor_set_uint8(x_92, sizeof(void*)*2 + 16, x_90); -x_93 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__1; +x_93 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__2; x_94 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_94, 0, x_92); lean_ctor_set(x_94, 1, x_10); @@ -18273,7 +19329,7 @@ return x_103; } } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__0___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__0___closed__0() { _start: { lean_object* x_1; @@ -18281,21 +19337,21 @@ x_1 = lean_mk_string_unchecked("dischargeMGoal: ", 16, 16); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__0___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__0___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__0___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__0___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__0(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_inc(x_1); -x_11 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7_spec__7___redArg(x_1, x_8, x_10); +x_11 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2_spec__2___redArg(x_1, x_8, x_10); x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); x_13 = lean_unbox(x_12); @@ -18337,21 +19393,21 @@ lean_dec_ref(x_11); x_21 = lean_ctor_get(x_2, 3); lean_inc_ref(x_21); lean_dec_ref(x_2); -x_22 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__0___closed__1; +x_22 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__0___closed__1; x_23 = l_Lean_MessageData_ofExpr(x_21); x_24 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_24, 0, x_22); lean_ctor_set(x_24, 1, x_23); -x_25 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; +x_25 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; x_26 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7_spec__8(x_1, x_26, x_6, x_7, x_8, x_9, x_20); +x_27 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2_spec__3(x_1, x_26, x_6, x_7, x_8, x_9, x_20); return x_27; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; uint8_t x_12; @@ -18647,7 +19703,7 @@ return x_89; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__2(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; @@ -18655,7 +19711,7 @@ x_11 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_1, x_2, x_6, x_7, x_8, x_9, return x_11; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__3___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__3___closed__0() { _start: { lean_object* x_1; @@ -18663,21 +19719,21 @@ x_1 = lean_mk_string_unchecked("proof: ", 7, 7); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__3___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__3___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__3___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__3___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_inc(x_1); -x_11 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7_spec__7___redArg(x_1, x_8, x_10); +x_11 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2_spec__2___redArg(x_1, x_8, x_10); x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); x_13 = lean_unbox(x_12); @@ -18716,21 +19772,21 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean x_20 = lean_ctor_get(x_11, 1); lean_inc(x_20); lean_dec_ref(x_11); -x_21 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__3___closed__1; +x_21 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__3___closed__1; x_22 = l_Lean_MessageData_ofExpr(x_2); x_23 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_23, 0, x_21); lean_ctor_set(x_23, 1, x_22); -x_24 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; +x_24 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; x_25 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_25, 0, x_23); lean_ctor_set(x_25, 1, x_24); -x_26 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7_spec__8(x_1, x_25, x_6, x_7, x_8, x_9, x_20); +x_26 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2_spec__3(x_1, x_25, x_6, x_7, x_8, x_9, x_20); return x_26; } } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___closed__0() { _start: { lean_object* x_1; @@ -18738,25 +19794,25 @@ x_1 = lean_mk_string_unchecked("spec", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___closed__0; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; +x_1 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___closed__0; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3; +x_4 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__16; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2(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_10; lean_object* x_11; lean_object* x_12; -x_10 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___closed__1; +x_10 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___closed__1; lean_inc_ref(x_1); -x_11 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__0___boxed), 10, 2); +x_11 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__0___boxed), 10, 2); lean_closure_set(x_11, 0, x_10); lean_closure_set(x_11, 1, x_1); lean_inc(x_8); @@ -18774,7 +19830,7 @@ lean_dec_ref(x_12); x_14 = 1; x_15 = lean_box(x_14); lean_inc_ref(x_1); -x_16 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__1___boxed), 10, 2); +x_16 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__1___boxed), 10, 2); lean_closure_set(x_16, 0, x_15); lean_closure_set(x_16, 1, x_1); lean_inc(x_8); @@ -18795,7 +19851,7 @@ x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); lean_dec_ref(x_17); x_20 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_1); -x_21 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__2___boxed), 10, 2); +x_21 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__2___boxed), 10, 2); lean_closure_set(x_21, 0, x_20); lean_closure_set(x_21, 1, x_2); x_22 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_21, x_3, x_4, x_5, x_6, x_7, x_8, x_19); @@ -18813,7 +19869,7 @@ x_24 = lean_ctor_get(x_18, 0); lean_inc(x_24); lean_dec_ref(x_18); lean_inc(x_24); -x_25 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__3___boxed), 10, 2); +x_25 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__3___boxed), 10, 2); lean_closure_set(x_25, 0, x_10); lean_closure_set(x_25, 1, x_24); x_26 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_25, x_3, x_4, x_5, x_6, x_7, x_8, x_23); @@ -18927,1322 +19983,7 @@ return x_42; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__0(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, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_1, x_2, x_3, x_7, x_8, x_9, x_10, x_11); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Meta_synthInstance_x3f(x_1, x_2, x_6, x_7, x_8, x_9, x_10); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Meta_isExprDefEq(x_1, x_2, x_6, x_7, x_8, x_9, x_10); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_ProofMode_transferHypNames(x_1, x_2, x_6, x_7, x_8, x_9, x_10); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__5(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { -_start: -{ -lean_object* x_14; -x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x_11, x_12, x_13); -return x_14; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Frame", 5, 5); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("frame", 5, 5); -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22) { -_start: -{ -lean_object* x_23; -lean_inc(x_21); -lean_inc_ref(x_20); -lean_inc(x_19); -lean_inc_ref(x_18); -lean_inc(x_17); -lean_inc_ref(x_16); -lean_inc_ref(x_15); -lean_inc_ref(x_2); -x_23 = lean_apply_10(x_1, x_2, x_15, x_3, x_16, x_17, x_18, x_19, x_20, x_21, x_22); -if (lean_obj_tag(x_23) == 0) -{ -lean_object* x_24; lean_object* x_25; uint8_t x_26; -x_24 = lean_ctor_get(x_23, 0); -lean_inc(x_24); -x_25 = lean_ctor_get(x_23, 1); -lean_inc(x_25); -lean_dec_ref(x_23); -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; uint8_t x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_27 = lean_ctor_get(x_24, 0); -x_28 = lean_ctor_get(x_24, 1); -x_29 = l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__1___closed__0; -x_30 = lean_array_push(x_29, x_15); -x_31 = 1; -x_32 = 1; -x_33 = lean_box(x_4); -x_34 = lean_box(x_31); -x_35 = lean_box(x_32); -x_36 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__5___boxed), 13, 5); -lean_closure_set(x_36, 0, x_30); -lean_closure_set(x_36, 1, x_28); -lean_closure_set(x_36, 2, x_33); -lean_closure_set(x_36, 3, x_34); -lean_closure_set(x_36, 4, x_35); -x_37 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_36, x_16, x_17, x_18, x_19, x_20, x_21, x_25); -lean_dec(x_17); -if (lean_obj_tag(x_37) == 0) -{ -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_39 = lean_ctor_get(x_37, 0); -x_40 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4___closed__0; -x_41 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4___closed__1; -x_42 = l_Lean_Name_mkStr6(x_5, x_6, x_7, x_8, x_40, x_41); -x_43 = l_Lean_Expr_const___override(x_42, x_9); -x_44 = l_Lean_mkApp7(x_43, x_10, x_11, x_12, x_13, x_2, x_14, x_39); -lean_ctor_set(x_24, 1, x_44); -lean_ctor_set(x_37, 0, x_24); -return x_37; -} -else -{ -lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_45 = lean_ctor_get(x_37, 0); -x_46 = lean_ctor_get(x_37, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_37); -x_47 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4___closed__0; -x_48 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4___closed__1; -x_49 = l_Lean_Name_mkStr6(x_5, x_6, x_7, x_8, x_47, x_48); -x_50 = l_Lean_Expr_const___override(x_49, x_9); -x_51 = l_Lean_mkApp7(x_50, x_10, x_11, x_12, x_13, x_2, x_14, x_45); -lean_ctor_set(x_24, 1, x_51); -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_24); -lean_ctor_set(x_52, 1, x_46); -return x_52; -} -} -else -{ -uint8_t x_53; -lean_free_object(x_24); -lean_dec(x_27); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_2); -x_53 = !lean_is_exclusive(x_37); -if (x_53 == 0) -{ -return x_37; -} -else -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_54 = lean_ctor_get(x_37, 0); -x_55 = lean_ctor_get(x_37, 1); -lean_inc(x_55); -lean_inc(x_54); -lean_dec(x_37); -x_56 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_56, 0, x_54); -lean_ctor_set(x_56, 1, x_55); -return x_56; -} -} -} -else -{ -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; uint8_t x_61; uint8_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_57 = lean_ctor_get(x_24, 0); -x_58 = lean_ctor_get(x_24, 1); -lean_inc(x_58); -lean_inc(x_57); -lean_dec(x_24); -x_59 = l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__1___closed__0; -x_60 = lean_array_push(x_59, x_15); -x_61 = 1; -x_62 = 1; -x_63 = lean_box(x_4); -x_64 = lean_box(x_61); -x_65 = lean_box(x_62); -x_66 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__5___boxed), 13, 5); -lean_closure_set(x_66, 0, x_60); -lean_closure_set(x_66, 1, x_58); -lean_closure_set(x_66, 2, x_63); -lean_closure_set(x_66, 3, x_64); -lean_closure_set(x_66, 4, x_65); -x_67 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_66, x_16, x_17, x_18, x_19, x_20, x_21, x_25); -lean_dec(x_17); -if (lean_obj_tag(x_67) == 0) -{ -lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; -x_68 = lean_ctor_get(x_67, 0); -lean_inc(x_68); -x_69 = lean_ctor_get(x_67, 1); -lean_inc(x_69); -if (lean_is_exclusive(x_67)) { - lean_ctor_release(x_67, 0); - lean_ctor_release(x_67, 1); - x_70 = x_67; -} else { - lean_dec_ref(x_67); - x_70 = lean_box(0); -} -x_71 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4___closed__0; -x_72 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4___closed__1; -x_73 = l_Lean_Name_mkStr6(x_5, x_6, x_7, x_8, x_71, x_72); -x_74 = l_Lean_Expr_const___override(x_73, x_9); -x_75 = l_Lean_mkApp7(x_74, x_10, x_11, x_12, x_13, x_2, x_14, x_68); -x_76 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_76, 0, x_57); -lean_ctor_set(x_76, 1, x_75); -if (lean_is_scalar(x_70)) { - x_77 = lean_alloc_ctor(0, 2, 0); -} else { - x_77 = x_70; -} -lean_ctor_set(x_77, 0, x_76); -lean_ctor_set(x_77, 1, x_69); -return x_77; -} -else -{ -lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; -lean_dec(x_57); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_2); -x_78 = lean_ctor_get(x_67, 0); -lean_inc(x_78); -x_79 = lean_ctor_get(x_67, 1); -lean_inc(x_79); -if (lean_is_exclusive(x_67)) { - lean_ctor_release(x_67, 0); - lean_ctor_release(x_67, 1); - x_80 = x_67; -} else { - lean_dec_ref(x_67); - x_80 = lean_box(0); -} -if (lean_is_scalar(x_80)) { - x_81 = lean_alloc_ctor(1, 2, 0); -} else { - x_81 = x_80; -} -lean_ctor_set(x_81, 0, x_78); -lean_ctor_set(x_81, 1, x_79); -return x_81; -} -} -} -else -{ -lean_dec(x_21); -lean_dec_ref(x_20); -lean_dec(x_19); -lean_dec_ref(x_18); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_2); -return x_23; -} -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__0() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_box(0); -x_2 = l_Lean_Expr_sort___override(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__0; -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_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__1; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; -x_4 = l_Lean_Name_mkStr3(x_3, x_2, x_1); -return x_4; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("HasFrame", 8, 8); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__4() { -_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_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__3; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__1; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; -x_6 = l_Lean_Name_mkStr5(x_5, x_4, x_3, x_2, x_1); -return x_6; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__26; -x_2 = l_Lean_Name_mkStr1(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__5; -x_3 = l_Lean_Expr_const___override(x_2, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -uint8_t x_11; -x_11 = !lean_is_exclusive(x_1); -if (x_11 == 0) -{ -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_19; lean_object* x_20; lean_object* x_21; -x_12 = lean_ctor_get(x_1, 0); -x_13 = lean_ctor_get(x_1, 1); -x_14 = lean_ctor_get(x_1, 2); -x_15 = lean_ctor_get(x_1, 3); -x_16 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__1; -x_17 = 0; -x_18 = lean_box(0); -x_19 = lean_box(x_17); -x_20 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__0___boxed), 11, 3); -lean_closure_set(x_20, 0, x_16); -lean_closure_set(x_20, 1, x_19); -lean_closure_set(x_20, 2, x_18); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_21 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_20, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_21) == 0) -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_22 = lean_ctor_get(x_21, 0); -lean_inc(x_22); -x_23 = lean_ctor_get(x_21, 1); -lean_inc(x_23); -lean_dec_ref(x_21); -x_24 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; -x_25 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_26 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__1; -x_27 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__2; -x_28 = lean_box(0); -lean_inc(x_12); -x_29 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_29, 0, x_12); -lean_ctor_set(x_29, 1, x_28); -lean_inc_ref(x_29); -x_30 = l_Lean_Expr_const___override(x_27, x_29); -lean_inc_ref(x_13); -x_31 = l_Lean_Expr_app___override(x_30, x_13); -x_32 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_32, 0, x_31); -x_33 = lean_box(x_17); -x_34 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__0___boxed), 11, 3); -lean_closure_set(x_34, 0, x_32); -lean_closure_set(x_34, 1, x_33); -lean_closure_set(x_34, 2, x_18); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_35 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_34, x_4, x_5, x_6, x_7, x_8, x_9, x_23); -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; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_36 = lean_ctor_get(x_35, 0); -lean_inc(x_36); -x_37 = lean_ctor_get(x_35, 1); -lean_inc(x_37); -lean_dec_ref(x_35); -x_38 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_39 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__4; -lean_inc_ref(x_29); -x_40 = l_Lean_Expr_const___override(x_39, x_29); -lean_inc(x_22); -lean_inc(x_36); -lean_inc_ref(x_14); -lean_inc_ref(x_13); -x_41 = l_Lean_mkApp4(x_40, x_13, x_14, x_36, x_22); -x_42 = lean_box(0); -x_43 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__2___boxed), 10, 2); -lean_closure_set(x_43, 0, x_41); -lean_closure_set(x_43, 1, x_42); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_44 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_43, x_4, x_5, x_6, x_7, x_8, x_9, x_37); -if (lean_obj_tag(x_44) == 0) -{ -lean_object* x_45; -x_45 = lean_ctor_get(x_44, 0); -lean_inc(x_45); -if (lean_obj_tag(x_45) == 0) -{ -lean_object* x_46; lean_object* x_47; -lean_dec(x_36); -lean_dec_ref(x_29); -lean_dec(x_22); -lean_free_object(x_1); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_3); -x_46 = lean_ctor_get(x_44, 1); -lean_inc(x_46); -lean_dec_ref(x_44); -x_47 = lean_apply_7(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_46); -return x_47; -} -else -{ -lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_48 = lean_ctor_get(x_44, 1); -lean_inc(x_48); -lean_dec_ref(x_44); -x_49 = lean_ctor_get(x_45, 0); -lean_inc(x_49); -lean_dec_ref(x_45); -x_50 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__6; -lean_inc(x_22); -x_51 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__1___boxed), 10, 2); -lean_closure_set(x_51, 0, x_50); -lean_closure_set(x_51, 1, x_22); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_52 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_51, x_4, x_5, x_6, x_7, x_8, x_9, x_48); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; uint8_t x_54; -x_53 = lean_ctor_get(x_52, 0); -lean_inc(x_53); -x_54 = lean_unbox(x_53); -if (x_54 == 0) -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; -lean_dec_ref(x_2); -x_55 = lean_ctor_get(x_52, 1); -lean_inc(x_55); -lean_dec_ref(x_52); -lean_inc_ref(x_14); -x_56 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__3___boxed), 10, 2); -lean_closure_set(x_56, 0, x_14); -lean_closure_set(x_56, 1, x_36); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_57 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_56, x_4, x_5, x_6, x_7, x_8, x_9, x_55); -if (lean_obj_tag(x_57) == 0) -{ -lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; -x_58 = lean_ctor_get(x_57, 0); -lean_inc(x_58); -x_59 = lean_ctor_get(x_57, 1); -lean_inc(x_59); -lean_dec_ref(x_57); -x_60 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__2; -x_61 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__4___boxed), 9, 1); -lean_closure_set(x_61, 0, x_60); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_62 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_61, x_4, x_5, x_6, x_7, x_8, x_9, x_59); -if (lean_obj_tag(x_62) == 0) -{ -lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; -x_63 = lean_ctor_get(x_62, 0); -lean_inc(x_63); -x_64 = lean_ctor_get(x_62, 1); -lean_inc(x_64); -lean_dec_ref(x_62); -lean_inc_ref(x_15); -lean_inc(x_58); -lean_inc_ref(x_13); -lean_ctor_set(x_1, 2, x_58); -lean_inc(x_22); -x_65 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4___boxed), 22, 14); -lean_closure_set(x_65, 0, x_3); -lean_closure_set(x_65, 1, x_22); -lean_closure_set(x_65, 2, x_1); -lean_closure_set(x_65, 3, x_53); -lean_closure_set(x_65, 4, x_24); -lean_closure_set(x_65, 5, x_25); -lean_closure_set(x_65, 6, x_26); -lean_closure_set(x_65, 7, x_38); -lean_closure_set(x_65, 8, x_29); -lean_closure_set(x_65, 9, x_13); -lean_closure_set(x_65, 10, x_14); -lean_closure_set(x_65, 11, x_58); -lean_closure_set(x_65, 12, x_15); -lean_closure_set(x_65, 13, x_49); -x_66 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3___redArg(x_63, x_22, x_65, x_4, x_5, x_6, x_7, x_8, x_9, x_64); -return x_66; -} -else -{ -uint8_t x_67; -lean_dec(x_58); -lean_dec(x_53); -lean_dec(x_49); -lean_dec_ref(x_29); -lean_dec(x_22); -lean_free_object(x_1); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -x_67 = !lean_is_exclusive(x_62); -if (x_67 == 0) -{ -return x_62; -} -else -{ -lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_68 = lean_ctor_get(x_62, 0); -x_69 = lean_ctor_get(x_62, 1); -lean_inc(x_69); -lean_inc(x_68); -lean_dec(x_62); -x_70 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_70, 0, x_68); -lean_ctor_set(x_70, 1, x_69); -return x_70; -} -} -} -else -{ -uint8_t x_71; -lean_dec(x_53); -lean_dec(x_49); -lean_dec_ref(x_29); -lean_dec(x_22); -lean_free_object(x_1); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -x_71 = !lean_is_exclusive(x_57); -if (x_71 == 0) -{ -return x_57; -} -else -{ -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_57, 0); -x_73 = lean_ctor_get(x_57, 1); -lean_inc(x_73); -lean_inc(x_72); -lean_dec(x_57); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_73); -return x_74; -} -} -} -else -{ -lean_object* x_75; lean_object* x_76; -lean_dec(x_53); -lean_dec(x_49); -lean_dec(x_36); -lean_dec_ref(x_29); -lean_dec(x_22); -lean_free_object(x_1); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_3); -x_75 = lean_ctor_get(x_52, 1); -lean_inc(x_75); -lean_dec_ref(x_52); -x_76 = lean_apply_7(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_75); -return x_76; -} -} -else -{ -uint8_t x_77; -lean_dec(x_49); -lean_dec(x_36); -lean_dec_ref(x_29); -lean_dec(x_22); -lean_free_object(x_1); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_77 = !lean_is_exclusive(x_52); -if (x_77 == 0) -{ -return x_52; -} -else -{ -lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_78 = lean_ctor_get(x_52, 0); -x_79 = lean_ctor_get(x_52, 1); -lean_inc(x_79); -lean_inc(x_78); -lean_dec(x_52); -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; -} -} -} -} -else -{ -uint8_t x_81; -lean_dec(x_36); -lean_dec_ref(x_29); -lean_dec(x_22); -lean_free_object(x_1); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_81 = !lean_is_exclusive(x_44); -if (x_81 == 0) -{ -return x_44; -} -else -{ -lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_82 = lean_ctor_get(x_44, 0); -x_83 = lean_ctor_get(x_44, 1); -lean_inc(x_83); -lean_inc(x_82); -lean_dec(x_44); -x_84 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_84, 0, x_82); -lean_ctor_set(x_84, 1, x_83); -return x_84; -} -} -} -else -{ -uint8_t x_85; -lean_dec_ref(x_29); -lean_dec(x_22); -lean_free_object(x_1); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_85 = !lean_is_exclusive(x_35); -if (x_85 == 0) -{ -return x_35; -} -else -{ -lean_object* x_86; lean_object* x_87; lean_object* x_88; -x_86 = lean_ctor_get(x_35, 0); -x_87 = lean_ctor_get(x_35, 1); -lean_inc(x_87); -lean_inc(x_86); -lean_dec(x_35); -x_88 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_88, 0, x_86); -lean_ctor_set(x_88, 1, x_87); -return x_88; -} -} -} -else -{ -uint8_t x_89; -lean_free_object(x_1); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_89 = !lean_is_exclusive(x_21); -if (x_89 == 0) -{ -return x_21; -} -else -{ -lean_object* x_90; lean_object* x_91; lean_object* x_92; -x_90 = lean_ctor_get(x_21, 0); -x_91 = lean_ctor_get(x_21, 1); -lean_inc(x_91); -lean_inc(x_90); -lean_dec(x_21); -x_92 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_92, 0, x_90); -lean_ctor_set(x_92, 1, x_91); -return x_92; -} -} -} -else -{ -lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; uint8_t x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; -x_93 = lean_ctor_get(x_1, 0); -x_94 = lean_ctor_get(x_1, 1); -x_95 = lean_ctor_get(x_1, 2); -x_96 = lean_ctor_get(x_1, 3); -lean_inc(x_96); -lean_inc(x_95); -lean_inc(x_94); -lean_inc(x_93); -lean_dec(x_1); -x_97 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__1; -x_98 = 0; -x_99 = lean_box(0); -x_100 = lean_box(x_98); -x_101 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__0___boxed), 11, 3); -lean_closure_set(x_101, 0, x_97); -lean_closure_set(x_101, 1, x_100); -lean_closure_set(x_101, 2, x_99); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_102 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_101, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_102) == 0) -{ -lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; -x_103 = lean_ctor_get(x_102, 0); -lean_inc(x_103); -x_104 = lean_ctor_get(x_102, 1); -lean_inc(x_104); -lean_dec_ref(x_102); -x_105 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; -x_106 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_107 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__1; -x_108 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__2; -x_109 = lean_box(0); -lean_inc(x_93); -x_110 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_110, 0, x_93); -lean_ctor_set(x_110, 1, x_109); -lean_inc_ref(x_110); -x_111 = l_Lean_Expr_const___override(x_108, x_110); -lean_inc_ref(x_94); -x_112 = l_Lean_Expr_app___override(x_111, x_94); -x_113 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_113, 0, x_112); -x_114 = lean_box(x_98); -x_115 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__0___boxed), 11, 3); -lean_closure_set(x_115, 0, x_113); -lean_closure_set(x_115, 1, x_114); -lean_closure_set(x_115, 2, x_99); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_116 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_115, x_4, x_5, x_6, x_7, x_8, x_9, x_104); -if (lean_obj_tag(x_116) == 0) -{ -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; -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_ref(x_116); -x_119 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_120 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__4; -lean_inc_ref(x_110); -x_121 = l_Lean_Expr_const___override(x_120, x_110); -lean_inc(x_103); -lean_inc(x_117); -lean_inc_ref(x_95); -lean_inc_ref(x_94); -x_122 = l_Lean_mkApp4(x_121, x_94, x_95, x_117, x_103); -x_123 = lean_box(0); -x_124 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__2___boxed), 10, 2); -lean_closure_set(x_124, 0, x_122); -lean_closure_set(x_124, 1, x_123); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_125 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_124, x_4, x_5, x_6, x_7, x_8, x_9, x_118); -if (lean_obj_tag(x_125) == 0) -{ -lean_object* x_126; -x_126 = lean_ctor_get(x_125, 0); -lean_inc(x_126); -if (lean_obj_tag(x_126) == 0) -{ -lean_object* x_127; lean_object* x_128; -lean_dec(x_117); -lean_dec_ref(x_110); -lean_dec(x_103); -lean_dec_ref(x_96); -lean_dec_ref(x_95); -lean_dec_ref(x_94); -lean_dec(x_93); -lean_dec_ref(x_3); -x_127 = lean_ctor_get(x_125, 1); -lean_inc(x_127); -lean_dec_ref(x_125); -x_128 = lean_apply_7(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_127); -return x_128; -} -else -{ -lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; -x_129 = lean_ctor_get(x_125, 1); -lean_inc(x_129); -lean_dec_ref(x_125); -x_130 = lean_ctor_get(x_126, 0); -lean_inc(x_130); -lean_dec_ref(x_126); -x_131 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__6; -lean_inc(x_103); -x_132 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__1___boxed), 10, 2); -lean_closure_set(x_132, 0, x_131); -lean_closure_set(x_132, 1, x_103); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_133 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_132, x_4, x_5, x_6, x_7, x_8, x_9, x_129); -if (lean_obj_tag(x_133) == 0) -{ -lean_object* x_134; uint8_t x_135; -x_134 = lean_ctor_get(x_133, 0); -lean_inc(x_134); -x_135 = lean_unbox(x_134); -if (x_135 == 0) -{ -lean_object* x_136; lean_object* x_137; lean_object* x_138; -lean_dec_ref(x_2); -x_136 = lean_ctor_get(x_133, 1); -lean_inc(x_136); -lean_dec_ref(x_133); -lean_inc_ref(x_95); -x_137 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__3___boxed), 10, 2); -lean_closure_set(x_137, 0, x_95); -lean_closure_set(x_137, 1, x_117); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_138 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_137, x_4, x_5, x_6, x_7, x_8, x_9, x_136); -if (lean_obj_tag(x_138) == 0) -{ -lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; -x_139 = lean_ctor_get(x_138, 0); -lean_inc(x_139); -x_140 = lean_ctor_get(x_138, 1); -lean_inc(x_140); -lean_dec_ref(x_138); -x_141 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__2; -x_142 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__4___boxed), 9, 1); -lean_closure_set(x_142, 0, x_141); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_143 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_142, x_4, x_5, x_6, x_7, x_8, x_9, x_140); -if (lean_obj_tag(x_143) == 0) -{ -lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; -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_ref(x_143); -lean_inc_ref(x_96); -lean_inc(x_139); -lean_inc_ref(x_94); -x_146 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_146, 0, x_93); -lean_ctor_set(x_146, 1, x_94); -lean_ctor_set(x_146, 2, x_139); -lean_ctor_set(x_146, 3, x_96); -lean_inc(x_103); -x_147 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4___boxed), 22, 14); -lean_closure_set(x_147, 0, x_3); -lean_closure_set(x_147, 1, x_103); -lean_closure_set(x_147, 2, x_146); -lean_closure_set(x_147, 3, x_134); -lean_closure_set(x_147, 4, x_105); -lean_closure_set(x_147, 5, x_106); -lean_closure_set(x_147, 6, x_107); -lean_closure_set(x_147, 7, x_119); -lean_closure_set(x_147, 8, x_110); -lean_closure_set(x_147, 9, x_94); -lean_closure_set(x_147, 10, x_95); -lean_closure_set(x_147, 11, x_139); -lean_closure_set(x_147, 12, x_96); -lean_closure_set(x_147, 13, x_130); -x_148 = l_Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3___redArg(x_144, x_103, x_147, x_4, x_5, x_6, x_7, x_8, x_9, x_145); -return x_148; -} -else -{ -lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; -lean_dec(x_139); -lean_dec(x_134); -lean_dec(x_130); -lean_dec_ref(x_110); -lean_dec(x_103); -lean_dec_ref(x_96); -lean_dec_ref(x_95); -lean_dec_ref(x_94); -lean_dec(x_93); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -x_149 = lean_ctor_get(x_143, 0); -lean_inc(x_149); -x_150 = lean_ctor_get(x_143, 1); -lean_inc(x_150); -if (lean_is_exclusive(x_143)) { - lean_ctor_release(x_143, 0); - lean_ctor_release(x_143, 1); - x_151 = x_143; -} else { - lean_dec_ref(x_143); - x_151 = lean_box(0); -} -if (lean_is_scalar(x_151)) { - x_152 = lean_alloc_ctor(1, 2, 0); -} else { - x_152 = x_151; -} -lean_ctor_set(x_152, 0, x_149); -lean_ctor_set(x_152, 1, x_150); -return x_152; -} -} -else -{ -lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; -lean_dec(x_134); -lean_dec(x_130); -lean_dec_ref(x_110); -lean_dec(x_103); -lean_dec_ref(x_96); -lean_dec_ref(x_95); -lean_dec_ref(x_94); -lean_dec(x_93); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -x_153 = lean_ctor_get(x_138, 0); -lean_inc(x_153); -x_154 = lean_ctor_get(x_138, 1); -lean_inc(x_154); -if (lean_is_exclusive(x_138)) { - lean_ctor_release(x_138, 0); - lean_ctor_release(x_138, 1); - x_155 = x_138; -} else { - lean_dec_ref(x_138); - x_155 = lean_box(0); -} -if (lean_is_scalar(x_155)) { - x_156 = lean_alloc_ctor(1, 2, 0); -} else { - x_156 = x_155; -} -lean_ctor_set(x_156, 0, x_153); -lean_ctor_set(x_156, 1, x_154); -return x_156; -} -} -else -{ -lean_object* x_157; lean_object* x_158; -lean_dec(x_134); -lean_dec(x_130); -lean_dec(x_117); -lean_dec_ref(x_110); -lean_dec(x_103); -lean_dec_ref(x_96); -lean_dec_ref(x_95); -lean_dec_ref(x_94); -lean_dec(x_93); -lean_dec_ref(x_3); -x_157 = lean_ctor_get(x_133, 1); -lean_inc(x_157); -lean_dec_ref(x_133); -x_158 = lean_apply_7(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_157); -return x_158; -} -} -else -{ -lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; -lean_dec(x_130); -lean_dec(x_117); -lean_dec_ref(x_110); -lean_dec(x_103); -lean_dec_ref(x_96); -lean_dec_ref(x_95); -lean_dec_ref(x_94); -lean_dec(x_93); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_159 = lean_ctor_get(x_133, 0); -lean_inc(x_159); -x_160 = lean_ctor_get(x_133, 1); -lean_inc(x_160); -if (lean_is_exclusive(x_133)) { - lean_ctor_release(x_133, 0); - lean_ctor_release(x_133, 1); - x_161 = x_133; -} else { - lean_dec_ref(x_133); - x_161 = lean_box(0); -} -if (lean_is_scalar(x_161)) { - x_162 = lean_alloc_ctor(1, 2, 0); -} else { - x_162 = x_161; -} -lean_ctor_set(x_162, 0, x_159); -lean_ctor_set(x_162, 1, x_160); -return x_162; -} -} -} -else -{ -lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; -lean_dec(x_117); -lean_dec_ref(x_110); -lean_dec(x_103); -lean_dec_ref(x_96); -lean_dec_ref(x_95); -lean_dec_ref(x_94); -lean_dec(x_93); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_163 = lean_ctor_get(x_125, 0); -lean_inc(x_163); -x_164 = lean_ctor_get(x_125, 1); -lean_inc(x_164); -if (lean_is_exclusive(x_125)) { - lean_ctor_release(x_125, 0); - lean_ctor_release(x_125, 1); - x_165 = x_125; -} else { - lean_dec_ref(x_125); - x_165 = lean_box(0); -} -if (lean_is_scalar(x_165)) { - x_166 = lean_alloc_ctor(1, 2, 0); -} else { - x_166 = x_165; -} -lean_ctor_set(x_166, 0, x_163); -lean_ctor_set(x_166, 1, x_164); -return x_166; -} -} -else -{ -lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; -lean_dec_ref(x_110); -lean_dec(x_103); -lean_dec_ref(x_96); -lean_dec_ref(x_95); -lean_dec_ref(x_94); -lean_dec(x_93); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_167 = lean_ctor_get(x_116, 0); -lean_inc(x_167); -x_168 = lean_ctor_get(x_116, 1); -lean_inc(x_168); -if (lean_is_exclusive(x_116)) { - lean_ctor_release(x_116, 0); - lean_ctor_release(x_116, 1); - x_169 = x_116; -} else { - lean_dec_ref(x_116); - x_169 = lean_box(0); -} -if (lean_is_scalar(x_169)) { - x_170 = lean_alloc_ctor(1, 2, 0); -} else { - x_170 = x_169; -} -lean_ctor_set(x_170, 0, x_167); -lean_ctor_set(x_170, 1, x_168); -return x_170; -} -} -else -{ -lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; -lean_dec_ref(x_96); -lean_dec_ref(x_95); -lean_dec_ref(x_94); -lean_dec(x_93); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_171 = lean_ctor_get(x_102, 0); -lean_inc(x_171); -x_172 = lean_ctor_get(x_102, 1); -lean_inc(x_172); -if (lean_is_exclusive(x_102)) { - lean_ctor_release(x_102, 0); - lean_ctor_release(x_102, 1); - x_173 = x_102; -} else { - lean_dec_ref(x_102); - x_173 = lean_box(0); -} -if (lean_is_scalar(x_173)) { - x_174 = lean_alloc_ctor(1, 2, 0); -} else { - x_174 = x_173; -} -lean_ctor_set(x_174, 0, x_171); -lean_ctor_set(x_174, 1, x_172); -return x_174; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = lean_apply_8(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10___redArg(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_10; lean_object* x_11; lean_object* x_12; -lean_inc_ref(x_2); -x_10 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10___redArg___lam__0___boxed), 11, 1); -lean_closure_set(x_10, 0, x_2); -lean_inc_ref(x_1); -x_11 = lean_apply_1(x_2, x_1); -x_12 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg(x_1, x_11, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___redArg___lam__0(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, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__5___lam__0(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, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; uint8_t x_11; @@ -20255,9 +19996,9 @@ x_12 = lean_ctor_get(x_10, 0); lean_dec(x_12); x_13 = lean_ctor_get(x_7, 5); x_14 = l_Lean_SourceInfo_fromRef(x_13, x_1); -x_15 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__6; -x_16 = l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__2; -x_17 = l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__3; +x_15 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__4; +x_16 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__6; +x_17 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14___closed__0; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); @@ -20276,9 +20017,9 @@ lean_inc(x_21); lean_dec(x_10); x_22 = lean_ctor_get(x_7, 5); x_23 = l_Lean_SourceInfo_fromRef(x_22, x_1); -x_24 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__6; -x_25 = l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__2; -x_26 = l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__3; +x_24 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__4; +x_25 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__6; +x_26 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14___closed__0; lean_inc(x_23); x_27 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_27, 0, x_23); @@ -20293,15 +20034,15 @@ return x_30; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__5___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___redArg(x_3, x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__5(x_3, x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___redArg(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; uint8_t x_12; @@ -20317,7 +20058,7 @@ else { lean_object* x_14; lean_object* x_15; lean_object* x_16; x_14 = lean_box(x_12); -x_15 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___redArg___lam__0___boxed), 9, 1); +x_15 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__5___lam__0___boxed), 9, 1); lean_closure_set(x_15, 0, x_14); lean_inc(x_9); lean_inc_ref(x_8); @@ -20335,10 +20076,10 @@ lean_inc(x_18); lean_dec_ref(x_16); x_19 = lean_unsigned_to_nat(1u); x_20 = lean_nat_sub(x_2, x_19); -x_21 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___redArg___lam__1___boxed), 10, 2); +x_21 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__5___lam__1___boxed), 10, 2); lean_closure_set(x_21, 0, x_20); lean_closure_set(x_21, 1, x_3); -x_22 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg(x_1, x_17, x_21, x_4, x_5, x_6, x_7, x_8, x_9, x_18); +x_22 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3(x_1, x_17, x_21, x_4, x_5, x_6, x_7, x_8, x_9, x_18); return x_22; } else @@ -20374,22 +20115,14 @@ return x_26; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__0(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__0(lean_object* x_1) { _start: { lean_inc_ref(x_1); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__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_10; @@ -20397,7 +20130,7 @@ x_10 = l_Lean_Elab_Tactic_Do_SpecAttr_SpecProof_instantiate(x_1, x_5, x_6, x_7, return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; @@ -20405,7 +20138,7 @@ x_10 = l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(x_1, x_6, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__4(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; @@ -20413,7 +20146,7 @@ x_11 = l_Lean_Meta_isExprDefEqGuarded(x_1, x_2, x_6, x_7, x_8, x_9, x_10); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__2(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; @@ -20421,37 +20154,25 @@ x_11 = l_Lean_Meta_isExprDefEqGuarded(x_1, x_2, x_6, x_7, x_8, x_9, x_10); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_apply_1(x_3, x_1); x_13 = lean_apply_1(x_2, x_12); -x_14 = lean_box(0); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_14); -lean_ctor_set(x_15, 1, x_13); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_15); -lean_ctor_set(x_16, 1, x_11); -return x_16; +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_11); +return x_14; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__6___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("trans", 5, 5); -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__6(lean_object* x_1, lean_object* x_2, lean_object* 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) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__6(lean_object* x_1, lean_object* x_2, lean_object* 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_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_12 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__1; -x_13 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__12; -x_14 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__6___closed__0; +x_12 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__2; +x_13 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__1; +x_14 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__2; x_15 = l_Lean_Name_mkStr5(x_1, x_2, x_12, x_13, x_14); x_16 = l_Lean_Expr_const___override(x_15, x_3); x_17 = l_Lean_Expr_betaRev(x_4, x_5, x_6, x_6); @@ -20461,7 +20182,7 @@ x_20 = l_Lean_mkApp6(x_16, x_9, x_10, x_17, x_18, x_11, x_19); return x_20; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__7___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__7___closed__0() { _start: { lean_object* x_1; @@ -20469,7 +20190,7 @@ x_1 = lean_mk_string_unchecked("mono", 4, 4); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__7(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t 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, 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, lean_object* x_26, lean_object* x_27) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__7(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t 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, 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, lean_object* x_26, lean_object* x_27) { _start: { lean_object* x_28; @@ -20489,23 +20210,23 @@ lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); -goto block_55; +goto block_69; } else { lean_dec_ref(x_2); if (x_17 == 0) { -lean_object* x_56; lean_object* x_57; -x_56 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__5; -x_57 = l_Lean_Name_append(x_18, x_56); -x_28 = x_57; -goto block_52; +lean_object* x_70; lean_object* x_71; +x_70 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__6; +x_71 = l_Lean_Name_append(x_18, x_70); +x_28 = x_71; +goto block_66; } else { x_28 = x_18; -goto block_52; +goto block_66; } } } @@ -20523,9 +20244,9 @@ lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); -goto block_55; +goto block_69; } -block_52: +block_66: { lean_object* x_29; lean_inc(x_26); @@ -20538,26 +20259,27 @@ lean_inc_ref(x_8); lean_inc_ref(x_7); lean_inc_ref(x_6); lean_inc_ref(x_5); -x_29 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3(x_5, x_6, x_7, x_8, x_28, x_21, x_22, x_23, x_24, x_25, x_26, x_27); +x_29 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0(x_5, x_6, x_7, x_8, x_28, x_21, x_22, x_23, x_24, x_25, x_26, x_27); if (lean_obj_tag(x_29) == 0) { -lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); -x_31 = lean_ctor_get(x_29, 1); -lean_inc(x_31); -lean_dec_ref(x_29); -x_32 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__4; -x_33 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__5; +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; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_31 = lean_ctor_get(x_29, 0); +x_32 = lean_ctor_get(x_29, 1); +x_33 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__0; +x_34 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__1; lean_inc_ref(x_10); lean_inc_ref(x_9); -x_34 = l_Lean_Name_mkStr4(x_9, x_10, x_32, x_33); -x_35 = lean_box(0); -x_36 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_36, 0, x_11); -lean_ctor_set(x_36, 1, x_35); -lean_inc_ref(x_36); -x_37 = l_Lean_Expr_const___override(x_34, x_36); +x_35 = l_Lean_Name_mkStr4(x_9, x_10, x_33, x_34); +x_36 = lean_box(0); +lean_ctor_set_tag(x_29, 1); +lean_ctor_set(x_29, 1, x_36); +lean_ctor_set(x_29, 0, x_11); +lean_inc_ref(x_29); +x_37 = l_Lean_Expr_const___override(x_35, x_29); lean_inc_ref(x_7); lean_inc_ref(x_12); lean_inc_ref(x_5); @@ -20569,18 +20291,18 @@ lean_inc_ref(x_12); lean_inc_ref(x_5); lean_inc_ref(x_6); x_39 = l_Lean_mkApp4(x_37, x_6, x_5, x_12, x_8); -x_40 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__7___closed__0; +x_40 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__7___closed__0; lean_inc_ref(x_10); lean_inc_ref(x_9); -x_41 = l_Lean_Name_mkStr4(x_9, x_10, x_32, x_40); -lean_inc_ref(x_36); -x_42 = l_Lean_Expr_const___override(x_41, x_36); -x_43 = l_Lean_mkApp6(x_42, x_6, x_5, x_12, x_7, x_8, x_30); +x_41 = l_Lean_Name_mkStr4(x_9, x_10, x_33, x_40); +lean_inc_ref(x_29); +x_42 = l_Lean_Expr_const___override(x_41, x_29); +x_43 = l_Lean_mkApp6(x_42, x_6, x_5, x_12, x_7, x_8, x_31); x_44 = lean_box(x_14); -x_45 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__6___boxed), 11, 10); +x_45 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__6___boxed), 11, 10); lean_closure_set(x_45, 0, x_9); lean_closure_set(x_45, 1, x_10); -lean_closure_set(x_45, 2, x_36); +lean_closure_set(x_45, 2, x_29); lean_closure_set(x_45, 3, x_38); lean_closure_set(x_45, 4, x_13); lean_closure_set(x_45, 5, x_44); @@ -20589,7 +20311,7 @@ lean_closure_set(x_45, 7, x_43); lean_closure_set(x_45, 8, x_15); lean_closure_set(x_45, 9, x_16); x_46 = lean_box(0); -x_47 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__5(x_1, x_19, x_45, x_46, x_21, x_22, x_23, x_24, x_25, x_26, x_31); +x_47 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__5(x_1, x_19, x_45, x_46, x_21, x_22, x_23, x_24, x_25, x_26, x_32); lean_dec(x_26); lean_dec_ref(x_25); lean_dec(x_24); @@ -20600,7 +20322,66 @@ return x_47; } else { -uint8_t x_48; +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_48 = lean_ctor_get(x_29, 0); +x_49 = lean_ctor_get(x_29, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_29); +x_50 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__0; +x_51 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__1; +lean_inc_ref(x_10); +lean_inc_ref(x_9); +x_52 = l_Lean_Name_mkStr4(x_9, x_10, x_50, x_51); +x_53 = lean_box(0); +x_54 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_54, 0, x_11); +lean_ctor_set(x_54, 1, x_53); +lean_inc_ref(x_54); +x_55 = l_Lean_Expr_const___override(x_52, x_54); +lean_inc_ref(x_7); +lean_inc_ref(x_12); +lean_inc_ref(x_5); +lean_inc_ref(x_6); +lean_inc_ref(x_55); +x_56 = l_Lean_mkApp4(x_55, x_6, x_5, x_12, x_7); +lean_inc_ref(x_8); +lean_inc_ref(x_12); +lean_inc_ref(x_5); +lean_inc_ref(x_6); +x_57 = l_Lean_mkApp4(x_55, x_6, x_5, x_12, x_8); +x_58 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__7___closed__0; +lean_inc_ref(x_10); +lean_inc_ref(x_9); +x_59 = l_Lean_Name_mkStr4(x_9, x_10, x_50, x_58); +lean_inc_ref(x_54); +x_60 = l_Lean_Expr_const___override(x_59, x_54); +x_61 = l_Lean_mkApp6(x_60, x_6, x_5, x_12, x_7, x_8, x_48); +x_62 = lean_box(x_14); +x_63 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__6___boxed), 11, 10); +lean_closure_set(x_63, 0, x_9); +lean_closure_set(x_63, 1, x_10); +lean_closure_set(x_63, 2, x_54); +lean_closure_set(x_63, 3, x_56); +lean_closure_set(x_63, 4, x_13); +lean_closure_set(x_63, 5, x_62); +lean_closure_set(x_63, 6, x_57); +lean_closure_set(x_63, 7, x_61); +lean_closure_set(x_63, 8, x_15); +lean_closure_set(x_63, 9, x_16); +x_64 = lean_box(0); +x_65 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__5(x_1, x_19, x_63, x_64, x_21, x_22, x_23, x_24, x_25, x_26, x_49); +lean_dec(x_26); +lean_dec_ref(x_25); +lean_dec(x_24); +lean_dec_ref(x_23); +lean_dec(x_22); +lean_dec_ref(x_21); +return x_65; +} +} +else +{ lean_dec(x_26); lean_dec_ref(x_25); lean_dec(x_24); @@ -20620,42 +20401,25 @@ lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_1); -x_48 = !lean_is_exclusive(x_29); -if (x_48 == 0) -{ return x_29; } -else +} +block_69: { -lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_49 = lean_ctor_get(x_29, 0); -x_50 = lean_ctor_get(x_29, 1); -lean_inc(x_50); -lean_inc(x_49); -lean_dec(x_29); -x_51 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_51, 0, x_49); -lean_ctor_set(x_51, 1, x_50); -return x_51; -} -} -} -block_55: -{ -lean_object* x_53; lean_object* x_54; -x_53 = lean_box(0); -x_54 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__5(x_1, x_19, x_2, x_53, x_21, x_22, x_23, x_24, x_25, x_26, x_27); +lean_object* x_67; lean_object* x_68; +x_67 = lean_box(0); +x_68 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__5(x_1, x_19, x_2, x_67, x_21, x_22, x_23, x_24, x_25, x_26, x_27); lean_dec(x_26); lean_dec_ref(x_25); lean_dec(x_24); lean_dec_ref(x_23); lean_dec(x_22); lean_dec_ref(x_21); -return x_54; +return x_68; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__8(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26) { _start: { lean_object* x_27; @@ -20691,7 +20455,7 @@ x_33 = l_Lean_Meta_Context_config(x_22); x_34 = !lean_is_exclusive(x_33); if (x_34 == 0) { -uint8_t 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; uint8_t x_42; uint8_t x_43; uint64_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; +uint8_t 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; uint8_t x_42; uint8_t x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; uint64_t x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; x_35 = lean_ctor_get_uint8(x_22, sizeof(void*)*7); x_36 = lean_ctor_get(x_22, 1); lean_inc(x_36); @@ -20707,121 +20471,93 @@ x_41 = lean_ctor_get(x_22, 6); lean_inc(x_41); x_42 = lean_ctor_get_uint8(x_22, sizeof(void*)*7 + 1); x_43 = lean_ctor_get_uint8(x_22, sizeof(void*)*7 + 2); -lean_ctor_set_uint8(x_33, 7, x_3); -x_44 = l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(x_33); -x_45 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_45, 0, x_33); -lean_ctor_set_uint64(x_45, sizeof(void*)*1, x_44); -lean_inc(x_41); -lean_inc(x_40); -lean_inc(x_39); -lean_inc_ref(x_38); -lean_inc_ref(x_37); -lean_inc(x_36); -x_46 = lean_alloc_ctor(0, 7, 3); -lean_ctor_set(x_46, 0, x_45); -lean_ctor_set(x_46, 1, x_36); -lean_ctor_set(x_46, 2, x_37); -lean_ctor_set(x_46, 3, x_38); -lean_ctor_set(x_46, 4, x_39); -lean_ctor_set(x_46, 5, x_40); -lean_ctor_set(x_46, 6, x_41); -lean_ctor_set_uint8(x_46, sizeof(void*)*7, x_35); -lean_ctor_set_uint8(x_46, sizeof(void*)*7 + 1, x_42); -lean_ctor_set_uint8(x_46, sizeof(void*)*7 + 2, x_43); -x_47 = l_Lean_Meta_Context_config(x_46); -lean_dec_ref(x_46); -x_48 = !lean_is_exclusive(x_47); -if (x_48 == 0) -{ -uint8_t x_49; lean_object* x_50; lean_object* x_51; uint64_t x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_49 = 0; -x_50 = l_Lean_Expr_betaRev(x_28, x_4, x_49, x_49); -lean_inc_ref(x_5); -lean_inc_ref(x_50); -x_51 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__4___boxed), 10, 2); -lean_closure_set(x_51, 0, x_50); -lean_closure_set(x_51, 1, x_5); -lean_ctor_set_uint8(x_47, 0, x_3); -lean_ctor_set_uint8(x_47, 1, x_3); -lean_ctor_set_uint8(x_47, 2, x_3); -lean_ctor_set_uint8(x_47, 3, x_3); -x_52 = l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(x_47); -x_53 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_53, 0, x_47); -lean_ctor_set_uint64(x_53, sizeof(void*)*1, x_52); -x_54 = lean_alloc_ctor(0, 7, 3); -lean_ctor_set(x_54, 0, x_53); -lean_ctor_set(x_54, 1, x_36); -lean_ctor_set(x_54, 2, x_37); -lean_ctor_set(x_54, 3, x_38); -lean_ctor_set(x_54, 4, x_39); -lean_ctor_set(x_54, 5, x_40); -lean_ctor_set(x_54, 6, x_41); -lean_ctor_set_uint8(x_54, sizeof(void*)*7, x_35); -lean_ctor_set_uint8(x_54, sizeof(void*)*7 + 1, x_42); -lean_ctor_set_uint8(x_54, sizeof(void*)*7 + 2, x_43); +x_44 = 0; +x_45 = l_Lean_Expr_betaRev(x_28, x_3, x_44, x_44); +lean_inc_ref(x_4); +lean_inc_ref(x_45); +x_46 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__4___boxed), 10, 2); +lean_closure_set(x_46, 0, x_45); +lean_closure_set(x_46, 1, x_4); +lean_ctor_set_uint8(x_33, 0, x_5); +lean_ctor_set_uint8(x_33, 1, x_5); +lean_ctor_set_uint8(x_33, 2, x_5); +lean_ctor_set_uint8(x_33, 3, x_5); +x_47 = l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(x_33); +x_48 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_48, 0, x_33); +lean_ctor_set_uint64(x_48, sizeof(void*)*1, x_47); +x_49 = lean_alloc_ctor(0, 7, 3); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_49, 1, x_36); +lean_ctor_set(x_49, 2, x_37); +lean_ctor_set(x_49, 3, x_38); +lean_ctor_set(x_49, 4, x_39); +lean_ctor_set(x_49, 5, x_40); +lean_ctor_set(x_49, 6, x_41); +lean_ctor_set_uint8(x_49, sizeof(void*)*7, x_35); +lean_ctor_set_uint8(x_49, sizeof(void*)*7 + 1, x_42); +lean_ctor_set_uint8(x_49, sizeof(void*)*7 + 2, x_43); lean_inc(x_25); lean_inc_ref(x_24); lean_inc(x_23); -lean_inc_ref(x_54); +lean_inc_ref(x_49); lean_inc_ref(x_20); -x_55 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_51, x_20, x_21, x_54, x_23, x_24, x_25, x_32); -if (lean_obj_tag(x_55) == 0) +x_50 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_46, x_20, x_21, x_49, x_23, x_24, x_25, x_32); +if (lean_obj_tag(x_50) == 0) { -lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_56 = lean_ctor_get(x_55, 0); -lean_inc(x_56); -x_57 = lean_ctor_get(x_55, 1); -lean_inc(x_57); -lean_dec_ref(x_55); +lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_51 = lean_ctor_get(x_50, 0); +lean_inc(x_51); +x_52 = lean_ctor_get(x_50, 1); +lean_inc(x_52); +lean_dec_ref(x_50); lean_inc_ref(x_6); lean_inc(x_31); -x_58 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__2___boxed), 10, 2); -lean_closure_set(x_58, 0, x_31); -lean_closure_set(x_58, 1, x_6); +x_53 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__2___boxed), 10, 2); +lean_closure_set(x_53, 0, x_31); +lean_closure_set(x_53, 1, x_6); lean_inc(x_25); lean_inc_ref(x_24); lean_inc(x_23); lean_inc_ref(x_20); -x_59 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_58, x_20, x_21, x_54, x_23, x_24, x_25, x_57); -if (lean_obj_tag(x_59) == 0) +x_54 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_53, x_20, x_21, x_49, x_23, x_24, x_25, x_52); +if (lean_obj_tag(x_54) == 0) { -lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; uint8_t x_90; -x_60 = lean_ctor_get(x_59, 0); -lean_inc(x_60); -x_61 = lean_ctor_get(x_59, 1); -lean_inc(x_61); -lean_dec_ref(x_59); -x_62 = l_Lean_Expr_betaRev(x_7, x_4, x_49, x_49); -x_90 = lean_unbox(x_56); -if (x_90 == 0) +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_95; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +lean_dec_ref(x_54); +x_57 = l_Lean_Expr_betaRev(x_7, x_3, x_44, x_44); +x_95 = lean_unbox(x_51); +if (x_95 == 0) { -if (x_3 == 0) +if (x_5 == 0) { lean_dec_ref(x_18); lean_dec_ref(x_17); -lean_dec_ref(x_5); +lean_dec_ref(x_4); +goto block_94; +} +else +{ +uint8_t x_96; +x_96 = lean_unbox(x_55); +if (x_96 == 0) +{ +lean_object* x_97; +lean_inc(x_16); +x_97 = lean_apply_1(x_18, x_16); +x_58 = x_97; goto block_89; } else { -uint8_t x_91; -x_91 = lean_unbox(x_60); -if (x_91 == 0) -{ -lean_object* x_92; -lean_inc(x_16); -x_92 = lean_apply_1(x_18, x_16); -x_63 = x_92; -goto block_84; -} -else -{ lean_dec_ref(x_18); lean_inc(x_16); -x_63 = x_16; -goto block_84; +x_58 = x_16; +goto block_89; } } } @@ -20829,340 +20565,376 @@ else { lean_dec_ref(x_18); lean_dec_ref(x_17); -lean_dec_ref(x_5); -goto block_89; +lean_dec_ref(x_4); +goto block_94; } -block_84: +block_89: { -lean_object* x_64; lean_object* x_65; -lean_inc_ref(x_50); -lean_inc_ref(x_5); +lean_object* x_59; lean_object* x_60; +lean_inc_ref(x_45); +lean_inc_ref(x_4); lean_inc_ref(x_15); lean_inc(x_13); -x_64 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_64, 0, x_13); -lean_ctor_set(x_64, 1, x_15); -lean_ctor_set(x_64, 2, x_5); -lean_ctor_set(x_64, 3, x_50); +x_59 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_59, 0, x_13); +lean_ctor_set(x_59, 1, x_15); +lean_ctor_set(x_59, 2, x_4); +lean_ctor_set(x_59, 3, x_45); lean_inc(x_25); lean_inc_ref(x_24); lean_inc(x_23); lean_inc_ref(x_22); lean_inc_ref(x_20); -x_65 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7(x_64, x_63, x_20, x_21, x_22, x_23, x_24, x_25, x_61); -if (lean_obj_tag(x_65) == 0) +x_60 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2(x_59, x_58, x_20, x_21, x_22, x_23, x_24, x_25, x_56); +if (lean_obj_tag(x_60) == 0) { -lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; uint8_t x_77; uint8_t x_78; lean_object* x_79; -x_66 = lean_ctor_get(x_65, 0); -lean_inc(x_66); -x_67 = lean_ctor_get(x_65, 1); -lean_inc(x_67); -lean_dec_ref(x_65); -x_68 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__1; -x_69 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__12; -x_70 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__6___closed__0; +uint8_t x_61; +x_61 = !lean_is_exclusive(x_60); +if (x_61 == 0) +{ +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; uint8_t x_72; uint8_t x_73; lean_object* x_74; +x_62 = lean_ctor_get(x_60, 0); +x_63 = lean_ctor_get(x_60, 1); +x_64 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__2; +x_65 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__1; +x_66 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__2; lean_inc_ref(x_12); lean_inc_ref(x_11); -x_71 = l_Lean_Name_mkStr5(x_11, x_12, x_68, x_69, x_70); -x_72 = lean_box(0); +x_67 = l_Lean_Name_mkStr5(x_11, x_12, x_64, x_65, x_66); +x_68 = lean_box(0); lean_inc(x_13); -x_73 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_73, 0, x_13); -lean_ctor_set(x_73, 1, x_72); -x_74 = l_Lean_Expr_const___override(x_71, x_73); -lean_inc_ref(x_50); +lean_ctor_set_tag(x_60, 1); +lean_ctor_set(x_60, 1, x_68); +lean_ctor_set(x_60, 0, x_13); +x_69 = l_Lean_Expr_const___override(x_67, x_60); +lean_inc_ref(x_45); lean_inc_ref(x_15); -x_75 = lean_alloc_closure((void*)(l_Lean_mkApp6), 7, 6); -lean_closure_set(x_75, 0, x_74); -lean_closure_set(x_75, 1, x_15); -lean_closure_set(x_75, 2, x_5); -lean_closure_set(x_75, 3, x_50); -lean_closure_set(x_75, 4, x_17); -lean_closure_set(x_75, 5, x_66); -x_76 = lean_box(0); -x_77 = lean_unbox(x_60); -lean_dec(x_60); -x_78 = lean_unbox(x_56); -lean_dec(x_56); -x_79 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__7(x_62, x_8, x_77, x_3, x_9, x_10, x_31, x_6, x_11, x_12, x_13, x_14, x_4, x_49, x_15, x_50, x_78, x_16, x_75, x_76, x_20, x_21, x_22, x_23, x_24, x_25, x_67); -return x_79; +x_70 = lean_alloc_closure((void*)(l_Lean_mkApp6), 7, 6); +lean_closure_set(x_70, 0, x_69); +lean_closure_set(x_70, 1, x_15); +lean_closure_set(x_70, 2, x_4); +lean_closure_set(x_70, 3, x_45); +lean_closure_set(x_70, 4, x_17); +lean_closure_set(x_70, 5, x_62); +x_71 = lean_box(0); +x_72 = lean_unbox(x_55); +lean_dec(x_55); +x_73 = lean_unbox(x_51); +lean_dec(x_51); +x_74 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__7(x_57, x_8, x_72, x_5, x_9, x_10, x_31, x_6, x_11, x_12, x_13, x_14, x_3, x_44, x_15, x_45, x_73, x_16, x_70, x_71, x_20, x_21, x_22, x_23, x_24, x_25, x_63); +return x_74; } else { -uint8_t x_80; -lean_dec_ref(x_62); +lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; uint8_t x_86; uint8_t x_87; lean_object* x_88; +x_75 = lean_ctor_get(x_60, 0); +x_76 = lean_ctor_get(x_60, 1); +lean_inc(x_76); +lean_inc(x_75); lean_dec(x_60); -lean_dec(x_56); -lean_dec_ref(x_50); -lean_dec(x_31); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec(x_21); -lean_dec_ref(x_20); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_80 = !lean_is_exclusive(x_65); -if (x_80 == 0) -{ -return x_65; -} -else -{ -lean_object* x_81; lean_object* x_82; lean_object* x_83; -x_81 = lean_ctor_get(x_65, 0); -x_82 = lean_ctor_get(x_65, 1); -lean_inc(x_82); -lean_inc(x_81); -lean_dec(x_65); -x_83 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_83, 0, x_81); -lean_ctor_set(x_83, 1, x_82); -return x_83; -} -} -} -block_89: -{ -lean_object* x_85; uint8_t x_86; uint8_t x_87; lean_object* x_88; +x_77 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__2; +x_78 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__1; +x_79 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__2; +lean_inc_ref(x_12); +lean_inc_ref(x_11); +x_80 = l_Lean_Name_mkStr5(x_11, x_12, x_77, x_78, x_79); +x_81 = lean_box(0); +lean_inc(x_13); +x_82 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_82, 0, x_13); +lean_ctor_set(x_82, 1, x_81); +x_83 = l_Lean_Expr_const___override(x_80, x_82); +lean_inc_ref(x_45); +lean_inc_ref(x_15); +x_84 = lean_alloc_closure((void*)(l_Lean_mkApp6), 7, 6); +lean_closure_set(x_84, 0, x_83); +lean_closure_set(x_84, 1, x_15); +lean_closure_set(x_84, 2, x_4); +lean_closure_set(x_84, 3, x_45); +lean_closure_set(x_84, 4, x_17); +lean_closure_set(x_84, 5, x_75); x_85 = lean_box(0); -x_86 = lean_unbox(x_60); -lean_dec(x_60); -x_87 = lean_unbox(x_56); -lean_dec(x_56); -lean_inc_ref(x_8); -x_88 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__7(x_62, x_8, x_86, x_3, x_9, x_10, x_31, x_6, x_11, x_12, x_13, x_14, x_4, x_49, x_15, x_50, x_87, x_16, x_8, x_85, x_20, x_21, x_22, x_23, x_24, x_25, x_61); +x_86 = lean_unbox(x_55); +lean_dec(x_55); +x_87 = lean_unbox(x_51); +lean_dec(x_51); +x_88 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__7(x_57, x_8, x_86, x_5, x_9, x_10, x_31, x_6, x_11, x_12, x_13, x_14, x_3, x_44, x_15, x_45, x_87, x_16, x_84, x_85, x_20, x_21, x_22, x_23, x_24, x_25, x_76); return x_88; } } else { -uint8_t x_93; -lean_dec(x_56); -lean_dec_ref(x_50); -lean_dec(x_31); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec(x_21); -lean_dec_ref(x_20); -lean_dec_ref(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_93 = !lean_is_exclusive(x_59); -if (x_93 == 0) -{ -return x_59; -} -else -{ -lean_object* x_94; lean_object* x_95; lean_object* x_96; -x_94 = lean_ctor_get(x_59, 0); -x_95 = lean_ctor_get(x_59, 1); -lean_inc(x_95); -lean_inc(x_94); -lean_dec(x_59); -x_96 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_96, 0, x_94); -lean_ctor_set(x_96, 1, x_95); -return x_96; -} -} -} -else -{ -uint8_t x_97; -lean_dec_ref(x_54); -lean_dec_ref(x_50); -lean_dec(x_31); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec(x_21); -lean_dec_ref(x_20); -lean_dec_ref(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_97 = !lean_is_exclusive(x_55); -if (x_97 == 0) -{ -return x_55; -} -else -{ -lean_object* x_98; lean_object* x_99; lean_object* x_100; -x_98 = lean_ctor_get(x_55, 0); -x_99 = lean_ctor_get(x_55, 1); -lean_inc(x_99); -lean_inc(x_98); +lean_dec_ref(x_57); lean_dec(x_55); -x_100 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_100, 0, x_98); -lean_ctor_set(x_100, 1, x_99); -return x_100; +lean_dec(x_51); +lean_dec_ref(x_45); +lean_dec(x_31); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec(x_23); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec_ref(x_17); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +return x_60; +} +} +block_94: +{ +lean_object* x_90; uint8_t x_91; uint8_t x_92; lean_object* x_93; +x_90 = lean_box(0); +x_91 = lean_unbox(x_55); +lean_dec(x_55); +x_92 = lean_unbox(x_51); +lean_dec(x_51); +lean_inc_ref(x_8); +x_93 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__7(x_57, x_8, x_91, x_5, x_9, x_10, x_31, x_6, x_11, x_12, x_13, x_14, x_3, x_44, x_15, x_45, x_92, x_16, x_8, x_90, x_20, x_21, x_22, x_23, x_24, x_25, x_56); +return x_93; +} +} +else +{ +uint8_t x_98; +lean_dec(x_51); +lean_dec_ref(x_45); +lean_dec(x_31); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec(x_23); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec_ref(x_18); +lean_dec_ref(x_17); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_98 = !lean_is_exclusive(x_54); +if (x_98 == 0) +{ +return x_54; +} +else +{ +lean_object* x_99; lean_object* x_100; lean_object* x_101; +x_99 = lean_ctor_get(x_54, 0); +x_100 = lean_ctor_get(x_54, 1); +lean_inc(x_100); +lean_inc(x_99); +lean_dec(x_54); +x_101 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_101, 0, x_99); +lean_ctor_set(x_101, 1, x_100); +return x_101; } } } else { -uint8_t x_101; uint8_t x_102; uint8_t x_103; uint8_t x_104; uint8_t x_105; uint8_t x_106; uint8_t x_107; uint8_t x_108; uint8_t x_109; uint8_t x_110; uint8_t x_111; uint8_t x_112; uint8_t x_113; uint8_t x_114; uint8_t x_115; uint8_t x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; uint64_t x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; -x_101 = lean_ctor_get_uint8(x_47, 4); -x_102 = lean_ctor_get_uint8(x_47, 5); -x_103 = lean_ctor_get_uint8(x_47, 6); -x_104 = lean_ctor_get_uint8(x_47, 7); -x_105 = lean_ctor_get_uint8(x_47, 8); -x_106 = lean_ctor_get_uint8(x_47, 9); -x_107 = lean_ctor_get_uint8(x_47, 10); -x_108 = lean_ctor_get_uint8(x_47, 11); -x_109 = lean_ctor_get_uint8(x_47, 12); -x_110 = lean_ctor_get_uint8(x_47, 13); -x_111 = lean_ctor_get_uint8(x_47, 14); -x_112 = lean_ctor_get_uint8(x_47, 15); -x_113 = lean_ctor_get_uint8(x_47, 16); -x_114 = lean_ctor_get_uint8(x_47, 17); -x_115 = lean_ctor_get_uint8(x_47, 18); -lean_dec(x_47); -x_116 = 0; -x_117 = l_Lean_Expr_betaRev(x_28, x_4, x_116, x_116); -lean_inc_ref(x_5); -lean_inc_ref(x_117); -x_118 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__4___boxed), 10, 2); -lean_closure_set(x_118, 0, x_117); -lean_closure_set(x_118, 1, x_5); -x_119 = lean_alloc_ctor(0, 0, 19); -lean_ctor_set_uint8(x_119, 0, x_3); -lean_ctor_set_uint8(x_119, 1, x_3); -lean_ctor_set_uint8(x_119, 2, x_3); -lean_ctor_set_uint8(x_119, 3, x_3); -lean_ctor_set_uint8(x_119, 4, x_101); -lean_ctor_set_uint8(x_119, 5, x_102); -lean_ctor_set_uint8(x_119, 6, x_103); -lean_ctor_set_uint8(x_119, 7, x_104); -lean_ctor_set_uint8(x_119, 8, x_105); -lean_ctor_set_uint8(x_119, 9, x_106); -lean_ctor_set_uint8(x_119, 10, x_107); -lean_ctor_set_uint8(x_119, 11, x_108); -lean_ctor_set_uint8(x_119, 12, x_109); -lean_ctor_set_uint8(x_119, 13, x_110); -lean_ctor_set_uint8(x_119, 14, x_111); -lean_ctor_set_uint8(x_119, 15, x_112); -lean_ctor_set_uint8(x_119, 16, x_113); -lean_ctor_set_uint8(x_119, 17, x_114); -lean_ctor_set_uint8(x_119, 18, x_115); -x_120 = l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(x_119); -x_121 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_121, 0, x_119); -lean_ctor_set_uint64(x_121, sizeof(void*)*1, x_120); -x_122 = lean_alloc_ctor(0, 7, 3); -lean_ctor_set(x_122, 0, x_121); -lean_ctor_set(x_122, 1, x_36); -lean_ctor_set(x_122, 2, x_37); -lean_ctor_set(x_122, 3, x_38); -lean_ctor_set(x_122, 4, x_39); -lean_ctor_set(x_122, 5, x_40); -lean_ctor_set(x_122, 6, x_41); -lean_ctor_set_uint8(x_122, sizeof(void*)*7, x_35); -lean_ctor_set_uint8(x_122, sizeof(void*)*7 + 1, x_42); -lean_ctor_set_uint8(x_122, sizeof(void*)*7 + 2, x_43); +uint8_t x_102; +lean_dec_ref(x_49); +lean_dec_ref(x_45); +lean_dec(x_31); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec(x_23); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec_ref(x_18); +lean_dec_ref(x_17); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_102 = !lean_is_exclusive(x_50); +if (x_102 == 0) +{ +return x_50; +} +else +{ +lean_object* x_103; lean_object* x_104; lean_object* x_105; +x_103 = lean_ctor_get(x_50, 0); +x_104 = lean_ctor_get(x_50, 1); +lean_inc(x_104); +lean_inc(x_103); +lean_dec(x_50); +x_105 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_105, 0, x_103); +lean_ctor_set(x_105, 1, x_104); +return x_105; +} +} +} +else +{ +uint8_t x_106; uint8_t x_107; uint8_t x_108; uint8_t x_109; uint8_t x_110; uint8_t x_111; uint8_t x_112; uint8_t x_113; uint8_t x_114; uint8_t x_115; uint8_t x_116; uint8_t x_117; uint8_t x_118; uint8_t x_119; uint8_t x_120; uint8_t 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; uint8_t x_128; uint8_t x_129; uint8_t x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; uint64_t x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; +x_106 = lean_ctor_get_uint8(x_33, 4); +x_107 = lean_ctor_get_uint8(x_33, 5); +x_108 = lean_ctor_get_uint8(x_33, 6); +x_109 = lean_ctor_get_uint8(x_33, 7); +x_110 = lean_ctor_get_uint8(x_33, 8); +x_111 = lean_ctor_get_uint8(x_33, 9); +x_112 = lean_ctor_get_uint8(x_33, 10); +x_113 = lean_ctor_get_uint8(x_33, 11); +x_114 = lean_ctor_get_uint8(x_33, 12); +x_115 = lean_ctor_get_uint8(x_33, 13); +x_116 = lean_ctor_get_uint8(x_33, 14); +x_117 = lean_ctor_get_uint8(x_33, 15); +x_118 = lean_ctor_get_uint8(x_33, 16); +x_119 = lean_ctor_get_uint8(x_33, 17); +x_120 = lean_ctor_get_uint8(x_33, 18); +lean_dec(x_33); +x_121 = lean_ctor_get_uint8(x_22, sizeof(void*)*7); +x_122 = lean_ctor_get(x_22, 1); +lean_inc(x_122); +x_123 = lean_ctor_get(x_22, 2); +lean_inc_ref(x_123); +x_124 = lean_ctor_get(x_22, 3); +lean_inc_ref(x_124); +x_125 = lean_ctor_get(x_22, 4); +lean_inc(x_125); +x_126 = lean_ctor_get(x_22, 5); +lean_inc(x_126); +x_127 = lean_ctor_get(x_22, 6); +lean_inc(x_127); +x_128 = lean_ctor_get_uint8(x_22, sizeof(void*)*7 + 1); +x_129 = lean_ctor_get_uint8(x_22, sizeof(void*)*7 + 2); +x_130 = 0; +x_131 = l_Lean_Expr_betaRev(x_28, x_3, x_130, x_130); +lean_inc_ref(x_4); +lean_inc_ref(x_131); +x_132 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__4___boxed), 10, 2); +lean_closure_set(x_132, 0, x_131); +lean_closure_set(x_132, 1, x_4); +x_133 = lean_alloc_ctor(0, 0, 19); +lean_ctor_set_uint8(x_133, 0, x_5); +lean_ctor_set_uint8(x_133, 1, x_5); +lean_ctor_set_uint8(x_133, 2, x_5); +lean_ctor_set_uint8(x_133, 3, x_5); +lean_ctor_set_uint8(x_133, 4, x_106); +lean_ctor_set_uint8(x_133, 5, x_107); +lean_ctor_set_uint8(x_133, 6, x_108); +lean_ctor_set_uint8(x_133, 7, x_109); +lean_ctor_set_uint8(x_133, 8, x_110); +lean_ctor_set_uint8(x_133, 9, x_111); +lean_ctor_set_uint8(x_133, 10, x_112); +lean_ctor_set_uint8(x_133, 11, x_113); +lean_ctor_set_uint8(x_133, 12, x_114); +lean_ctor_set_uint8(x_133, 13, x_115); +lean_ctor_set_uint8(x_133, 14, x_116); +lean_ctor_set_uint8(x_133, 15, x_117); +lean_ctor_set_uint8(x_133, 16, x_118); +lean_ctor_set_uint8(x_133, 17, x_119); +lean_ctor_set_uint8(x_133, 18, x_120); +x_134 = l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(x_133); +x_135 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_135, 0, x_133); +lean_ctor_set_uint64(x_135, sizeof(void*)*1, x_134); +x_136 = lean_alloc_ctor(0, 7, 3); +lean_ctor_set(x_136, 0, x_135); +lean_ctor_set(x_136, 1, x_122); +lean_ctor_set(x_136, 2, x_123); +lean_ctor_set(x_136, 3, x_124); +lean_ctor_set(x_136, 4, x_125); +lean_ctor_set(x_136, 5, x_126); +lean_ctor_set(x_136, 6, x_127); +lean_ctor_set_uint8(x_136, sizeof(void*)*7, x_121); +lean_ctor_set_uint8(x_136, sizeof(void*)*7 + 1, x_128); +lean_ctor_set_uint8(x_136, sizeof(void*)*7 + 2, x_129); lean_inc(x_25); lean_inc_ref(x_24); lean_inc(x_23); -lean_inc_ref(x_122); +lean_inc_ref(x_136); lean_inc_ref(x_20); -x_123 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_118, x_20, x_21, x_122, x_23, x_24, x_25, x_32); -if (lean_obj_tag(x_123) == 0) +x_137 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_132, x_20, x_21, x_136, x_23, x_24, x_25, x_32); +if (lean_obj_tag(x_137) == 0) { -lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; -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_ref(x_123); +lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; +x_138 = lean_ctor_get(x_137, 0); +lean_inc(x_138); +x_139 = lean_ctor_get(x_137, 1); +lean_inc(x_139); +lean_dec_ref(x_137); lean_inc_ref(x_6); lean_inc(x_31); -x_126 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__2___boxed), 10, 2); -lean_closure_set(x_126, 0, x_31); -lean_closure_set(x_126, 1, x_6); +x_140 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__2___boxed), 10, 2); +lean_closure_set(x_140, 0, x_31); +lean_closure_set(x_140, 1, x_6); lean_inc(x_25); lean_inc_ref(x_24); lean_inc(x_23); lean_inc_ref(x_20); -x_127 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_126, x_20, x_21, x_122, x_23, x_24, x_25, x_125); -if (lean_obj_tag(x_127) == 0) +x_141 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_140, x_20, x_21, x_136, x_23, x_24, x_25, x_139); +if (lean_obj_tag(x_141) == 0) { -lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; uint8_t x_158; -x_128 = lean_ctor_get(x_127, 0); -lean_inc(x_128); -x_129 = lean_ctor_get(x_127, 1); -lean_inc(x_129); -lean_dec_ref(x_127); -x_130 = l_Lean_Expr_betaRev(x_7, x_4, x_116, x_116); -x_158 = lean_unbox(x_124); -if (x_158 == 0) +lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; uint8_t x_169; +x_142 = lean_ctor_get(x_141, 0); +lean_inc(x_142); +x_143 = lean_ctor_get(x_141, 1); +lean_inc(x_143); +lean_dec_ref(x_141); +x_144 = l_Lean_Expr_betaRev(x_7, x_3, x_130, x_130); +x_169 = lean_unbox(x_138); +if (x_169 == 0) { -if (x_3 == 0) +if (x_5 == 0) { lean_dec_ref(x_18); lean_dec_ref(x_17); -lean_dec_ref(x_5); -goto block_157; +lean_dec_ref(x_4); +goto block_168; } else { -uint8_t x_159; -x_159 = lean_unbox(x_128); -if (x_159 == 0) +uint8_t x_170; +x_170 = lean_unbox(x_142); +if (x_170 == 0) { -lean_object* x_160; +lean_object* x_171; lean_inc(x_16); -x_160 = lean_apply_1(x_18, x_16); -x_131 = x_160; -goto block_152; +x_171 = lean_apply_1(x_18, x_16); +x_145 = x_171; +goto block_163; } else { lean_dec_ref(x_18); lean_inc(x_16); -x_131 = x_16; -goto block_152; +x_145 = x_16; +goto block_163; } } } @@ -21170,505 +20942,82 @@ else { lean_dec_ref(x_18); lean_dec_ref(x_17); -lean_dec_ref(x_5); -goto block_157; +lean_dec_ref(x_4); +goto block_168; } -block_152: +block_163: { -lean_object* x_132; lean_object* x_133; -lean_inc_ref(x_117); -lean_inc_ref(x_5); +lean_object* x_146; lean_object* x_147; +lean_inc_ref(x_131); +lean_inc_ref(x_4); lean_inc_ref(x_15); lean_inc(x_13); -x_132 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_132, 0, x_13); -lean_ctor_set(x_132, 1, x_15); -lean_ctor_set(x_132, 2, x_5); -lean_ctor_set(x_132, 3, x_117); +x_146 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_146, 0, x_13); +lean_ctor_set(x_146, 1, x_15); +lean_ctor_set(x_146, 2, x_4); +lean_ctor_set(x_146, 3, x_131); lean_inc(x_25); lean_inc_ref(x_24); lean_inc(x_23); lean_inc_ref(x_22); lean_inc_ref(x_20); -x_133 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7(x_132, x_131, x_20, x_21, x_22, x_23, x_24, x_25, x_129); -if (lean_obj_tag(x_133) == 0) +x_147 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2(x_146, x_145, x_20, x_21, x_22, x_23, x_24, x_25, x_143); +if (lean_obj_tag(x_147) == 0) { -lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; uint8_t x_145; uint8_t x_146; lean_object* x_147; -x_134 = lean_ctor_get(x_133, 0); -lean_inc(x_134); -x_135 = lean_ctor_get(x_133, 1); -lean_inc(x_135); -lean_dec_ref(x_133); -x_136 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__1; -x_137 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__12; -x_138 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__6___closed__0; -lean_inc_ref(x_12); -lean_inc_ref(x_11); -x_139 = l_Lean_Name_mkStr5(x_11, x_12, x_136, x_137, x_138); -x_140 = lean_box(0); -lean_inc(x_13); -x_141 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_141, 0, x_13); -lean_ctor_set(x_141, 1, x_140); -x_142 = l_Lean_Expr_const___override(x_139, x_141); -lean_inc_ref(x_117); -lean_inc_ref(x_15); -x_143 = lean_alloc_closure((void*)(l_Lean_mkApp6), 7, 6); -lean_closure_set(x_143, 0, x_142); -lean_closure_set(x_143, 1, x_15); -lean_closure_set(x_143, 2, x_5); -lean_closure_set(x_143, 3, x_117); -lean_closure_set(x_143, 4, x_17); -lean_closure_set(x_143, 5, x_134); -x_144 = lean_box(0); -x_145 = lean_unbox(x_128); -lean_dec(x_128); -x_146 = lean_unbox(x_124); -lean_dec(x_124); -x_147 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__7(x_130, x_8, x_145, x_3, x_9, x_10, x_31, x_6, x_11, x_12, x_13, x_14, x_4, x_116, x_15, x_117, x_146, x_16, x_143, x_144, x_20, x_21, x_22, x_23, x_24, x_25, x_135); -return x_147; -} -else -{ -lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; -lean_dec_ref(x_130); -lean_dec(x_128); -lean_dec(x_124); -lean_dec_ref(x_117); -lean_dec(x_31); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec(x_21); -lean_dec_ref(x_20); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_148 = lean_ctor_get(x_133, 0); +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; uint8_t x_160; uint8_t x_161; lean_object* x_162; +x_148 = lean_ctor_get(x_147, 0); lean_inc(x_148); -x_149 = lean_ctor_get(x_133, 1); +x_149 = lean_ctor_get(x_147, 1); lean_inc(x_149); -if (lean_is_exclusive(x_133)) { - lean_ctor_release(x_133, 0); - lean_ctor_release(x_133, 1); - x_150 = x_133; +if (lean_is_exclusive(x_147)) { + lean_ctor_release(x_147, 0); + lean_ctor_release(x_147, 1); + x_150 = x_147; } else { - lean_dec_ref(x_133); + lean_dec_ref(x_147); x_150 = lean_box(0); } -if (lean_is_scalar(x_150)) { - x_151 = lean_alloc_ctor(1, 2, 0); -} else { - x_151 = x_150; -} -lean_ctor_set(x_151, 0, x_148); -lean_ctor_set(x_151, 1, x_149); -return x_151; -} -} -block_157: -{ -lean_object* x_153; uint8_t x_154; uint8_t x_155; lean_object* x_156; -x_153 = lean_box(0); -x_154 = lean_unbox(x_128); -lean_dec(x_128); -x_155 = lean_unbox(x_124); -lean_dec(x_124); -lean_inc_ref(x_8); -x_156 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__7(x_130, x_8, x_154, x_3, x_9, x_10, x_31, x_6, x_11, x_12, x_13, x_14, x_4, x_116, x_15, x_117, x_155, x_16, x_8, x_153, x_20, x_21, x_22, x_23, x_24, x_25, x_129); -return x_156; -} -} -else -{ -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; -lean_dec(x_124); -lean_dec_ref(x_117); -lean_dec(x_31); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec(x_21); -lean_dec_ref(x_20); -lean_dec_ref(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_161 = lean_ctor_get(x_127, 0); -lean_inc(x_161); -x_162 = lean_ctor_get(x_127, 1); -lean_inc(x_162); -if (lean_is_exclusive(x_127)) { - lean_ctor_release(x_127, 0); - lean_ctor_release(x_127, 1); - x_163 = x_127; -} else { - lean_dec_ref(x_127); - x_163 = lean_box(0); -} -if (lean_is_scalar(x_163)) { - x_164 = lean_alloc_ctor(1, 2, 0); -} else { - x_164 = x_163; -} -lean_ctor_set(x_164, 0, x_161); -lean_ctor_set(x_164, 1, x_162); -return x_164; -} -} -else -{ -lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; -lean_dec_ref(x_122); -lean_dec_ref(x_117); -lean_dec(x_31); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec(x_21); -lean_dec_ref(x_20); -lean_dec_ref(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_165 = lean_ctor_get(x_123, 0); -lean_inc(x_165); -x_166 = lean_ctor_get(x_123, 1); -lean_inc(x_166); -if (lean_is_exclusive(x_123)) { - lean_ctor_release(x_123, 0); - lean_ctor_release(x_123, 1); - x_167 = x_123; -} else { - lean_dec_ref(x_123); - x_167 = lean_box(0); -} -if (lean_is_scalar(x_167)) { - x_168 = lean_alloc_ctor(1, 2, 0); -} else { - x_168 = x_167; -} -lean_ctor_set(x_168, 0, x_165); -lean_ctor_set(x_168, 1, x_166); -return x_168; -} -} -} -else -{ -uint8_t x_169; uint8_t x_170; uint8_t x_171; uint8_t x_172; uint8_t x_173; uint8_t x_174; uint8_t x_175; uint8_t x_176; uint8_t x_177; uint8_t x_178; uint8_t x_179; uint8_t x_180; uint8_t x_181; uint8_t x_182; uint8_t x_183; uint8_t x_184; uint8_t x_185; uint8_t x_186; uint8_t 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; uint8_t x_194; uint8_t x_195; lean_object* x_196; uint64_t x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; uint8_t x_201; uint8_t x_202; uint8_t x_203; uint8_t x_204; uint8_t x_205; uint8_t x_206; uint8_t x_207; uint8_t x_208; uint8_t x_209; uint8_t x_210; uint8_t x_211; uint8_t x_212; uint8_t x_213; uint8_t x_214; uint8_t x_215; lean_object* x_216; uint8_t x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; uint64_t x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; -x_169 = lean_ctor_get_uint8(x_33, 0); -x_170 = lean_ctor_get_uint8(x_33, 1); -x_171 = lean_ctor_get_uint8(x_33, 2); -x_172 = lean_ctor_get_uint8(x_33, 3); -x_173 = lean_ctor_get_uint8(x_33, 4); -x_174 = lean_ctor_get_uint8(x_33, 5); -x_175 = lean_ctor_get_uint8(x_33, 6); -x_176 = lean_ctor_get_uint8(x_33, 8); -x_177 = lean_ctor_get_uint8(x_33, 9); -x_178 = lean_ctor_get_uint8(x_33, 10); -x_179 = lean_ctor_get_uint8(x_33, 11); -x_180 = lean_ctor_get_uint8(x_33, 12); -x_181 = lean_ctor_get_uint8(x_33, 13); -x_182 = lean_ctor_get_uint8(x_33, 14); -x_183 = lean_ctor_get_uint8(x_33, 15); -x_184 = lean_ctor_get_uint8(x_33, 16); -x_185 = lean_ctor_get_uint8(x_33, 17); -x_186 = lean_ctor_get_uint8(x_33, 18); -lean_dec(x_33); -x_187 = lean_ctor_get_uint8(x_22, sizeof(void*)*7); -x_188 = lean_ctor_get(x_22, 1); -lean_inc(x_188); -x_189 = lean_ctor_get(x_22, 2); -lean_inc_ref(x_189); -x_190 = lean_ctor_get(x_22, 3); -lean_inc_ref(x_190); -x_191 = lean_ctor_get(x_22, 4); -lean_inc(x_191); -x_192 = lean_ctor_get(x_22, 5); -lean_inc(x_192); -x_193 = lean_ctor_get(x_22, 6); -lean_inc(x_193); -x_194 = lean_ctor_get_uint8(x_22, sizeof(void*)*7 + 1); -x_195 = lean_ctor_get_uint8(x_22, sizeof(void*)*7 + 2); -x_196 = lean_alloc_ctor(0, 0, 19); -lean_ctor_set_uint8(x_196, 0, x_169); -lean_ctor_set_uint8(x_196, 1, x_170); -lean_ctor_set_uint8(x_196, 2, x_171); -lean_ctor_set_uint8(x_196, 3, x_172); -lean_ctor_set_uint8(x_196, 4, x_173); -lean_ctor_set_uint8(x_196, 5, x_174); -lean_ctor_set_uint8(x_196, 6, x_175); -lean_ctor_set_uint8(x_196, 7, x_3); -lean_ctor_set_uint8(x_196, 8, x_176); -lean_ctor_set_uint8(x_196, 9, x_177); -lean_ctor_set_uint8(x_196, 10, x_178); -lean_ctor_set_uint8(x_196, 11, x_179); -lean_ctor_set_uint8(x_196, 12, x_180); -lean_ctor_set_uint8(x_196, 13, x_181); -lean_ctor_set_uint8(x_196, 14, x_182); -lean_ctor_set_uint8(x_196, 15, x_183); -lean_ctor_set_uint8(x_196, 16, x_184); -lean_ctor_set_uint8(x_196, 17, x_185); -lean_ctor_set_uint8(x_196, 18, x_186); -x_197 = l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(x_196); -x_198 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_198, 0, x_196); -lean_ctor_set_uint64(x_198, sizeof(void*)*1, x_197); -lean_inc(x_193); -lean_inc(x_192); -lean_inc(x_191); -lean_inc_ref(x_190); -lean_inc_ref(x_189); -lean_inc(x_188); -x_199 = lean_alloc_ctor(0, 7, 3); -lean_ctor_set(x_199, 0, x_198); -lean_ctor_set(x_199, 1, x_188); -lean_ctor_set(x_199, 2, x_189); -lean_ctor_set(x_199, 3, x_190); -lean_ctor_set(x_199, 4, x_191); -lean_ctor_set(x_199, 5, x_192); -lean_ctor_set(x_199, 6, x_193); -lean_ctor_set_uint8(x_199, sizeof(void*)*7, x_187); -lean_ctor_set_uint8(x_199, sizeof(void*)*7 + 1, x_194); -lean_ctor_set_uint8(x_199, sizeof(void*)*7 + 2, x_195); -x_200 = l_Lean_Meta_Context_config(x_199); -lean_dec_ref(x_199); -x_201 = lean_ctor_get_uint8(x_200, 4); -x_202 = lean_ctor_get_uint8(x_200, 5); -x_203 = lean_ctor_get_uint8(x_200, 6); -x_204 = lean_ctor_get_uint8(x_200, 7); -x_205 = lean_ctor_get_uint8(x_200, 8); -x_206 = lean_ctor_get_uint8(x_200, 9); -x_207 = lean_ctor_get_uint8(x_200, 10); -x_208 = lean_ctor_get_uint8(x_200, 11); -x_209 = lean_ctor_get_uint8(x_200, 12); -x_210 = lean_ctor_get_uint8(x_200, 13); -x_211 = lean_ctor_get_uint8(x_200, 14); -x_212 = lean_ctor_get_uint8(x_200, 15); -x_213 = lean_ctor_get_uint8(x_200, 16); -x_214 = lean_ctor_get_uint8(x_200, 17); -x_215 = lean_ctor_get_uint8(x_200, 18); -if (lean_is_exclusive(x_200)) { - x_216 = x_200; -} else { - lean_dec_ref(x_200); - x_216 = lean_box(0); -} -x_217 = 0; -x_218 = l_Lean_Expr_betaRev(x_28, x_4, x_217, x_217); -lean_inc_ref(x_5); -lean_inc_ref(x_218); -x_219 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__4___boxed), 10, 2); -lean_closure_set(x_219, 0, x_218); -lean_closure_set(x_219, 1, x_5); -if (lean_is_scalar(x_216)) { - x_220 = lean_alloc_ctor(0, 0, 19); -} else { - x_220 = x_216; -} -lean_ctor_set_uint8(x_220, 0, x_3); -lean_ctor_set_uint8(x_220, 1, x_3); -lean_ctor_set_uint8(x_220, 2, x_3); -lean_ctor_set_uint8(x_220, 3, x_3); -lean_ctor_set_uint8(x_220, 4, x_201); -lean_ctor_set_uint8(x_220, 5, x_202); -lean_ctor_set_uint8(x_220, 6, x_203); -lean_ctor_set_uint8(x_220, 7, x_204); -lean_ctor_set_uint8(x_220, 8, x_205); -lean_ctor_set_uint8(x_220, 9, x_206); -lean_ctor_set_uint8(x_220, 10, x_207); -lean_ctor_set_uint8(x_220, 11, x_208); -lean_ctor_set_uint8(x_220, 12, x_209); -lean_ctor_set_uint8(x_220, 13, x_210); -lean_ctor_set_uint8(x_220, 14, x_211); -lean_ctor_set_uint8(x_220, 15, x_212); -lean_ctor_set_uint8(x_220, 16, x_213); -lean_ctor_set_uint8(x_220, 17, x_214); -lean_ctor_set_uint8(x_220, 18, x_215); -x_221 = l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(x_220); -x_222 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_222, 0, x_220); -lean_ctor_set_uint64(x_222, sizeof(void*)*1, x_221); -x_223 = lean_alloc_ctor(0, 7, 3); -lean_ctor_set(x_223, 0, x_222); -lean_ctor_set(x_223, 1, x_188); -lean_ctor_set(x_223, 2, x_189); -lean_ctor_set(x_223, 3, x_190); -lean_ctor_set(x_223, 4, x_191); -lean_ctor_set(x_223, 5, x_192); -lean_ctor_set(x_223, 6, x_193); -lean_ctor_set_uint8(x_223, sizeof(void*)*7, x_187); -lean_ctor_set_uint8(x_223, sizeof(void*)*7 + 1, x_194); -lean_ctor_set_uint8(x_223, sizeof(void*)*7 + 2, x_195); -lean_inc(x_25); -lean_inc_ref(x_24); -lean_inc(x_23); -lean_inc_ref(x_223); -lean_inc_ref(x_20); -x_224 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_219, x_20, x_21, x_223, x_23, x_24, x_25, x_32); -if (lean_obj_tag(x_224) == 0) -{ -lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; -x_225 = lean_ctor_get(x_224, 0); -lean_inc(x_225); -x_226 = lean_ctor_get(x_224, 1); -lean_inc(x_226); -lean_dec_ref(x_224); -lean_inc_ref(x_6); -lean_inc(x_31); -x_227 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__2___boxed), 10, 2); -lean_closure_set(x_227, 0, x_31); -lean_closure_set(x_227, 1, x_6); -lean_inc(x_25); -lean_inc_ref(x_24); -lean_inc(x_23); -lean_inc_ref(x_20); -x_228 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_227, x_20, x_21, x_223, x_23, x_24, x_25, x_226); -if (lean_obj_tag(x_228) == 0) -{ -lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; uint8_t x_259; -x_229 = lean_ctor_get(x_228, 0); -lean_inc(x_229); -x_230 = lean_ctor_get(x_228, 1); -lean_inc(x_230); -lean_dec_ref(x_228); -x_231 = l_Lean_Expr_betaRev(x_7, x_4, x_217, x_217); -x_259 = lean_unbox(x_225); -if (x_259 == 0) -{ -if (x_3 == 0) -{ -lean_dec_ref(x_18); -lean_dec_ref(x_17); -lean_dec_ref(x_5); -goto block_258; -} -else -{ -uint8_t x_260; -x_260 = lean_unbox(x_229); -if (x_260 == 0) -{ -lean_object* x_261; -lean_inc(x_16); -x_261 = lean_apply_1(x_18, x_16); -x_232 = x_261; -goto block_253; -} -else -{ -lean_dec_ref(x_18); -lean_inc(x_16); -x_232 = x_16; -goto block_253; -} -} -} -else -{ -lean_dec_ref(x_18); -lean_dec_ref(x_17); -lean_dec_ref(x_5); -goto block_258; -} -block_253: -{ -lean_object* x_233; lean_object* x_234; -lean_inc_ref(x_218); -lean_inc_ref(x_5); -lean_inc_ref(x_15); -lean_inc(x_13); -x_233 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_233, 0, x_13); -lean_ctor_set(x_233, 1, x_15); -lean_ctor_set(x_233, 2, x_5); -lean_ctor_set(x_233, 3, x_218); -lean_inc(x_25); -lean_inc_ref(x_24); -lean_inc(x_23); -lean_inc_ref(x_22); -lean_inc_ref(x_20); -x_234 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7(x_233, x_232, x_20, x_21, x_22, x_23, x_24, x_25, x_230); -if (lean_obj_tag(x_234) == 0) -{ -lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; uint8_t x_246; uint8_t x_247; lean_object* x_248; -x_235 = lean_ctor_get(x_234, 0); -lean_inc(x_235); -x_236 = lean_ctor_get(x_234, 1); -lean_inc(x_236); -lean_dec_ref(x_234); -x_237 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__1; -x_238 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__12; -x_239 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__6___closed__0; +x_151 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__2; +x_152 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__1; +x_153 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__2; lean_inc_ref(x_12); lean_inc_ref(x_11); -x_240 = l_Lean_Name_mkStr5(x_11, x_12, x_237, x_238, x_239); -x_241 = lean_box(0); +x_154 = l_Lean_Name_mkStr5(x_11, x_12, x_151, x_152, x_153); +x_155 = lean_box(0); lean_inc(x_13); -x_242 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_242, 0, x_13); -lean_ctor_set(x_242, 1, x_241); -x_243 = l_Lean_Expr_const___override(x_240, x_242); -lean_inc_ref(x_218); +if (lean_is_scalar(x_150)) { + x_156 = lean_alloc_ctor(1, 2, 0); +} else { + x_156 = x_150; + lean_ctor_set_tag(x_156, 1); +} +lean_ctor_set(x_156, 0, x_13); +lean_ctor_set(x_156, 1, x_155); +x_157 = l_Lean_Expr_const___override(x_154, x_156); +lean_inc_ref(x_131); lean_inc_ref(x_15); -x_244 = lean_alloc_closure((void*)(l_Lean_mkApp6), 7, 6); -lean_closure_set(x_244, 0, x_243); -lean_closure_set(x_244, 1, x_15); -lean_closure_set(x_244, 2, x_5); -lean_closure_set(x_244, 3, x_218); -lean_closure_set(x_244, 4, x_17); -lean_closure_set(x_244, 5, x_235); -x_245 = lean_box(0); -x_246 = lean_unbox(x_229); -lean_dec(x_229); -x_247 = lean_unbox(x_225); -lean_dec(x_225); -x_248 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__7(x_231, x_8, x_246, x_3, x_9, x_10, x_31, x_6, x_11, x_12, x_13, x_14, x_4, x_217, x_15, x_218, x_247, x_16, x_244, x_245, x_20, x_21, x_22, x_23, x_24, x_25, x_236); -return x_248; +x_158 = lean_alloc_closure((void*)(l_Lean_mkApp6), 7, 6); +lean_closure_set(x_158, 0, x_157); +lean_closure_set(x_158, 1, x_15); +lean_closure_set(x_158, 2, x_4); +lean_closure_set(x_158, 3, x_131); +lean_closure_set(x_158, 4, x_17); +lean_closure_set(x_158, 5, x_148); +x_159 = lean_box(0); +x_160 = lean_unbox(x_142); +lean_dec(x_142); +x_161 = lean_unbox(x_138); +lean_dec(x_138); +x_162 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__7(x_144, x_8, x_160, x_5, x_9, x_10, x_31, x_6, x_11, x_12, x_13, x_14, x_3, x_130, x_15, x_131, x_161, x_16, x_158, x_159, x_20, x_21, x_22, x_23, x_24, x_25, x_149); +return x_162; } else { -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; -lean_dec_ref(x_231); -lean_dec(x_229); -lean_dec(x_225); -lean_dec_ref(x_218); +lean_dec_ref(x_144); +lean_dec(x_142); +lean_dec(x_138); +lean_dec_ref(x_131); lean_dec(x_31); lean_dec(x_25); lean_dec_ref(x_24); @@ -21687,48 +21036,29 @@ lean_dec_ref(x_10); lean_dec_ref(x_9); lean_dec_ref(x_8); lean_dec_ref(x_6); -lean_dec_ref(x_5); lean_dec_ref(x_4); -x_249 = lean_ctor_get(x_234, 0); -lean_inc(x_249); -x_250 = lean_ctor_get(x_234, 1); -lean_inc(x_250); -if (lean_is_exclusive(x_234)) { - lean_ctor_release(x_234, 0); - lean_ctor_release(x_234, 1); - x_251 = x_234; -} else { - lean_dec_ref(x_234); - x_251 = lean_box(0); -} -if (lean_is_scalar(x_251)) { - x_252 = lean_alloc_ctor(1, 2, 0); -} else { - x_252 = x_251; -} -lean_ctor_set(x_252, 0, x_249); -lean_ctor_set(x_252, 1, x_250); -return x_252; +lean_dec_ref(x_3); +return x_147; } } -block_258: +block_168: { -lean_object* x_254; uint8_t x_255; uint8_t x_256; lean_object* x_257; -x_254 = lean_box(0); -x_255 = lean_unbox(x_229); -lean_dec(x_229); -x_256 = lean_unbox(x_225); -lean_dec(x_225); +lean_object* x_164; uint8_t x_165; uint8_t x_166; lean_object* x_167; +x_164 = lean_box(0); +x_165 = lean_unbox(x_142); +lean_dec(x_142); +x_166 = lean_unbox(x_138); +lean_dec(x_138); lean_inc_ref(x_8); -x_257 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__7(x_231, x_8, x_255, x_3, x_9, x_10, x_31, x_6, x_11, x_12, x_13, x_14, x_4, x_217, x_15, x_218, x_256, x_16, x_8, x_254, x_20, x_21, x_22, x_23, x_24, x_25, x_230); -return x_257; +x_167 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__7(x_144, x_8, x_165, x_5, x_9, x_10, x_31, x_6, x_11, x_12, x_13, x_14, x_3, x_130, x_15, x_131, x_166, x_16, x_8, x_164, x_20, x_21, x_22, x_23, x_24, x_25, x_143); +return x_167; } } else { -lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; -lean_dec(x_225); -lean_dec_ref(x_218); +lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; +lean_dec(x_138); +lean_dec_ref(x_131); lean_dec(x_31); lean_dec(x_25); lean_dec_ref(x_24); @@ -21749,35 +21079,35 @@ lean_dec_ref(x_9); lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_5); lean_dec_ref(x_4); -x_262 = lean_ctor_get(x_228, 0); -lean_inc(x_262); -x_263 = lean_ctor_get(x_228, 1); -lean_inc(x_263); -if (lean_is_exclusive(x_228)) { - lean_ctor_release(x_228, 0); - lean_ctor_release(x_228, 1); - x_264 = x_228; +lean_dec_ref(x_3); +x_172 = lean_ctor_get(x_141, 0); +lean_inc(x_172); +x_173 = lean_ctor_get(x_141, 1); +lean_inc(x_173); +if (lean_is_exclusive(x_141)) { + lean_ctor_release(x_141, 0); + lean_ctor_release(x_141, 1); + x_174 = x_141; } else { - lean_dec_ref(x_228); - x_264 = lean_box(0); + lean_dec_ref(x_141); + x_174 = lean_box(0); } -if (lean_is_scalar(x_264)) { - x_265 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_174)) { + x_175 = lean_alloc_ctor(1, 2, 0); } else { - x_265 = x_264; + x_175 = x_174; } -lean_ctor_set(x_265, 0, x_262); -lean_ctor_set(x_265, 1, x_263); -return x_265; +lean_ctor_set(x_175, 0, x_172); +lean_ctor_set(x_175, 1, x_173); +return x_175; } } else { -lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; -lean_dec_ref(x_223); -lean_dec_ref(x_218); +lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; +lean_dec_ref(x_136); +lean_dec_ref(x_131); lean_dec(x_31); lean_dec(x_25); lean_dec_ref(x_24); @@ -21798,34 +21128,33 @@ lean_dec_ref(x_9); lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_5); lean_dec_ref(x_4); -x_266 = lean_ctor_get(x_224, 0); -lean_inc(x_266); -x_267 = lean_ctor_get(x_224, 1); -lean_inc(x_267); -if (lean_is_exclusive(x_224)) { - lean_ctor_release(x_224, 0); - lean_ctor_release(x_224, 1); - x_268 = x_224; +lean_dec_ref(x_3); +x_176 = lean_ctor_get(x_137, 0); +lean_inc(x_176); +x_177 = lean_ctor_get(x_137, 1); +lean_inc(x_177); +if (lean_is_exclusive(x_137)) { + lean_ctor_release(x_137, 0); + lean_ctor_release(x_137, 1); + x_178 = x_137; } else { - lean_dec_ref(x_224); - x_268 = lean_box(0); + lean_dec_ref(x_137); + x_178 = lean_box(0); } -if (lean_is_scalar(x_268)) { - x_269 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_178)) { + x_179 = lean_alloc_ctor(1, 2, 0); } else { - x_269 = x_268; + x_179 = x_178; } -lean_ctor_set(x_269, 0, x_266); -lean_ctor_set(x_269, 1, x_267); -return x_269; +lean_ctor_set(x_179, 0, x_176); +lean_ctor_set(x_179, 1, x_177); +return x_179; } } } else { -uint8_t x_270; lean_dec(x_28); lean_dec(x_25); lean_dec_ref(x_24); @@ -21846,31 +21175,13 @@ lean_dec_ref(x_9); lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_5); lean_dec_ref(x_4); -x_270 = !lean_is_exclusive(x_30); -if (x_270 == 0) -{ +lean_dec_ref(x_3); return x_30; } -else -{ -lean_object* x_271; lean_object* x_272; lean_object* x_273; -x_271 = lean_ctor_get(x_30, 0); -x_272 = lean_ctor_get(x_30, 1); -lean_inc(x_272); -lean_inc(x_271); -lean_dec(x_30); -x_273 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_273, 0, x_271); -lean_ctor_set(x_273, 1, x_272); -return x_273; -} -} } else { -uint8_t x_274; lean_dec(x_25); lean_dec_ref(x_24); lean_dec(x_23); @@ -21890,31 +21201,14 @@ lean_dec_ref(x_9); lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec_ref(x_5); lean_dec_ref(x_4); +lean_dec_ref(x_3); lean_dec_ref(x_2); -x_274 = !lean_is_exclusive(x_27); -if (x_274 == 0) -{ return x_27; } -else -{ -lean_object* x_275; lean_object* x_276; lean_object* x_277; -x_275 = lean_ctor_get(x_27, 0); -x_276 = lean_ctor_get(x_27, 1); -lean_inc(x_276); -lean_inc(x_275); -lean_dec(x_27); -x_277 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_277, 0, x_275); -lean_ctor_set(x_277, 1, x_276); -return x_277; } } -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { lean_object* x_14; @@ -21922,7 +21216,7 @@ x_14 = l_Lean_Elab_Term_throwTypeMismatchError___redArg(x_1, x_2, x_3, x_4, x_5, return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; @@ -21930,7 +21224,7 @@ x_11 = l_Lean_Meta_isExprDefEq(x_1, x_2, x_6, x_7, x_8, x_9, x_10); return x_11; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__0() { _start: { lean_object* x_1; @@ -21938,16 +21232,16 @@ x_1 = lean_mk_string_unchecked("target not a Triple application ", 32, 32); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__2() { _start: { lean_object* x_1; @@ -21955,46 +21249,18 @@ x_1 = lean_mk_string_unchecked("Triple", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__2; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__2; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; x_4 = l_Lean_Name_mkStr3(x_3, x_2, x_1); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("WP", 2, 2); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("wp", 2, 2); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__5; -x_2 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__4; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { lean_object* x_17; @@ -22200,9 +21466,9 @@ lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean x_54 = lean_ctor_get(x_52, 1); lean_inc_ref(x_54); x_55 = l_Lean_Expr_appFnCleanup___redArg(x_52); -x_56 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; -x_57 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_58 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__3; +x_56 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; +x_57 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_58 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__3; x_59 = l_Lean_Expr_isConstOf(x_55, x_58); if (x_59 == 0) { @@ -22259,12 +21525,12 @@ x_72 = lean_ctor_get(x_12, 6); lean_inc(x_72); x_73 = lean_ctor_get_uint8(x_12, sizeof(void*)*7 + 1); x_74 = lean_ctor_get_uint8(x_12, sizeof(void*)*7 + 2); -x_75 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__3___boxed), 9, 1); +x_75 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__3___boxed), 9, 1); lean_closure_set(x_75, 0, x_36); -x_76 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__3___boxed), 9, 1); +x_76 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__3___boxed), 9, 1); lean_closure_set(x_76, 0, x_39); x_77 = l_Lean_Expr_consumeMData(x_63); -x_78 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__0; +x_78 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg___closed__0; x_79 = l_Lean_Expr_getAppNumArgs(x_77); lean_inc(x_79); x_80 = lean_mk_array(x_79, x_78); @@ -22277,7 +21543,7 @@ x_85 = lean_array_get_size(x_82); x_86 = l_Array_extract___redArg(x_82, x_4, x_85); lean_dec_ref(x_82); x_87 = l_Array_reverse___redArg(x_86); -x_88 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__6; +x_88 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__6; x_89 = l_Lean_Expr_constLevels_x21(x_55); lean_dec_ref(x_55); x_90 = l_Lean_Expr_const___override(x_88, x_89); @@ -22286,7 +21552,7 @@ lean_inc_ref(x_51); x_91 = l_Lean_mkApp5(x_90, x_54, x_51, x_48, x_45, x_42); lean_inc_ref(x_91); lean_inc_ref(x_6); -x_108 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__10___boxed), 10, 2); +x_108 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__10___boxed), 10, 2); lean_closure_set(x_108, 0, x_6); lean_closure_set(x_108, 1, x_91); lean_ctor_set_uint8(x_64, 7, x_59); @@ -22394,7 +21660,7 @@ x_94 = lean_box(0); x_95 = lean_box(0); lean_inc(x_23); lean_inc_ref(x_6); -x_96 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__9___boxed), 13, 5); +x_96 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__9___boxed), 13, 5); lean_closure_set(x_96, 0, x_94); lean_closure_set(x_96, 1, x_6); lean_closure_set(x_96, 2, x_91); @@ -22414,7 +21680,7 @@ lean_inc(x_98); x_99 = lean_ctor_get(x_97, 1); lean_inc(x_99); lean_dec_ref(x_97); -x_100 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__8(x_76, x_75, x_59, x_87, x_62, x_84, x_23, x_5, x_45, x_51, x_56, x_57, x_60, x_6, x_61, x_7, x_63, x_8, x_98, x_10, x_11, x_12, x_13, x_14, x_15, x_99); +x_100 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__8(x_76, x_75, x_87, x_62, x_59, x_84, x_23, x_5, x_45, x_51, x_56, x_57, x_60, x_6, x_61, x_7, x_63, x_8, x_98, x_10, x_11, x_12, x_13, x_14, x_15, x_99); lean_dec(x_98); return x_100; } @@ -22467,7 +21733,7 @@ else lean_object* x_105; lean_object* x_106; lean_dec_ref(x_91); x_105 = lean_box(0); -x_106 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__8(x_76, x_75, x_59, x_87, x_62, x_84, x_23, x_5, x_45, x_51, x_56, x_57, x_60, x_6, x_61, x_7, x_63, x_8, x_105, x_10, x_11, x_12, x_13, x_14, x_15, x_93); +x_106 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__8(x_76, x_75, x_87, x_62, x_59, x_84, x_23, x_5, x_45, x_51, x_56, x_57, x_60, x_6, x_61, x_7, x_63, x_8, x_105, x_10, x_11, x_12, x_13, x_14, x_15, x_93); return x_106; } } @@ -22509,12 +21775,12 @@ x_147 = lean_ctor_get(x_12, 6); lean_inc(x_147); x_148 = lean_ctor_get_uint8(x_12, sizeof(void*)*7 + 1); x_149 = lean_ctor_get_uint8(x_12, sizeof(void*)*7 + 2); -x_150 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__3___boxed), 9, 1); +x_150 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__3___boxed), 9, 1); lean_closure_set(x_150, 0, x_36); -x_151 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__3___boxed), 9, 1); +x_151 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__3___boxed), 9, 1); lean_closure_set(x_151, 0, x_39); x_152 = l_Lean_Expr_consumeMData(x_63); -x_153 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__0; +x_153 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg___closed__0; x_154 = l_Lean_Expr_getAppNumArgs(x_152); lean_inc(x_154); x_155 = lean_mk_array(x_154, x_153); @@ -22527,7 +21793,7 @@ x_160 = lean_array_get_size(x_157); x_161 = l_Array_extract___redArg(x_157, x_4, x_160); lean_dec_ref(x_157); x_162 = l_Array_reverse___redArg(x_161); -x_163 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__6; +x_163 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__6; x_164 = l_Lean_Expr_constLevels_x21(x_55); lean_dec_ref(x_55); x_165 = l_Lean_Expr_const___override(x_163, x_164); @@ -22536,7 +21802,7 @@ lean_inc_ref(x_51); x_166 = l_Lean_mkApp5(x_165, x_54, x_51, x_48, x_45, x_42); lean_inc_ref(x_166); lean_inc_ref(x_6); -x_183 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__10___boxed), 10, 2); +x_183 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__10___boxed), 10, 2); lean_closure_set(x_183, 0, x_6); lean_closure_set(x_183, 1, x_166); x_184 = lean_alloc_ctor(0, 0, 19); @@ -22665,7 +21931,7 @@ x_169 = lean_box(0); x_170 = lean_box(0); lean_inc(x_23); lean_inc_ref(x_6); -x_171 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__9___boxed), 13, 5); +x_171 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__9___boxed), 13, 5); lean_closure_set(x_171, 0, x_169); lean_closure_set(x_171, 1, x_6); lean_closure_set(x_171, 2, x_166); @@ -22685,7 +21951,7 @@ lean_inc(x_173); x_174 = lean_ctor_get(x_172, 1); lean_inc(x_174); lean_dec_ref(x_172); -x_175 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__8(x_151, x_150, x_59, x_162, x_62, x_159, x_23, x_5, x_45, x_51, x_56, x_57, x_60, x_6, x_61, x_7, x_63, x_8, x_173, x_10, x_11, x_12, x_13, x_14, x_15, x_174); +x_175 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__8(x_151, x_150, x_162, x_62, x_59, x_159, x_23, x_5, x_45, x_51, x_56, x_57, x_60, x_6, x_61, x_7, x_63, x_8, x_173, x_10, x_11, x_12, x_13, x_14, x_15, x_174); lean_dec(x_173); return x_175; } @@ -22740,7 +22006,7 @@ else lean_object* x_180; lean_object* x_181; lean_dec_ref(x_166); x_180 = lean_box(0); -x_181 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__8(x_151, x_150, x_59, x_162, x_62, x_159, x_23, x_5, x_45, x_51, x_56, x_57, x_60, x_6, x_61, x_7, x_63, x_8, x_180, x_10, x_11, x_12, x_13, x_14, x_15, x_168); +x_181 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__8(x_151, x_150, x_162, x_62, x_59, x_159, x_23, x_5, x_45, x_51, x_56, x_57, x_60, x_6, x_61, x_7, x_63, x_8, x_180, x_10, x_11, x_12, x_13, x_14, x_15, x_168); return x_181; } } @@ -22756,7 +22022,7 @@ return x_181; block_33: { 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 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__1; +x_26 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__1; x_27 = l_Lean_MessageData_ofExpr(x_24); if (lean_is_scalar(x_25)) { x_28 = lean_alloc_ctor(7, 2, 0); @@ -22766,7 +22032,7 @@ if (lean_is_scalar(x_25)) { } lean_ctor_set(x_28, 0, x_26); lean_ctor_set(x_28, 1, x_27); -x_29 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; +x_29 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; if (lean_is_scalar(x_21)) { x_30 = lean_alloc_ctor(7, 2, 0); } else { @@ -22775,7 +22041,7 @@ if (lean_is_scalar(x_21)) { } lean_ctor_set(x_30, 0, x_28); lean_ctor_set(x_30, 1, x_29); -x_31 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__5___boxed), 9, 1); +x_31 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__10___boxed), 9, 1); lean_closure_set(x_31, 0, x_30); x_32 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_31, x_10, x_11, x_12, x_13, x_14, x_15, x_22); lean_dec(x_11); @@ -22819,15 +22085,15 @@ return x_202; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__12(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__12(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_10; -x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10___redArg(x_2, x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38(x_2, x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; @@ -22859,10 +22125,10 @@ lean_inc_ref(x_25); x_26 = lean_ctor_get(x_23, 3); lean_inc(x_26); lean_dec(x_23); -x_27 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__1___boxed), 9, 1); +x_27 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__1___boxed), 9, 1); lean_closure_set(x_27, 0, x_25); x_28 = lean_unsigned_to_nat(4u); -x_29 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___boxed), 16, 8); +x_29 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___boxed), 16, 8); lean_closure_set(x_29, 0, x_27); lean_closure_set(x_29, 1, x_19); lean_closure_set(x_29, 2, x_3); @@ -22871,14 +22137,14 @@ lean_closure_set(x_29, 4, x_4); lean_closure_set(x_29, 5, x_21); lean_closure_set(x_29, 6, x_5); lean_closure_set(x_29, 7, x_6); -x_30 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__12), 9, 1); +x_30 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__12), 9, 1); lean_closure_set(x_30, 0, x_29); x_31 = lean_nat_sub(x_17, x_28); lean_dec(x_17); x_32 = lean_nat_sub(x_26, x_31); lean_dec(x_31); lean_dec(x_26); -x_33 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___redArg(x_7, x_32, x_30, x_9, x_10, x_11, x_12, x_13, x_14, x_24); +x_33 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__5(x_7, x_32, x_30, x_9, x_10, x_11, x_12, x_13, x_14, x_24); lean_dec(x_32); return x_33; } @@ -22919,7 +22185,7 @@ return x_37; } } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__15___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__15___closed__0() { _start: { lean_object* x_1; @@ -22927,16 +22193,16 @@ x_1 = lean_mk_string_unchecked("target not a PredTrans.apply application ", 41, return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__15___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__15___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__15___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__15___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__15(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__15(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; @@ -22947,23 +22213,23 @@ lean_dec_ref(x_14); x_16 = l_Lean_Expr_getAppFn(x_15); x_17 = l_Lean_Expr_constName_x21(x_16); lean_dec_ref(x_16); -x_18 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__6; +x_18 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__2; x_19 = lean_name_eq(x_17, x_18); lean_dec(x_17); 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; -x_20 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__15___closed__1; +x_20 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__15___closed__1; lean_inc_ref(x_15); x_21 = l_Lean_indentExpr(x_15); x_22 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_22, 0, x_20); lean_ctor_set(x_22, 1, x_21); -x_23 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; +x_23 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; x_24 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_24, 0, x_22); lean_ctor_set(x_24, 1, x_23); -x_25 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__5___boxed), 9, 1); +x_25 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__10___boxed), 9, 1); lean_closure_set(x_25, 0, x_24); lean_inc(x_12); lean_inc_ref(x_11); @@ -22979,7 +22245,7 @@ lean_inc(x_27); x_28 = lean_ctor_get(x_26, 1); lean_inc(x_28); lean_dec_ref(x_26); -x_29 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__13(x_15, x_1, x_2, x_3, x_4, x_5, x_6, x_27, x_7, x_8, x_9, x_10, x_11, x_12, x_28); +x_29 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__13(x_15, x_1, x_2, x_3, x_4, x_5, x_6, x_27, x_7, x_8, x_9, x_10, x_11, x_12, x_28); lean_dec(x_27); lean_dec_ref(x_15); return x_29; @@ -23024,21 +22290,21 @@ else { lean_object* x_34; lean_object* x_35; x_34 = lean_box(0); -x_35 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__13(x_15, x_1, x_2, x_3, x_4, x_5, x_6, x_34, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_35 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__13(x_15, x_1, x_2, x_3, x_4, x_5, x_6, x_34, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec_ref(x_15); return x_35; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; x_12 = lean_ctor_get(x_1, 3); lean_inc_ref(x_12); -x_13 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__0___boxed), 1, 0); +x_13 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__0___boxed), 1, 0); x_14 = l_Lean_instInhabitedExpr; -x_15 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__15), 13, 5); +x_15 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__15), 13, 5); lean_closure_set(x_15, 0, x_2); lean_closure_set(x_15, 1, x_14); lean_closure_set(x_15, 2, x_13); @@ -23048,64 +22314,12 @@ x_16 = l_Lean_Expr_consumeMData(x_12); lean_dec_ref(x_12); x_17 = l_Lean_Expr_getNumHeadLambdas(x_16); lean_dec_ref(x_16); -x_18 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___redArg(x_1, x_17, x_15, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_18 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__5(x_1, x_17, x_15, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_17); -if (lean_obj_tag(x_18) == 0) -{ -uint8_t x_19; -x_19 = !lean_is_exclusive(x_18); -if (x_19 == 0) -{ -lean_object* x_20; lean_object* x_21; -x_20 = lean_ctor_get(x_18, 0); -x_21 = lean_ctor_get(x_20, 1); -lean_inc(x_21); -lean_dec(x_20); -lean_ctor_set(x_18, 0, x_21); return x_18; } -else -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_22 = lean_ctor_get(x_18, 0); -x_23 = lean_ctor_get(x_18, 1); -lean_inc(x_23); -lean_inc(x_22); -lean_dec(x_18); -x_24 = lean_ctor_get(x_22, 1); -lean_inc(x_24); -lean_dec(x_22); -x_25 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_25, 0, x_24); -lean_ctor_set(x_25, 1, x_23); -return x_25; } -} -else -{ -uint8_t x_26; -x_26 = !lean_is_exclusive(x_18); -if (x_26 == 0) -{ -return x_18; -} -else -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_27 = lean_ctor_get(x_18, 0); -x_28 = lean_ctor_get(x_18, 1); -lean_inc(x_28); -lean_inc(x_27); -lean_dec(x_18); -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; -} -} -} -} -LEAN_EXPORT uint8_t l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14_spec__14___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT uint8_t l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7_spec__7___redArg___lam__0(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; uint8_t x_8; @@ -23137,7 +22351,7 @@ return x_10; } } } -LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14_spec__14___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7_spec__7___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -23152,7 +22366,7 @@ else { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_inc_ref(x_1); -x_6 = lean_alloc_closure((void*)(l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14_spec__14___redArg___lam__0___boxed), 3, 1); +x_6 = lean_alloc_closure((void*)(l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7_spec__7___redArg___lam__0___boxed), 3, 1); lean_closure_set(x_6, 0, x_1); lean_inc(x_3); x_7 = l_Array_qpartition___redArg(x_2, x_6, x_3, x_4); @@ -23166,7 +22380,7 @@ if (x_10 == 0) { lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_inc_ref(x_1); -x_11 = l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14_spec__14___redArg(x_1, x_9, x_3, x_8); +x_11 = l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7_spec__7___redArg(x_1, x_9, x_3, x_8); x_12 = lean_unsigned_to_nat(1u); x_13 = lean_nat_add(x_8, x_12); lean_dec(x_8); @@ -23184,15 +22398,15 @@ return x_9; } } } -LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14_spec__14(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_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7_spec__7(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_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14_spec__14___redArg(x_1, x_3, x_4, x_5); +x_9 = l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7_spec__7___redArg(x_1, x_3, x_4, x_5); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7___redArg(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_14; lean_object* x_15; uint8_t x_16; @@ -23267,7 +22481,7 @@ return x_23; block_13: { lean_object* x_11; lean_object* x_12; -x_11 = l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14_spec__14___redArg(x_8, x_1, x_9, x_10); +x_11 = l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7_spec__7___redArg(x_8, x_1, x_9, x_10); lean_dec(x_10); if (lean_is_scalar(x_7)) { x_12 = lean_alloc_ctor(0, 2, 0); @@ -23280,23 +22494,23 @@ return x_12; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14(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_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7(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; -x_7 = l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14___redArg(x_1, x_3, x_6); +x_7 = l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7___redArg(x_1, x_3, x_6); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14(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_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7(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; -x_7 = l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14___redArg(x_1, x_3, x_6); +x_7 = l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7___redArg(x_1, x_3, x_6); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__0(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_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__0(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; uint8_t x_10; @@ -23330,7 +22544,7 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__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_10; @@ -23338,7 +22552,7 @@ x_10 = l_Lean_Meta_getMVarsNoDelayed(x_1, x_5, x_6, x_7, x_8, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__2(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_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; @@ -23346,19 +22560,19 @@ x_11 = l_Lean_Elab_Tactic_filterOldMVars___redArg(x_1, x_2, x_7, x_10); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14___redArg(x_1, x_6, x_9); +x_10 = l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7___redArg(x_1, x_6, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14(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_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7(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; lean_object* x_10; -x_9 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__0___boxed), 8, 0); +x_9 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__0___boxed), 8, 0); lean_inc(x_7); lean_inc_ref(x_6); lean_inc(x_5); @@ -23392,7 +22606,7 @@ x_16 = lean_ctor_get(x_14, 1); lean_inc(x_16); lean_dec_ref(x_14); lean_inc(x_15); -x_17 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__1___boxed), 9, 1); +x_17 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__1___boxed), 9, 1); lean_closure_set(x_17, 0, x_15); lean_inc(x_7); lean_inc_ref(x_6); @@ -23408,7 +22622,7 @@ lean_inc(x_19); x_20 = lean_ctor_get(x_18, 1); lean_inc(x_20); lean_dec_ref(x_18); -x_21 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__2___boxed), 10, 2); +x_21 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__2___boxed), 10, 2); lean_closure_set(x_21, 0, x_19); lean_closure_set(x_21, 1, x_13); lean_inc(x_7); @@ -23425,7 +22639,7 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_22, 1); lean_inc(x_24); lean_dec_ref(x_22); -x_25 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__3___boxed), 9, 1); +x_25 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__3___boxed), 9, 1); lean_closure_set(x_25, 0, x_23); x_26 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_25, x_2, x_3, x_4, x_5, x_6, x_7, x_24); lean_dec(x_3); @@ -23606,7 +22820,13907 @@ return x_53; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__0(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = lean_apply_7(x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__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_10; +x_10 = l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(x_1, x_6, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__2(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_10; +x_10 = l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(x_1, x_6, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_getSplitInfo_x3f(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("rewrite_program", 15, 15); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Simplified", 10, 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22) { +_start: +{ +lean_object* x_23; lean_object* x_24; +lean_inc_ref(x_1); +x_23 = lean_alloc_closure((void*)(l_Lean_Meta_Simp_simp___boxed), 9, 1); +lean_closure_set(x_23, 0, x_1); +lean_inc(x_21); +lean_inc_ref(x_20); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc_ref(x_16); +x_24 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_23, x_16, x_17, x_18, x_19, x_20, x_21, x_22); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_42; lean_object* x_43; uint8_t x_44; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +x_26 = lean_ctor_get(x_24, 1); +lean_inc(x_26); +lean_dec_ref(x_24); +x_42 = lean_ctor_get(x_25, 0); +lean_inc_ref(x_42); +x_43 = lean_ctor_get(x_25, 1); +lean_inc(x_43); +lean_dec(x_25); +x_44 = lean_expr_eqv(x_42, x_1); +if (x_44 == 0) +{ +if (x_4 == 0) +{ +lean_dec(x_43); +lean_dec_ref(x_42); +lean_dec_ref(x_16); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_1); +goto block_41; +} +else +{ +lean_object* x_45; +x_45 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_17, x_26); +if (lean_obj_tag(x_45) == 0) +{ +if (lean_obj_tag(x_43) == 0) +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +x_46 = lean_ctor_get(x_45, 1); +lean_inc(x_46); +lean_dec_ref(x_45); +x_47 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_2, x_42); +x_48 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_5, x_47, x_3, x_16, x_17, x_18, x_19, x_20, x_21, x_46); +if (lean_obj_tag(x_48) == 0) +{ +uint8_t x_49; +x_49 = !lean_is_exclusive(x_48); +if (x_49 == 0) +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_50 = lean_ctor_get(x_48, 0); +x_51 = lean_box(0); +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_50); +lean_ctor_set(x_52, 1, x_51); +lean_ctor_set(x_48, 0, x_52); +return x_48; +} +else +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_53 = lean_ctor_get(x_48, 0); +x_54 = lean_ctor_get(x_48, 1); +lean_inc(x_54); +lean_inc(x_53); +lean_dec(x_48); +x_55 = lean_box(0); +x_56 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_56, 0, x_53); +lean_ctor_set(x_56, 1, x_55); +x_57 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set(x_57, 1, x_54); +return x_57; +} +} +else +{ +uint8_t x_58; +x_58 = !lean_is_exclusive(x_48); +if (x_58 == 0) +{ +return x_48; +} +else +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_59 = lean_ctor_get(x_48, 0); +x_60 = lean_ctor_get(x_48, 1); +lean_inc(x_60); +lean_inc(x_59); +lean_dec(x_48); +x_61 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_61, 0, x_59); +lean_ctor_set(x_61, 1, x_60); +return x_61; +} +} +} +else +{ +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_101; +x_62 = lean_ctor_get(x_45, 1); +lean_inc(x_62); +lean_dec_ref(x_45); +x_63 = lean_ctor_get(x_43, 0); +lean_inc(x_63); +lean_dec_ref(x_43); +lean_inc(x_21); +lean_inc_ref(x_20); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc_ref(x_16); +lean_inc(x_6); +x_101 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7(x_6, x_16, x_17, x_18, x_19, x_20, x_21, x_62); +if (lean_obj_tag(x_101) == 0) +{ +lean_object* x_102; uint8_t x_103; +x_102 = lean_ctor_get(x_101, 0); +lean_inc(x_102); +x_103 = lean_unbox(x_102); +lean_dec(x_102); +if (x_103 == 0) +{ +lean_object* x_104; +lean_dec(x_6); +x_104 = lean_ctor_get(x_101, 1); +lean_inc(x_104); +lean_dec_ref(x_101); +x_64 = x_16; +x_65 = x_17; +x_66 = x_18; +x_67 = x_19; +x_68 = x_20; +x_69 = x_21; +x_70 = x_104; +goto block_100; +} +else +{ +lean_object* x_105; lean_object* x_106; lean_object* x_107; +x_105 = lean_ctor_get(x_101, 1); +lean_inc(x_105); +lean_dec_ref(x_101); +x_106 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___closed__2; +lean_inc(x_21); +lean_inc_ref(x_20); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc_ref(x_16); +x_107 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14(x_6, x_106, x_16, x_17, x_18, x_19, x_20, x_21, x_105); +if (lean_obj_tag(x_107) == 0) +{ +lean_object* x_108; +x_108 = lean_ctor_get(x_107, 1); +lean_inc(x_108); +lean_dec_ref(x_107); +x_64 = x_16; +x_65 = x_17; +x_66 = x_18; +x_67 = x_19; +x_68 = x_20; +x_69 = x_21; +x_70 = x_108; +goto block_100; +} +else +{ +uint8_t x_109; +lean_dec(x_63); +lean_dec_ref(x_42); +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_109 = !lean_is_exclusive(x_107); +if (x_109 == 0) +{ +return x_107; +} +else +{ +lean_object* x_110; lean_object* x_111; lean_object* x_112; +x_110 = lean_ctor_get(x_107, 0); +x_111 = lean_ctor_get(x_107, 1); +lean_inc(x_111); +lean_inc(x_110); +lean_dec(x_107); +x_112 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_112, 0, x_110); +lean_ctor_set(x_112, 1, x_111); +return x_112; +} +} +} +} +else +{ +uint8_t x_113; +lean_dec(x_63); +lean_dec_ref(x_42); +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_113 = !lean_is_exclusive(x_101); +if (x_113 == 0) +{ +return x_101; +} +else +{ +lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_114 = lean_ctor_get(x_101, 0); +x_115 = lean_ctor_get(x_101, 1); +lean_inc(x_115); +lean_inc(x_114); +lean_dec(x_101); +x_116 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_116, 0, x_114); +lean_ctor_set(x_116, 1, x_115); +return x_116; +} +} +block_100: +{ +lean_object* x_71; lean_object* x_72; +lean_inc_ref(x_42); +lean_inc_ref(x_2); +x_71 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_2, x_42); +x_72 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_5, x_71, x_3, x_64, x_65, x_66, x_67, x_68, x_69, x_70); +if (lean_obj_tag(x_72) == 0) +{ +uint8_t x_73; +x_73 = !lean_is_exclusive(x_72); +if (x_73 == 0) +{ +lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_74 = lean_ctor_get(x_72, 0); +x_75 = lean_ctor_get(x_2, 2); +lean_inc_ref(x_75); +lean_dec_ref(x_2); +x_76 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__2; +x_77 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___closed__0; +x_78 = l_Lean_Name_mkStr4(x_7, x_8, x_76, x_77); +x_79 = l_Lean_Expr_constLevels_x21(x_9); +x_80 = l_Lean_Expr_const___override(x_78, x_79); +x_81 = l_Lean_mkApp10(x_80, x_10, x_11, x_12, x_75, x_13, x_14, x_1, x_42, x_63, x_74); +x_82 = lean_box(0); +x_83 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_83, 0, x_81); +lean_ctor_set(x_83, 1, x_82); +lean_ctor_set(x_72, 0, x_83); +return x_72; +} +else +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; +x_84 = lean_ctor_get(x_72, 0); +x_85 = lean_ctor_get(x_72, 1); +lean_inc(x_85); +lean_inc(x_84); +lean_dec(x_72); +x_86 = lean_ctor_get(x_2, 2); +lean_inc_ref(x_86); +lean_dec_ref(x_2); +x_87 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__2; +x_88 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___closed__0; +x_89 = l_Lean_Name_mkStr4(x_7, x_8, x_87, x_88); +x_90 = l_Lean_Expr_constLevels_x21(x_9); +x_91 = l_Lean_Expr_const___override(x_89, x_90); +x_92 = l_Lean_mkApp10(x_91, x_10, x_11, x_12, x_86, x_13, x_14, x_1, x_42, x_63, x_84); +x_93 = lean_box(0); +x_94 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_94, 0, x_92); +lean_ctor_set(x_94, 1, x_93); +x_95 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_95, 0, x_94); +lean_ctor_set(x_95, 1, x_85); +return x_95; +} +} +else +{ +uint8_t x_96; +lean_dec(x_63); +lean_dec_ref(x_42); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_96 = !lean_is_exclusive(x_72); +if (x_96 == 0) +{ +return x_72; +} +else +{ +lean_object* x_97; lean_object* x_98; lean_object* x_99; +x_97 = lean_ctor_get(x_72, 0); +x_98 = lean_ctor_get(x_72, 1); +lean_inc(x_98); +lean_inc(x_97); +lean_dec(x_72); +x_99 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_99, 0, x_97); +lean_ctor_set(x_99, 1, x_98); +return x_99; +} +} +} +} +} +else +{ +uint8_t x_117; +lean_dec(x_43); +lean_dec_ref(x_42); +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_117 = !lean_is_exclusive(x_45); +if (x_117 == 0) +{ +return x_45; +} +else +{ +lean_object* x_118; lean_object* x_119; lean_object* x_120; +x_118 = lean_ctor_get(x_45, 0); +x_119 = lean_ctor_get(x_45, 1); +lean_inc(x_119); +lean_inc(x_118); +lean_dec(x_45); +x_120 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_120, 0, x_118); +lean_ctor_set(x_120, 1, x_119); +return x_120; +} +} +} +} +else +{ +lean_dec(x_43); +lean_dec_ref(x_42); +lean_dec_ref(x_16); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_1); +goto block_41; +} +block_41: +{ +lean_object* x_27; +x_27 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onFail___redArg(x_2, x_3, x_17, x_18, x_19, x_20, x_21, x_26); +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec(x_19); +lean_dec(x_17); +if (lean_obj_tag(x_27) == 0) +{ +uint8_t x_28; +x_28 = !lean_is_exclusive(x_27); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_27, 0); +x_30 = lean_box(0); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_29); +lean_ctor_set(x_31, 1, x_30); +lean_ctor_set(x_27, 0, x_31); +return x_27; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_32 = lean_ctor_get(x_27, 0); +x_33 = lean_ctor_get(x_27, 1); +lean_inc(x_33); +lean_inc(x_32); +lean_dec(x_27); +x_34 = lean_box(0); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_32); +lean_ctor_set(x_35, 1, x_34); +x_36 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_33); +return x_36; +} +} +else +{ +uint8_t x_37; +x_37 = !lean_is_exclusive(x_27); +if (x_37 == 0) +{ +return x_27; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_27, 0); +x_39 = lean_ctor_get(x_27, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_27); +x_40 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +return x_40; +} +} +} +} +else +{ +uint8_t x_121; +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_121 = !lean_is_exclusive(x_24); +if (x_121 == 0) +{ +return x_24; +} +else +{ +lean_object* x_122; lean_object* x_123; lean_object* x_124; +x_122 = lean_ctor_get(x_24, 0); +x_123 = lean_ctor_get(x_24, 1); +lean_inc(x_123); +lean_inc(x_122); +lean_dec(x_24); +x_124 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_124, 0, x_122); +lean_ctor_set(x_124, 1, x_123); +return x_124; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_findSpec(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__6(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_10; +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_1); +lean_ctor_set(x_10, 1, x_9); +return x_10; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mkPreTag), 1, 0); +return x_1; +} +} +static uint64_t _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___closed__1() { +_start: +{ +uint8_t x_1; uint64_t x_2; +x_1 = 1; +x_2 = l_Lean_Meta_TransparencyMode_toUInt64(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; lean_object* x_18; uint8_t x_19; +x_18 = l_Lean_Meta_Context_config(x_7); +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +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; uint8_t x_27; uint8_t x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; uint64_t x_32; uint8_t x_33; +x_20 = lean_ctor_get_uint8(x_7, sizeof(void*)*7); +x_21 = lean_ctor_get(x_7, 1); +lean_inc(x_21); +x_22 = lean_ctor_get(x_7, 2); +lean_inc_ref(x_22); +x_23 = lean_ctor_get(x_7, 3); +lean_inc_ref(x_23); +x_24 = lean_ctor_get(x_7, 4); +lean_inc(x_24); +x_25 = lean_ctor_get(x_7, 5); +lean_inc(x_25); +x_26 = lean_ctor_get(x_7, 6); +lean_inc(x_26); +x_27 = lean_ctor_get_uint8(x_7, sizeof(void*)*7 + 1); +x_28 = lean_ctor_get_uint8(x_7, sizeof(void*)*7 + 2); +x_29 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___closed__0; +x_30 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0), 11, 4); +lean_closure_set(x_30, 0, x_1); +lean_closure_set(x_30, 1, x_2); +lean_closure_set(x_30, 2, x_3); +lean_closure_set(x_30, 3, x_29); +x_31 = 1; +lean_ctor_set_uint8(x_18, 9, x_31); +x_32 = l_Lean_Meta_Context_configKey(x_7); +x_33 = !lean_is_exclusive(x_7); +if (x_33 == 0) +{ +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; uint64_t x_41; uint64_t x_42; uint64_t x_43; uint64_t x_44; uint64_t x_45; lean_object* x_46; lean_object* x_47; +x_34 = lean_ctor_get(x_7, 6); +lean_dec(x_34); +x_35 = lean_ctor_get(x_7, 5); +lean_dec(x_35); +x_36 = lean_ctor_get(x_7, 4); +lean_dec(x_36); +x_37 = lean_ctor_get(x_7, 3); +lean_dec(x_37); +x_38 = lean_ctor_get(x_7, 2); +lean_dec(x_38); +x_39 = lean_ctor_get(x_7, 1); +lean_dec(x_39); +x_40 = lean_ctor_get(x_7, 0); +lean_dec(x_40); +x_41 = 2; +x_42 = lean_uint64_shift_right(x_32, x_41); +x_43 = lean_uint64_shift_left(x_42, x_41); +x_44 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___closed__1; +x_45 = lean_uint64_lor(x_43, x_44); +x_46 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_46, 0, x_18); +lean_ctor_set_uint64(x_46, sizeof(void*)*1, x_45); +lean_ctor_set(x_7, 0, x_46); +x_47 = l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7(x_30, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_47) == 0) +{ +lean_object* x_48; lean_object* x_49; +x_48 = lean_ctor_get(x_47, 0); +lean_inc(x_48); +x_49 = lean_ctor_get(x_47, 1); +lean_inc(x_49); +lean_dec_ref(x_47); +x_12 = x_48; +x_13 = x_49; +goto block_17; +} +else +{ +if (lean_obj_tag(x_47) == 0) +{ +lean_object* x_50; lean_object* x_51; +x_50 = lean_ctor_get(x_47, 0); +lean_inc(x_50); +x_51 = lean_ctor_get(x_47, 1); +lean_inc(x_51); +lean_dec_ref(x_47); +x_12 = x_50; +x_13 = x_51; +goto block_17; +} +else +{ +uint8_t x_52; +x_52 = !lean_is_exclusive(x_47); +if (x_52 == 0) +{ +return x_47; +} +else +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_53 = lean_ctor_get(x_47, 0); +x_54 = lean_ctor_get(x_47, 1); +lean_inc(x_54); +lean_inc(x_53); +lean_dec(x_47); +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_54); +return x_55; +} +} +} +} +else +{ +uint64_t x_56; uint64_t x_57; uint64_t x_58; uint64_t x_59; uint64_t x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +lean_dec(x_7); +x_56 = 2; +x_57 = lean_uint64_shift_right(x_32, x_56); +x_58 = lean_uint64_shift_left(x_57, x_56); +x_59 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___closed__1; +x_60 = lean_uint64_lor(x_58, x_59); +x_61 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_61, 0, x_18); +lean_ctor_set_uint64(x_61, sizeof(void*)*1, x_60); +x_62 = lean_alloc_ctor(0, 7, 3); +lean_ctor_set(x_62, 0, x_61); +lean_ctor_set(x_62, 1, x_21); +lean_ctor_set(x_62, 2, x_22); +lean_ctor_set(x_62, 3, x_23); +lean_ctor_set(x_62, 4, x_24); +lean_ctor_set(x_62, 5, x_25); +lean_ctor_set(x_62, 6, x_26); +lean_ctor_set_uint8(x_62, sizeof(void*)*7, x_20); +lean_ctor_set_uint8(x_62, sizeof(void*)*7 + 1, x_27); +lean_ctor_set_uint8(x_62, sizeof(void*)*7 + 2, x_28); +x_63 = l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7(x_30, x_5, x_6, x_62, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_63) == 0) +{ +lean_object* x_64; lean_object* x_65; +x_64 = lean_ctor_get(x_63, 0); +lean_inc(x_64); +x_65 = lean_ctor_get(x_63, 1); +lean_inc(x_65); +lean_dec_ref(x_63); +x_12 = x_64; +x_13 = x_65; +goto block_17; +} +else +{ +if (lean_obj_tag(x_63) == 0) +{ +lean_object* x_66; lean_object* x_67; +x_66 = lean_ctor_get(x_63, 0); +lean_inc(x_66); +x_67 = lean_ctor_get(x_63, 1); +lean_inc(x_67); +lean_dec_ref(x_63); +x_12 = x_66; +x_13 = x_67; +goto block_17; +} +else +{ +lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_68 = lean_ctor_get(x_63, 0); +lean_inc(x_68); +x_69 = lean_ctor_get(x_63, 1); +lean_inc(x_69); +if (lean_is_exclusive(x_63)) { + lean_ctor_release(x_63, 0); + lean_ctor_release(x_63, 1); + x_70 = x_63; +} else { + lean_dec_ref(x_63); + x_70 = lean_box(0); +} +if (lean_is_scalar(x_70)) { + x_71 = lean_alloc_ctor(1, 2, 0); +} else { + x_71 = x_70; +} +lean_ctor_set(x_71, 0, x_68); +lean_ctor_set(x_71, 1, x_69); +return x_71; +} +} +} +} +else +{ +uint8_t x_72; uint8_t x_73; uint8_t x_74; uint8_t x_75; uint8_t x_76; uint8_t x_77; uint8_t x_78; uint8_t x_79; uint8_t x_80; uint8_t x_81; uint8_t x_82; uint8_t x_83; uint8_t x_84; uint8_t x_85; uint8_t x_86; uint8_t x_87; uint8_t x_88; uint8_t x_89; uint8_t x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; uint8_t x_97; uint8_t x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; lean_object* x_102; uint64_t x_103; lean_object* x_104; uint64_t x_105; uint64_t x_106; uint64_t x_107; uint64_t x_108; uint64_t x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; +x_72 = lean_ctor_get_uint8(x_18, 0); +x_73 = lean_ctor_get_uint8(x_18, 1); +x_74 = lean_ctor_get_uint8(x_18, 2); +x_75 = lean_ctor_get_uint8(x_18, 3); +x_76 = lean_ctor_get_uint8(x_18, 4); +x_77 = lean_ctor_get_uint8(x_18, 5); +x_78 = lean_ctor_get_uint8(x_18, 6); +x_79 = lean_ctor_get_uint8(x_18, 7); +x_80 = lean_ctor_get_uint8(x_18, 8); +x_81 = lean_ctor_get_uint8(x_18, 10); +x_82 = lean_ctor_get_uint8(x_18, 11); +x_83 = lean_ctor_get_uint8(x_18, 12); +x_84 = lean_ctor_get_uint8(x_18, 13); +x_85 = lean_ctor_get_uint8(x_18, 14); +x_86 = lean_ctor_get_uint8(x_18, 15); +x_87 = lean_ctor_get_uint8(x_18, 16); +x_88 = lean_ctor_get_uint8(x_18, 17); +x_89 = lean_ctor_get_uint8(x_18, 18); +lean_dec(x_18); +x_90 = lean_ctor_get_uint8(x_7, sizeof(void*)*7); +x_91 = lean_ctor_get(x_7, 1); +lean_inc(x_91); +x_92 = lean_ctor_get(x_7, 2); +lean_inc_ref(x_92); +x_93 = lean_ctor_get(x_7, 3); +lean_inc_ref(x_93); +x_94 = lean_ctor_get(x_7, 4); +lean_inc(x_94); +x_95 = lean_ctor_get(x_7, 5); +lean_inc(x_95); +x_96 = lean_ctor_get(x_7, 6); +lean_inc(x_96); +x_97 = lean_ctor_get_uint8(x_7, sizeof(void*)*7 + 1); +x_98 = lean_ctor_get_uint8(x_7, sizeof(void*)*7 + 2); +x_99 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___closed__0; +x_100 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0), 11, 4); +lean_closure_set(x_100, 0, x_1); +lean_closure_set(x_100, 1, x_2); +lean_closure_set(x_100, 2, x_3); +lean_closure_set(x_100, 3, x_99); +x_101 = 1; +x_102 = lean_alloc_ctor(0, 0, 19); +lean_ctor_set_uint8(x_102, 0, x_72); +lean_ctor_set_uint8(x_102, 1, x_73); +lean_ctor_set_uint8(x_102, 2, x_74); +lean_ctor_set_uint8(x_102, 3, x_75); +lean_ctor_set_uint8(x_102, 4, x_76); +lean_ctor_set_uint8(x_102, 5, x_77); +lean_ctor_set_uint8(x_102, 6, x_78); +lean_ctor_set_uint8(x_102, 7, x_79); +lean_ctor_set_uint8(x_102, 8, x_80); +lean_ctor_set_uint8(x_102, 9, x_101); +lean_ctor_set_uint8(x_102, 10, x_81); +lean_ctor_set_uint8(x_102, 11, x_82); +lean_ctor_set_uint8(x_102, 12, x_83); +lean_ctor_set_uint8(x_102, 13, x_84); +lean_ctor_set_uint8(x_102, 14, x_85); +lean_ctor_set_uint8(x_102, 15, x_86); +lean_ctor_set_uint8(x_102, 16, x_87); +lean_ctor_set_uint8(x_102, 17, x_88); +lean_ctor_set_uint8(x_102, 18, x_89); +x_103 = l_Lean_Meta_Context_configKey(x_7); +if (lean_is_exclusive(x_7)) { + lean_ctor_release(x_7, 0); + lean_ctor_release(x_7, 1); + lean_ctor_release(x_7, 2); + lean_ctor_release(x_7, 3); + lean_ctor_release(x_7, 4); + lean_ctor_release(x_7, 5); + lean_ctor_release(x_7, 6); + x_104 = x_7; +} else { + lean_dec_ref(x_7); + x_104 = lean_box(0); +} +x_105 = 2; +x_106 = lean_uint64_shift_right(x_103, x_105); +x_107 = lean_uint64_shift_left(x_106, x_105); +x_108 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___closed__1; +x_109 = lean_uint64_lor(x_107, x_108); +x_110 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_110, 0, x_102); +lean_ctor_set_uint64(x_110, sizeof(void*)*1, x_109); +if (lean_is_scalar(x_104)) { + x_111 = lean_alloc_ctor(0, 7, 3); +} else { + x_111 = x_104; +} +lean_ctor_set(x_111, 0, x_110); +lean_ctor_set(x_111, 1, x_91); +lean_ctor_set(x_111, 2, x_92); +lean_ctor_set(x_111, 3, x_93); +lean_ctor_set(x_111, 4, x_94); +lean_ctor_set(x_111, 5, x_95); +lean_ctor_set(x_111, 6, x_96); +lean_ctor_set_uint8(x_111, sizeof(void*)*7, x_90); +lean_ctor_set_uint8(x_111, sizeof(void*)*7 + 1, x_97); +lean_ctor_set_uint8(x_111, sizeof(void*)*7 + 2, x_98); +x_112 = l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7(x_100, x_5, x_6, x_111, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_112) == 0) +{ +lean_object* x_113; lean_object* x_114; +x_113 = lean_ctor_get(x_112, 0); +lean_inc(x_113); +x_114 = lean_ctor_get(x_112, 1); +lean_inc(x_114); +lean_dec_ref(x_112); +x_12 = x_113; +x_13 = x_114; +goto block_17; +} +else +{ +if (lean_obj_tag(x_112) == 0) +{ +lean_object* x_115; lean_object* x_116; +x_115 = lean_ctor_get(x_112, 0); +lean_inc(x_115); +x_116 = lean_ctor_get(x_112, 1); +lean_inc(x_116); +lean_dec_ref(x_112); +x_12 = x_115; +x_13 = x_116; +goto block_17; +} +else +{ +lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; +x_117 = lean_ctor_get(x_112, 0); +lean_inc(x_117); +x_118 = lean_ctor_get(x_112, 1); +lean_inc(x_118); +if (lean_is_exclusive(x_112)) { + lean_ctor_release(x_112, 0); + lean_ctor_release(x_112, 1); + x_119 = x_112; +} else { + lean_dec_ref(x_112); + x_119 = lean_box(0); +} +if (lean_is_scalar(x_119)) { + x_120 = lean_alloc_ctor(1, 2, 0); +} else { + x_120 = x_119; +} +lean_ctor_set(x_120, 0, x_117); +lean_ctor_set(x_120, 1, x_118); +return x_120; +} +} +} +block_17: +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_box(0); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_12); +lean_ctor_set(x_15, 1, x_14); +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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__8(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_10; +x_10 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_1, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +_start: +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_18 = lean_expr_instantiate1(x_1, x_9); +x_19 = l_Lean_Expr_getAppNumArgs(x_2); +x_20 = lean_mk_empty_array_with_capacity(x_19); +lean_dec(x_19); +x_21 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_2, x_20); +x_22 = 0; +x_23 = l_Lean_Expr_betaRev(x_18, x_21, x_22, x_22); +lean_dec_ref(x_21); +lean_inc_ref(x_23); +x_24 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__3___boxed), 9, 1); +lean_closure_set(x_24, 0, x_23); +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc_ref(x_11); +x_25 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_24, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +if (lean_obj_tag(x_25) == 0) +{ +lean_object* x_26; lean_object* x_27; +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_25, 1); +lean_inc(x_27); +lean_dec_ref(x_25); +if (x_8 == 0) +{ +lean_dec(x_26); +lean_dec_ref(x_9); +lean_dec_ref(x_7); +lean_dec(x_6); +goto block_33; +} +else +{ +uint8_t x_34; +x_34 = l_Lean_Elab_Tactic_Do_isJP(x_6); +if (x_34 == 0) +{ +lean_dec(x_26); +lean_dec_ref(x_9); +lean_dec_ref(x_7); +goto block_33; +} +else +{ +lean_object* x_35; uint8_t x_36; +x_35 = lean_ctor_get(x_4, 0); +lean_inc_ref(x_35); +x_36 = lean_ctor_get_uint8(x_35, sizeof(void*)*1 + 3); +lean_dec_ref(x_35); +if (x_36 == 0) +{ +lean_dec(x_26); +lean_dec_ref(x_9); +lean_dec_ref(x_7); +goto block_33; +} +else +{ +if (lean_obj_tag(x_26) == 0) +{ +lean_dec_ref(x_9); +lean_dec_ref(x_7); +goto block_33; +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_26, 0); +lean_inc(x_37); +lean_dec_ref(x_26); +x_38 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_3, x_23); +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_39 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint(x_4, x_9, x_7, x_38, x_37, x_5, x_11, x_12, x_13, x_14, x_15, x_16, x_27); +if (lean_obj_tag(x_39) == 0) +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_39, 0); +lean_inc(x_40); +x_41 = lean_ctor_get(x_39, 1); +lean_inc(x_41); +lean_dec_ref(x_39); +x_42 = lean_apply_8(x_10, x_40, x_11, x_12, x_13, x_14, x_15, x_16, x_41); +return x_42; +} +else +{ +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +return x_39; +} +} +} +} +} +block_33: +{ +lean_object* x_28; lean_object* x_29; +x_28 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_3, x_23); +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_29 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_4, x_28, x_5, x_11, x_12, x_13, x_14, x_15, x_16, x_27); +if (lean_obj_tag(x_29) == 0) +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_29, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_29, 1); +lean_inc(x_31); +lean_dec_ref(x_29); +x_32 = lean_apply_8(x_10, x_30, x_11, x_12, x_13, x_14, x_15, x_16, x_31); +return x_32; +} +else +{ +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +return x_29; +} +} +} +else +{ +uint8_t x_43; +lean_dec_ref(x_23); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_43 = !lean_is_exclusive(x_25); +if (x_43 == 0) +{ +return x_25; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_25, 0); +x_45 = lean_ctor_get(x_25, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_25); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__9(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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_FVarId_getValue_x3f___redArg(x_1, x_2, x_6, x_8, x_9, x_10); +return x_11; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__0() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__17; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3; +x_4 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__16; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Failed to find spec for ", 24, 24); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(". Trying simp. Reason: ", 23, 23); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__3; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Candidate spec for ", 19, 19); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__5; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(": ", 2, 2); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__7; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("SpecProof.global ", 17, 17); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__9; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("SpecProof.local ", 16, 16); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__11; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__13() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("SpecProof.stx _ ", 16, 16); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__13; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__15() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(" ", 1, 1); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__15; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__17() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Call site of ", 13, 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__17; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__19() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Program: ", 9, 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__19; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_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_54; +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc_ref(x_7); +x_54 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_1, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; +} else { + lean_dec_ref(x_54); + x_57 = lean_box(0); +} +lean_inc(x_55); +x_58 = l_Lean_Expr_cleanupAnnotations(x_55); +x_59 = l_Lean_Expr_isApp(x_58); +if (x_59 == 0) +{ +lean_object* x_60; +lean_dec_ref(x_58); +lean_dec(x_57); +lean_dec(x_55); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +x_60 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onFail___redArg(x_2, x_3, x_8, x_9, x_10, x_11, x_12, x_56); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_8); +return x_60; +} +else +{ +lean_object* x_61; lean_object* x_62; uint8_t x_63; +x_61 = lean_ctor_get(x_58, 1); +lean_inc_ref(x_61); +x_62 = l_Lean_Expr_appFnCleanup___redArg(x_58); +x_63 = l_Lean_Expr_isApp(x_62); +if (x_63 == 0) +{ +lean_object* x_64; +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec(x_57); +lean_dec(x_55); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +x_64 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onFail___redArg(x_2, x_3, x_8, x_9, x_10, x_11, x_12, x_56); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_8); +return x_64; +} +else +{ +lean_object* x_65; lean_object* x_66; uint8_t x_67; +x_65 = lean_ctor_get(x_62, 1); +lean_inc_ref(x_65); +x_66 = l_Lean_Expr_appFnCleanup___redArg(x_62); +x_67 = l_Lean_Expr_isApp(x_66); +if (x_67 == 0) +{ +lean_object* x_68; +lean_dec_ref(x_66); +lean_dec_ref(x_65); +lean_dec_ref(x_61); +lean_dec(x_57); +lean_dec(x_55); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +x_68 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onFail___redArg(x_2, x_3, x_8, x_9, x_10, x_11, x_12, x_56); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_8); +return x_68; +} +else +{ +lean_object* x_69; lean_object* x_70; uint8_t x_71; +x_69 = lean_ctor_get(x_66, 1); +lean_inc_ref(x_69); +x_70 = l_Lean_Expr_appFnCleanup___redArg(x_66); +x_71 = l_Lean_Expr_isApp(x_70); +if (x_71 == 0) +{ +lean_object* x_72; +lean_dec_ref(x_70); +lean_dec_ref(x_69); +lean_dec_ref(x_65); +lean_dec_ref(x_61); +lean_dec(x_57); +lean_dec(x_55); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +x_72 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onFail___redArg(x_2, x_3, x_8, x_9, x_10, x_11, x_12, x_56); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_8); +return x_72; +} +else +{ +lean_object* x_73; lean_object* x_74; uint8_t x_75; +x_73 = lean_ctor_get(x_70, 1); +lean_inc_ref(x_73); +x_74 = l_Lean_Expr_appFnCleanup___redArg(x_70); +x_75 = l_Lean_Expr_isApp(x_74); +if (x_75 == 0) +{ +lean_object* x_76; +lean_dec_ref(x_74); +lean_dec_ref(x_73); +lean_dec_ref(x_69); +lean_dec_ref(x_65); +lean_dec_ref(x_61); +lean_dec(x_57); +lean_dec(x_55); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +x_76 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onFail___redArg(x_2, x_3, x_8, x_9, x_10, x_11, x_12, x_56); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_8); +return x_76; +} +else +{ +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; uint8_t x_82; +x_77 = lean_ctor_get(x_74, 1); +lean_inc_ref(x_77); +x_78 = l_Lean_Expr_appFnCleanup___redArg(x_74); +x_79 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; +x_80 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_81 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__6; +x_82 = l_Lean_Expr_isConstOf(x_78, x_81); +if (x_82 == 0) +{ +lean_object* x_83; +lean_dec_ref(x_78); +lean_dec_ref(x_77); +lean_dec_ref(x_73); +lean_dec_ref(x_69); +lean_dec_ref(x_65); +lean_dec_ref(x_61); +lean_dec(x_57); +lean_dec(x_55); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +x_83 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onFail___redArg(x_2, x_3, x_8, x_9, x_10, x_11, x_12, x_56); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_8); +return x_83; +} +else +{ +lean_object* x_84; lean_object* x_85; +x_84 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__2___boxed), 9, 1); +lean_closure_set(x_84, 0, x_61); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc_ref(x_7); +x_85 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_84, x_7, x_8, x_9, x_10, x_11, x_12, x_56); +if (lean_obj_tag(x_85) == 0) +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; uint8_t x_99; 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_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_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_176; +x_86 = lean_ctor_get(x_85, 0); +lean_inc(x_86); +x_87 = lean_ctor_get(x_85, 1); +lean_inc(x_87); +if (lean_is_exclusive(x_85)) { + lean_ctor_release(x_85, 0); + lean_ctor_release(x_85, 1); + x_88 = x_85; +} else { + lean_dec_ref(x_85); + x_88 = lean_box(0); +} +x_89 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__0; +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc_ref(x_7); +x_176 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7(x_89, x_7, x_8, x_9, x_10, x_11, x_12, x_87); +if (lean_obj_tag(x_176) == 0) +{ +lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; uint8_t 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_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; uint8_t x_439; +x_177 = lean_ctor_get(x_176, 0); +lean_inc(x_177); +x_178 = lean_ctor_get(x_176, 1); +lean_inc(x_178); +lean_dec_ref(x_176); +x_179 = l_Lean_Expr_headBeta(x_86); +lean_inc_ref(x_179); +x_180 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__3___boxed), 9, 1); +lean_closure_set(x_180, 0, x_179); +lean_inc_ref(x_179); +x_181 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_2, x_179); +x_211 = lean_box(x_82); +lean_inc_ref(x_4); +lean_inc(x_3); +lean_inc_ref(x_181); +lean_inc_ref(x_179); +x_212 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___boxed), 22, 14); +lean_closure_set(x_212, 0, x_179); +lean_closure_set(x_212, 1, x_181); +lean_closure_set(x_212, 2, x_3); +lean_closure_set(x_212, 3, x_211); +lean_closure_set(x_212, 4, x_4); +lean_closure_set(x_212, 5, x_89); +lean_closure_set(x_212, 6, x_79); +lean_closure_set(x_212, 7, x_80); +lean_closure_set(x_212, 8, x_78); +lean_closure_set(x_212, 9, x_77); +lean_closure_set(x_212, 10, x_73); +lean_closure_set(x_212, 11, x_65); +lean_closure_set(x_212, 12, x_5); +lean_closure_set(x_212, 13, x_69); +x_439 = lean_unbox(x_177); +lean_dec(x_177); +if (x_439 == 0) +{ +x_359 = x_7; +x_360 = x_8; +x_361 = x_9; +x_362 = x_10; +x_363 = x_11; +x_364 = x_12; +x_365 = x_178; +goto block_438; +} +else +{ +lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; +x_440 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__20; +lean_inc_ref(x_179); +x_441 = l_Lean_MessageData_ofExpr(x_179); +x_442 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_442, 0, x_440); +lean_ctor_set(x_442, 1, x_441); +x_443 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_444 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_444, 0, x_442); +lean_ctor_set(x_444, 1, x_443); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc_ref(x_7); +x_445 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14(x_89, x_444, x_7, x_8, x_9, x_10, x_11, x_12, x_178); +if (lean_obj_tag(x_445) == 0) +{ +lean_object* x_446; +x_446 = lean_ctor_get(x_445, 1); +lean_inc(x_446); +lean_dec_ref(x_445); +x_359 = x_7; +x_360 = x_8; +x_361 = x_9; +x_362 = x_10; +x_363 = x_11; +x_364 = x_12; +x_365 = x_446; +goto block_438; +} +else +{ +uint8_t x_447; +lean_dec_ref(x_212); +lean_dec_ref(x_181); +lean_dec_ref(x_180); +lean_dec_ref(x_179); +lean_dec(x_88); +lean_dec(x_57); +lean_dec(x_55); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec(x_3); +x_447 = !lean_is_exclusive(x_445); +if (x_447 == 0) +{ +return x_445; +} +else +{ +lean_object* x_448; lean_object* x_449; lean_object* x_450; +x_448 = lean_ctor_get(x_445, 0); +x_449 = lean_ctor_get(x_445, 1); +lean_inc(x_449); +lean_inc(x_448); +lean_dec(x_445); +x_450 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_450, 0, x_448); +lean_ctor_set(x_450, 1, x_449); +return x_450; +} +} +} +block_210: +{ +lean_object* x_192; lean_object* x_193; +x_192 = l_Lean_Expr_fvarId_x21(x_182); +lean_dec_ref(x_182); +x_193 = l_Lean_Elab_Tactic_Do_knownJP_x3f___redArg(x_192, x_185, x_191); +lean_dec(x_192); +if (lean_obj_tag(x_193) == 0) +{ +lean_object* x_194; +x_194 = lean_ctor_get(x_193, 0); +lean_inc(x_194); +if (lean_obj_tag(x_194) == 0) +{ +lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; +x_195 = lean_ctor_get(x_193, 1); +lean_inc(x_195); +lean_dec_ref(x_193); +x_196 = l_Lean_Expr_getAppNumArgs(x_179); +x_197 = lean_mk_empty_array_with_capacity(x_196); +lean_dec(x_196); +x_198 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_179, x_197); +x_199 = l_Lean_Expr_betaRev(x_184, x_198, x_183, x_183); +lean_dec_ref(x_198); +x_200 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_181, x_199); +x_201 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_4, x_200, x_3, x_185, x_186, x_187, x_188, x_189, x_190, x_195); +return x_201; +} +else +{ +lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; +lean_dec_ref(x_184); +lean_dec_ref(x_4); +lean_dec(x_3); +x_202 = lean_ctor_get(x_193, 1); +lean_inc(x_202); +lean_dec_ref(x_193); +x_203 = lean_ctor_get(x_194, 0); +lean_inc(x_203); +lean_dec_ref(x_194); +x_204 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_181, x_179); +x_205 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite(x_204, x_203, x_185, x_186, x_187, x_188, x_189, x_190, x_202); +return x_205; +} +} +else +{ +uint8_t x_206; +lean_dec(x_190); +lean_dec_ref(x_189); +lean_dec(x_188); +lean_dec_ref(x_187); +lean_dec(x_186); +lean_dec_ref(x_185); +lean_dec_ref(x_184); +lean_dec_ref(x_181); +lean_dec_ref(x_179); +lean_dec_ref(x_4); +lean_dec(x_3); +x_206 = !lean_is_exclusive(x_193); +if (x_206 == 0) +{ +return x_193; +} +else +{ +lean_object* x_207; lean_object* x_208; lean_object* x_209; +x_207 = lean_ctor_get(x_193, 0); +x_208 = lean_ctor_get(x_193, 1); +lean_inc(x_208); +lean_inc(x_207); +lean_dec(x_193); +x_209 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +return x_209; +} +} +} +block_358: +{ +uint8_t x_221; +x_221 = l_Lean_Expr_isConst(x_213); +if (x_221 == 0) +{ +lean_object* x_222; +lean_dec_ref(x_214); +lean_dec_ref(x_213); +lean_dec_ref(x_212); +lean_dec(x_88); +lean_dec(x_57); +lean_dec(x_55); +lean_dec_ref(x_4); +x_222 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onFail___redArg(x_181, x_3, x_215, x_216, x_217, x_218, x_219, x_220); +lean_dec(x_219); +lean_dec_ref(x_218); +lean_dec(x_217); +lean_dec(x_215); +return x_222; +} +else +{ +lean_object* x_223; +x_223 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_215, x_220); +if (lean_obj_tag(x_223) == 0) +{ +lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; +x_224 = lean_ctor_get(x_223, 1); +lean_inc(x_224); +lean_dec_ref(x_223); +x_225 = lean_ctor_get(x_4, 1); +lean_inc_ref(x_225); +lean_inc(x_55); +x_226 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__5___boxed), 10, 2); +lean_closure_set(x_226, 0, x_225); +lean_closure_set(x_226, 1, x_55); +lean_inc(x_219); +lean_inc_ref(x_218); +lean_inc(x_217); +lean_inc_ref(x_216); +lean_inc_ref(x_214); +x_227 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_226, x_214, x_215, x_216, x_217, x_218, x_219, x_224); +if (lean_obj_tag(x_227) == 0) +{ +uint8_t x_228; +x_228 = !lean_is_exclusive(x_227); +if (x_228 == 0) +{ +lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_229 = lean_ctor_get(x_227, 0); +x_230 = lean_ctor_get(x_227, 1); +lean_inc(x_219); +lean_inc_ref(x_218); +lean_inc(x_217); +lean_inc_ref(x_216); +lean_inc_ref(x_214); +x_231 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7(x_89, x_214, x_215, x_216, x_217, x_218, x_219, x_230); +if (lean_obj_tag(x_231) == 0) +{ +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; uint8_t x_237; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_229); +x_235 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__6___boxed), 9, 1); +lean_closure_set(x_235, 0, x_229); +lean_inc(x_3); +lean_inc_ref(x_235); +lean_inc_ref(x_181); +x_236 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___boxed), 11, 3); +lean_closure_set(x_236, 0, x_181); +lean_closure_set(x_236, 1, x_235); +lean_closure_set(x_236, 2, x_3); +x_237 = lean_unbox(x_233); +lean_dec(x_233); +if (x_237 == 0) +{ +lean_object* x_238; lean_object* x_239; +lean_dec_ref(x_236); +lean_free_object(x_231); +lean_free_object(x_227); +lean_dec(x_229); +lean_dec_ref(x_213); +x_238 = lean_box(0); +lean_inc(x_219); +lean_inc_ref(x_218); +lean_inc(x_217); +lean_inc_ref(x_216); +lean_inc(x_215); +lean_inc_ref(x_214); +x_239 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7(x_181, x_235, x_3, x_238, x_214, x_215, x_216, x_217, x_218, x_219, x_234); +x_142 = x_215; +x_143 = x_212; +x_144 = x_219; +x_145 = x_218; +x_146 = x_216; +x_147 = x_214; +x_148 = x_217; +x_149 = x_239; +goto block_154; +} +else +{ +lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; +lean_dec_ref(x_235); +lean_dec_ref(x_181); +lean_dec(x_3); +x_240 = lean_ctor_get(x_229, 2); +lean_inc_ref(x_240); +lean_dec(x_229); +x_241 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__6; +x_242 = l_Lean_Expr_constName_x21(x_213); +lean_dec_ref(x_213); +x_243 = l_Lean_MessageData_ofName(x_242); +lean_ctor_set_tag(x_231, 7); +lean_ctor_set(x_231, 1, x_243); +lean_ctor_set(x_231, 0, x_241); +x_244 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__8; +lean_ctor_set_tag(x_227, 7); +lean_ctor_set(x_227, 1, x_244); +lean_ctor_set(x_227, 0, x_231); +switch (lean_obj_tag(x_240)) { +case 0: +{ +lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_245 = lean_ctor_get(x_240, 0); +lean_inc(x_245); +lean_dec_ref(x_240); +x_246 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__10; +x_247 = l_Lean_MessageData_ofName(x_245); +x_248 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_248, 0, x_246); +lean_ctor_set(x_248, 1, x_247); +x_249 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_250 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_250, 0, x_248); +lean_ctor_set(x_250, 1, x_249); +x_155 = x_215; +x_156 = x_234; +x_157 = x_236; +x_158 = x_212; +x_159 = x_219; +x_160 = x_218; +x_161 = x_216; +x_162 = x_227; +x_163 = x_217; +x_164 = x_214; +x_165 = x_250; +goto block_175; +} +case 1: +{ +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; +x_251 = lean_ctor_get(x_240, 0); +lean_inc(x_251); +lean_dec_ref(x_240); +x_252 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__12; +x_253 = l_Lean_Expr_fvar___override(x_251); +x_254 = l_Lean_MessageData_ofExpr(x_253); +x_255 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_255, 0, x_252); +lean_ctor_set(x_255, 1, x_254); +x_256 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_257 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_257, 0, x_255); +lean_ctor_set(x_257, 1, x_256); +x_155 = x_215; +x_156 = x_234; +x_157 = x_236; +x_158 = x_212; +x_159 = x_219; +x_160 = x_218; +x_161 = x_216; +x_162 = x_227; +x_163 = x_217; +x_164 = x_214; +x_165 = x_257; +goto block_175; +} +default: +{ +lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; +x_258 = lean_ctor_get(x_240, 1); +lean_inc(x_258); +x_259 = lean_ctor_get(x_240, 2); +lean_inc_ref(x_259); +lean_dec_ref(x_240); +x_260 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__14; +x_261 = l_Lean_MessageData_ofSyntax(x_258); +x_262 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_262, 0, x_260); +lean_ctor_set(x_262, 1, x_261); +x_263 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__16; +x_264 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_264, 0, x_262); +lean_ctor_set(x_264, 1, x_263); +x_265 = l_Lean_MessageData_ofExpr(x_259); +x_266 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_266, 0, x_264); +lean_ctor_set(x_266, 1, x_265); +x_267 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_268 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_268, 0, x_266); +lean_ctor_set(x_268, 1, x_267); +x_155 = x_215; +x_156 = x_234; +x_157 = x_236; +x_158 = x_212; +x_159 = x_219; +x_160 = x_218; +x_161 = x_216; +x_162 = x_227; +x_163 = x_217; +x_164 = x_214; +x_165 = x_268; +goto block_175; +} +} +} +} +else +{ +lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; uint8_t x_273; +x_269 = lean_ctor_get(x_231, 0); +x_270 = lean_ctor_get(x_231, 1); +lean_inc(x_270); +lean_inc(x_269); +lean_dec(x_231); +lean_inc(x_229); +x_271 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__6___boxed), 9, 1); +lean_closure_set(x_271, 0, x_229); +lean_inc(x_3); +lean_inc_ref(x_271); +lean_inc_ref(x_181); +x_272 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___boxed), 11, 3); +lean_closure_set(x_272, 0, x_181); +lean_closure_set(x_272, 1, x_271); +lean_closure_set(x_272, 2, x_3); +x_273 = lean_unbox(x_269); +lean_dec(x_269); +if (x_273 == 0) +{ +lean_object* x_274; lean_object* x_275; +lean_dec_ref(x_272); +lean_free_object(x_227); +lean_dec(x_229); +lean_dec_ref(x_213); +x_274 = lean_box(0); +lean_inc(x_219); +lean_inc_ref(x_218); +lean_inc(x_217); +lean_inc_ref(x_216); +lean_inc(x_215); +lean_inc_ref(x_214); +x_275 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7(x_181, x_271, x_3, x_274, x_214, x_215, x_216, x_217, x_218, x_219, x_270); +x_142 = x_215; +x_143 = x_212; +x_144 = x_219; +x_145 = x_218; +x_146 = x_216; +x_147 = x_214; +x_148 = x_217; +x_149 = x_275; +goto block_154; +} +else +{ +lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; +lean_dec_ref(x_271); +lean_dec_ref(x_181); +lean_dec(x_3); +x_276 = lean_ctor_get(x_229, 2); +lean_inc_ref(x_276); +lean_dec(x_229); +x_277 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__6; +x_278 = l_Lean_Expr_constName_x21(x_213); +lean_dec_ref(x_213); +x_279 = l_Lean_MessageData_ofName(x_278); +x_280 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_280, 0, x_277); +lean_ctor_set(x_280, 1, x_279); +x_281 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__8; +lean_ctor_set_tag(x_227, 7); +lean_ctor_set(x_227, 1, x_281); +lean_ctor_set(x_227, 0, x_280); +switch (lean_obj_tag(x_276)) { +case 0: +{ +lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; +x_282 = lean_ctor_get(x_276, 0); +lean_inc(x_282); +lean_dec_ref(x_276); +x_283 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__10; +x_284 = l_Lean_MessageData_ofName(x_282); +x_285 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_285, 0, x_283); +lean_ctor_set(x_285, 1, x_284); +x_286 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_287 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_287, 0, x_285); +lean_ctor_set(x_287, 1, x_286); +x_155 = x_215; +x_156 = x_270; +x_157 = x_272; +x_158 = x_212; +x_159 = x_219; +x_160 = x_218; +x_161 = x_216; +x_162 = x_227; +x_163 = x_217; +x_164 = x_214; +x_165 = x_287; +goto block_175; +} +case 1: +{ +lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; +x_288 = lean_ctor_get(x_276, 0); +lean_inc(x_288); +lean_dec_ref(x_276); +x_289 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__12; +x_290 = l_Lean_Expr_fvar___override(x_288); +x_291 = l_Lean_MessageData_ofExpr(x_290); +x_292 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_292, 0, x_289); +lean_ctor_set(x_292, 1, x_291); +x_293 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_294 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_294, 0, x_292); +lean_ctor_set(x_294, 1, x_293); +x_155 = x_215; +x_156 = x_270; +x_157 = x_272; +x_158 = x_212; +x_159 = x_219; +x_160 = x_218; +x_161 = x_216; +x_162 = x_227; +x_163 = x_217; +x_164 = x_214; +x_165 = x_294; +goto block_175; +} +default: +{ +lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; +x_295 = lean_ctor_get(x_276, 1); +lean_inc(x_295); +x_296 = lean_ctor_get(x_276, 2); +lean_inc_ref(x_296); +lean_dec_ref(x_276); +x_297 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__14; +x_298 = l_Lean_MessageData_ofSyntax(x_295); +x_299 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_299, 0, x_297); +lean_ctor_set(x_299, 1, x_298); +x_300 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__16; +x_301 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_301, 0, x_299); +lean_ctor_set(x_301, 1, x_300); +x_302 = l_Lean_MessageData_ofExpr(x_296); +x_303 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_303, 0, x_301); +lean_ctor_set(x_303, 1, x_302); +x_304 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_305 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_305, 0, x_303); +lean_ctor_set(x_305, 1, x_304); +x_155 = x_215; +x_156 = x_270; +x_157 = x_272; +x_158 = x_212; +x_159 = x_219; +x_160 = x_218; +x_161 = x_216; +x_162 = x_227; +x_163 = x_217; +x_164 = x_214; +x_165 = x_305; +goto block_175; +} +} +} +} +} +else +{ +lean_object* x_306; lean_object* x_307; +lean_free_object(x_227); +lean_dec(x_229); +lean_dec_ref(x_213); +lean_dec_ref(x_181); +lean_dec(x_3); +x_306 = lean_ctor_get(x_231, 0); +lean_inc(x_306); +x_307 = lean_ctor_get(x_231, 1); +lean_inc(x_307); +lean_dec_ref(x_231); +x_130 = x_215; +x_131 = x_212; +x_132 = x_219; +x_133 = x_218; +x_134 = x_216; +x_135 = x_214; +x_136 = x_217; +x_137 = x_306; +x_138 = x_307; +goto block_141; +} +} +else +{ +lean_object* x_308; lean_object* x_309; lean_object* x_310; +x_308 = lean_ctor_get(x_227, 0); +x_309 = lean_ctor_get(x_227, 1); +lean_inc(x_309); +lean_inc(x_308); +lean_dec(x_227); +lean_inc(x_219); +lean_inc_ref(x_218); +lean_inc(x_217); +lean_inc_ref(x_216); +lean_inc_ref(x_214); +x_310 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7(x_89, x_214, x_215, x_216, x_217, x_218, x_219, x_309); +if (lean_obj_tag(x_310) == 0) +{ +lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; uint8_t x_316; +x_311 = lean_ctor_get(x_310, 0); +lean_inc(x_311); +x_312 = lean_ctor_get(x_310, 1); +lean_inc(x_312); +if (lean_is_exclusive(x_310)) { + lean_ctor_release(x_310, 0); + lean_ctor_release(x_310, 1); + x_313 = x_310; +} else { + lean_dec_ref(x_310); + x_313 = lean_box(0); +} +lean_inc(x_308); +x_314 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__6___boxed), 9, 1); +lean_closure_set(x_314, 0, x_308); +lean_inc(x_3); +lean_inc_ref(x_314); +lean_inc_ref(x_181); +x_315 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___boxed), 11, 3); +lean_closure_set(x_315, 0, x_181); +lean_closure_set(x_315, 1, x_314); +lean_closure_set(x_315, 2, x_3); +x_316 = lean_unbox(x_311); +lean_dec(x_311); +if (x_316 == 0) +{ +lean_object* x_317; lean_object* x_318; +lean_dec_ref(x_315); +lean_dec(x_313); +lean_dec(x_308); +lean_dec_ref(x_213); +x_317 = lean_box(0); +lean_inc(x_219); +lean_inc_ref(x_218); +lean_inc(x_217); +lean_inc_ref(x_216); +lean_inc(x_215); +lean_inc_ref(x_214); +x_318 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7(x_181, x_314, x_3, x_317, x_214, x_215, x_216, x_217, x_218, x_219, x_312); +x_142 = x_215; +x_143 = x_212; +x_144 = x_219; +x_145 = x_218; +x_146 = x_216; +x_147 = x_214; +x_148 = x_217; +x_149 = x_318; +goto block_154; +} +else +{ +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_dec_ref(x_314); +lean_dec_ref(x_181); +lean_dec(x_3); +x_319 = lean_ctor_get(x_308, 2); +lean_inc_ref(x_319); +lean_dec(x_308); +x_320 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__6; +x_321 = l_Lean_Expr_constName_x21(x_213); +lean_dec_ref(x_213); +x_322 = l_Lean_MessageData_ofName(x_321); +if (lean_is_scalar(x_313)) { + x_323 = lean_alloc_ctor(7, 2, 0); +} else { + x_323 = x_313; + lean_ctor_set_tag(x_323, 7); +} +lean_ctor_set(x_323, 0, x_320); +lean_ctor_set(x_323, 1, x_322); +x_324 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__8; +x_325 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_325, 0, x_323); +lean_ctor_set(x_325, 1, x_324); +switch (lean_obj_tag(x_319)) { +case 0: +{ +lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; +x_326 = lean_ctor_get(x_319, 0); +lean_inc(x_326); +lean_dec_ref(x_319); +x_327 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__10; +x_328 = l_Lean_MessageData_ofName(x_326); +x_329 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +x_330 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_331 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_331, 0, x_329); +lean_ctor_set(x_331, 1, x_330); +x_155 = x_215; +x_156 = x_312; +x_157 = x_315; +x_158 = x_212; +x_159 = x_219; +x_160 = x_218; +x_161 = x_216; +x_162 = x_325; +x_163 = x_217; +x_164 = x_214; +x_165 = x_331; +goto block_175; +} +case 1: +{ +lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; +x_332 = lean_ctor_get(x_319, 0); +lean_inc(x_332); +lean_dec_ref(x_319); +x_333 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__12; +x_334 = l_Lean_Expr_fvar___override(x_332); +x_335 = l_Lean_MessageData_ofExpr(x_334); +x_336 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_336, 0, x_333); +lean_ctor_set(x_336, 1, x_335); +x_337 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_338 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_338, 0, x_336); +lean_ctor_set(x_338, 1, x_337); +x_155 = x_215; +x_156 = x_312; +x_157 = x_315; +x_158 = x_212; +x_159 = x_219; +x_160 = x_218; +x_161 = x_216; +x_162 = x_325; +x_163 = x_217; +x_164 = x_214; +x_165 = x_338; +goto block_175; +} +default: +{ +lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; +x_339 = lean_ctor_get(x_319, 1); +lean_inc(x_339); +x_340 = lean_ctor_get(x_319, 2); +lean_inc_ref(x_340); +lean_dec_ref(x_319); +x_341 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__14; +x_342 = l_Lean_MessageData_ofSyntax(x_339); +x_343 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__16; +x_345 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_345, 0, x_343); +lean_ctor_set(x_345, 1, x_344); +x_346 = l_Lean_MessageData_ofExpr(x_340); +x_347 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_347, 0, x_345); +lean_ctor_set(x_347, 1, x_346); +x_348 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_349 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_349, 0, x_347); +lean_ctor_set(x_349, 1, x_348); +x_155 = x_215; +x_156 = x_312; +x_157 = x_315; +x_158 = x_212; +x_159 = x_219; +x_160 = x_218; +x_161 = x_216; +x_162 = x_325; +x_163 = x_217; +x_164 = x_214; +x_165 = x_349; +goto block_175; +} +} +} +} +else +{ +lean_object* x_350; lean_object* x_351; +lean_dec(x_308); +lean_dec_ref(x_213); +lean_dec_ref(x_181); +lean_dec(x_3); +x_350 = lean_ctor_get(x_310, 0); +lean_inc(x_350); +x_351 = lean_ctor_get(x_310, 1); +lean_inc(x_351); +lean_dec_ref(x_310); +x_130 = x_215; +x_131 = x_212; +x_132 = x_219; +x_133 = x_218; +x_134 = x_216; +x_135 = x_214; +x_136 = x_217; +x_137 = x_350; +x_138 = x_351; +goto block_141; +} +} +} +else +{ +lean_object* x_352; lean_object* x_353; +lean_dec_ref(x_213); +lean_dec_ref(x_181); +lean_dec(x_3); +x_352 = lean_ctor_get(x_227, 0); +lean_inc(x_352); +x_353 = lean_ctor_get(x_227, 1); +lean_inc(x_353); +lean_dec_ref(x_227); +x_130 = x_215; +x_131 = x_212; +x_132 = x_219; +x_133 = x_218; +x_134 = x_216; +x_135 = x_214; +x_136 = x_217; +x_137 = x_352; +x_138 = x_353; +goto block_141; +} +} +else +{ +uint8_t x_354; +lean_dec(x_219); +lean_dec_ref(x_218); +lean_dec(x_217); +lean_dec_ref(x_216); +lean_dec(x_215); +lean_dec_ref(x_214); +lean_dec_ref(x_213); +lean_dec_ref(x_212); +lean_dec_ref(x_181); +lean_dec(x_88); +lean_dec(x_57); +lean_dec(x_55); +lean_dec_ref(x_4); +lean_dec(x_3); +x_354 = !lean_is_exclusive(x_223); +if (x_354 == 0) +{ +return x_223; +} +else +{ +lean_object* x_355; lean_object* x_356; lean_object* x_357; +x_355 = lean_ctor_get(x_223, 0); +x_356 = lean_ctor_get(x_223, 1); +lean_inc(x_356); +lean_inc(x_355); +lean_dec(x_223); +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; +} +} +} +} +block_438: +{ +lean_object* x_366; +x_366 = l_Lean_Expr_getAppFn_x27(x_179); +if (lean_obj_tag(x_366) == 8) +{ +lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; +lean_dec_ref(x_212); +lean_dec_ref(x_180); +lean_dec(x_88); +lean_dec(x_57); +lean_dec(x_55); +lean_dec_ref(x_6); +x_367 = lean_ctor_get(x_366, 0); +lean_inc(x_367); +x_368 = lean_ctor_get(x_366, 1); +lean_inc_ref(x_368); +x_369 = lean_ctor_get(x_366, 2); +lean_inc_ref(x_369); +x_370 = lean_ctor_get(x_366, 3); +lean_inc_ref(x_370); +lean_dec_ref(x_366); +x_371 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_360, x_365); +if (lean_obj_tag(x_371) == 0) +{ +lean_object* x_372; lean_object* x_373; lean_object* x_374; +x_372 = lean_ctor_get(x_371, 1); +lean_inc(x_372); +lean_dec_ref(x_371); +lean_inc(x_367); +x_373 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__8___boxed), 9, 1); +lean_closure_set(x_373, 0, x_367); +lean_inc(x_364); +lean_inc_ref(x_363); +lean_inc(x_362); +lean_inc_ref(x_361); +lean_inc_ref(x_359); +x_374 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_373, x_359, x_360, x_361, x_362, x_363, x_364, x_372); +if (lean_obj_tag(x_374) == 0) +{ +lean_object* x_375; lean_object* x_376; lean_object* x_377; uint8_t x_378; lean_object* x_379; +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_ref(x_374); +lean_inc_ref(x_369); +x_377 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__10___boxed), 17, 7); +lean_closure_set(x_377, 0, x_370); +lean_closure_set(x_377, 1, x_179); +lean_closure_set(x_377, 2, x_181); +lean_closure_set(x_377, 3, x_4); +lean_closure_set(x_377, 4, x_3); +lean_closure_set(x_377, 5, x_367); +lean_closure_set(x_377, 6, x_369); +x_378 = 0; +x_379 = l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg(x_375, x_368, x_369, x_377, x_378, x_359, x_360, x_361, x_362, x_363, x_364, x_376); +return x_379; +} +else +{ +uint8_t x_380; +lean_dec_ref(x_370); +lean_dec_ref(x_369); +lean_dec_ref(x_368); +lean_dec(x_367); +lean_dec(x_364); +lean_dec_ref(x_363); +lean_dec(x_362); +lean_dec_ref(x_361); +lean_dec(x_360); +lean_dec_ref(x_359); +lean_dec_ref(x_181); +lean_dec_ref(x_179); +lean_dec_ref(x_4); +lean_dec(x_3); +x_380 = !lean_is_exclusive(x_374); +if (x_380 == 0) +{ +return x_374; +} +else +{ +lean_object* x_381; lean_object* x_382; lean_object* x_383; +x_381 = lean_ctor_get(x_374, 0); +x_382 = lean_ctor_get(x_374, 1); +lean_inc(x_382); +lean_inc(x_381); +lean_dec(x_374); +x_383 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_383, 0, x_381); +lean_ctor_set(x_383, 1, x_382); +return x_383; +} +} +} +else +{ +uint8_t x_384; +lean_dec_ref(x_370); +lean_dec_ref(x_369); +lean_dec_ref(x_368); +lean_dec(x_367); +lean_dec(x_364); +lean_dec_ref(x_363); +lean_dec(x_362); +lean_dec_ref(x_361); +lean_dec(x_360); +lean_dec_ref(x_359); +lean_dec_ref(x_181); +lean_dec_ref(x_179); +lean_dec_ref(x_4); +lean_dec(x_3); +x_384 = !lean_is_exclusive(x_371); +if (x_384 == 0) +{ +return x_371; +} +else +{ +lean_object* x_385; lean_object* x_386; lean_object* x_387; +x_385 = lean_ctor_get(x_371, 0); +x_386 = lean_ctor_get(x_371, 1); +lean_inc(x_386); +lean_inc(x_385); +lean_dec(x_371); +x_387 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_387, 0, x_385); +lean_ctor_set(x_387, 1, x_386); +return x_387; +} +} +} +else +{ +lean_object* x_388; +lean_inc(x_364); +lean_inc_ref(x_363); +lean_inc(x_362); +lean_inc_ref(x_361); +lean_inc_ref(x_359); +x_388 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_180, x_359, x_360, x_361, x_362, x_363, x_364, x_365); +if (lean_obj_tag(x_388) == 0) +{ +lean_object* x_389; +x_389 = lean_ctor_get(x_388, 0); +lean_inc(x_389); +if (lean_obj_tag(x_389) == 0) +{ +lean_object* x_390; lean_object* x_391; +lean_dec_ref(x_6); +x_390 = lean_ctor_get(x_388, 1); +lean_inc(x_390); +lean_dec_ref(x_388); +x_391 = l_Lean_Expr_fvarId_x3f(x_366); +if (lean_obj_tag(x_391) == 0) +{ +lean_dec_ref(x_179); +x_213 = x_366; +x_214 = x_359; +x_215 = x_360; +x_216 = x_361; +x_217 = x_362; +x_218 = x_363; +x_219 = x_364; +x_220 = x_390; +goto block_358; +} +else +{ +lean_object* x_392; uint8_t x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; +x_392 = lean_ctor_get(x_391, 0); +lean_inc(x_392); +lean_dec_ref(x_391); +x_393 = 0; +x_394 = lean_box(x_393); +x_395 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__9___boxed), 10, 2); +lean_closure_set(x_395, 0, x_392); +lean_closure_set(x_395, 1, x_394); +lean_inc(x_364); +lean_inc_ref(x_363); +lean_inc(x_362); +lean_inc_ref(x_361); +lean_inc_ref(x_359); +x_396 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_395, x_359, x_360, x_361, x_362, x_363, x_364, x_390); +if (lean_obj_tag(x_396) == 0) +{ +lean_object* x_397; +x_397 = lean_ctor_get(x_396, 0); +lean_inc(x_397); +if (lean_obj_tag(x_397) == 0) +{ +lean_object* x_398; +lean_dec_ref(x_179); +x_398 = lean_ctor_get(x_396, 1); +lean_inc(x_398); +lean_dec_ref(x_396); +x_213 = x_366; +x_214 = x_359; +x_215 = x_360; +x_216 = x_361; +x_217 = x_362; +x_218 = x_363; +x_219 = x_364; +x_220 = x_398; +goto block_358; +} +else +{ +lean_object* x_399; lean_object* x_400; lean_object* x_401; +lean_dec_ref(x_212); +lean_dec(x_88); +lean_dec(x_57); +lean_dec(x_55); +x_399 = lean_ctor_get(x_396, 1); +lean_inc(x_399); +lean_dec_ref(x_396); +x_400 = lean_ctor_get(x_397, 0); +lean_inc(x_400); +lean_dec_ref(x_397); +x_401 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_360, x_399); +if (lean_obj_tag(x_401) == 0) +{ +lean_object* x_402; lean_object* x_403; +x_402 = lean_ctor_get(x_401, 1); +lean_inc(x_402); +lean_dec_ref(x_401); +lean_inc(x_364); +lean_inc_ref(x_363); +lean_inc(x_362); +lean_inc_ref(x_361); +lean_inc_ref(x_359); +x_403 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7(x_89, x_359, x_360, x_361, x_362, x_363, x_364, x_402); +if (lean_obj_tag(x_403) == 0) +{ +lean_object* x_404; uint8_t x_405; +x_404 = lean_ctor_get(x_403, 0); +lean_inc(x_404); +x_405 = lean_unbox(x_404); +lean_dec(x_404); +if (x_405 == 0) +{ +lean_object* x_406; +x_406 = lean_ctor_get(x_403, 1); +lean_inc(x_406); +lean_dec_ref(x_403); +x_182 = x_366; +x_183 = x_393; +x_184 = x_400; +x_185 = x_359; +x_186 = x_360; +x_187 = x_361; +x_188 = x_362; +x_189 = x_363; +x_190 = x_364; +x_191 = x_406; +goto block_210; +} +else +{ +lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; +x_407 = lean_ctor_get(x_403, 1); +lean_inc(x_407); +lean_dec_ref(x_403); +x_408 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__18; +lean_inc_ref(x_366); +x_409 = l_Lean_MessageData_ofExpr(x_366); +x_410 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_410, 0, x_408); +lean_ctor_set(x_410, 1, x_409); +x_411 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_412 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_412, 0, x_410); +lean_ctor_set(x_412, 1, x_411); +lean_inc(x_364); +lean_inc_ref(x_363); +lean_inc(x_362); +lean_inc_ref(x_361); +lean_inc_ref(x_359); +x_413 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14(x_89, x_412, x_359, x_360, x_361, x_362, x_363, x_364, x_407); +if (lean_obj_tag(x_413) == 0) +{ +lean_object* x_414; +x_414 = lean_ctor_get(x_413, 1); +lean_inc(x_414); +lean_dec_ref(x_413); +x_182 = x_366; +x_183 = x_393; +x_184 = x_400; +x_185 = x_359; +x_186 = x_360; +x_187 = x_361; +x_188 = x_362; +x_189 = x_363; +x_190 = x_364; +x_191 = x_414; +goto block_210; +} +else +{ +uint8_t x_415; +lean_dec(x_400); +lean_dec_ref(x_366); +lean_dec(x_364); +lean_dec_ref(x_363); +lean_dec(x_362); +lean_dec_ref(x_361); +lean_dec(x_360); +lean_dec_ref(x_359); +lean_dec_ref(x_181); +lean_dec_ref(x_179); +lean_dec_ref(x_4); +lean_dec(x_3); +x_415 = !lean_is_exclusive(x_413); +if (x_415 == 0) +{ +return x_413; +} +else +{ +lean_object* x_416; lean_object* x_417; lean_object* x_418; +x_416 = lean_ctor_get(x_413, 0); +x_417 = lean_ctor_get(x_413, 1); +lean_inc(x_417); +lean_inc(x_416); +lean_dec(x_413); +x_418 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_418, 0, x_416); +lean_ctor_set(x_418, 1, x_417); +return x_418; +} +} +} +} +else +{ +uint8_t x_419; +lean_dec(x_400); +lean_dec_ref(x_366); +lean_dec(x_364); +lean_dec_ref(x_363); +lean_dec(x_362); +lean_dec_ref(x_361); +lean_dec(x_360); +lean_dec_ref(x_359); +lean_dec_ref(x_181); +lean_dec_ref(x_179); +lean_dec_ref(x_4); +lean_dec(x_3); +x_419 = !lean_is_exclusive(x_403); +if (x_419 == 0) +{ +return x_403; +} +else +{ +lean_object* x_420; lean_object* x_421; lean_object* x_422; +x_420 = lean_ctor_get(x_403, 0); +x_421 = lean_ctor_get(x_403, 1); +lean_inc(x_421); +lean_inc(x_420); +lean_dec(x_403); +x_422 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_422, 0, x_420); +lean_ctor_set(x_422, 1, x_421); +return x_422; +} +} +} +else +{ +uint8_t x_423; +lean_dec(x_400); +lean_dec_ref(x_366); +lean_dec(x_364); +lean_dec_ref(x_363); +lean_dec(x_362); +lean_dec_ref(x_361); +lean_dec(x_360); +lean_dec_ref(x_359); +lean_dec_ref(x_181); +lean_dec_ref(x_179); +lean_dec_ref(x_4); +lean_dec(x_3); +x_423 = !lean_is_exclusive(x_401); +if (x_423 == 0) +{ +return x_401; +} +else +{ +lean_object* x_424; lean_object* x_425; lean_object* x_426; +x_424 = lean_ctor_get(x_401, 0); +x_425 = lean_ctor_get(x_401, 1); +lean_inc(x_425); +lean_inc(x_424); +lean_dec(x_401); +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; +} +} +} +} +else +{ +uint8_t x_427; +lean_dec_ref(x_366); +lean_dec(x_364); +lean_dec_ref(x_363); +lean_dec(x_362); +lean_dec_ref(x_361); +lean_dec(x_360); +lean_dec_ref(x_359); +lean_dec_ref(x_212); +lean_dec_ref(x_181); +lean_dec_ref(x_179); +lean_dec(x_88); +lean_dec(x_57); +lean_dec(x_55); +lean_dec_ref(x_4); +lean_dec(x_3); +x_427 = !lean_is_exclusive(x_396); +if (x_427 == 0) +{ +return x_396; +} +else +{ +lean_object* x_428; lean_object* x_429; lean_object* x_430; +x_428 = lean_ctor_get(x_396, 0); +x_429 = lean_ctor_get(x_396, 1); +lean_inc(x_429); +lean_inc(x_428); +lean_dec(x_396); +x_430 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_430, 0, x_428); +lean_ctor_set(x_430, 1, x_429); +return x_430; +} +} +} +} +else +{ +lean_object* x_431; lean_object* x_432; lean_object* x_433; +lean_dec_ref(x_366); +lean_dec_ref(x_212); +lean_dec_ref(x_179); +lean_dec(x_88); +lean_dec(x_57); +lean_dec(x_55); +x_431 = lean_ctor_get(x_388, 1); +lean_inc(x_431); +lean_dec_ref(x_388); +x_432 = lean_ctor_get(x_389, 0); +lean_inc(x_432); +lean_dec_ref(x_389); +x_433 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit(x_4, x_181, x_432, x_3, x_6, x_359, x_360, x_361, x_362, x_363, x_364, x_431); +return x_433; +} +} +else +{ +uint8_t x_434; +lean_dec_ref(x_366); +lean_dec(x_364); +lean_dec_ref(x_363); +lean_dec(x_362); +lean_dec_ref(x_361); +lean_dec(x_360); +lean_dec_ref(x_359); +lean_dec_ref(x_212); +lean_dec_ref(x_181); +lean_dec_ref(x_179); +lean_dec(x_88); +lean_dec(x_57); +lean_dec(x_55); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec(x_3); +x_434 = !lean_is_exclusive(x_388); +if (x_434 == 0) +{ +return x_388; +} +else +{ +lean_object* x_435; lean_object* x_436; lean_object* x_437; +x_435 = lean_ctor_get(x_388, 0); +x_436 = lean_ctor_get(x_388, 1); +lean_inc(x_436); +lean_inc(x_435); +lean_dec(x_388); +x_437 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_437, 0, x_435); +lean_ctor_set(x_437, 1, x_436); +return x_437; +} +} +} +} +} +else +{ +uint8_t x_451; +lean_dec(x_88); +lean_dec(x_86); +lean_dec_ref(x_78); +lean_dec_ref(x_77); +lean_dec_ref(x_73); +lean_dec_ref(x_69); +lean_dec_ref(x_65); +lean_dec(x_57); +lean_dec(x_55); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_451 = !lean_is_exclusive(x_176); +if (x_451 == 0) +{ +return x_176; +} +else +{ +lean_object* x_452; lean_object* x_453; lean_object* x_454; +x_452 = lean_ctor_get(x_176, 0); +x_453 = lean_ctor_get(x_176, 1); +lean_inc(x_453); +lean_inc(x_452); +lean_dec(x_176); +x_454 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_454, 0, x_452); +lean_ctor_set(x_454, 1, x_453); +return x_454; +} +} +block_129: +{ +if (x_99 == 0) +{ +lean_object* x_100; +lean_dec(x_88); +lean_inc(x_93); +lean_inc_ref(x_94); +lean_inc(x_97); +lean_inc_ref(x_95); +lean_inc_ref(x_98); +x_100 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7(x_89, x_98, x_90, x_95, x_97, x_94, x_93, x_96); +if (lean_obj_tag(x_100) == 0) +{ +lean_object* x_101; uint8_t x_102; +x_101 = lean_ctor_get(x_100, 0); +lean_inc(x_101); +x_102 = lean_unbox(x_101); +lean_dec(x_101); +if (x_102 == 0) +{ +lean_object* x_103; lean_object* x_104; lean_object* x_105; +lean_dec_ref(x_92); +lean_dec(x_57); +lean_dec(x_55); +x_103 = lean_ctor_get(x_100, 1); +lean_inc(x_103); +lean_dec_ref(x_100); +x_104 = lean_box(0); +lean_inc(x_93); +lean_inc_ref(x_94); +lean_inc(x_97); +lean_inc_ref(x_95); +lean_inc(x_90); +lean_inc_ref(x_98); +x_105 = lean_apply_8(x_91, x_104, x_98, x_90, x_95, x_97, x_94, x_93, x_103); +x_40 = x_90; +x_41 = x_93; +x_42 = x_94; +x_43 = x_95; +x_44 = x_98; +x_45 = x_97; +x_46 = x_105; +goto block_53; +} +else +{ +lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_106 = lean_ctor_get(x_100, 1); +lean_inc(x_106); +lean_dec_ref(x_100); +x_107 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__2; +x_108 = l_Lean_MessageData_ofExpr(x_55); +if (lean_is_scalar(x_57)) { + x_109 = lean_alloc_ctor(7, 2, 0); +} else { + x_109 = x_57; + lean_ctor_set_tag(x_109, 7); +} +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_108); +x_110 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__4; +x_111 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_111, 0, x_109); +lean_ctor_set(x_111, 1, x_110); +x_112 = l_Lean_Exception_toMessageData(x_92); +x_113 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_113, 0, x_111); +lean_ctor_set(x_113, 1, x_112); +x_114 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_115 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_115, 0, x_113); +lean_ctor_set(x_115, 1, x_114); +lean_inc(x_93); +lean_inc_ref(x_94); +lean_inc(x_97); +lean_inc_ref(x_95); +lean_inc_ref(x_98); +x_116 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14(x_89, x_115, x_98, x_90, x_95, x_97, x_94, x_93, x_106); +if (lean_obj_tag(x_116) == 0) +{ +lean_object* x_117; lean_object* x_118; lean_object* x_119; +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_ref(x_116); +lean_inc(x_93); +lean_inc_ref(x_94); +lean_inc(x_97); +lean_inc_ref(x_95); +lean_inc(x_90); +lean_inc_ref(x_98); +x_119 = lean_apply_8(x_91, x_117, x_98, x_90, x_95, x_97, x_94, x_93, x_118); +x_40 = x_90; +x_41 = x_93; +x_42 = x_94; +x_43 = x_95; +x_44 = x_98; +x_45 = x_97; +x_46 = x_119; +goto block_53; +} +else +{ +uint8_t x_120; +lean_dec_ref(x_98); +lean_dec(x_97); +lean_dec_ref(x_95); +lean_dec_ref(x_94); +lean_dec(x_93); +lean_dec_ref(x_91); +lean_dec(x_90); +lean_dec_ref(x_4); +x_120 = !lean_is_exclusive(x_116); +if (x_120 == 0) +{ +return x_116; +} +else +{ +lean_object* x_121; lean_object* x_122; lean_object* x_123; +x_121 = lean_ctor_get(x_116, 0); +x_122 = lean_ctor_get(x_116, 1); +lean_inc(x_122); +lean_inc(x_121); +lean_dec(x_116); +x_123 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_123, 0, x_121); +lean_ctor_set(x_123, 1, x_122); +return x_123; +} +} +} +} +else +{ +uint8_t x_124; +lean_dec_ref(x_98); +lean_dec(x_97); +lean_dec_ref(x_95); +lean_dec_ref(x_94); +lean_dec(x_93); +lean_dec_ref(x_92); +lean_dec_ref(x_91); +lean_dec(x_90); +lean_dec(x_57); +lean_dec(x_55); +lean_dec_ref(x_4); +x_124 = !lean_is_exclusive(x_100); +if (x_124 == 0) +{ +return x_100; +} +else +{ +lean_object* x_125; lean_object* x_126; lean_object* x_127; +x_125 = lean_ctor_get(x_100, 0); +x_126 = lean_ctor_get(x_100, 1); +lean_inc(x_126); +lean_inc(x_125); +lean_dec(x_100); +x_127 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_127, 0, x_125); +lean_ctor_set(x_127, 1, x_126); +return x_127; +} +} +} +else +{ +lean_object* x_128; +lean_dec_ref(x_98); +lean_dec(x_97); +lean_dec_ref(x_95); +lean_dec_ref(x_94); +lean_dec(x_93); +lean_dec_ref(x_91); +lean_dec(x_90); +lean_dec(x_57); +lean_dec(x_55); +lean_dec_ref(x_4); +if (lean_is_scalar(x_88)) { + x_128 = lean_alloc_ctor(1, 2, 0); +} else { + x_128 = x_88; + lean_ctor_set_tag(x_128, 1); +} +lean_ctor_set(x_128, 0, x_92); +lean_ctor_set(x_128, 1, x_96); +return x_128; +} +} +block_141: +{ +uint8_t x_139; +x_139 = l_Lean_Exception_isInterrupt(x_137); +if (x_139 == 0) +{ +uint8_t x_140; +x_140 = l_Lean_Exception_isRuntime(x_137); +x_90 = x_130; +x_91 = x_131; +x_92 = x_137; +x_93 = x_132; +x_94 = x_133; +x_95 = x_134; +x_96 = x_138; +x_97 = x_136; +x_98 = x_135; +x_99 = x_140; +goto block_129; +} +else +{ +x_90 = x_130; +x_91 = x_131; +x_92 = x_137; +x_93 = x_132; +x_94 = x_133; +x_95 = x_134; +x_96 = x_138; +x_97 = x_136; +x_98 = x_135; +x_99 = x_139; +goto block_129; +} +} +block_154: +{ +if (lean_obj_tag(x_149) == 0) +{ +lean_object* x_150; lean_object* x_151; +lean_dec_ref(x_143); +lean_dec(x_88); +lean_dec(x_57); +lean_dec(x_55); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +lean_dec_ref(x_149); +x_14 = x_142; +x_15 = x_144; +x_16 = x_145; +x_17 = x_146; +x_18 = x_148; +x_19 = x_147; +x_20 = x_150; +x_21 = x_151; +goto block_39; +} +else +{ +lean_object* x_152; lean_object* x_153; +x_152 = lean_ctor_get(x_149, 0); +lean_inc(x_152); +x_153 = lean_ctor_get(x_149, 1); +lean_inc(x_153); +lean_dec_ref(x_149); +x_130 = x_142; +x_131 = x_143; +x_132 = x_144; +x_133 = x_145; +x_134 = x_146; +x_135 = x_147; +x_136 = x_148; +x_137 = x_152; +x_138 = x_153; +goto block_141; +} +} +block_175: +{ +lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; +x_166 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_166, 0, x_162); +lean_ctor_set(x_166, 1, x_165); +x_167 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_168 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_168, 0, x_166); +lean_ctor_set(x_168, 1, x_167); +lean_inc(x_159); +lean_inc_ref(x_160); +lean_inc(x_163); +lean_inc_ref(x_161); +lean_inc_ref(x_164); +x_169 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14(x_89, x_168, x_164, x_155, x_161, x_163, x_160, x_159, x_156); +if (lean_obj_tag(x_169) == 0) +{ +lean_object* x_170; lean_object* x_171; lean_object* x_172; +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_ref(x_169); +lean_inc(x_159); +lean_inc_ref(x_160); +lean_inc(x_163); +lean_inc_ref(x_161); +lean_inc(x_155); +lean_inc_ref(x_164); +x_172 = lean_apply_8(x_157, x_170, x_164, x_155, x_161, x_163, x_160, x_159, x_171); +x_142 = x_155; +x_143 = x_158; +x_144 = x_159; +x_145 = x_160; +x_146 = x_161; +x_147 = x_164; +x_148 = x_163; +x_149 = x_172; +goto block_154; +} +else +{ +lean_object* x_173; lean_object* x_174; +lean_dec_ref(x_157); +x_173 = lean_ctor_get(x_169, 0); +lean_inc(x_173); +x_174 = lean_ctor_get(x_169, 1); +lean_inc(x_174); +lean_dec_ref(x_169); +x_130 = x_155; +x_131 = x_158; +x_132 = x_159; +x_133 = x_160; +x_134 = x_161; +x_135 = x_164; +x_136 = x_163; +x_137 = x_173; +x_138 = x_174; +goto block_141; +} +} +} +else +{ +lean_dec_ref(x_78); +lean_dec_ref(x_77); +lean_dec_ref(x_73); +lean_dec_ref(x_69); +lean_dec_ref(x_65); +lean_dec(x_57); +lean_dec(x_55); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_85; +} +} +} +} +} +} +} +} +else +{ +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_54; +} +block_39: +{ +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_22 = lean_ctor_get(x_20, 0); +lean_inc(x_22); +lean_dec_ref(x_20); +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = lean_array_to_list(x_24); +x_26 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars(x_4, x_25, x_19, x_14, x_17, x_18, x_16, x_15, x_21); +if (lean_obj_tag(x_26) == 0) +{ +uint8_t x_27; +x_27 = !lean_is_exclusive(x_26); +if (x_27 == 0) +{ +lean_object* x_28; +x_28 = lean_ctor_get(x_26, 0); +lean_dec(x_28); +lean_ctor_set(x_26, 0, x_23); +return x_26; +} +else +{ +lean_object* x_29; lean_object* x_30; +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_dec(x_26); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_23); +lean_ctor_set(x_30, 1, x_29); +return x_30; +} +} +else +{ +uint8_t x_31; +lean_dec(x_23); +x_31 = !lean_is_exclusive(x_26); +if (x_31 == 0) +{ +return x_26; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_ctor_get(x_26, 0); +x_33 = lean_ctor_get(x_26, 1); +lean_inc(x_33); +lean_inc(x_32); +lean_dec(x_26); +x_34 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +return x_34; +} +} +} +else +{ +uint8_t x_35; +lean_dec_ref(x_19); +lean_dec(x_18); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec_ref(x_4); +x_35 = !lean_is_exclusive(x_20); +if (x_35 == 0) +{ +lean_object* x_36; +x_36 = lean_ctor_get(x_20, 1); +lean_dec(x_36); +lean_ctor_set_tag(x_20, 0); +lean_ctor_set(x_20, 1, x_21); +return x_20; +} +else +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_20, 0); +lean_inc(x_37); +lean_dec(x_20); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_21); +return x_38; +} +} +} +block_53: +{ +if (lean_obj_tag(x_46) == 0) +{ +lean_object* x_47; lean_object* x_48; +x_47 = lean_ctor_get(x_46, 0); +lean_inc(x_47); +x_48 = lean_ctor_get(x_46, 1); +lean_inc(x_48); +lean_dec_ref(x_46); +x_14 = x_40; +x_15 = x_41; +x_16 = x_42; +x_17 = x_43; +x_18 = x_45; +x_19 = x_44; +x_20 = x_47; +x_21 = x_48; +goto block_39; +} +else +{ +uint8_t x_49; +lean_dec(x_45); +lean_dec_ref(x_44); +lean_dec_ref(x_43); +lean_dec_ref(x_42); +lean_dec(x_41); +lean_dec(x_40); +lean_dec_ref(x_4); +x_49 = !lean_is_exclusive(x_46); +if (x_49 == 0) +{ +return x_46; +} +else +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_50 = lean_ctor_get(x_46, 0); +x_51 = lean_ctor_get(x_46, 1); +lean_inc(x_51); +lean_inc(x_50); +lean_dec(x_46); +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_50); +lean_ctor_set(x_52, 1, x_51); +return x_52; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_11 = lean_ctor_get(x_2, 3); +lean_inc_ref(x_11); +x_12 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__0___boxed), 10, 0); +x_13 = l_Lean_instInhabitedExpr; +lean_inc(x_3); +lean_inc_ref(x_2); +x_14 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onFail___boxed), 9, 2); +lean_closure_set(x_14, 0, x_2); +lean_closure_set(x_14, 1, x_3); +x_15 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg___closed__0; +x_16 = l_Lean_Expr_getAppNumArgs(x_11); +lean_inc(x_16); +x_17 = lean_mk_array(x_16, x_15); +x_18 = lean_unsigned_to_nat(1u); +x_19 = lean_nat_sub(x_16, x_18); +lean_dec(x_16); +x_20 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_11, x_17, x_19); +x_21 = lean_unsigned_to_nat(2u); +x_22 = lean_array_get(x_13, x_20, x_21); +x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__1___boxed), 9, 1); +lean_closure_set(x_23, 0, x_22); +x_24 = lean_unsigned_to_nat(3u); +x_25 = lean_array_get(x_13, x_20, x_24); +lean_dec_ref(x_20); +x_26 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11), 13, 6); +lean_closure_set(x_26, 0, x_23); +lean_closure_set(x_26, 1, x_2); +lean_closure_set(x_26, 2, x_3); +lean_closure_set(x_26, 3, x_1); +lean_closure_set(x_26, 4, x_25); +lean_closure_set(x_26, 5, x_12); +x_27 = l_Lean_Elab_Tactic_Do_ifOutOfFuel___redArg(x_14, x_26, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_27; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; uint8_t x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; +x_12 = lean_alloc_closure((void*)(l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg___lam__0), 10, 3); +lean_closure_set(x_12, 0, x_3); +lean_closure_set(x_12, 1, x_5); +lean_closure_set(x_12, 2, x_6); +x_13 = 1; +x_14 = 0; +x_15 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_15, 0, x_2); +x_16 = l___private_Lean_Meta_Basic_0__Lean_Meta_lambdaTelescopeImp(lean_box(0), x_1, x_13, x_14, x_13, x_14, x_15, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec_ref(x_15); +if (lean_obj_tag(x_16) == 0) +{ +return x_16; +} +else +{ +uint8_t x_17; +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) +{ +return x_16; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_16, 0); +x_19 = lean_ctor_get(x_16, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_16); +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_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__0___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__1___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_Meta_mkForallFVars(x_1, x_2, x_3, x_4, x_4, x_5, x_9, x_10, x_11, x_12, x_13); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__1___lam__1(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, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; uint8_t x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_12 = l_Array_append___redArg(x_1, x_3); +x_13 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg___closed__0; +x_14 = 0; +x_15 = 1; +x_16 = lean_box(x_14); +x_17 = lean_box(x_2); +x_18 = lean_box(x_15); +x_19 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__1___lam__0___boxed), 13, 5); +lean_closure_set(x_19, 0, x_12); +lean_closure_set(x_19, 1, x_13); +lean_closure_set(x_19, 2, x_16); +lean_closure_set(x_19, 3, x_17); +lean_closure_set(x_19, 4, x_18); +x_20 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_19, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_20; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__1(lean_object* x_1, uint8_t x_2, lean_object* x_3, size_t x_4, size_t 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) { +_start: +{ +uint8_t x_14; +x_14 = lean_usize_dec_lt(x_5, x_4); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_6); +lean_ctor_set(x_15, 1, x_13); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; +x_16 = lean_array_uget(x_3, x_5); +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec_ref(x_16); +x_19 = lean_box(x_2); +lean_inc_ref(x_1); +x_20 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__1___lam__1___boxed), 11, 2); +lean_closure_set(x_20, 0, x_1); +lean_closure_set(x_20, 1, x_19); +x_21 = 0; +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +x_22 = l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__0___redArg(x_18, x_17, x_20, x_21, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; size_t x_26; size_t x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec_ref(x_22); +x_25 = lean_array_push(x_6, x_23); +x_26 = 1; +x_27 = lean_usize_add(x_5, x_26); +x_5 = x_27; +x_6 = x_25; +x_13 = x_24; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_1); +x_29 = !lean_is_exclusive(x_22); +if (x_29 == 0) +{ +return x_22; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__2___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_3, x_13); +if (x_14 == 1) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_5); +lean_ctor_set(x_15, 1, x_12); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = lean_array_fget(x_2, x_4); +lean_inc(x_4); +lean_inc(x_1); +x_17 = lean_name_append_index_after(x_1, x_4); +x_18 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__10___boxed), 10, 2); +lean_closure_set(x_18, 0, x_16); +lean_closure_set(x_18, 1, x_17); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_19 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_18, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +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; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); +lean_inc(x_21); +lean_dec_ref(x_19); +x_22 = lean_unsigned_to_nat(1u); +x_23 = lean_nat_sub(x_3, x_22); +lean_dec(x_3); +x_24 = lean_nat_add(x_4, x_22); +lean_dec(x_4); +x_25 = lean_array_push(x_5, x_20); +x_3 = x_23; +x_4 = x_24; +x_5 = x_25; +x_12 = x_21; +goto _start; +} +else +{ +uint8_t x_27; +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_27 = !lean_is_exclusive(x_19); +if (x_27 == 0) +{ +return x_19; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_19, 0); +x_29 = lean_ctor_get(x_19, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_19); +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +return x_30; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; +x_14 = l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__2___redArg(x_1, x_2, x_3, x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__3___lam__0(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_10; +x_10 = l_Lean_FVarId_getUserName___redArg(x_1, x_5, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__3(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +uint8_t x_11; +x_11 = lean_usize_dec_lt(x_2, x_1); +if (x_11 == 0) +{ +lean_object* x_12; +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_3); +lean_ctor_set(x_12, 1, x_10); +return x_12; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_13 = lean_array_uget(x_3, x_2); +x_14 = l_Lean_Expr_fvarId_x21(x_13); +lean_dec(x_13); +x_15 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__3___lam__0___boxed), 9, 1); +lean_closure_set(x_15, 0, x_14); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_16 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_15, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; size_t x_21; size_t x_22; lean_object* x_23; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec_ref(x_16); +x_19 = lean_unsigned_to_nat(0u); +x_20 = lean_array_uset(x_3, x_2, x_19); +x_21 = 1; +x_22 = lean_usize_add(x_2, x_21); +x_23 = lean_array_uset(x_20, x_2, x_17); +x_2 = x_22; +x_3 = x_23; +x_10 = x_18; +goto _start; +} +else +{ +uint8_t x_25; +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_25 = !lean_is_exclusive(x_16); +if (x_25 == 0) +{ +return x_16; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_16, 0); +x_27 = lean_ctor_get(x_16, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_16); +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_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__4(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +uint8_t x_12; +x_12 = lean_usize_dec_lt(x_3, x_2); +if (x_12 == 0) +{ +lean_object* x_13; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_1); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_4); +lean_ctor_set(x_13, 1, x_11); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_array_uget(x_4, x_3); +lean_inc_ref(x_1); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_15 = lean_apply_8(x_1, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; size_t x_20; size_t x_21; lean_object* x_22; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +lean_dec_ref(x_15); +x_18 = lean_unsigned_to_nat(0u); +x_19 = lean_array_uset(x_4, x_3, x_18); +x_20 = 1; +x_21 = lean_usize_add(x_3, x_20); +x_22 = lean_array_uset(x_19, x_3, x_16); +x_3 = x_21; +x_4 = x_22; +x_11 = x_17; +goto _start; +} +else +{ +uint8_t x_24; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_1); +x_24 = !lean_is_exclusive(x_15); +if (x_24 == 0) +{ +return x_15; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_15, 0); +x_26 = lean_ctor_get(x_15, 1); +lean_inc(x_26); +lean_inc(x_25); +lean_dec(x_15); +x_27 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_27, 0, x_25); +lean_ctor_set(x_27, 1, x_26); +return x_27; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__0(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_10; +x_10 = l_Lean_Meta_isProof(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_mkEqHEq(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_mkArrow___redArg(x_1, x_2, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5(uint8_t x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; lean_object* x_14; uint8_t x_19; +x_19 = lean_usize_dec_lt(x_4, x_3); +if (x_19 == 0) +{ +lean_object* x_20; +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_5); +lean_ctor_set(x_20, 1, x_12); +return x_20; +} +else +{ +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; uint8_t x_33; +x_21 = lean_ctor_get(x_5, 1); +lean_inc(x_21); +x_22 = lean_ctor_get(x_21, 1); +lean_inc(x_22); +x_23 = lean_ctor_get(x_21, 0); +lean_inc(x_23); +if (lean_is_exclusive(x_21)) { + lean_ctor_release(x_21, 0); + lean_ctor_release(x_21, 1); + x_24 = x_21; +} else { + lean_dec_ref(x_21); + x_24 = lean_box(0); +} +x_25 = lean_ctor_get(x_5, 0); +lean_inc(x_25); +if (lean_is_exclusive(x_5)) { + lean_ctor_release(x_5, 0); + lean_ctor_release(x_5, 1); + x_26 = x_5; +} else { + lean_dec_ref(x_5); + x_26 = lean_box(0); +} +x_27 = lean_ctor_get(x_22, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_22, 1); +lean_inc(x_28); +if (lean_is_exclusive(x_22)) { + lean_ctor_release(x_22, 0); + lean_ctor_release(x_22, 1); + x_29 = x_22; +} else { + lean_dec_ref(x_22); + x_29 = lean_box(0); +} +x_30 = lean_ctor_get(x_23, 0); +lean_inc_ref(x_30); +x_31 = lean_ctor_get(x_23, 1); +lean_inc(x_31); +x_32 = lean_ctor_get(x_23, 2); +lean_inc(x_32); +x_33 = lean_nat_dec_lt(x_31, x_32); +if (x_33 == 0) +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +lean_dec(x_32); +lean_dec(x_31); +lean_dec_ref(x_30); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +if (lean_is_scalar(x_29)) { + x_34 = lean_alloc_ctor(0, 2, 0); +} else { + x_34 = x_29; +} +lean_ctor_set(x_34, 0, x_27); +lean_ctor_set(x_34, 1, x_28); +if (lean_is_scalar(x_24)) { + x_35 = lean_alloc_ctor(0, 2, 0); +} else { + x_35 = x_24; +} +lean_ctor_set(x_35, 0, x_23); +lean_ctor_set(x_35, 1, x_34); +if (lean_is_scalar(x_26)) { + x_36 = lean_alloc_ctor(0, 2, 0); +} else { + x_36 = x_26; +} +lean_ctor_set(x_36, 0, x_25); +lean_ctor_set(x_36, 1, x_35); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set(x_37, 1, x_12); +return x_37; +} +else +{ +uint8_t x_38; +x_38 = !lean_is_exclusive(x_23); +if (x_38 == 0) +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47; +x_39 = lean_ctor_get(x_23, 2); +lean_dec(x_39); +x_40 = lean_ctor_get(x_23, 1); +lean_dec(x_40); +x_41 = lean_ctor_get(x_23, 0); +lean_dec(x_41); +x_42 = lean_ctor_get(x_25, 0); +lean_inc_ref(x_42); +x_43 = lean_ctor_get(x_25, 1); +lean_inc(x_43); +x_44 = lean_ctor_get(x_25, 2); +lean_inc(x_44); +x_45 = lean_unsigned_to_nat(1u); +x_46 = lean_nat_add(x_31, x_45); +lean_inc_ref(x_30); +lean_ctor_set(x_23, 1, x_46); +x_47 = lean_nat_dec_lt(x_43, x_44); +if (x_47 == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +lean_dec(x_44); +lean_dec(x_43); +lean_dec_ref(x_42); +lean_dec(x_31); +lean_dec_ref(x_30); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +if (lean_is_scalar(x_29)) { + x_48 = lean_alloc_ctor(0, 2, 0); +} else { + x_48 = x_29; +} +lean_ctor_set(x_48, 0, x_27); +lean_ctor_set(x_48, 1, x_28); +if (lean_is_scalar(x_24)) { + x_49 = lean_alloc_ctor(0, 2, 0); +} else { + x_49 = x_24; +} +lean_ctor_set(x_49, 0, x_23); +lean_ctor_set(x_49, 1, x_48); +if (lean_is_scalar(x_26)) { + x_50 = lean_alloc_ctor(0, 2, 0); +} else { + x_50 = x_26; +} +lean_ctor_set(x_50, 0, x_25); +lean_ctor_set(x_50, 1, x_49); +x_51 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_12); +return x_51; +} +else +{ +uint8_t x_52; +x_52 = !lean_is_exclusive(x_25); +if (x_52 == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_53 = lean_ctor_get(x_25, 2); +lean_dec(x_53); +x_54 = lean_ctor_get(x_25, 1); +lean_dec(x_54); +x_55 = lean_ctor_get(x_25, 0); +lean_dec(x_55); +x_56 = lean_nat_add(x_43, x_45); +lean_inc_ref(x_42); +lean_ctor_set(x_25, 1, x_56); +if (x_1 == 0) +{ +lean_dec(x_43); +lean_dec_ref(x_42); +lean_dec(x_31); +lean_dec_ref(x_30); +goto block_62; +} +else +{ +lean_object* x_63; +x_63 = lean_array_fget(x_30, x_31); +lean_dec(x_31); +lean_dec_ref(x_30); +if (lean_obj_tag(x_63) == 0) +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; +lean_dec(x_29); +lean_dec(x_26); +lean_dec(x_24); +x_64 = lean_array_uget(x_2, x_4); +lean_inc_ref(x_64); +x_65 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__0___boxed), 9, 1); +lean_closure_set(x_65, 0, x_64); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_66 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_65, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_66) == 0) +{ +lean_object* x_67; uint8_t x_68; +x_67 = lean_ctor_get(x_66, 0); +lean_inc(x_67); +x_68 = lean_unbox(x_67); +lean_dec(x_67); +if (x_68 == 0) +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; +x_69 = lean_ctor_get(x_66, 1); +lean_inc(x_69); +lean_dec_ref(x_66); +x_70 = lean_array_fget(x_42, x_43); +lean_dec(x_43); +lean_dec_ref(x_42); +x_71 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__1___boxed), 10, 2); +lean_closure_set(x_71, 0, x_70); +lean_closure_set(x_71, 1, x_64); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_72 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_71, x_6, x_7, x_8, x_9, x_10, x_11, x_69); +if (lean_obj_tag(x_72) == 0) +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_73 = lean_ctor_get(x_72, 0); +lean_inc(x_73); +x_74 = lean_ctor_get(x_72, 1); +lean_inc(x_74); +lean_dec_ref(x_72); +lean_inc(x_73); +x_75 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__2___boxed), 10, 2); +lean_closure_set(x_75, 0, x_73); +lean_closure_set(x_75, 1, x_28); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_76 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_75, x_6, x_7, x_8, x_9, x_10, x_11, x_74); +if (lean_obj_tag(x_76) == 0) +{ +lean_object* x_77; lean_object* x_78; uint8_t x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_77 = lean_ctor_get(x_76, 0); +lean_inc(x_77); +x_78 = lean_ctor_get(x_76, 1); +lean_inc(x_78); +lean_dec_ref(x_76); +x_79 = l_Lean_Expr_isHEq(x_73); +lean_dec(x_73); +x_80 = lean_box(x_79); +x_81 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_81, 0, x_80); +x_82 = lean_array_push(x_27, x_81); +x_83 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_83, 0, x_82); +lean_ctor_set(x_83, 1, x_77); +x_84 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_84, 0, x_23); +lean_ctor_set(x_84, 1, x_83); +x_85 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_85, 0, x_25); +lean_ctor_set(x_85, 1, x_84); +x_13 = x_85; +x_14 = x_78; +goto block_18; +} +else +{ +uint8_t x_86; +lean_dec(x_73); +lean_dec_ref(x_25); +lean_dec_ref(x_23); +lean_dec(x_27); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +x_86 = !lean_is_exclusive(x_76); +if (x_86 == 0) +{ +return x_76; +} +else +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_87 = lean_ctor_get(x_76, 0); +x_88 = lean_ctor_get(x_76, 1); +lean_inc(x_88); +lean_inc(x_87); +lean_dec(x_76); +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_87); +lean_ctor_set(x_89, 1, x_88); +return x_89; +} +} +} +else +{ +uint8_t x_90; +lean_dec_ref(x_25); +lean_dec_ref(x_23); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +x_90 = !lean_is_exclusive(x_72); +if (x_90 == 0) +{ +return x_72; +} +else +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_91 = lean_ctor_get(x_72, 0); +x_92 = lean_ctor_get(x_72, 1); +lean_inc(x_92); +lean_inc(x_91); +lean_dec(x_72); +x_93 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_93, 0, x_91); +lean_ctor_set(x_93, 1, x_92); +return x_93; +} +} +} +else +{ +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_dec_ref(x_64); +lean_dec(x_43); +lean_dec_ref(x_42); +x_94 = lean_ctor_get(x_66, 1); +lean_inc(x_94); +lean_dec_ref(x_66); +x_95 = lean_box(0); +x_96 = lean_array_push(x_27, x_95); +x_97 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_97, 0, x_96); +lean_ctor_set(x_97, 1, x_28); +x_98 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_98, 0, x_23); +lean_ctor_set(x_98, 1, x_97); +x_99 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_99, 0, x_25); +lean_ctor_set(x_99, 1, x_98); +x_13 = x_99; +x_14 = x_94; +goto block_18; +} +} +else +{ +uint8_t x_100; +lean_dec_ref(x_64); +lean_dec_ref(x_25); +lean_dec_ref(x_23); +lean_dec(x_43); +lean_dec_ref(x_42); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +x_100 = !lean_is_exclusive(x_66); +if (x_100 == 0) +{ +return x_66; +} +else +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_101 = lean_ctor_get(x_66, 0); +x_102 = lean_ctor_get(x_66, 1); +lean_inc(x_102); +lean_inc(x_101); +lean_dec(x_66); +x_103 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_103, 0, x_101); +lean_ctor_set(x_103, 1, x_102); +return x_103; +} +} +} +else +{ +lean_dec_ref(x_63); +lean_dec(x_43); +lean_dec_ref(x_42); +goto block_62; +} +} +block_62: +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_57 = lean_box(0); +x_58 = lean_array_push(x_27, x_57); +if (lean_is_scalar(x_29)) { + x_59 = lean_alloc_ctor(0, 2, 0); +} else { + x_59 = x_29; +} +lean_ctor_set(x_59, 0, x_58); +lean_ctor_set(x_59, 1, x_28); +if (lean_is_scalar(x_24)) { + x_60 = lean_alloc_ctor(0, 2, 0); +} else { + x_60 = x_24; +} +lean_ctor_set(x_60, 0, x_23); +lean_ctor_set(x_60, 1, x_59); +if (lean_is_scalar(x_26)) { + x_61 = lean_alloc_ctor(0, 2, 0); +} else { + x_61 = x_26; +} +lean_ctor_set(x_61, 0, x_25); +lean_ctor_set(x_61, 1, x_60); +x_13 = x_61; +x_14 = x_12; +goto block_18; +} +} +else +{ +lean_object* x_104; lean_object* x_105; +lean_dec(x_25); +x_104 = lean_nat_add(x_43, x_45); +lean_inc_ref(x_42); +x_105 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_105, 0, x_42); +lean_ctor_set(x_105, 1, x_104); +lean_ctor_set(x_105, 2, x_44); +if (x_1 == 0) +{ +lean_dec(x_43); +lean_dec_ref(x_42); +lean_dec(x_31); +lean_dec_ref(x_30); +goto block_111; +} +else +{ +lean_object* x_112; +x_112 = lean_array_fget(x_30, x_31); +lean_dec(x_31); +lean_dec_ref(x_30); +if (lean_obj_tag(x_112) == 0) +{ +lean_object* x_113; lean_object* x_114; lean_object* x_115; +lean_dec(x_29); +lean_dec(x_26); +lean_dec(x_24); +x_113 = lean_array_uget(x_2, x_4); +lean_inc_ref(x_113); +x_114 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__0___boxed), 9, 1); +lean_closure_set(x_114, 0, x_113); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_115 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_114, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_115) == 0) +{ +lean_object* x_116; uint8_t x_117; +x_116 = lean_ctor_get(x_115, 0); +lean_inc(x_116); +x_117 = lean_unbox(x_116); +lean_dec(x_116); +if (x_117 == 0) +{ +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; +x_118 = lean_ctor_get(x_115, 1); +lean_inc(x_118); +lean_dec_ref(x_115); +x_119 = lean_array_fget(x_42, x_43); +lean_dec(x_43); +lean_dec_ref(x_42); +x_120 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__1___boxed), 10, 2); +lean_closure_set(x_120, 0, x_119); +lean_closure_set(x_120, 1, x_113); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_121 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_120, x_6, x_7, x_8, x_9, x_10, x_11, x_118); +if (lean_obj_tag(x_121) == 0) +{ +lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; +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_ref(x_121); +lean_inc(x_122); +x_124 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__2___boxed), 10, 2); +lean_closure_set(x_124, 0, x_122); +lean_closure_set(x_124, 1, x_28); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_125 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_124, x_6, x_7, x_8, x_9, x_10, x_11, x_123); +if (lean_obj_tag(x_125) == 0) +{ +lean_object* x_126; lean_object* x_127; uint8_t 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; +x_126 = lean_ctor_get(x_125, 0); +lean_inc(x_126); +x_127 = lean_ctor_get(x_125, 1); +lean_inc(x_127); +lean_dec_ref(x_125); +x_128 = l_Lean_Expr_isHEq(x_122); +lean_dec(x_122); +x_129 = lean_box(x_128); +x_130 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_130, 0, x_129); +x_131 = lean_array_push(x_27, x_130); +x_132 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_132, 0, x_131); +lean_ctor_set(x_132, 1, x_126); +x_133 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_133, 0, x_23); +lean_ctor_set(x_133, 1, x_132); +x_134 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_134, 0, x_105); +lean_ctor_set(x_134, 1, x_133); +x_13 = x_134; +x_14 = x_127; +goto block_18; +} +else +{ +lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; +lean_dec(x_122); +lean_dec_ref(x_105); +lean_dec_ref(x_23); +lean_dec(x_27); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +x_135 = lean_ctor_get(x_125, 0); +lean_inc(x_135); +x_136 = lean_ctor_get(x_125, 1); +lean_inc(x_136); +if (lean_is_exclusive(x_125)) { + lean_ctor_release(x_125, 0); + lean_ctor_release(x_125, 1); + x_137 = x_125; +} else { + lean_dec_ref(x_125); + x_137 = lean_box(0); +} +if (lean_is_scalar(x_137)) { + x_138 = lean_alloc_ctor(1, 2, 0); +} else { + x_138 = x_137; +} +lean_ctor_set(x_138, 0, x_135); +lean_ctor_set(x_138, 1, x_136); +return x_138; +} +} +else +{ +lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; +lean_dec_ref(x_105); +lean_dec_ref(x_23); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +x_139 = lean_ctor_get(x_121, 0); +lean_inc(x_139); +x_140 = lean_ctor_get(x_121, 1); +lean_inc(x_140); +if (lean_is_exclusive(x_121)) { + lean_ctor_release(x_121, 0); + lean_ctor_release(x_121, 1); + x_141 = x_121; +} else { + lean_dec_ref(x_121); + x_141 = lean_box(0); +} +if (lean_is_scalar(x_141)) { + x_142 = lean_alloc_ctor(1, 2, 0); +} else { + x_142 = x_141; +} +lean_ctor_set(x_142, 0, x_139); +lean_ctor_set(x_142, 1, x_140); +return x_142; +} +} +else +{ +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_dec_ref(x_113); +lean_dec(x_43); +lean_dec_ref(x_42); +x_143 = lean_ctor_get(x_115, 1); +lean_inc(x_143); +lean_dec_ref(x_115); +x_144 = lean_box(0); +x_145 = lean_array_push(x_27, x_144); +x_146 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_146, 0, x_145); +lean_ctor_set(x_146, 1, x_28); +x_147 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_147, 0, x_23); +lean_ctor_set(x_147, 1, x_146); +x_148 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_148, 0, x_105); +lean_ctor_set(x_148, 1, x_147); +x_13 = x_148; +x_14 = x_143; +goto block_18; +} +} +else +{ +lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; +lean_dec_ref(x_113); +lean_dec_ref(x_105); +lean_dec_ref(x_23); +lean_dec(x_43); +lean_dec_ref(x_42); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +x_149 = lean_ctor_get(x_115, 0); +lean_inc(x_149); +x_150 = lean_ctor_get(x_115, 1); +lean_inc(x_150); +if (lean_is_exclusive(x_115)) { + lean_ctor_release(x_115, 0); + lean_ctor_release(x_115, 1); + x_151 = x_115; +} else { + lean_dec_ref(x_115); + x_151 = lean_box(0); +} +if (lean_is_scalar(x_151)) { + x_152 = lean_alloc_ctor(1, 2, 0); +} else { + x_152 = x_151; +} +lean_ctor_set(x_152, 0, x_149); +lean_ctor_set(x_152, 1, x_150); +return x_152; +} +} +else +{ +lean_dec_ref(x_112); +lean_dec(x_43); +lean_dec_ref(x_42); +goto block_111; +} +} +block_111: +{ +lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; +x_106 = lean_box(0); +x_107 = lean_array_push(x_27, x_106); +if (lean_is_scalar(x_29)) { + x_108 = lean_alloc_ctor(0, 2, 0); +} else { + x_108 = x_29; +} +lean_ctor_set(x_108, 0, x_107); +lean_ctor_set(x_108, 1, x_28); +if (lean_is_scalar(x_24)) { + x_109 = lean_alloc_ctor(0, 2, 0); +} else { + x_109 = x_24; +} +lean_ctor_set(x_109, 0, x_23); +lean_ctor_set(x_109, 1, x_108); +if (lean_is_scalar(x_26)) { + x_110 = lean_alloc_ctor(0, 2, 0); +} else { + x_110 = x_26; +} +lean_ctor_set(x_110, 0, x_105); +lean_ctor_set(x_110, 1, x_109); +x_13 = x_110; +x_14 = x_12; +goto block_18; +} +} +} +} +else +{ +lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; uint8_t x_159; +lean_dec(x_23); +x_153 = lean_ctor_get(x_25, 0); +lean_inc_ref(x_153); +x_154 = lean_ctor_get(x_25, 1); +lean_inc(x_154); +x_155 = lean_ctor_get(x_25, 2); +lean_inc(x_155); +x_156 = lean_unsigned_to_nat(1u); +x_157 = lean_nat_add(x_31, x_156); +lean_inc_ref(x_30); +x_158 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_158, 0, x_30); +lean_ctor_set(x_158, 1, x_157); +lean_ctor_set(x_158, 2, x_32); +x_159 = lean_nat_dec_lt(x_154, x_155); +if (x_159 == 0) +{ +lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +lean_dec(x_155); +lean_dec(x_154); +lean_dec_ref(x_153); +lean_dec(x_31); +lean_dec_ref(x_30); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +if (lean_is_scalar(x_29)) { + x_160 = lean_alloc_ctor(0, 2, 0); +} else { + x_160 = x_29; +} +lean_ctor_set(x_160, 0, x_27); +lean_ctor_set(x_160, 1, x_28); +if (lean_is_scalar(x_24)) { + x_161 = lean_alloc_ctor(0, 2, 0); +} else { + x_161 = x_24; +} +lean_ctor_set(x_161, 0, x_158); +lean_ctor_set(x_161, 1, x_160); +if (lean_is_scalar(x_26)) { + x_162 = lean_alloc_ctor(0, 2, 0); +} else { + x_162 = x_26; +} +lean_ctor_set(x_162, 0, x_25); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_162); +lean_ctor_set(x_163, 1, x_12); +return x_163; +} +else +{ +lean_object* x_164; lean_object* x_165; lean_object* x_166; +if (lean_is_exclusive(x_25)) { + lean_ctor_release(x_25, 0); + lean_ctor_release(x_25, 1); + lean_ctor_release(x_25, 2); + x_164 = x_25; +} else { + lean_dec_ref(x_25); + x_164 = lean_box(0); +} +x_165 = lean_nat_add(x_154, x_156); +lean_inc_ref(x_153); +if (lean_is_scalar(x_164)) { + x_166 = lean_alloc_ctor(0, 3, 0); +} else { + x_166 = x_164; +} +lean_ctor_set(x_166, 0, x_153); +lean_ctor_set(x_166, 1, x_165); +lean_ctor_set(x_166, 2, x_155); +if (x_1 == 0) +{ +lean_dec(x_154); +lean_dec_ref(x_153); +lean_dec(x_31); +lean_dec_ref(x_30); +goto block_172; +} +else +{ +lean_object* x_173; +x_173 = lean_array_fget(x_30, x_31); +lean_dec(x_31); +lean_dec_ref(x_30); +if (lean_obj_tag(x_173) == 0) +{ +lean_object* x_174; lean_object* x_175; lean_object* x_176; +lean_dec(x_29); +lean_dec(x_26); +lean_dec(x_24); +x_174 = lean_array_uget(x_2, x_4); +lean_inc_ref(x_174); +x_175 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__0___boxed), 9, 1); +lean_closure_set(x_175, 0, x_174); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_176 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_175, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_176) == 0) +{ +lean_object* x_177; uint8_t x_178; +x_177 = lean_ctor_get(x_176, 0); +lean_inc(x_177); +x_178 = lean_unbox(x_177); +lean_dec(x_177); +if (x_178 == 0) +{ +lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; +x_179 = lean_ctor_get(x_176, 1); +lean_inc(x_179); +lean_dec_ref(x_176); +x_180 = lean_array_fget(x_153, x_154); +lean_dec(x_154); +lean_dec_ref(x_153); +x_181 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__1___boxed), 10, 2); +lean_closure_set(x_181, 0, x_180); +lean_closure_set(x_181, 1, x_174); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_182 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_181, x_6, x_7, x_8, x_9, x_10, x_11, x_179); +if (lean_obj_tag(x_182) == 0) +{ +lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; +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_ref(x_182); +lean_inc(x_183); +x_185 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__2___boxed), 10, 2); +lean_closure_set(x_185, 0, x_183); +lean_closure_set(x_185, 1, x_28); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_186 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_185, x_6, x_7, x_8, x_9, x_10, x_11, x_184); +if (lean_obj_tag(x_186) == 0) +{ +lean_object* x_187; lean_object* x_188; uint8_t 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_187 = lean_ctor_get(x_186, 0); +lean_inc(x_187); +x_188 = lean_ctor_get(x_186, 1); +lean_inc(x_188); +lean_dec_ref(x_186); +x_189 = l_Lean_Expr_isHEq(x_183); +lean_dec(x_183); +x_190 = lean_box(x_189); +x_191 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_191, 0, x_190); +x_192 = lean_array_push(x_27, x_191); +x_193 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_193, 0, x_192); +lean_ctor_set(x_193, 1, x_187); +x_194 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_194, 0, x_158); +lean_ctor_set(x_194, 1, x_193); +x_195 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_195, 0, x_166); +lean_ctor_set(x_195, 1, x_194); +x_13 = x_195; +x_14 = x_188; +goto block_18; +} +else +{ +lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; +lean_dec(x_183); +lean_dec_ref(x_166); +lean_dec_ref(x_158); +lean_dec(x_27); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +x_196 = lean_ctor_get(x_186, 0); +lean_inc(x_196); +x_197 = lean_ctor_get(x_186, 1); +lean_inc(x_197); +if (lean_is_exclusive(x_186)) { + lean_ctor_release(x_186, 0); + lean_ctor_release(x_186, 1); + x_198 = x_186; +} else { + lean_dec_ref(x_186); + x_198 = lean_box(0); +} +if (lean_is_scalar(x_198)) { + x_199 = lean_alloc_ctor(1, 2, 0); +} else { + x_199 = x_198; +} +lean_ctor_set(x_199, 0, x_196); +lean_ctor_set(x_199, 1, x_197); +return x_199; +} +} +else +{ +lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; +lean_dec_ref(x_166); +lean_dec_ref(x_158); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +x_200 = lean_ctor_get(x_182, 0); +lean_inc(x_200); +x_201 = lean_ctor_get(x_182, 1); +lean_inc(x_201); +if (lean_is_exclusive(x_182)) { + lean_ctor_release(x_182, 0); + lean_ctor_release(x_182, 1); + x_202 = x_182; +} else { + lean_dec_ref(x_182); + x_202 = lean_box(0); +} +if (lean_is_scalar(x_202)) { + x_203 = lean_alloc_ctor(1, 2, 0); +} else { + x_203 = x_202; +} +lean_ctor_set(x_203, 0, x_200); +lean_ctor_set(x_203, 1, x_201); +return x_203; +} +} +else +{ +lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; +lean_dec_ref(x_174); +lean_dec(x_154); +lean_dec_ref(x_153); +x_204 = lean_ctor_get(x_176, 1); +lean_inc(x_204); +lean_dec_ref(x_176); +x_205 = lean_box(0); +x_206 = lean_array_push(x_27, x_205); +x_207 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_207, 0, x_206); +lean_ctor_set(x_207, 1, x_28); +x_208 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_208, 0, x_158); +lean_ctor_set(x_208, 1, x_207); +x_209 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_209, 0, x_166); +lean_ctor_set(x_209, 1, x_208); +x_13 = x_209; +x_14 = x_204; +goto block_18; +} +} +else +{ +lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; +lean_dec_ref(x_174); +lean_dec_ref(x_166); +lean_dec_ref(x_158); +lean_dec(x_154); +lean_dec_ref(x_153); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +x_210 = lean_ctor_get(x_176, 0); +lean_inc(x_210); +x_211 = lean_ctor_get(x_176, 1); +lean_inc(x_211); +if (lean_is_exclusive(x_176)) { + lean_ctor_release(x_176, 0); + lean_ctor_release(x_176, 1); + x_212 = x_176; +} else { + lean_dec_ref(x_176); + x_212 = lean_box(0); +} +if (lean_is_scalar(x_212)) { + x_213 = lean_alloc_ctor(1, 2, 0); +} else { + x_213 = x_212; +} +lean_ctor_set(x_213, 0, x_210); +lean_ctor_set(x_213, 1, x_211); +return x_213; +} +} +else +{ +lean_dec_ref(x_173); +lean_dec(x_154); +lean_dec_ref(x_153); +goto block_172; +} +} +block_172: +{ +lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; +x_167 = lean_box(0); +x_168 = lean_array_push(x_27, x_167); +if (lean_is_scalar(x_29)) { + x_169 = lean_alloc_ctor(0, 2, 0); +} else { + x_169 = x_29; +} +lean_ctor_set(x_169, 0, x_168); +lean_ctor_set(x_169, 1, x_28); +if (lean_is_scalar(x_24)) { + x_170 = lean_alloc_ctor(0, 2, 0); +} else { + x_170 = x_24; +} +lean_ctor_set(x_170, 0, x_158); +lean_ctor_set(x_170, 1, x_169); +if (lean_is_scalar(x_26)) { + x_171 = lean_alloc_ctor(0, 2, 0); +} else { + x_171 = x_26; +} +lean_ctor_set(x_171, 0, x_166); +lean_ctor_set(x_171, 1, x_170); +x_13 = x_171; +x_14 = x_12; +goto block_18; +} +} +} +} +} +block_18: +{ +size_t x_15; size_t x_16; +x_15 = 1; +x_16 = lean_usize_add(x_4, x_15); +x_4 = x_16; +x_5 = x_13; +x_12 = x_14; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__6___redArg(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; uint8_t x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; +x_11 = lean_alloc_closure((void*)(l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg___lam__0), 10, 3); +lean_closure_set(x_11, 0, x_2); +lean_closure_set(x_11, 1, x_4); +lean_closure_set(x_11, 2, x_5); +x_12 = 1; +x_13 = 0; +x_14 = lean_box(0); +x_15 = l___private_Lean_Meta_Basic_0__Lean_Meta_lambdaTelescopeImp(lean_box(0), x_1, x_12, x_13, x_12, x_13, x_14, x_11, x_3, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_15) == 0) +{ +return x_15; +} +else +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +return x_15; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_15, 0); +x_18 = lean_ctor_get(x_15, 1); +lean_inc(x_18); +lean_inc(x_17); +lean_dec(x_15); +x_19 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +return x_19; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__6___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__7___lam__0(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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +if (x_1 == 0) +{ +lean_object* x_11; +x_11 = l_Lean_Meta_mkEqRefl(x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +else +{ +lean_object* x_12; +x_12 = l_Lean_Meta_mkHEqRefl(x_2, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__7(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; uint8_t x_18; +x_18 = lean_usize_dec_lt(x_3, x_2); +if (x_18 == 0) +{ +lean_object* x_19; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_4); +lean_ctor_set(x_19, 1, x_11); +return x_19; +} +else +{ +uint8_t x_20; +x_20 = !lean_is_exclusive(x_4); +if (x_20 == 0) +{ +lean_object* x_21; uint8_t x_22; +x_21 = lean_ctor_get(x_4, 1); +x_22 = !lean_is_exclusive(x_21); +if (x_22 == 0) +{ +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; +x_23 = lean_ctor_get(x_4, 0); +x_24 = lean_ctor_get(x_21, 0); +x_25 = lean_ctor_get(x_21, 1); +x_26 = lean_ctor_get(x_23, 0); +lean_inc_ref(x_26); +x_27 = lean_ctor_get(x_23, 1); +lean_inc(x_27); +x_28 = lean_ctor_get(x_23, 2); +lean_inc(x_28); +x_29 = lean_nat_dec_lt(x_27, x_28); +if (x_29 == 0) +{ +lean_object* x_30; +lean_dec(x_28); +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_4); +lean_ctor_set(x_30, 1, x_11); +return x_30; +} +else +{ +uint8_t x_31; +x_31 = !lean_is_exclusive(x_23); +if (x_31 == 0) +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_32 = lean_ctor_get(x_23, 2); +lean_dec(x_32); +x_33 = lean_ctor_get(x_23, 1); +lean_dec(x_33); +x_34 = lean_ctor_get(x_23, 0); +lean_dec(x_34); +x_35 = lean_array_fget(x_26, x_27); +x_36 = lean_unsigned_to_nat(1u); +x_37 = lean_nat_add(x_27, x_36); +lean_dec(x_27); +lean_ctor_set(x_23, 1, x_37); +if (lean_obj_tag(x_35) == 0) +{ +x_12 = x_4; +x_13 = x_11; +goto block_17; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_38 = lean_ctor_get(x_35, 0); +lean_inc(x_38); +lean_dec_ref(x_35); +x_39 = lean_array_uget(x_1, x_3); +x_40 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__7___lam__0___boxed), 10, 2); +lean_closure_set(x_40, 0, x_38); +lean_closure_set(x_40, 1, x_39); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_41 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_40, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_41) == 0) +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; +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_ref(x_41); +x_44 = lean_array_push(x_25, x_42); +x_45 = lean_nat_add(x_24, x_36); +lean_dec(x_24); +lean_ctor_set(x_21, 1, x_44); +lean_ctor_set(x_21, 0, x_45); +x_12 = x_4; +x_13 = x_43; +goto block_17; +} +else +{ +uint8_t x_46; +lean_dec_ref(x_23); +lean_free_object(x_21); +lean_dec(x_25); +lean_dec(x_24); +lean_free_object(x_4); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +x_46 = !lean_is_exclusive(x_41); +if (x_46 == 0) +{ +return x_41; +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_41, 0); +x_48 = lean_ctor_get(x_41, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_41); +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +return x_49; +} +} +} +} +else +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; +lean_dec(x_23); +x_50 = lean_array_fget(x_26, x_27); +x_51 = lean_unsigned_to_nat(1u); +x_52 = lean_nat_add(x_27, x_51); +lean_dec(x_27); +x_53 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_53, 0, x_26); +lean_ctor_set(x_53, 1, x_52); +lean_ctor_set(x_53, 2, x_28); +if (lean_obj_tag(x_50) == 0) +{ +lean_ctor_set(x_4, 0, x_53); +x_12 = x_4; +x_13 = x_11; +goto block_17; +} +else +{ +lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_54 = lean_ctor_get(x_50, 0); +lean_inc(x_54); +lean_dec_ref(x_50); +x_55 = lean_array_uget(x_1, x_3); +x_56 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__7___lam__0___boxed), 10, 2); +lean_closure_set(x_56, 0, x_54); +lean_closure_set(x_56, 1, x_55); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_57 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_56, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_57) == 0) +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_58 = lean_ctor_get(x_57, 0); +lean_inc(x_58); +x_59 = lean_ctor_get(x_57, 1); +lean_inc(x_59); +lean_dec_ref(x_57); +x_60 = lean_array_push(x_25, x_58); +x_61 = lean_nat_add(x_24, x_51); +lean_dec(x_24); +lean_ctor_set(x_21, 1, x_60); +lean_ctor_set(x_21, 0, x_61); +lean_ctor_set(x_4, 0, x_53); +x_12 = x_4; +x_13 = x_59; +goto block_17; +} +else +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; +lean_dec_ref(x_53); +lean_free_object(x_21); +lean_dec(x_25); +lean_dec(x_24); +lean_free_object(x_4); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +x_62 = lean_ctor_get(x_57, 0); +lean_inc(x_62); +x_63 = lean_ctor_get(x_57, 1); +lean_inc(x_63); +if (lean_is_exclusive(x_57)) { + lean_ctor_release(x_57, 0); + lean_ctor_release(x_57, 1); + x_64 = x_57; +} else { + lean_dec_ref(x_57); + x_64 = lean_box(0); +} +if (lean_is_scalar(x_64)) { + x_65 = lean_alloc_ctor(1, 2, 0); +} else { + x_65 = x_64; +} +lean_ctor_set(x_65, 0, x_62); +lean_ctor_set(x_65, 1, x_63); +return x_65; +} +} +} +} +} +else +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; uint8_t x_72; +x_66 = lean_ctor_get(x_4, 0); +x_67 = lean_ctor_get(x_21, 0); +x_68 = lean_ctor_get(x_21, 1); +lean_inc(x_68); +lean_inc(x_67); +lean_dec(x_21); +x_69 = lean_ctor_get(x_66, 0); +lean_inc_ref(x_69); +x_70 = lean_ctor_get(x_66, 1); +lean_inc(x_70); +x_71 = lean_ctor_get(x_66, 2); +lean_inc(x_71); +x_72 = lean_nat_dec_lt(x_70, x_71); +if (x_72 == 0) +{ +lean_object* x_73; lean_object* x_74; +lean_dec(x_71); +lean_dec(x_70); +lean_dec_ref(x_69); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +x_73 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_73, 0, x_67); +lean_ctor_set(x_73, 1, x_68); +lean_ctor_set(x_4, 1, x_73); +x_74 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_74, 0, x_4); +lean_ctor_set(x_74, 1, x_11); +return x_74; +} +else +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; +if (lean_is_exclusive(x_66)) { + lean_ctor_release(x_66, 0); + lean_ctor_release(x_66, 1); + lean_ctor_release(x_66, 2); + x_75 = x_66; +} else { + lean_dec_ref(x_66); + x_75 = lean_box(0); +} +x_76 = lean_array_fget(x_69, x_70); +x_77 = lean_unsigned_to_nat(1u); +x_78 = lean_nat_add(x_70, x_77); +lean_dec(x_70); +if (lean_is_scalar(x_75)) { + x_79 = lean_alloc_ctor(0, 3, 0); +} else { + x_79 = x_75; +} +lean_ctor_set(x_79, 0, x_69); +lean_ctor_set(x_79, 1, x_78); +lean_ctor_set(x_79, 2, x_71); +if (lean_obj_tag(x_76) == 0) +{ +lean_object* x_80; +x_80 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_80, 0, x_67); +lean_ctor_set(x_80, 1, x_68); +lean_ctor_set(x_4, 1, x_80); +lean_ctor_set(x_4, 0, x_79); +x_12 = x_4; +x_13 = x_11; +goto block_17; +} +else +{ +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_81 = lean_ctor_get(x_76, 0); +lean_inc(x_81); +lean_dec_ref(x_76); +x_82 = lean_array_uget(x_1, x_3); +x_83 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__7___lam__0___boxed), 10, 2); +lean_closure_set(x_83, 0, x_81); +lean_closure_set(x_83, 1, x_82); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_84 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_83, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_84) == 0) +{ +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_85 = lean_ctor_get(x_84, 0); +lean_inc(x_85); +x_86 = lean_ctor_get(x_84, 1); +lean_inc(x_86); +lean_dec_ref(x_84); +x_87 = lean_array_push(x_68, x_85); +x_88 = lean_nat_add(x_67, x_77); +lean_dec(x_67); +x_89 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_89, 0, x_88); +lean_ctor_set(x_89, 1, x_87); +lean_ctor_set(x_4, 1, x_89); +lean_ctor_set(x_4, 0, x_79); +x_12 = x_4; +x_13 = x_86; +goto block_17; +} +else +{ +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; +lean_dec_ref(x_79); +lean_dec(x_68); +lean_dec(x_67); +lean_free_object(x_4); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +x_90 = lean_ctor_get(x_84, 0); +lean_inc(x_90); +x_91 = lean_ctor_get(x_84, 1); +lean_inc(x_91); +if (lean_is_exclusive(x_84)) { + lean_ctor_release(x_84, 0); + lean_ctor_release(x_84, 1); + x_92 = x_84; +} else { + lean_dec_ref(x_84); + x_92 = lean_box(0); +} +if (lean_is_scalar(x_92)) { + x_93 = lean_alloc_ctor(1, 2, 0); +} else { + x_93 = x_92; +} +lean_ctor_set(x_93, 0, x_90); +lean_ctor_set(x_93, 1, x_91); +return x_93; +} +} +} +} +} +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; uint8_t x_102; +x_94 = lean_ctor_get(x_4, 1); +x_95 = lean_ctor_get(x_4, 0); +lean_inc(x_94); +lean_inc(x_95); +lean_dec(x_4); +x_96 = lean_ctor_get(x_94, 0); +lean_inc(x_96); +x_97 = lean_ctor_get(x_94, 1); +lean_inc(x_97); +if (lean_is_exclusive(x_94)) { + lean_ctor_release(x_94, 0); + lean_ctor_release(x_94, 1); + x_98 = x_94; +} else { + lean_dec_ref(x_94); + x_98 = lean_box(0); +} +x_99 = lean_ctor_get(x_95, 0); +lean_inc_ref(x_99); +x_100 = lean_ctor_get(x_95, 1); +lean_inc(x_100); +x_101 = lean_ctor_get(x_95, 2); +lean_inc(x_101); +x_102 = lean_nat_dec_lt(x_100, x_101); +if (x_102 == 0) +{ +lean_object* x_103; lean_object* x_104; lean_object* x_105; +lean_dec(x_101); +lean_dec(x_100); +lean_dec_ref(x_99); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +if (lean_is_scalar(x_98)) { + x_103 = lean_alloc_ctor(0, 2, 0); +} else { + x_103 = x_98; +} +lean_ctor_set(x_103, 0, x_96); +lean_ctor_set(x_103, 1, x_97); +x_104 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_104, 0, x_95); +lean_ctor_set(x_104, 1, x_103); +x_105 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_105, 0, x_104); +lean_ctor_set(x_105, 1, x_11); +return x_105; +} +else +{ +lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; +if (lean_is_exclusive(x_95)) { + lean_ctor_release(x_95, 0); + lean_ctor_release(x_95, 1); + lean_ctor_release(x_95, 2); + x_106 = x_95; +} else { + lean_dec_ref(x_95); + x_106 = lean_box(0); +} +x_107 = lean_array_fget(x_99, x_100); +x_108 = lean_unsigned_to_nat(1u); +x_109 = lean_nat_add(x_100, x_108); +lean_dec(x_100); +if (lean_is_scalar(x_106)) { + x_110 = lean_alloc_ctor(0, 3, 0); +} else { + x_110 = x_106; +} +lean_ctor_set(x_110, 0, x_99); +lean_ctor_set(x_110, 1, x_109); +lean_ctor_set(x_110, 2, x_101); +if (lean_obj_tag(x_107) == 0) +{ +lean_object* x_111; lean_object* x_112; +if (lean_is_scalar(x_98)) { + x_111 = lean_alloc_ctor(0, 2, 0); +} else { + x_111 = x_98; +} +lean_ctor_set(x_111, 0, x_96); +lean_ctor_set(x_111, 1, x_97); +x_112 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_112, 0, x_110); +lean_ctor_set(x_112, 1, x_111); +x_12 = x_112; +x_13 = x_11; +goto block_17; +} +else +{ +lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_ctor_get(x_107, 0); +lean_inc(x_113); +lean_dec_ref(x_107); +x_114 = lean_array_uget(x_1, x_3); +x_115 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__7___lam__0___boxed), 10, 2); +lean_closure_set(x_115, 0, x_113); +lean_closure_set(x_115, 1, x_114); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_116 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_115, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_116) == 0) +{ +lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; +x_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_ref(x_116); +x_119 = lean_array_push(x_97, x_117); +x_120 = lean_nat_add(x_96, x_108); +lean_dec(x_96); +if (lean_is_scalar(x_98)) { + x_121 = lean_alloc_ctor(0, 2, 0); +} else { + x_121 = x_98; +} +lean_ctor_set(x_121, 0, x_120); +lean_ctor_set(x_121, 1, x_119); +x_122 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_122, 0, x_110); +lean_ctor_set(x_122, 1, x_121); +x_12 = x_122; +x_13 = x_118; +goto block_17; +} +else +{ +lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; +lean_dec_ref(x_110); +lean_dec(x_98); +lean_dec(x_97); +lean_dec(x_96); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +x_123 = lean_ctor_get(x_116, 0); +lean_inc(x_123); +x_124 = lean_ctor_get(x_116, 1); +lean_inc(x_124); +if (lean_is_exclusive(x_116)) { + lean_ctor_release(x_116, 0); + lean_ctor_release(x_116, 1); + x_125 = x_116; +} else { + lean_dec_ref(x_116); + x_125 = lean_box(0); +} +if (lean_is_scalar(x_125)) { + x_126 = lean_alloc_ctor(1, 2, 0); +} else { + x_126 = x_125; +} +lean_ctor_set(x_126, 0, x_123); +lean_ctor_set(x_126, 1, x_124); +return x_126; +} +} +} +} +} +block_17: +{ +size_t x_14; size_t x_15; +x_14 = 1; +x_15 = lean_usize_add(x_3, x_14); +x_3 = x_15; +x_4 = x_12; +x_11 = x_13; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__8(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; +x_5 = lean_usize_dec_lt(x_3, x_2); +if (x_5 == 0) +{ +return x_4; +} +else +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; size_t x_10; size_t x_11; lean_object* x_12; +x_6 = lean_array_uget(x_4, x_3); +x_7 = lean_unsigned_to_nat(0u); +x_8 = lean_array_uset(x_4, x_3, x_7); +x_9 = lean_nat_add(x_6, x_1); +lean_dec(x_6); +x_10 = 1; +x_11 = lean_usize_add(x_3, x_10); +x_12 = lean_array_uset(x_8, x_3, x_9); +x_3 = x_11; +x_4 = x_12; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__9___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = lean_apply_7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__9___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__9___redArg___lam__0), 8, 3); +lean_closure_set(x_11, 0, x_3); +lean_closure_set(x_11, 1, x_4); +lean_closure_set(x_11, 2, x_5); +x_12 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_withUserNamesImpl(lean_box(0), x_1, x_2, x_11, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_12) == 0) +{ +return x_12; +} +else +{ +uint8_t x_13; +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +return x_12; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_12, 0); +x_15 = lean_ctor_get(x_12, 1); +lean_inc(x_15); +lean_inc(x_14); +lean_dec(x_12); +x_16 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_16, 0, x_14); +lean_ctor_set(x_16, 1, x_15); +return x_16; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__9___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__0(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: +{ +size_t x_10; size_t x_11; lean_object* x_12; +x_10 = lean_array_size(x_1); +x_11 = 0; +x_12 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__3(x_10, x_11, x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_instantiateLambda(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x_11, x_12, x_13); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +lean_object* x_16; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc_ref(x_9); +x_16 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_1, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec_ref(x_16); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc_ref(x_5); +x_19 = lean_apply_11(x_2, x_3, x_4, x_5, x_17, x_9, x_10, x_11, x_12, x_13, x_14, x_18); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); +lean_inc(x_21); +lean_dec_ref(x_19); +x_22 = l_Array_append___redArg(x_5, x_6); +x_23 = 1; +x_24 = lean_box(x_7); +x_25 = lean_box(x_8); +x_26 = lean_box(x_23); +x_27 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__2___boxed), 13, 5); +lean_closure_set(x_27, 0, x_22); +lean_closure_set(x_27, 1, x_20); +lean_closure_set(x_27, 2, x_24); +lean_closure_set(x_27, 3, x_25); +lean_closure_set(x_27, 4, x_26); +x_28 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_27, x_9, x_10, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_10); +return x_28; +} +else +{ +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_5); +return x_19; +} +} +else +{ +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_16; +} +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__4(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, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +_start: +{ +lean_object* x_18; +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_18 = l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__6___redArg(x_1, x_2, x_3, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec_ref(x_18); +x_21 = lean_box(x_3); +x_22 = lean_box(x_8); +lean_inc_ref(x_7); +x_23 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__3___boxed), 15, 8); +lean_closure_set(x_23, 0, x_4); +lean_closure_set(x_23, 1, x_5); +lean_closure_set(x_23, 2, x_6); +lean_closure_set(x_23, 3, x_10); +lean_closure_set(x_23, 4, x_7); +lean_closure_set(x_23, 5, x_9); +lean_closure_set(x_23, 6, x_21); +lean_closure_set(x_23, 7, x_22); +x_24 = l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__9___redArg(x_7, x_19, x_23, x_11, x_12, x_13, x_14, x_15, x_16, x_20); +lean_dec(x_19); +lean_dec_ref(x_7); +return x_24; +} +else +{ +uint8_t x_25; +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +x_25 = !lean_is_exclusive(x_18); +if (x_25 == 0) +{ +return x_18; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_18, 0); +x_27 = lean_ctor_get(x_18, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_18); +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_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__5(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, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +_start: +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +lean_inc_ref(x_8); +lean_inc_ref(x_1); +x_17 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__1___boxed), 10, 2); +lean_closure_set(x_17, 0, x_1); +lean_closure_set(x_17, 1, x_8); +x_18 = lean_box(x_3); +x_19 = lean_box(x_6); +x_20 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__4___boxed), 17, 8); +lean_closure_set(x_20, 0, x_1); +lean_closure_set(x_20, 1, x_2); +lean_closure_set(x_20, 2, x_18); +lean_closure_set(x_20, 3, x_17); +lean_closure_set(x_20, 4, x_4); +lean_closure_set(x_20, 5, x_5); +lean_closure_set(x_20, 6, x_8); +lean_closure_set(x_20, 7, x_19); +x_21 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_21, 0, x_7); +x_22 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(x_9, x_21, x_20, x_3, x_3, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +return x_22; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg(uint8_t x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_15 = lean_ctor_get(x_6, 1); +lean_inc(x_15); +x_16 = lean_ctor_get(x_15, 1); +lean_inc(x_16); +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = !lean_is_exclusive(x_6); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_19 = lean_ctor_get(x_6, 0); +x_20 = lean_ctor_get(x_6, 1); +lean_dec(x_20); +x_21 = !lean_is_exclusive(x_15); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_22 = lean_ctor_get(x_15, 0); +x_23 = lean_ctor_get(x_15, 1); +lean_dec(x_23); +x_24 = !lean_is_exclusive(x_16); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_25 = lean_ctor_get(x_16, 1); +x_26 = lean_ctor_get(x_16, 0); +lean_dec(x_26); +x_27 = lean_ctor_get(x_17, 0); +lean_inc_ref(x_27); +x_28 = lean_ctor_get(x_17, 1); +lean_inc(x_28); +x_29 = lean_ctor_get(x_17, 2); +lean_inc(x_29); +x_30 = lean_nat_dec_lt(x_28, x_29); +if (x_30 == 0) +{ +lean_object* x_31; +lean_dec(x_29); +lean_dec(x_28); +lean_dec_ref(x_27); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_6); +lean_ctor_set(x_31, 1, x_14); +return x_31; +} +else +{ +uint8_t x_32; +x_32 = !lean_is_exclusive(x_17); +if (x_32 == 0) +{ +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; uint8_t x_41; +x_33 = lean_ctor_get(x_17, 2); +lean_dec(x_33); +x_34 = lean_ctor_get(x_17, 1); +lean_dec(x_34); +x_35 = lean_ctor_get(x_17, 0); +lean_dec(x_35); +x_36 = lean_ctor_get(x_22, 0); +lean_inc_ref(x_36); +x_37 = lean_ctor_get(x_22, 1); +lean_inc(x_37); +x_38 = lean_ctor_get(x_22, 2); +lean_inc(x_38); +x_39 = lean_unsigned_to_nat(1u); +x_40 = lean_nat_add(x_28, x_39); +lean_inc_ref(x_27); +lean_ctor_set(x_17, 1, x_40); +x_41 = lean_nat_dec_lt(x_37, x_38); +if (x_41 == 0) +{ +lean_object* x_42; +lean_dec(x_38); +lean_dec(x_37); +lean_dec_ref(x_36); +lean_dec(x_28); +lean_dec_ref(x_27); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +x_42 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_42, 0, x_6); +lean_ctor_set(x_42, 1, x_14); +return x_42; +} +else +{ +uint8_t x_43; +x_43 = !lean_is_exclusive(x_22); +if (x_43 == 0) +{ +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; +x_44 = lean_ctor_get(x_22, 2); +lean_dec(x_44); +x_45 = lean_ctor_get(x_22, 1); +lean_dec(x_45); +x_46 = lean_ctor_get(x_22, 0); +lean_dec(x_46); +x_47 = lean_ctor_get(x_19, 0); +lean_inc_ref(x_47); +x_48 = lean_ctor_get(x_19, 1); +lean_inc(x_48); +x_49 = lean_ctor_get(x_19, 2); +lean_inc(x_49); +x_50 = lean_nat_add(x_37, x_39); +lean_inc_ref(x_36); +lean_ctor_set(x_22, 1, x_50); +x_51 = lean_nat_dec_lt(x_48, x_49); +if (x_51 == 0) +{ +lean_object* x_52; +lean_dec(x_49); +lean_dec(x_48); +lean_dec_ref(x_47); +lean_dec(x_37); +lean_dec_ref(x_36); +lean_dec(x_28); +lean_dec_ref(x_27); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_6); +lean_ctor_set(x_52, 1, x_14); +return x_52; +} +else +{ +uint8_t x_53; +x_53 = !lean_is_exclusive(x_19); +if (x_53 == 0) +{ +lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_54 = lean_ctor_get(x_19, 2); +lean_dec(x_54); +x_55 = lean_ctor_get(x_19, 1); +lean_dec(x_55); +x_56 = lean_ctor_get(x_19, 0); +lean_dec(x_56); +x_57 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__0___boxed), 9, 0); +x_58 = lean_array_fget(x_27, x_28); +lean_dec(x_28); +lean_dec_ref(x_27); +x_59 = lean_array_fget(x_36, x_37); +lean_dec(x_37); +lean_dec_ref(x_36); +x_60 = lean_array_fget(x_47, x_48); +x_61 = lean_box(x_1); +x_62 = lean_box(x_3); +lean_inc(x_4); +lean_inc(x_7); +lean_inc_ref(x_2); +x_63 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__5___boxed), 16, 7); +lean_closure_set(x_63, 0, x_60); +lean_closure_set(x_63, 1, x_57); +lean_closure_set(x_63, 2, x_61); +lean_closure_set(x_63, 3, x_2); +lean_closure_set(x_63, 4, x_7); +lean_closure_set(x_63, 5, x_62); +lean_closure_set(x_63, 6, x_4); +x_64 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_64, 0, x_59); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_65 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(x_58, x_64, x_63, x_1, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_65) == 0) +{ +uint8_t x_66; +x_66 = !lean_is_exclusive(x_65); +if (x_66 == 0) +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; uint8_t x_72; +x_67 = lean_ctor_get(x_65, 0); +x_68 = lean_ctor_get(x_65, 1); +x_69 = lean_nat_add(x_48, x_39); +lean_dec(x_48); +lean_ctor_set(x_19, 1, x_69); +x_70 = lean_array_push(x_25, x_67); +lean_ctor_set(x_16, 1, x_70); +x_71 = lean_nat_add(x_7, x_39); +lean_dec(x_7); +x_72 = lean_nat_dec_lt(x_71, x_5); +if (x_72 == 0) +{ +lean_dec(x_71); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_4); +lean_dec_ref(x_2); +lean_ctor_set(x_65, 0, x_6); +return x_65; +} +else +{ +lean_free_object(x_65); +x_7 = x_71; +x_14 = x_68; +goto _start; +} +} +else +{ +lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; uint8_t x_79; +x_74 = lean_ctor_get(x_65, 0); +x_75 = lean_ctor_get(x_65, 1); +lean_inc(x_75); +lean_inc(x_74); +lean_dec(x_65); +x_76 = lean_nat_add(x_48, x_39); +lean_dec(x_48); +lean_ctor_set(x_19, 1, x_76); +x_77 = lean_array_push(x_25, x_74); +lean_ctor_set(x_16, 1, x_77); +x_78 = lean_nat_add(x_7, x_39); +lean_dec(x_7); +x_79 = lean_nat_dec_lt(x_78, x_5); +if (x_79 == 0) +{ +lean_object* x_80; +lean_dec(x_78); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_4); +lean_dec_ref(x_2); +x_80 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_80, 0, x_6); +lean_ctor_set(x_80, 1, x_75); +return x_80; +} +else +{ +x_7 = x_78; +x_14 = x_75; +goto _start; +} +} +} +else +{ +uint8_t x_82; +lean_free_object(x_19); +lean_dec_ref(x_22); +lean_dec(x_49); +lean_dec(x_48); +lean_dec_ref(x_47); +lean_dec_ref(x_17); +lean_free_object(x_16); +lean_dec(x_25); +lean_free_object(x_15); +lean_free_object(x_6); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +x_82 = !lean_is_exclusive(x_65); +if (x_82 == 0) +{ +return x_65; +} +else +{ +lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_83 = lean_ctor_get(x_65, 0); +x_84 = lean_ctor_get(x_65, 1); +lean_inc(x_84); +lean_inc(x_83); +lean_dec(x_65); +x_85 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_85, 0, x_83); +lean_ctor_set(x_85, 1, x_84); +return x_85; +} +} +} +else +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; +lean_dec(x_19); +x_86 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__0___boxed), 9, 0); +x_87 = lean_array_fget(x_27, x_28); +lean_dec(x_28); +lean_dec_ref(x_27); +x_88 = lean_array_fget(x_36, x_37); +lean_dec(x_37); +lean_dec_ref(x_36); +x_89 = lean_array_fget(x_47, x_48); +x_90 = lean_box(x_1); +x_91 = lean_box(x_3); +lean_inc(x_4); +lean_inc(x_7); +lean_inc_ref(x_2); +x_92 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__5___boxed), 16, 7); +lean_closure_set(x_92, 0, x_89); +lean_closure_set(x_92, 1, x_86); +lean_closure_set(x_92, 2, x_90); +lean_closure_set(x_92, 3, x_2); +lean_closure_set(x_92, 4, x_7); +lean_closure_set(x_92, 5, x_91); +lean_closure_set(x_92, 6, x_4); +x_93 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_93, 0, x_88); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_94 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(x_87, x_93, x_92, x_1, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_94) == 0) +{ +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; uint8_t x_102; +x_95 = lean_ctor_get(x_94, 0); +lean_inc(x_95); +x_96 = lean_ctor_get(x_94, 1); +lean_inc(x_96); +if (lean_is_exclusive(x_94)) { + lean_ctor_release(x_94, 0); + lean_ctor_release(x_94, 1); + x_97 = x_94; +} else { + lean_dec_ref(x_94); + x_97 = lean_box(0); +} +x_98 = lean_nat_add(x_48, x_39); +lean_dec(x_48); +x_99 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_99, 0, x_47); +lean_ctor_set(x_99, 1, x_98); +lean_ctor_set(x_99, 2, x_49); +x_100 = lean_array_push(x_25, x_95); +lean_ctor_set(x_16, 1, x_100); +lean_ctor_set(x_6, 0, x_99); +x_101 = lean_nat_add(x_7, x_39); +lean_dec(x_7); +x_102 = lean_nat_dec_lt(x_101, x_5); +if (x_102 == 0) +{ +lean_object* x_103; +lean_dec(x_101); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_4); +lean_dec_ref(x_2); +if (lean_is_scalar(x_97)) { + x_103 = lean_alloc_ctor(0, 2, 0); +} else { + x_103 = x_97; +} +lean_ctor_set(x_103, 0, x_6); +lean_ctor_set(x_103, 1, x_96); +return x_103; +} +else +{ +lean_dec(x_97); +x_7 = x_101; +x_14 = x_96; +goto _start; +} +} +else +{ +lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; +lean_dec_ref(x_22); +lean_dec(x_49); +lean_dec(x_48); +lean_dec_ref(x_47); +lean_dec_ref(x_17); +lean_free_object(x_16); +lean_dec(x_25); +lean_free_object(x_15); +lean_free_object(x_6); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +x_105 = lean_ctor_get(x_94, 0); +lean_inc(x_105); +x_106 = lean_ctor_get(x_94, 1); +lean_inc(x_106); +if (lean_is_exclusive(x_94)) { + lean_ctor_release(x_94, 0); + lean_ctor_release(x_94, 1); + x_107 = x_94; +} else { + lean_dec_ref(x_94); + x_107 = lean_box(0); +} +if (lean_is_scalar(x_107)) { + x_108 = lean_alloc_ctor(1, 2, 0); +} else { + x_108 = x_107; +} +lean_ctor_set(x_108, 0, x_105); +lean_ctor_set(x_108, 1, x_106); +return x_108; +} +} +} +} +else +{ +lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; uint8_t x_114; +lean_dec(x_22); +x_109 = lean_ctor_get(x_19, 0); +lean_inc_ref(x_109); +x_110 = lean_ctor_get(x_19, 1); +lean_inc(x_110); +x_111 = lean_ctor_get(x_19, 2); +lean_inc(x_111); +x_112 = lean_nat_add(x_37, x_39); +lean_inc_ref(x_36); +x_113 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_113, 0, x_36); +lean_ctor_set(x_113, 1, x_112); +lean_ctor_set(x_113, 2, x_38); +x_114 = lean_nat_dec_lt(x_110, x_111); +if (x_114 == 0) +{ +lean_object* x_115; +lean_dec(x_111); +lean_dec(x_110); +lean_dec_ref(x_109); +lean_dec(x_37); +lean_dec_ref(x_36); +lean_dec(x_28); +lean_dec_ref(x_27); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +lean_ctor_set(x_15, 0, x_113); +x_115 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_115, 0, x_6); +lean_ctor_set(x_115, 1, x_14); +return x_115; +} +else +{ +lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + lean_ctor_release(x_19, 2); + x_116 = x_19; +} else { + lean_dec_ref(x_19); + x_116 = lean_box(0); +} +x_117 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__0___boxed), 9, 0); +x_118 = lean_array_fget(x_27, x_28); +lean_dec(x_28); +lean_dec_ref(x_27); +x_119 = lean_array_fget(x_36, x_37); +lean_dec(x_37); +lean_dec_ref(x_36); +x_120 = lean_array_fget(x_109, x_110); +x_121 = lean_box(x_1); +x_122 = lean_box(x_3); +lean_inc(x_4); +lean_inc(x_7); +lean_inc_ref(x_2); +x_123 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__5___boxed), 16, 7); +lean_closure_set(x_123, 0, x_120); +lean_closure_set(x_123, 1, x_117); +lean_closure_set(x_123, 2, x_121); +lean_closure_set(x_123, 3, x_2); +lean_closure_set(x_123, 4, x_7); +lean_closure_set(x_123, 5, x_122); +lean_closure_set(x_123, 6, x_4); +x_124 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_124, 0, x_119); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_125 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(x_118, x_124, x_123, x_1, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_125) == 0) +{ +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; uint8_t x_133; +x_126 = lean_ctor_get(x_125, 0); +lean_inc(x_126); +x_127 = lean_ctor_get(x_125, 1); +lean_inc(x_127); +if (lean_is_exclusive(x_125)) { + lean_ctor_release(x_125, 0); + lean_ctor_release(x_125, 1); + x_128 = x_125; +} else { + lean_dec_ref(x_125); + x_128 = lean_box(0); +} +x_129 = lean_nat_add(x_110, x_39); +lean_dec(x_110); +if (lean_is_scalar(x_116)) { + x_130 = lean_alloc_ctor(0, 3, 0); +} else { + x_130 = x_116; +} +lean_ctor_set(x_130, 0, x_109); +lean_ctor_set(x_130, 1, x_129); +lean_ctor_set(x_130, 2, x_111); +x_131 = lean_array_push(x_25, x_126); +lean_ctor_set(x_16, 1, x_131); +lean_ctor_set(x_15, 0, x_113); +lean_ctor_set(x_6, 0, x_130); +x_132 = lean_nat_add(x_7, x_39); +lean_dec(x_7); +x_133 = lean_nat_dec_lt(x_132, x_5); +if (x_133 == 0) +{ +lean_object* x_134; +lean_dec(x_132); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_4); +lean_dec_ref(x_2); +if (lean_is_scalar(x_128)) { + x_134 = lean_alloc_ctor(0, 2, 0); +} else { + x_134 = x_128; +} +lean_ctor_set(x_134, 0, x_6); +lean_ctor_set(x_134, 1, x_127); +return x_134; +} +else +{ +lean_dec(x_128); +x_7 = x_132; +x_14 = x_127; +goto _start; +} +} +else +{ +lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; +lean_dec(x_116); +lean_dec_ref(x_113); +lean_dec(x_111); +lean_dec(x_110); +lean_dec_ref(x_109); +lean_dec_ref(x_17); +lean_free_object(x_16); +lean_dec(x_25); +lean_free_object(x_15); +lean_free_object(x_6); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +x_136 = lean_ctor_get(x_125, 0); +lean_inc(x_136); +x_137 = lean_ctor_get(x_125, 1); +lean_inc(x_137); +if (lean_is_exclusive(x_125)) { + lean_ctor_release(x_125, 0); + lean_ctor_release(x_125, 1); + x_138 = x_125; +} else { + lean_dec_ref(x_125); + x_138 = lean_box(0); +} +if (lean_is_scalar(x_138)) { + x_139 = lean_alloc_ctor(1, 2, 0); +} else { + x_139 = x_138; +} +lean_ctor_set(x_139, 0, x_136); +lean_ctor_set(x_139, 1, x_137); +return x_139; +} +} +} +} +} +else +{ +lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; uint8_t x_146; +lean_dec(x_17); +x_140 = lean_ctor_get(x_22, 0); +lean_inc_ref(x_140); +x_141 = lean_ctor_get(x_22, 1); +lean_inc(x_141); +x_142 = lean_ctor_get(x_22, 2); +lean_inc(x_142); +x_143 = lean_unsigned_to_nat(1u); +x_144 = lean_nat_add(x_28, x_143); +lean_inc_ref(x_27); +x_145 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_145, 0, x_27); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_145, 2, x_29); +x_146 = lean_nat_dec_lt(x_141, x_142); +if (x_146 == 0) +{ +lean_object* x_147; +lean_dec(x_142); +lean_dec(x_141); +lean_dec_ref(x_140); +lean_dec(x_28); +lean_dec_ref(x_27); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +lean_ctor_set(x_16, 0, x_145); +x_147 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_147, 0, x_6); +lean_ctor_set(x_147, 1, x_14); +return x_147; +} +else +{ +lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; uint8_t x_154; +if (lean_is_exclusive(x_22)) { + lean_ctor_release(x_22, 0); + lean_ctor_release(x_22, 1); + lean_ctor_release(x_22, 2); + x_148 = x_22; +} else { + lean_dec_ref(x_22); + x_148 = lean_box(0); +} +x_149 = lean_ctor_get(x_19, 0); +lean_inc_ref(x_149); +x_150 = lean_ctor_get(x_19, 1); +lean_inc(x_150); +x_151 = lean_ctor_get(x_19, 2); +lean_inc(x_151); +x_152 = lean_nat_add(x_141, x_143); +lean_inc_ref(x_140); +if (lean_is_scalar(x_148)) { + x_153 = lean_alloc_ctor(0, 3, 0); +} else { + x_153 = x_148; +} +lean_ctor_set(x_153, 0, x_140); +lean_ctor_set(x_153, 1, x_152); +lean_ctor_set(x_153, 2, x_142); +x_154 = lean_nat_dec_lt(x_150, x_151); +if (x_154 == 0) +{ +lean_object* x_155; +lean_dec(x_151); +lean_dec(x_150); +lean_dec_ref(x_149); +lean_dec(x_141); +lean_dec_ref(x_140); +lean_dec(x_28); +lean_dec_ref(x_27); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +lean_ctor_set(x_16, 0, x_145); +lean_ctor_set(x_15, 0, x_153); +x_155 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_155, 0, x_6); +lean_ctor_set(x_155, 1, x_14); +return x_155; +} +else +{ +lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + lean_ctor_release(x_19, 2); + x_156 = x_19; +} else { + lean_dec_ref(x_19); + x_156 = lean_box(0); +} +x_157 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__0___boxed), 9, 0); +x_158 = lean_array_fget(x_27, x_28); +lean_dec(x_28); +lean_dec_ref(x_27); +x_159 = lean_array_fget(x_140, x_141); +lean_dec(x_141); +lean_dec_ref(x_140); +x_160 = lean_array_fget(x_149, x_150); +x_161 = lean_box(x_1); +x_162 = lean_box(x_3); +lean_inc(x_4); +lean_inc(x_7); +lean_inc_ref(x_2); +x_163 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__5___boxed), 16, 7); +lean_closure_set(x_163, 0, x_160); +lean_closure_set(x_163, 1, x_157); +lean_closure_set(x_163, 2, x_161); +lean_closure_set(x_163, 3, x_2); +lean_closure_set(x_163, 4, x_7); +lean_closure_set(x_163, 5, x_162); +lean_closure_set(x_163, 6, x_4); +x_164 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_164, 0, x_159); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_165 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(x_158, x_164, x_163, x_1, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_165) == 0) +{ +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; +x_166 = lean_ctor_get(x_165, 0); +lean_inc(x_166); +x_167 = lean_ctor_get(x_165, 1); +lean_inc(x_167); +if (lean_is_exclusive(x_165)) { + lean_ctor_release(x_165, 0); + lean_ctor_release(x_165, 1); + x_168 = x_165; +} else { + lean_dec_ref(x_165); + x_168 = lean_box(0); +} +x_169 = lean_nat_add(x_150, x_143); +lean_dec(x_150); +if (lean_is_scalar(x_156)) { + x_170 = lean_alloc_ctor(0, 3, 0); +} else { + x_170 = x_156; +} +lean_ctor_set(x_170, 0, x_149); +lean_ctor_set(x_170, 1, x_169); +lean_ctor_set(x_170, 2, x_151); +x_171 = lean_array_push(x_25, x_166); +lean_ctor_set(x_16, 1, x_171); +lean_ctor_set(x_16, 0, x_145); +lean_ctor_set(x_15, 0, x_153); +lean_ctor_set(x_6, 0, x_170); +x_172 = lean_nat_add(x_7, x_143); +lean_dec(x_7); +x_173 = lean_nat_dec_lt(x_172, x_5); +if (x_173 == 0) +{ +lean_object* x_174; +lean_dec(x_172); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_4); +lean_dec_ref(x_2); +if (lean_is_scalar(x_168)) { + x_174 = lean_alloc_ctor(0, 2, 0); +} else { + x_174 = x_168; +} +lean_ctor_set(x_174, 0, x_6); +lean_ctor_set(x_174, 1, x_167); +return x_174; +} +else +{ +lean_dec(x_168); +x_7 = x_172; +x_14 = x_167; +goto _start; +} +} +else +{ +lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; +lean_dec(x_156); +lean_dec_ref(x_153); +lean_dec(x_151); +lean_dec(x_150); +lean_dec_ref(x_149); +lean_dec_ref(x_145); +lean_free_object(x_16); +lean_dec(x_25); +lean_free_object(x_15); +lean_free_object(x_6); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +x_176 = lean_ctor_get(x_165, 0); +lean_inc(x_176); +x_177 = lean_ctor_get(x_165, 1); +lean_inc(x_177); +if (lean_is_exclusive(x_165)) { + lean_ctor_release(x_165, 0); + lean_ctor_release(x_165, 1); + x_178 = x_165; +} else { + lean_dec_ref(x_165); + x_178 = lean_box(0); +} +if (lean_is_scalar(x_178)) { + x_179 = lean_alloc_ctor(1, 2, 0); +} else { + x_179 = x_178; +} +lean_ctor_set(x_179, 0, x_176); +lean_ctor_set(x_179, 1, x_177); +return x_179; +} +} +} +} +} +} +else +{ +lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; uint8_t x_184; +x_180 = lean_ctor_get(x_16, 1); +lean_inc(x_180); +lean_dec(x_16); +x_181 = lean_ctor_get(x_17, 0); +lean_inc_ref(x_181); +x_182 = lean_ctor_get(x_17, 1); +lean_inc(x_182); +x_183 = lean_ctor_get(x_17, 2); +lean_inc(x_183); +x_184 = lean_nat_dec_lt(x_182, x_183); +if (x_184 == 0) +{ +lean_object* x_185; lean_object* x_186; +lean_dec(x_183); +lean_dec(x_182); +lean_dec_ref(x_181); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +x_185 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_185, 0, x_17); +lean_ctor_set(x_185, 1, x_180); +lean_ctor_set(x_15, 1, x_185); +x_186 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_186, 0, x_6); +lean_ctor_set(x_186, 1, x_14); +return x_186; +} +else +{ +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; uint8_t x_194; +if (lean_is_exclusive(x_17)) { + lean_ctor_release(x_17, 0); + lean_ctor_release(x_17, 1); + lean_ctor_release(x_17, 2); + x_187 = x_17; +} else { + lean_dec_ref(x_17); + x_187 = lean_box(0); +} +x_188 = lean_ctor_get(x_22, 0); +lean_inc_ref(x_188); +x_189 = lean_ctor_get(x_22, 1); +lean_inc(x_189); +x_190 = lean_ctor_get(x_22, 2); +lean_inc(x_190); +x_191 = lean_unsigned_to_nat(1u); +x_192 = lean_nat_add(x_182, x_191); +lean_inc_ref(x_181); +if (lean_is_scalar(x_187)) { + x_193 = lean_alloc_ctor(0, 3, 0); +} else { + x_193 = x_187; +} +lean_ctor_set(x_193, 0, x_181); +lean_ctor_set(x_193, 1, x_192); +lean_ctor_set(x_193, 2, x_183); +x_194 = lean_nat_dec_lt(x_189, x_190); +if (x_194 == 0) +{ +lean_object* x_195; lean_object* x_196; +lean_dec(x_190); +lean_dec(x_189); +lean_dec_ref(x_188); +lean_dec(x_182); +lean_dec_ref(x_181); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +x_195 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_195, 0, x_193); +lean_ctor_set(x_195, 1, x_180); +lean_ctor_set(x_15, 1, x_195); +x_196 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_196, 0, x_6); +lean_ctor_set(x_196, 1, x_14); +return x_196; +} +else +{ +lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; uint8_t x_203; +if (lean_is_exclusive(x_22)) { + lean_ctor_release(x_22, 0); + lean_ctor_release(x_22, 1); + lean_ctor_release(x_22, 2); + x_197 = x_22; +} else { + lean_dec_ref(x_22); + x_197 = lean_box(0); +} +x_198 = lean_ctor_get(x_19, 0); +lean_inc_ref(x_198); +x_199 = lean_ctor_get(x_19, 1); +lean_inc(x_199); +x_200 = lean_ctor_get(x_19, 2); +lean_inc(x_200); +x_201 = lean_nat_add(x_189, x_191); +lean_inc_ref(x_188); +if (lean_is_scalar(x_197)) { + x_202 = lean_alloc_ctor(0, 3, 0); +} else { + x_202 = x_197; +} +lean_ctor_set(x_202, 0, x_188); +lean_ctor_set(x_202, 1, x_201); +lean_ctor_set(x_202, 2, x_190); +x_203 = lean_nat_dec_lt(x_199, x_200); +if (x_203 == 0) +{ +lean_object* x_204; lean_object* x_205; +lean_dec(x_200); +lean_dec(x_199); +lean_dec_ref(x_198); +lean_dec(x_189); +lean_dec_ref(x_188); +lean_dec(x_182); +lean_dec_ref(x_181); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +x_204 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_204, 0, x_193); +lean_ctor_set(x_204, 1, x_180); +lean_ctor_set(x_15, 1, x_204); +lean_ctor_set(x_15, 0, x_202); +x_205 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_205, 0, x_6); +lean_ctor_set(x_205, 1, x_14); +return x_205; +} +else +{ +lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + lean_ctor_release(x_19, 2); + x_206 = x_19; +} else { + lean_dec_ref(x_19); + x_206 = lean_box(0); +} +x_207 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__0___boxed), 9, 0); +x_208 = lean_array_fget(x_181, x_182); +lean_dec(x_182); +lean_dec_ref(x_181); +x_209 = lean_array_fget(x_188, x_189); +lean_dec(x_189); +lean_dec_ref(x_188); +x_210 = lean_array_fget(x_198, x_199); +x_211 = lean_box(x_1); +x_212 = lean_box(x_3); +lean_inc(x_4); +lean_inc(x_7); +lean_inc_ref(x_2); +x_213 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__5___boxed), 16, 7); +lean_closure_set(x_213, 0, x_210); +lean_closure_set(x_213, 1, x_207); +lean_closure_set(x_213, 2, x_211); +lean_closure_set(x_213, 3, x_2); +lean_closure_set(x_213, 4, x_7); +lean_closure_set(x_213, 5, x_212); +lean_closure_set(x_213, 6, x_4); +x_214 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_214, 0, x_209); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_215 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(x_208, x_214, x_213, x_1, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_215) == 0) +{ +lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +x_216 = lean_ctor_get(x_215, 0); +lean_inc(x_216); +x_217 = lean_ctor_get(x_215, 1); +lean_inc(x_217); +if (lean_is_exclusive(x_215)) { + lean_ctor_release(x_215, 0); + lean_ctor_release(x_215, 1); + x_218 = x_215; +} else { + lean_dec_ref(x_215); + x_218 = lean_box(0); +} +x_219 = lean_nat_add(x_199, x_191); +lean_dec(x_199); +if (lean_is_scalar(x_206)) { + x_220 = lean_alloc_ctor(0, 3, 0); +} else { + x_220 = x_206; +} +lean_ctor_set(x_220, 0, x_198); +lean_ctor_set(x_220, 1, x_219); +lean_ctor_set(x_220, 2, x_200); +x_221 = lean_array_push(x_180, x_216); +x_222 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_222, 0, x_193); +lean_ctor_set(x_222, 1, x_221); +lean_ctor_set(x_15, 1, x_222); +lean_ctor_set(x_15, 0, x_202); +lean_ctor_set(x_6, 0, x_220); +x_223 = lean_nat_add(x_7, x_191); +lean_dec(x_7); +x_224 = lean_nat_dec_lt(x_223, x_5); +if (x_224 == 0) +{ +lean_object* x_225; +lean_dec(x_223); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_4); +lean_dec_ref(x_2); +if (lean_is_scalar(x_218)) { + x_225 = lean_alloc_ctor(0, 2, 0); +} else { + x_225 = x_218; +} +lean_ctor_set(x_225, 0, x_6); +lean_ctor_set(x_225, 1, x_217); +return x_225; +} +else +{ +lean_dec(x_218); +x_7 = x_223; +x_14 = x_217; +goto _start; +} +} +else +{ +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; +lean_dec(x_206); +lean_dec_ref(x_202); +lean_dec(x_200); +lean_dec(x_199); +lean_dec_ref(x_198); +lean_dec_ref(x_193); +lean_dec(x_180); +lean_free_object(x_15); +lean_free_object(x_6); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +x_227 = lean_ctor_get(x_215, 0); +lean_inc(x_227); +x_228 = lean_ctor_get(x_215, 1); +lean_inc(x_228); +if (lean_is_exclusive(x_215)) { + lean_ctor_release(x_215, 0); + lean_ctor_release(x_215, 1); + x_229 = x_215; +} else { + lean_dec_ref(x_215); + x_229 = lean_box(0); +} +if (lean_is_scalar(x_229)) { + x_230 = lean_alloc_ctor(1, 2, 0); +} else { + x_230 = x_229; +} +lean_ctor_set(x_230, 0, x_227); +lean_ctor_set(x_230, 1, x_228); +return x_230; +} +} +} +} +} +} +else +{ +lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; uint8_t x_237; +x_231 = lean_ctor_get(x_15, 0); +lean_inc(x_231); +lean_dec(x_15); +x_232 = lean_ctor_get(x_16, 1); +lean_inc(x_232); +if (lean_is_exclusive(x_16)) { + lean_ctor_release(x_16, 0); + lean_ctor_release(x_16, 1); + x_233 = x_16; +} else { + lean_dec_ref(x_16); + x_233 = lean_box(0); +} +x_234 = lean_ctor_get(x_17, 0); +lean_inc_ref(x_234); +x_235 = lean_ctor_get(x_17, 1); +lean_inc(x_235); +x_236 = lean_ctor_get(x_17, 2); +lean_inc(x_236); +x_237 = lean_nat_dec_lt(x_235, x_236); +if (x_237 == 0) +{ +lean_object* x_238; lean_object* x_239; lean_object* x_240; +lean_dec(x_236); +lean_dec(x_235); +lean_dec_ref(x_234); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +if (lean_is_scalar(x_233)) { + x_238 = lean_alloc_ctor(0, 2, 0); +} else { + x_238 = x_233; +} +lean_ctor_set(x_238, 0, x_17); +lean_ctor_set(x_238, 1, x_232); +x_239 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_239, 0, x_231); +lean_ctor_set(x_239, 1, x_238); +lean_ctor_set(x_6, 1, x_239); +x_240 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_240, 0, x_6); +lean_ctor_set(x_240, 1, x_14); +return x_240; +} +else +{ +lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; uint8_t x_248; +if (lean_is_exclusive(x_17)) { + lean_ctor_release(x_17, 0); + lean_ctor_release(x_17, 1); + lean_ctor_release(x_17, 2); + x_241 = x_17; +} else { + lean_dec_ref(x_17); + x_241 = lean_box(0); +} +x_242 = lean_ctor_get(x_231, 0); +lean_inc_ref(x_242); +x_243 = lean_ctor_get(x_231, 1); +lean_inc(x_243); +x_244 = lean_ctor_get(x_231, 2); +lean_inc(x_244); +x_245 = lean_unsigned_to_nat(1u); +x_246 = lean_nat_add(x_235, x_245); +lean_inc_ref(x_234); +if (lean_is_scalar(x_241)) { + x_247 = lean_alloc_ctor(0, 3, 0); +} else { + x_247 = x_241; +} +lean_ctor_set(x_247, 0, x_234); +lean_ctor_set(x_247, 1, x_246); +lean_ctor_set(x_247, 2, x_236); +x_248 = lean_nat_dec_lt(x_243, x_244); +if (x_248 == 0) +{ +lean_object* x_249; lean_object* x_250; lean_object* x_251; +lean_dec(x_244); +lean_dec(x_243); +lean_dec_ref(x_242); +lean_dec(x_235); +lean_dec_ref(x_234); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +if (lean_is_scalar(x_233)) { + x_249 = lean_alloc_ctor(0, 2, 0); +} else { + x_249 = x_233; +} +lean_ctor_set(x_249, 0, x_247); +lean_ctor_set(x_249, 1, x_232); +x_250 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_250, 0, x_231); +lean_ctor_set(x_250, 1, x_249); +lean_ctor_set(x_6, 1, x_250); +x_251 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_251, 0, x_6); +lean_ctor_set(x_251, 1, x_14); +return x_251; +} +else +{ +lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; uint8_t x_258; +if (lean_is_exclusive(x_231)) { + lean_ctor_release(x_231, 0); + lean_ctor_release(x_231, 1); + lean_ctor_release(x_231, 2); + x_252 = x_231; +} else { + lean_dec_ref(x_231); + x_252 = lean_box(0); +} +x_253 = lean_ctor_get(x_19, 0); +lean_inc_ref(x_253); +x_254 = lean_ctor_get(x_19, 1); +lean_inc(x_254); +x_255 = lean_ctor_get(x_19, 2); +lean_inc(x_255); +x_256 = lean_nat_add(x_243, x_245); +lean_inc_ref(x_242); +if (lean_is_scalar(x_252)) { + x_257 = lean_alloc_ctor(0, 3, 0); +} else { + x_257 = x_252; +} +lean_ctor_set(x_257, 0, x_242); +lean_ctor_set(x_257, 1, x_256); +lean_ctor_set(x_257, 2, x_244); +x_258 = lean_nat_dec_lt(x_254, x_255); +if (x_258 == 0) +{ +lean_object* x_259; lean_object* x_260; lean_object* x_261; +lean_dec(x_255); +lean_dec(x_254); +lean_dec_ref(x_253); +lean_dec(x_243); +lean_dec_ref(x_242); +lean_dec(x_235); +lean_dec_ref(x_234); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +if (lean_is_scalar(x_233)) { + x_259 = lean_alloc_ctor(0, 2, 0); +} else { + x_259 = x_233; +} +lean_ctor_set(x_259, 0, x_247); +lean_ctor_set(x_259, 1, x_232); +x_260 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_260, 0, x_257); +lean_ctor_set(x_260, 1, x_259); +lean_ctor_set(x_6, 1, x_260); +x_261 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_261, 0, x_6); +lean_ctor_set(x_261, 1, x_14); +return x_261; +} +else +{ +lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + lean_ctor_release(x_19, 2); + x_262 = x_19; +} else { + lean_dec_ref(x_19); + x_262 = lean_box(0); +} +x_263 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__0___boxed), 9, 0); +x_264 = lean_array_fget(x_234, x_235); +lean_dec(x_235); +lean_dec_ref(x_234); +x_265 = lean_array_fget(x_242, x_243); +lean_dec(x_243); +lean_dec_ref(x_242); +x_266 = lean_array_fget(x_253, x_254); +x_267 = lean_box(x_1); +x_268 = lean_box(x_3); +lean_inc(x_4); +lean_inc(x_7); +lean_inc_ref(x_2); +x_269 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__5___boxed), 16, 7); +lean_closure_set(x_269, 0, x_266); +lean_closure_set(x_269, 1, x_263); +lean_closure_set(x_269, 2, x_267); +lean_closure_set(x_269, 3, x_2); +lean_closure_set(x_269, 4, x_7); +lean_closure_set(x_269, 5, x_268); +lean_closure_set(x_269, 6, x_4); +x_270 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_270, 0, x_265); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_271 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(x_264, x_270, x_269, x_1, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_271) == 0) +{ +lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; uint8_t x_281; +x_272 = lean_ctor_get(x_271, 0); +lean_inc(x_272); +x_273 = lean_ctor_get(x_271, 1); +lean_inc(x_273); +if (lean_is_exclusive(x_271)) { + lean_ctor_release(x_271, 0); + lean_ctor_release(x_271, 1); + x_274 = x_271; +} else { + lean_dec_ref(x_271); + x_274 = lean_box(0); +} +x_275 = lean_nat_add(x_254, x_245); +lean_dec(x_254); +if (lean_is_scalar(x_262)) { + x_276 = lean_alloc_ctor(0, 3, 0); +} else { + x_276 = x_262; +} +lean_ctor_set(x_276, 0, x_253); +lean_ctor_set(x_276, 1, x_275); +lean_ctor_set(x_276, 2, x_255); +x_277 = lean_array_push(x_232, x_272); +if (lean_is_scalar(x_233)) { + x_278 = lean_alloc_ctor(0, 2, 0); +} else { + x_278 = x_233; +} +lean_ctor_set(x_278, 0, x_247); +lean_ctor_set(x_278, 1, x_277); +x_279 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_279, 0, x_257); +lean_ctor_set(x_279, 1, x_278); +lean_ctor_set(x_6, 1, x_279); +lean_ctor_set(x_6, 0, x_276); +x_280 = lean_nat_add(x_7, x_245); +lean_dec(x_7); +x_281 = lean_nat_dec_lt(x_280, x_5); +if (x_281 == 0) +{ +lean_object* x_282; +lean_dec(x_280); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_4); +lean_dec_ref(x_2); +if (lean_is_scalar(x_274)) { + x_282 = lean_alloc_ctor(0, 2, 0); +} else { + x_282 = x_274; +} +lean_ctor_set(x_282, 0, x_6); +lean_ctor_set(x_282, 1, x_273); +return x_282; +} +else +{ +lean_dec(x_274); +x_7 = x_280; +x_14 = x_273; +goto _start; +} +} +else +{ +lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; +lean_dec(x_262); +lean_dec_ref(x_257); +lean_dec(x_255); +lean_dec(x_254); +lean_dec_ref(x_253); +lean_dec_ref(x_247); +lean_dec(x_233); +lean_dec(x_232); +lean_free_object(x_6); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +x_284 = lean_ctor_get(x_271, 0); +lean_inc(x_284); +x_285 = lean_ctor_get(x_271, 1); +lean_inc(x_285); +if (lean_is_exclusive(x_271)) { + lean_ctor_release(x_271, 0); + lean_ctor_release(x_271, 1); + x_286 = x_271; +} else { + lean_dec_ref(x_271); + x_286 = lean_box(0); +} +if (lean_is_scalar(x_286)) { + x_287 = lean_alloc_ctor(1, 2, 0); +} else { + x_287 = x_286; +} +lean_ctor_set(x_287, 0, x_284); +lean_ctor_set(x_287, 1, x_285); +return x_287; +} +} +} +} +} +} +else +{ +lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; uint8_t x_296; +x_288 = lean_ctor_get(x_6, 0); +lean_inc(x_288); +lean_dec(x_6); +x_289 = lean_ctor_get(x_15, 0); +lean_inc(x_289); +if (lean_is_exclusive(x_15)) { + lean_ctor_release(x_15, 0); + lean_ctor_release(x_15, 1); + x_290 = x_15; +} else { + lean_dec_ref(x_15); + x_290 = lean_box(0); +} +x_291 = lean_ctor_get(x_16, 1); +lean_inc(x_291); +if (lean_is_exclusive(x_16)) { + lean_ctor_release(x_16, 0); + lean_ctor_release(x_16, 1); + x_292 = x_16; +} else { + lean_dec_ref(x_16); + x_292 = lean_box(0); +} +x_293 = lean_ctor_get(x_17, 0); +lean_inc_ref(x_293); +x_294 = lean_ctor_get(x_17, 1); +lean_inc(x_294); +x_295 = lean_ctor_get(x_17, 2); +lean_inc(x_295); +x_296 = lean_nat_dec_lt(x_294, x_295); +if (x_296 == 0) +{ +lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; +lean_dec(x_295); +lean_dec(x_294); +lean_dec_ref(x_293); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +if (lean_is_scalar(x_292)) { + x_297 = lean_alloc_ctor(0, 2, 0); +} else { + x_297 = x_292; +} +lean_ctor_set(x_297, 0, x_17); +lean_ctor_set(x_297, 1, x_291); +if (lean_is_scalar(x_290)) { + x_298 = lean_alloc_ctor(0, 2, 0); +} else { + x_298 = x_290; +} +lean_ctor_set(x_298, 0, x_289); +lean_ctor_set(x_298, 1, x_297); +x_299 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_299, 0, x_288); +lean_ctor_set(x_299, 1, x_298); +x_300 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_300, 0, x_299); +lean_ctor_set(x_300, 1, x_14); +return x_300; +} +else +{ +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; uint8_t x_308; +if (lean_is_exclusive(x_17)) { + lean_ctor_release(x_17, 0); + lean_ctor_release(x_17, 1); + lean_ctor_release(x_17, 2); + x_301 = x_17; +} else { + lean_dec_ref(x_17); + x_301 = lean_box(0); +} +x_302 = lean_ctor_get(x_289, 0); +lean_inc_ref(x_302); +x_303 = lean_ctor_get(x_289, 1); +lean_inc(x_303); +x_304 = lean_ctor_get(x_289, 2); +lean_inc(x_304); +x_305 = lean_unsigned_to_nat(1u); +x_306 = lean_nat_add(x_294, x_305); +lean_inc_ref(x_293); +if (lean_is_scalar(x_301)) { + x_307 = lean_alloc_ctor(0, 3, 0); +} else { + x_307 = x_301; +} +lean_ctor_set(x_307, 0, x_293); +lean_ctor_set(x_307, 1, x_306); +lean_ctor_set(x_307, 2, x_295); +x_308 = lean_nat_dec_lt(x_303, x_304); +if (x_308 == 0) +{ +lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; +lean_dec(x_304); +lean_dec(x_303); +lean_dec_ref(x_302); +lean_dec(x_294); +lean_dec_ref(x_293); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +if (lean_is_scalar(x_292)) { + x_309 = lean_alloc_ctor(0, 2, 0); +} else { + x_309 = x_292; +} +lean_ctor_set(x_309, 0, x_307); +lean_ctor_set(x_309, 1, x_291); +if (lean_is_scalar(x_290)) { + x_310 = lean_alloc_ctor(0, 2, 0); +} else { + x_310 = x_290; +} +lean_ctor_set(x_310, 0, x_289); +lean_ctor_set(x_310, 1, x_309); +x_311 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_311, 0, x_288); +lean_ctor_set(x_311, 1, x_310); +x_312 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_312, 0, x_311); +lean_ctor_set(x_312, 1, x_14); +return x_312; +} +else +{ +lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; uint8_t x_319; +if (lean_is_exclusive(x_289)) { + lean_ctor_release(x_289, 0); + lean_ctor_release(x_289, 1); + lean_ctor_release(x_289, 2); + x_313 = x_289; +} else { + lean_dec_ref(x_289); + x_313 = lean_box(0); +} +x_314 = lean_ctor_get(x_288, 0); +lean_inc_ref(x_314); +x_315 = lean_ctor_get(x_288, 1); +lean_inc(x_315); +x_316 = lean_ctor_get(x_288, 2); +lean_inc(x_316); +x_317 = lean_nat_add(x_303, x_305); +lean_inc_ref(x_302); +if (lean_is_scalar(x_313)) { + x_318 = lean_alloc_ctor(0, 3, 0); +} else { + x_318 = x_313; +} +lean_ctor_set(x_318, 0, x_302); +lean_ctor_set(x_318, 1, x_317); +lean_ctor_set(x_318, 2, x_304); +x_319 = lean_nat_dec_lt(x_315, x_316); +if (x_319 == 0) +{ +lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; +lean_dec(x_316); +lean_dec(x_315); +lean_dec_ref(x_314); +lean_dec(x_303); +lean_dec_ref(x_302); +lean_dec(x_294); +lean_dec_ref(x_293); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +if (lean_is_scalar(x_292)) { + x_320 = lean_alloc_ctor(0, 2, 0); +} else { + x_320 = x_292; +} +lean_ctor_set(x_320, 0, x_307); +lean_ctor_set(x_320, 1, x_291); +if (lean_is_scalar(x_290)) { + x_321 = lean_alloc_ctor(0, 2, 0); +} else { + x_321 = x_290; +} +lean_ctor_set(x_321, 0, x_318); +lean_ctor_set(x_321, 1, x_320); +x_322 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_322, 0, x_288); +lean_ctor_set(x_322, 1, x_321); +x_323 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_323, 0, x_322); +lean_ctor_set(x_323, 1, x_14); +return x_323; +} +else +{ +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; +if (lean_is_exclusive(x_288)) { + lean_ctor_release(x_288, 0); + lean_ctor_release(x_288, 1); + lean_ctor_release(x_288, 2); + x_324 = x_288; +} else { + lean_dec_ref(x_288); + x_324 = lean_box(0); +} +x_325 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__0___boxed), 9, 0); +x_326 = lean_array_fget(x_293, x_294); +lean_dec(x_294); +lean_dec_ref(x_293); +x_327 = lean_array_fget(x_302, x_303); +lean_dec(x_303); +lean_dec_ref(x_302); +x_328 = lean_array_fget(x_314, x_315); +x_329 = lean_box(x_1); +x_330 = lean_box(x_3); +lean_inc(x_4); +lean_inc(x_7); +lean_inc_ref(x_2); +x_331 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__5___boxed), 16, 7); +lean_closure_set(x_331, 0, x_328); +lean_closure_set(x_331, 1, x_325); +lean_closure_set(x_331, 2, x_329); +lean_closure_set(x_331, 3, x_2); +lean_closure_set(x_331, 4, x_7); +lean_closure_set(x_331, 5, x_330); +lean_closure_set(x_331, 6, x_4); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_327); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_333 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(x_326, x_332, x_331, x_1, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_333) == 0) +{ +lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; uint8_t x_344; +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = lean_nat_add(x_315, x_305); +lean_dec(x_315); +if (lean_is_scalar(x_324)) { + x_338 = lean_alloc_ctor(0, 3, 0); +} else { + x_338 = x_324; +} +lean_ctor_set(x_338, 0, x_314); +lean_ctor_set(x_338, 1, x_337); +lean_ctor_set(x_338, 2, x_316); +x_339 = lean_array_push(x_291, x_334); +if (lean_is_scalar(x_292)) { + x_340 = lean_alloc_ctor(0, 2, 0); +} else { + x_340 = x_292; +} +lean_ctor_set(x_340, 0, x_307); +lean_ctor_set(x_340, 1, x_339); +if (lean_is_scalar(x_290)) { + x_341 = lean_alloc_ctor(0, 2, 0); +} else { + x_341 = x_290; +} +lean_ctor_set(x_341, 0, x_318); +lean_ctor_set(x_341, 1, x_340); +x_342 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_342, 0, x_338); +lean_ctor_set(x_342, 1, x_341); +x_343 = lean_nat_add(x_7, x_305); +lean_dec(x_7); +x_344 = lean_nat_dec_lt(x_343, x_5); +if (x_344 == 0) +{ +lean_object* x_345; +lean_dec(x_343); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_4); +lean_dec_ref(x_2); +if (lean_is_scalar(x_336)) { + x_345 = lean_alloc_ctor(0, 2, 0); +} else { + x_345 = x_336; +} +lean_ctor_set(x_345, 0, x_342); +lean_ctor_set(x_345, 1, x_335); +return x_345; +} +else +{ +lean_dec(x_336); +x_6 = x_342; +x_7 = x_343; +x_14 = x_335; +goto _start; +} +} +else +{ +lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; +lean_dec(x_324); +lean_dec_ref(x_318); +lean_dec(x_316); +lean_dec(x_315); +lean_dec_ref(x_314); +lean_dec_ref(x_307); +lean_dec(x_292); +lean_dec(x_291); +lean_dec(x_290); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_2); +x_347 = lean_ctor_get(x_333, 0); +lean_inc(x_347); +x_348 = lean_ctor_get(x_333, 1); +lean_inc(x_348); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_349 = x_333; +} else { + lean_dec_ref(x_333); + x_349 = lean_box(0); +} +if (lean_is_scalar(x_349)) { + x_350 = lean_alloc_ctor(1, 2, 0); +} else { + x_350 = x_349; +} +lean_ctor_set(x_350, 0, x_347); +lean_ctor_set(x_350, 1, x_348); +return x_350; +} +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10(uint8_t x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { +_start: +{ +lean_object* x_22; +x_22 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg(x_1, x_2, x_3, x_4, x_9, x_11, x_12, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +return x_22; +} +} +LEAN_EXPORT uint8_t l_Lean_Option_get___at___Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11_spec__11(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = lean_ctor_get(x_2, 0); +x_4 = lean_ctor_get(x_2, 1); +x_5 = l_Lean_KVMap_findCore(x_1, x_3); +if (lean_obj_tag(x_5) == 0) +{ +uint8_t x_6; +x_6 = lean_unbox(x_4); +return x_6; +} +else +{ +lean_object* x_7; +x_7 = lean_ctor_get(x_5, 0); +lean_inc(x_7); +lean_dec_ref(x_5); +if (lean_obj_tag(x_7) == 1) +{ +uint8_t x_8; +x_8 = lean_ctor_get_uint8(x_7, 0); +lean_dec_ref(x_7); +return x_8; +} +else +{ +uint8_t x_9; +lean_dec(x_7); +x_9 = lean_unbox(x_4); +return x_9; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__0(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; lean_object* x_10; +x_9 = lean_ctor_get(x_6, 0); +lean_inc_ref(x_9); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_6, 1); +lean_inc_ref(x_9); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__2(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; lean_object* x_10; +x_9 = lean_ctor_get(x_6, 5); +lean_inc(x_9); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__4(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_10; +x_10 = l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0_spec__0(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("trace", 5, 5); +return x_1; +} +} +static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("unsolvedGoals", 13, 13); +return x_1; +} +} +static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("synthPlaceholder", 16, 16); +return x_1; +} +} +LEAN_EXPORT uint8_t l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3(uint8_t x_1, uint8_t x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_3) == 1) +{ +lean_object* x_4; +x_4 = lean_ctor_get(x_3, 0); +switch (lean_obj_tag(x_4)) { +case 0: +{ +lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_5 = lean_ctor_get(x_3, 1); +x_6 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___closed__0; +x_7 = lean_string_dec_eq(x_5, x_6); +if (x_7 == 0) +{ +return x_1; +} +else +{ +return x_2; +} +} +case 1: +{ +lean_object* x_8; +x_8 = lean_ctor_get(x_4, 0); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_9 = lean_ctor_get(x_3, 1); +x_10 = lean_ctor_get(x_4, 1); +x_11 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__16; +x_12 = lean_string_dec_eq(x_10, x_11); +if (x_12 == 0) +{ +lean_object* x_13; uint8_t x_14; +x_13 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3; +x_14 = lean_string_dec_eq(x_10, x_13); +if (x_14 == 0) +{ +return x_1; +} +else +{ +lean_object* x_15; uint8_t x_16; +x_15 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___closed__1; +x_16 = lean_string_dec_eq(x_9, x_15); +if (x_16 == 0) +{ +return x_1; +} +else +{ +return x_2; +} +} +} +else +{ +lean_object* x_17; uint8_t x_18; +x_17 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___closed__2; +x_18 = lean_string_dec_eq(x_9, x_17); +if (x_18 == 0) +{ +return x_1; +} +else +{ +return x_2; +} +} +} +else +{ +return x_1; +} +} +default: +{ +return x_1; +} +} +} +else +{ +return x_1; +} +} +} +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, uint8_t x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +_start: +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_84; +x_84 = lean_ctor_get_uint8(x_14, sizeof(void*)*13 + 1); +if (x_84 == 0) +{ +x_17 = x_14; +x_18 = x_15; +x_19 = x_16; +goto block_83; +} +else +{ +lean_object* x_85; lean_object* x_86; lean_object* x_87; uint8_t x_88; +x_85 = lean_box(x_5); +x_86 = lean_box(x_84); +x_87 = lean_alloc_closure((void*)(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___boxed), 3, 2); +lean_closure_set(x_87, 0, x_85); +lean_closure_set(x_87, 1, x_86); +lean_inc_ref(x_1); +x_88 = l_Lean_MessageData_hasTag(x_87, x_1); +if (x_88 == 0) +{ +lean_object* x_89; lean_object* x_90; +lean_dec_ref(x_8); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_89 = lean_box(0); +x_90 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_90, 0, x_89); +lean_ctor_set(x_90, 1, x_16); +return x_90; +} +else +{ +x_17 = x_14; +x_18 = x_15; +x_19 = x_16; +goto block_83; +} +} +block_83: +{ +lean_object* x_20; uint8_t x_21; +x_20 = lean_st_ref_take(x_18, x_19); +x_21 = !lean_is_exclusive(x_20); +if (x_21 == 0) +{ +lean_object* x_22; uint8_t x_23; +x_22 = lean_ctor_get(x_20, 0); +x_23 = !lean_is_exclusive(x_22); +if (x_23 == 0) +{ +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; uint8_t x_32; +x_24 = lean_ctor_get(x_20, 1); +x_25 = lean_ctor_get(x_17, 6); +x_26 = lean_ctor_get(x_17, 7); +x_27 = lean_ctor_get(x_22, 6); +lean_inc(x_26); +lean_inc(x_25); +lean_ctor_set(x_20, 1, x_26); +lean_ctor_set(x_20, 0, x_25); +x_28 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_28, 0, x_20); +lean_ctor_set(x_28, 1, x_1); +x_29 = lean_alloc_ctor(0, 5, 3); +lean_ctor_set(x_29, 0, x_2); +lean_ctor_set(x_29, 1, x_3); +lean_ctor_set(x_29, 2, x_4); +lean_ctor_set(x_29, 3, x_8); +lean_ctor_set(x_29, 4, x_28); +lean_ctor_set_uint8(x_29, sizeof(void*)*5, x_5); +lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 1, x_6); +lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 2, x_7); +x_30 = l_Lean_MessageLog_add(x_29, x_27); +lean_ctor_set(x_22, 6, x_30); +x_31 = lean_st_ref_set(x_18, x_22, x_24); +x_32 = !lean_is_exclusive(x_31); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; +x_33 = lean_ctor_get(x_31, 0); +lean_dec(x_33); +x_34 = lean_box(0); +lean_ctor_set(x_31, 0, x_34); +return x_31; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_31, 1); +lean_inc(x_35); +lean_dec(x_31); +x_36 = lean_box(0); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set(x_37, 1, x_35); +return x_37; +} +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_38 = lean_ctor_get(x_20, 1); +x_39 = lean_ctor_get(x_17, 6); +x_40 = lean_ctor_get(x_17, 7); +x_41 = lean_ctor_get(x_22, 0); +x_42 = lean_ctor_get(x_22, 1); +x_43 = lean_ctor_get(x_22, 2); +x_44 = lean_ctor_get(x_22, 3); +x_45 = lean_ctor_get(x_22, 4); +x_46 = lean_ctor_get(x_22, 5); +x_47 = lean_ctor_get(x_22, 6); +x_48 = lean_ctor_get(x_22, 7); +x_49 = lean_ctor_get(x_22, 8); +lean_inc(x_49); +lean_inc(x_48); +lean_inc(x_47); +lean_inc(x_46); +lean_inc(x_45); +lean_inc(x_44); +lean_inc(x_43); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_22); +lean_inc(x_40); +lean_inc(x_39); +lean_ctor_set(x_20, 1, x_40); +lean_ctor_set(x_20, 0, x_39); +x_50 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_50, 0, x_20); +lean_ctor_set(x_50, 1, x_1); +x_51 = lean_alloc_ctor(0, 5, 3); +lean_ctor_set(x_51, 0, x_2); +lean_ctor_set(x_51, 1, x_3); +lean_ctor_set(x_51, 2, x_4); +lean_ctor_set(x_51, 3, x_8); +lean_ctor_set(x_51, 4, x_50); +lean_ctor_set_uint8(x_51, sizeof(void*)*5, x_5); +lean_ctor_set_uint8(x_51, sizeof(void*)*5 + 1, x_6); +lean_ctor_set_uint8(x_51, sizeof(void*)*5 + 2, x_7); +x_52 = l_Lean_MessageLog_add(x_51, x_47); +x_53 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_53, 0, x_41); +lean_ctor_set(x_53, 1, x_42); +lean_ctor_set(x_53, 2, x_43); +lean_ctor_set(x_53, 3, x_44); +lean_ctor_set(x_53, 4, x_45); +lean_ctor_set(x_53, 5, x_46); +lean_ctor_set(x_53, 6, x_52); +lean_ctor_set(x_53, 7, x_48); +lean_ctor_set(x_53, 8, x_49); +x_54 = lean_st_ref_set(x_18, x_53, x_38); +x_55 = lean_ctor_get(x_54, 1); +lean_inc(x_55); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_56 = x_54; +} else { + lean_dec_ref(x_54); + x_56 = lean_box(0); +} +x_57 = lean_box(0); +if (lean_is_scalar(x_56)) { + x_58 = lean_alloc_ctor(0, 2, 0); +} else { + x_58 = x_56; +} +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set(x_58, 1, x_55); +return x_58; +} +} +else +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_59 = lean_ctor_get(x_20, 0); +x_60 = lean_ctor_get(x_20, 1); +lean_inc(x_60); +lean_inc(x_59); +lean_dec(x_20); +x_61 = lean_ctor_get(x_17, 6); +x_62 = lean_ctor_get(x_17, 7); +x_63 = lean_ctor_get(x_59, 0); +lean_inc_ref(x_63); +x_64 = lean_ctor_get(x_59, 1); +lean_inc(x_64); +x_65 = lean_ctor_get(x_59, 2); +lean_inc_ref(x_65); +x_66 = lean_ctor_get(x_59, 3); +lean_inc_ref(x_66); +x_67 = lean_ctor_get(x_59, 4); +lean_inc_ref(x_67); +x_68 = lean_ctor_get(x_59, 5); +lean_inc_ref(x_68); +x_69 = lean_ctor_get(x_59, 6); +lean_inc_ref(x_69); +x_70 = lean_ctor_get(x_59, 7); +lean_inc_ref(x_70); +x_71 = lean_ctor_get(x_59, 8); +lean_inc_ref(x_71); +if (lean_is_exclusive(x_59)) { + lean_ctor_release(x_59, 0); + lean_ctor_release(x_59, 1); + lean_ctor_release(x_59, 2); + lean_ctor_release(x_59, 3); + lean_ctor_release(x_59, 4); + lean_ctor_release(x_59, 5); + lean_ctor_release(x_59, 6); + lean_ctor_release(x_59, 7); + lean_ctor_release(x_59, 8); + x_72 = x_59; +} else { + lean_dec_ref(x_59); + x_72 = lean_box(0); +} +lean_inc(x_62); +lean_inc(x_61); +x_73 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_73, 0, x_61); +lean_ctor_set(x_73, 1, x_62); +x_74 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set(x_74, 1, x_1); +x_75 = lean_alloc_ctor(0, 5, 3); +lean_ctor_set(x_75, 0, x_2); +lean_ctor_set(x_75, 1, x_3); +lean_ctor_set(x_75, 2, x_4); +lean_ctor_set(x_75, 3, x_8); +lean_ctor_set(x_75, 4, x_74); +lean_ctor_set_uint8(x_75, sizeof(void*)*5, x_5); +lean_ctor_set_uint8(x_75, sizeof(void*)*5 + 1, x_6); +lean_ctor_set_uint8(x_75, sizeof(void*)*5 + 2, x_7); +x_76 = l_Lean_MessageLog_add(x_75, x_69); +if (lean_is_scalar(x_72)) { + x_77 = lean_alloc_ctor(0, 9, 0); +} else { + x_77 = x_72; +} +lean_ctor_set(x_77, 0, x_63); +lean_ctor_set(x_77, 1, x_64); +lean_ctor_set(x_77, 2, x_65); +lean_ctor_set(x_77, 3, x_66); +lean_ctor_set(x_77, 4, x_67); +lean_ctor_set(x_77, 5, x_68); +lean_ctor_set(x_77, 6, x_76); +lean_ctor_set(x_77, 7, x_70); +lean_ctor_set(x_77, 8, x_71); +x_78 = lean_st_ref_set(x_18, x_77, x_60); +x_79 = lean_ctor_get(x_78, 1); +lean_inc(x_79); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_80 = x_78; +} else { + lean_dec_ref(x_78); + x_80 = lean_box(0); +} +x_81 = lean_box(0); +if (lean_is_scalar(x_80)) { + x_82 = lean_alloc_ctor(0, 2, 0); +} else { + x_82 = x_80; +} +lean_ctor_set(x_82, 0, x_81); +lean_ctor_set(x_82, 1, x_79); +return x_82; +} +} +} +} +static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7___lam__1___boxed), 8, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_warningAsError; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; uint8_t x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_52; uint8_t x_53; uint8_t x_54; lean_object* x_55; uint8_t x_56; lean_object* x_57; lean_object* x_61; uint8_t x_62; lean_object* x_63; uint8_t x_64; uint8_t x_65; lean_object* x_78; uint8_t x_79; lean_object* x_80; uint8_t x_81; uint8_t x_82; uint8_t x_83; uint8_t x_85; uint8_t x_100; +x_12 = lean_alloc_closure((void*)(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__0___boxed), 8, 0); +x_13 = lean_alloc_closure((void*)(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__1___boxed), 8, 0); +x_61 = lean_alloc_closure((void*)(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__2___boxed), 8, 0); +x_78 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___closed__0; +x_79 = 2; +x_100 = l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(x_3, x_79); +if (x_100 == 0) +{ +x_85 = x_100; +goto block_99; +} +else +{ +uint8_t x_101; +lean_inc_ref(x_2); +x_101 = l_Lean_MessageData_hasSyntheticSorry(x_2); +x_85 = x_101; +goto block_99; +} +block_51: +{ +lean_object* x_19; +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_19 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_16); +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; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); +lean_inc(x_21); +lean_dec_ref(x_19); +x_22 = l___private_Lean_Log_0__Lean_MessageData_appendDescriptionWidgetIfNamed(x_2); +x_23 = lean_alloc_closure((void*)(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__4___boxed), 9, 1); +lean_closure_set(x_23, 0, x_22); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_24 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_23, x_5, x_6, x_7, x_8, x_9, x_10, x_21); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +x_26 = lean_ctor_get(x_24, 1); +lean_inc(x_26); +lean_dec_ref(x_24); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_27 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_12, x_5, x_6, x_7, x_8, x_9, x_10, x_26); +if (lean_obj_tag(x_27) == 0) +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; 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; +x_28 = lean_ctor_get(x_27, 0); +lean_inc(x_28); +x_29 = lean_ctor_get(x_27, 1); +lean_inc(x_29); +lean_dec_ref(x_27); +lean_inc(x_20); +x_30 = l_Lean_FileMap_toPosition(x_20, x_17); +lean_dec(x_17); +x_31 = l_Lean_FileMap_toPosition(x_20, x_18); +lean_dec(x_18); +x_32 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_32, 0, x_31); +x_33 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__1; +x_34 = lean_box(x_15); +x_35 = lean_box(x_14); +x_36 = lean_box(x_4); +x_37 = lean_alloc_closure((void*)(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__5___boxed), 16, 8); +lean_closure_set(x_37, 0, x_25); +lean_closure_set(x_37, 1, x_28); +lean_closure_set(x_37, 2, x_30); +lean_closure_set(x_37, 3, x_32); +lean_closure_set(x_37, 4, x_34); +lean_closure_set(x_37, 5, x_35); +lean_closure_set(x_37, 6, x_36); +lean_closure_set(x_37, 7, x_33); +x_38 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_37, x_5, x_6, x_7, x_8, x_9, x_10, x_29); +return x_38; +} +else +{ +uint8_t x_39; +lean_dec(x_25); +lean_dec(x_20); +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +x_39 = !lean_is_exclusive(x_27); +if (x_39 == 0) +{ +return x_27; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_27, 0); +x_41 = lean_ctor_get(x_27, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_27); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_20); +lean_dec(x_18); +lean_dec(x_17); +lean_dec_ref(x_12); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +x_43 = !lean_is_exclusive(x_24); +if (x_43 == 0) +{ +return x_24; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_24, 0); +x_45 = lean_ctor_get(x_24, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_24); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +} +else +{ +uint8_t x_47; +lean_dec(x_18); +lean_dec(x_17); +lean_dec_ref(x_12); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +lean_dec_ref(x_2); +x_47 = !lean_is_exclusive(x_19); +if (x_47 == 0) +{ +return x_19; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_19, 0); +x_49 = lean_ctor_get(x_19, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_19); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +block_60: +{ +lean_object* x_58; +x_58 = l_Lean_Syntax_getTailPos_x3f(x_55, x_56); +lean_dec(x_55); +if (lean_obj_tag(x_58) == 0) +{ +lean_inc(x_57); +x_14 = x_53; +x_15 = x_54; +x_16 = x_52; +x_17 = x_57; +x_18 = x_57; +goto block_51; +} +else +{ +lean_object* x_59; +x_59 = lean_ctor_get(x_58, 0); +lean_inc(x_59); +lean_dec_ref(x_58); +x_14 = x_53; +x_15 = x_54; +x_16 = x_52; +x_17 = x_57; +x_18 = x_59; +goto block_51; +} +} +block_77: +{ +lean_object* x_66; +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_66 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_61, x_5, x_6, x_7, x_8, x_9, x_10, x_63); +if (lean_obj_tag(x_66) == 0) +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_67 = lean_ctor_get(x_66, 0); +lean_inc(x_67); +x_68 = lean_ctor_get(x_66, 1); +lean_inc(x_68); +lean_dec_ref(x_66); +x_69 = l_Lean_replaceRef(x_1, x_67); +lean_dec(x_67); +x_70 = l_Lean_Syntax_getPos_x3f(x_69, x_64); +if (lean_obj_tag(x_70) == 0) +{ +lean_object* x_71; +x_71 = lean_unsigned_to_nat(0u); +x_52 = x_68; +x_53 = x_65; +x_54 = x_62; +x_55 = x_69; +x_56 = x_64; +x_57 = x_71; +goto block_60; +} +else +{ +lean_object* x_72; +x_72 = lean_ctor_get(x_70, 0); +lean_inc(x_72); +lean_dec_ref(x_70); +x_52 = x_68; +x_53 = x_65; +x_54 = x_62; +x_55 = x_69; +x_56 = x_64; +x_57 = x_72; +goto block_60; +} +} +else +{ +uint8_t x_73; +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +lean_dec_ref(x_2); +x_73 = !lean_is_exclusive(x_66); +if (x_73 == 0) +{ +return x_66; +} +else +{ +lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_74 = lean_ctor_get(x_66, 0); +x_75 = lean_ctor_get(x_66, 1); +lean_inc(x_75); +lean_inc(x_74); +lean_dec(x_66); +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; +} +} +} +block_84: +{ +if (x_83 == 0) +{ +x_62 = x_81; +x_63 = x_80; +x_64 = x_82; +x_65 = x_3; +goto block_77; +} +else +{ +x_62 = x_81; +x_63 = x_80; +x_64 = x_82; +x_65 = x_79; +goto block_77; +} +} +block_99: +{ +if (x_85 == 0) +{ +lean_object* x_86; +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_86 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_78, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_86) == 0) +{ +lean_object* x_87; lean_object* x_88; uint8_t x_89; uint8_t x_90; +x_87 = lean_ctor_get(x_86, 0); +lean_inc(x_87); +x_88 = lean_ctor_get(x_86, 1); +lean_inc(x_88); +lean_dec_ref(x_86); +x_89 = 1; +x_90 = l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(x_3, x_89); +if (x_90 == 0) +{ +lean_dec(x_87); +x_80 = x_88; +x_81 = x_85; +x_82 = x_85; +x_83 = x_90; +goto block_84; +} +else +{ +lean_object* x_91; uint8_t x_92; +x_91 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___closed__1; +x_92 = l_Lean_Option_get___at___Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11_spec__11(x_87, x_91); +lean_dec(x_87); +x_80 = x_88; +x_81 = x_85; +x_82 = x_85; +x_83 = x_92; +goto block_84; +} +} +else +{ +uint8_t x_93; +lean_dec_ref(x_61); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +lean_dec_ref(x_2); +x_93 = !lean_is_exclusive(x_86); +if (x_93 == 0) +{ +return x_86; +} +else +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; +x_94 = lean_ctor_get(x_86, 0); +x_95 = lean_ctor_get(x_86, 1); +lean_inc(x_95); +lean_inc(x_94); +lean_dec(x_86); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_94); +lean_ctor_set(x_96, 1, x_95); +return x_96; +} +} +} +else +{ +lean_object* x_97; lean_object* x_98; +lean_dec_ref(x_61); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +lean_dec_ref(x_2); +x_97 = lean_box(0); +x_98 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_98, 0, x_97); +lean_ctor_set(x_98, 1, x_11); +return x_98; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11(lean_object* x_1, uint8_t 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_object* x_12; +x_11 = lean_alloc_closure((void*)(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__2___boxed), 8, 0); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_12 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_11, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_12) == 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_inc(x_14); +lean_dec_ref(x_12); +x_15 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11(x_13, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_14); +lean_dec(x_13); +return x_15; +} +else +{ +uint8_t x_16; +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec_ref(x_1); +x_16 = !lean_is_exclusive(x_12); +if (x_16 == 0) +{ +return x_12; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_12, 0); +x_18 = lean_ctor_get(x_12, 1); +lean_inc(x_18); +lean_inc(x_17); +lean_dec(x_12); +x_19 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +return x_19; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11(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: +{ +uint8_t x_9; uint8_t x_10; lean_object* x_11; +x_9 = 2; +x_10 = 0; +x_11 = l_Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11(x_1, x_9, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = lean_apply_9(x_1, x_4, x_5, x_2, x_3, x_8, x_9, x_10, x_11, x_12); +return x_13; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg___lam__0___boxed), 12, 3); +lean_closure_set(x_12, 0, x_4); +lean_closure_set(x_12, 1, x_5); +lean_closure_set(x_12, 2, x_6); +x_13 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg(x_1, x_2, x_3, x_12, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_13) == 0) +{ +return x_13; +} +else +{ +uint8_t x_14; +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +return x_13; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_ctor_get(x_13, 0); +x_16 = lean_ctor_get(x_13, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_13); +x_17 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +return x_17; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_instantiateForall(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_instantiateLambda(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x_11, x_12, x_13); +return x_14; +} +} +static lean_object* _init_l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__3___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("unexpected matcher application, insufficient number of parameters in alternative", 80, 80); +return x_1; +} +} +static lean_object* _init_l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__3___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__3___closed__0; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, uint8_t x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +_start: +{ +lean_object* x_19; lean_object* x_20; lean_object* x_36; lean_object* x_37; +x_19 = l_Array_append___redArg(x_1, x_2); +lean_inc_ref(x_19); +x_36 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__1___boxed), 10, 2); +lean_closure_set(x_36, 0, x_3); +lean_closure_set(x_36, 1, x_19); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc_ref(x_12); +x_37 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_36, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +if (lean_obj_tag(x_37) == 0) +{ +x_20 = x_37; +goto block_35; +} +else +{ +lean_object* x_38; lean_object* x_39; uint8_t x_40; uint8_t x_44; +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_37, 1); +lean_inc(x_39); +x_44 = l_Lean_Exception_isInterrupt(x_38); +if (x_44 == 0) +{ +uint8_t x_45; +x_45 = l_Lean_Exception_isRuntime(x_38); +lean_dec(x_38); +x_40 = x_45; +goto block_43; +} +else +{ +lean_dec(x_38); +x_40 = x_44; +goto block_43; +} +block_43: +{ +if (x_40 == 0) +{ +lean_object* x_41; lean_object* x_42; +lean_dec_ref(x_37); +x_41 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__3___closed__1; +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc_ref(x_12); +x_42 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_41, x_12, x_13, x_14, x_15, x_16, x_17, x_39); +x_20 = x_42; +goto block_35; +} +else +{ +lean_dec(x_39); +x_20 = x_37; +goto block_35; +} +} +} +block_35: +{ +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec_ref(x_20); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +x_23 = lean_apply_11(x_4, x_5, x_11, x_19, x_21, x_12, x_13, x_14, x_15, x_16, x_17, x_22); +if (lean_obj_tag(x_23) == 0) +{ +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; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec_ref(x_23); +x_26 = l_Array_append___redArg(x_6, x_7); +x_27 = l_Array_append___redArg(x_26, x_2); +x_28 = l_Array_append___redArg(x_27, x_10); +x_29 = 1; +x_30 = lean_box(x_8); +x_31 = lean_box(x_9); +x_32 = lean_box(x_29); +x_33 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__2___boxed), 13, 5); +lean_closure_set(x_33, 0, x_28); +lean_closure_set(x_33, 1, x_24); +lean_closure_set(x_33, 2, x_30); +lean_closure_set(x_33, 3, x_31); +lean_closure_set(x_33, 4, x_32); +x_34 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_33, x_12, x_13, x_14, x_15, x_16, x_17, x_25); +lean_dec(x_13); +return x_34; +} +else +{ +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_6); +return x_23; +} +} +else +{ +lean_dec_ref(x_19); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +return x_20; +} +} +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +_start: +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_box(x_7); +x_20 = lean_box(x_8); +x_21 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__3___boxed), 18, 9); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_10); +lean_closure_set(x_21, 2, x_2); +lean_closure_set(x_21, 3, x_3); +lean_closure_set(x_21, 4, x_4); +lean_closure_set(x_21, 5, x_5); +lean_closure_set(x_21, 6, x_6); +lean_closure_set(x_21, 7, x_19); +lean_closure_set(x_21, 8, x_20); +x_22 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_22, 0, x_9); +x_23 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(x_11, x_22, x_21, x_7, x_7, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +return x_23; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +_start: +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_box(x_6); +x_20 = lean_box(x_7); +x_21 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__4___boxed), 18, 9); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_2); +lean_closure_set(x_21, 2, x_3); +lean_closure_set(x_21, 3, x_4); +lean_closure_set(x_21, 4, x_5); +lean_closure_set(x_21, 5, x_10); +lean_closure_set(x_21, 6, x_19); +lean_closure_set(x_21, 7, x_20); +lean_closure_set(x_21, 8, x_8); +x_22 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_22, 0, x_9); +x_23 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(x_11, x_22, x_21, x_6, x_6, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +return x_23; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, 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) { +_start: +{ +lean_object* x_19; lean_object* x_20; +lean_inc_ref(x_10); +x_19 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__0___boxed), 10, 2); +lean_closure_set(x_19, 0, x_1); +lean_closure_set(x_19, 1, x_10); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc_ref(x_12); +x_20 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_19, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +if (lean_obj_tag(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; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec_ref(x_20); +x_23 = lean_box(x_5); +x_24 = lean_box(x_6); +lean_inc_ref(x_10); +x_25 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__5___boxed), 18, 9); +lean_closure_set(x_25, 0, x_11); +lean_closure_set(x_25, 1, x_2); +lean_closure_set(x_25, 2, x_3); +lean_closure_set(x_25, 3, x_4); +lean_closure_set(x_25, 4, x_10); +lean_closure_set(x_25, 5, x_23); +lean_closure_set(x_25, 6, x_24); +lean_closure_set(x_25, 7, x_7); +lean_closure_set(x_25, 8, x_8); +x_26 = lean_array_get_size(x_10); +lean_dec_ref(x_10); +x_27 = lean_nat_sub(x_9, x_26); +lean_dec(x_26); +x_28 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_28, 0, x_27); +x_29 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(x_21, x_28, x_25, x_5, x_5, x_12, x_13, x_14, x_15, x_16, x_17, x_22); +return x_29; +} +else +{ +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +return x_20; +} +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +_start: +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_17 = lean_ctor_get(x_8, 1); +lean_inc(x_17); +x_18 = lean_ctor_get(x_17, 1); +lean_inc(x_18); +x_19 = lean_ctor_get(x_18, 1); +lean_inc(x_19); +x_20 = lean_ctor_get(x_19, 1); +lean_inc(x_20); +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = !lean_is_exclusive(x_8); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; uint8_t x_25; +x_23 = lean_ctor_get(x_8, 0); +x_24 = lean_ctor_get(x_8, 1); +lean_dec(x_24); +x_25 = !lean_is_exclusive(x_17); +if (x_25 == 0) +{ +lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_26 = lean_ctor_get(x_17, 0); +x_27 = lean_ctor_get(x_17, 1); +lean_dec(x_27); +x_28 = !lean_is_exclusive(x_18); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_29 = lean_ctor_get(x_18, 0); +x_30 = lean_ctor_get(x_18, 1); +lean_dec(x_30); +x_31 = !lean_is_exclusive(x_19); +if (x_31 == 0) +{ +lean_object* x_32; lean_object* x_33; uint8_t x_34; +x_32 = lean_ctor_get(x_19, 0); +x_33 = lean_ctor_get(x_19, 1); +lean_dec(x_33); +x_34 = !lean_is_exclusive(x_20); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_40; +x_35 = lean_ctor_get(x_20, 1); +x_36 = lean_ctor_get(x_20, 0); +lean_dec(x_36); +x_37 = lean_ctor_get(x_21, 0); +lean_inc_ref(x_37); +x_38 = lean_ctor_get(x_21, 1); +lean_inc(x_38); +x_39 = lean_ctor_get(x_21, 2); +lean_inc(x_39); +x_40 = lean_nat_dec_lt(x_38, x_39); +if (x_40 == 0) +{ +lean_object* x_41; +lean_dec(x_39); +lean_dec(x_38); +lean_dec_ref(x_37); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_8); +lean_ctor_set(x_41, 1, x_16); +return x_41; +} +else +{ +uint8_t x_42; +x_42 = !lean_is_exclusive(x_21); +if (x_42 == 0) +{ +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; +x_43 = lean_ctor_get(x_21, 2); +lean_dec(x_43); +x_44 = lean_ctor_get(x_21, 1); +lean_dec(x_44); +x_45 = lean_ctor_get(x_21, 0); +lean_dec(x_45); +x_46 = lean_ctor_get(x_32, 0); +lean_inc_ref(x_46); +x_47 = lean_ctor_get(x_32, 1); +lean_inc(x_47); +x_48 = lean_ctor_get(x_32, 2); +lean_inc(x_48); +x_49 = lean_unsigned_to_nat(1u); +x_50 = lean_nat_add(x_38, x_49); +lean_inc_ref(x_37); +lean_ctor_set(x_21, 1, x_50); +x_51 = lean_nat_dec_lt(x_47, x_48); +if (x_51 == 0) +{ +lean_object* x_52; +lean_dec(x_48); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_38); +lean_dec_ref(x_37); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_8); +lean_ctor_set(x_52, 1, x_16); +return x_52; +} +else +{ +uint8_t x_53; +x_53 = !lean_is_exclusive(x_32); +if (x_53 == 0) +{ +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; uint8_t x_61; +x_54 = lean_ctor_get(x_32, 2); +lean_dec(x_54); +x_55 = lean_ctor_get(x_32, 1); +lean_dec(x_55); +x_56 = lean_ctor_get(x_32, 0); +lean_dec(x_56); +x_57 = lean_ctor_get(x_29, 0); +lean_inc_ref(x_57); +x_58 = lean_ctor_get(x_29, 1); +lean_inc(x_58); +x_59 = lean_ctor_get(x_29, 2); +lean_inc(x_59); +x_60 = lean_nat_add(x_47, x_49); +lean_inc_ref(x_46); +lean_ctor_set(x_32, 1, x_60); +x_61 = lean_nat_dec_lt(x_58, x_59); +if (x_61 == 0) +{ +lean_object* x_62; +lean_dec(x_59); +lean_dec(x_58); +lean_dec_ref(x_57); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_38); +lean_dec_ref(x_37); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_62 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_62, 0, x_8); +lean_ctor_set(x_62, 1, x_16); +return x_62; +} +else +{ +uint8_t x_63; +x_63 = !lean_is_exclusive(x_29); +if (x_63 == 0) +{ +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; uint8_t x_71; +x_64 = lean_ctor_get(x_29, 2); +lean_dec(x_64); +x_65 = lean_ctor_get(x_29, 1); +lean_dec(x_65); +x_66 = lean_ctor_get(x_29, 0); +lean_dec(x_66); +x_67 = lean_ctor_get(x_26, 0); +lean_inc_ref(x_67); +x_68 = lean_ctor_get(x_26, 1); +lean_inc(x_68); +x_69 = lean_ctor_get(x_26, 2); +lean_inc(x_69); +x_70 = lean_nat_add(x_58, x_49); +lean_inc_ref(x_57); +lean_ctor_set(x_29, 1, x_70); +x_71 = lean_nat_dec_lt(x_68, x_69); +if (x_71 == 0) +{ +lean_object* x_72; +lean_dec(x_69); +lean_dec(x_68); +lean_dec_ref(x_67); +lean_dec(x_58); +lean_dec_ref(x_57); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_38); +lean_dec_ref(x_37); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_72 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_72, 0, x_8); +lean_ctor_set(x_72, 1, x_16); +return x_72; +} +else +{ +uint8_t x_73; +x_73 = !lean_is_exclusive(x_26); +if (x_73 == 0) +{ +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; uint8_t x_81; +x_74 = lean_ctor_get(x_26, 2); +lean_dec(x_74); +x_75 = lean_ctor_get(x_26, 1); +lean_dec(x_75); +x_76 = lean_ctor_get(x_26, 0); +lean_dec(x_76); +x_77 = lean_ctor_get(x_23, 0); +lean_inc_ref(x_77); +x_78 = lean_ctor_get(x_23, 1); +lean_inc(x_78); +x_79 = lean_ctor_get(x_23, 2); +lean_inc(x_79); +x_80 = lean_nat_add(x_68, x_49); +lean_inc_ref(x_67); +lean_ctor_set(x_26, 1, x_80); +x_81 = lean_nat_dec_lt(x_78, x_79); +if (x_81 == 0) +{ +lean_object* x_82; +lean_dec(x_79); +lean_dec(x_78); +lean_dec_ref(x_77); +lean_dec(x_68); +lean_dec_ref(x_67); +lean_dec(x_58); +lean_dec_ref(x_57); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_38); +lean_dec_ref(x_37); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_82 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_82, 0, x_8); +lean_ctor_set(x_82, 1, x_16); +return x_82; +} +else +{ +uint8_t x_83; +x_83 = !lean_is_exclusive(x_23); +if (x_83 == 0) +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; +x_84 = lean_ctor_get(x_23, 2); +lean_dec(x_84); +x_85 = lean_ctor_get(x_23, 1); +lean_dec(x_85); +x_86 = lean_ctor_get(x_23, 0); +lean_dec(x_86); +x_87 = lean_array_fget(x_37, x_38); +lean_dec(x_38); +lean_dec_ref(x_37); +x_88 = lean_array_fget(x_46, x_47); +lean_dec(x_47); +lean_dec_ref(x_46); +x_89 = lean_array_fget(x_57, x_58); +lean_dec(x_58); +lean_dec_ref(x_57); +x_90 = lean_array_fget(x_67, x_68); +lean_dec(x_68); +lean_dec_ref(x_67); +x_91 = lean_array_fget(x_77, x_78); +x_92 = lean_box(x_2); +x_93 = lean_box(x_3); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_9); +lean_inc_ref(x_1); +x_94 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__6___boxed), 18, 9); +lean_closure_set(x_94, 0, x_87); +lean_closure_set(x_94, 1, x_91); +lean_closure_set(x_94, 2, x_1); +lean_closure_set(x_94, 3, x_9); +lean_closure_set(x_94, 4, x_92); +lean_closure_set(x_94, 5, x_93); +lean_closure_set(x_94, 6, x_4); +lean_closure_set(x_94, 7, x_5); +lean_closure_set(x_94, 8, x_89); +x_95 = lean_nat_sub(x_90, x_5); +lean_dec(x_90); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_6); +x_96 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_88, x_95, x_6, x_94, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_96) == 0) +{ +uint8_t x_97; +x_97 = !lean_is_exclusive(x_96); +if (x_97 == 0) +{ +lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; uint8_t x_103; +x_98 = lean_ctor_get(x_96, 0); +x_99 = lean_ctor_get(x_96, 1); +x_100 = lean_nat_add(x_78, x_49); +lean_dec(x_78); +lean_ctor_set(x_23, 1, x_100); +x_101 = lean_array_push(x_35, x_98); +lean_ctor_set(x_20, 1, x_101); +x_102 = lean_nat_add(x_9, x_49); +lean_dec(x_9); +x_103 = lean_nat_dec_lt(x_102, x_7); +if (x_103 == 0) +{ +lean_dec(x_102); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +lean_ctor_set(x_96, 0, x_8); +return x_96; +} +else +{ +lean_free_object(x_96); +x_9 = x_102; +x_16 = x_99; +goto _start; +} +} +else +{ +lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; uint8_t x_110; +x_105 = lean_ctor_get(x_96, 0); +x_106 = lean_ctor_get(x_96, 1); +lean_inc(x_106); +lean_inc(x_105); +lean_dec(x_96); +x_107 = lean_nat_add(x_78, x_49); +lean_dec(x_78); +lean_ctor_set(x_23, 1, x_107); +x_108 = lean_array_push(x_35, x_105); +lean_ctor_set(x_20, 1, x_108); +x_109 = lean_nat_add(x_9, x_49); +lean_dec(x_9); +x_110 = lean_nat_dec_lt(x_109, x_7); +if (x_110 == 0) +{ +lean_object* x_111; +lean_dec(x_109); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_111 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_111, 0, x_8); +lean_ctor_set(x_111, 1, x_106); +return x_111; +} +else +{ +x_9 = x_109; +x_16 = x_106; +goto _start; +} +} +} +else +{ +uint8_t x_113; +lean_free_object(x_23); +lean_dec_ref(x_26); +lean_dec(x_79); +lean_dec(x_78); +lean_dec_ref(x_77); +lean_dec_ref(x_29); +lean_dec_ref(x_32); +lean_dec_ref(x_21); +lean_free_object(x_20); +lean_dec(x_35); +lean_free_object(x_19); +lean_free_object(x_18); +lean_free_object(x_17); +lean_free_object(x_8); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_113 = !lean_is_exclusive(x_96); +if (x_113 == 0) +{ +return x_96; +} +else +{ +lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_114 = lean_ctor_get(x_96, 0); +x_115 = lean_ctor_get(x_96, 1); +lean_inc(x_115); +lean_inc(x_114); +lean_dec(x_96); +x_116 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_116, 0, x_114); +lean_ctor_set(x_116, 1, x_115); +return x_116; +} +} +} +else +{ +lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; +lean_dec(x_23); +x_117 = lean_array_fget(x_37, x_38); +lean_dec(x_38); +lean_dec_ref(x_37); +x_118 = lean_array_fget(x_46, x_47); +lean_dec(x_47); +lean_dec_ref(x_46); +x_119 = lean_array_fget(x_57, x_58); +lean_dec(x_58); +lean_dec_ref(x_57); +x_120 = lean_array_fget(x_67, x_68); +lean_dec(x_68); +lean_dec_ref(x_67); +x_121 = lean_array_fget(x_77, x_78); +x_122 = lean_box(x_2); +x_123 = lean_box(x_3); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_9); +lean_inc_ref(x_1); +x_124 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__6___boxed), 18, 9); +lean_closure_set(x_124, 0, x_117); +lean_closure_set(x_124, 1, x_121); +lean_closure_set(x_124, 2, x_1); +lean_closure_set(x_124, 3, x_9); +lean_closure_set(x_124, 4, x_122); +lean_closure_set(x_124, 5, x_123); +lean_closure_set(x_124, 6, x_4); +lean_closure_set(x_124, 7, x_5); +lean_closure_set(x_124, 8, x_119); +x_125 = lean_nat_sub(x_120, x_5); +lean_dec(x_120); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_6); +x_126 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_118, x_125, x_6, x_124, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_126) == 0) +{ +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; uint8_t x_134; +x_127 = lean_ctor_get(x_126, 0); +lean_inc(x_127); +x_128 = lean_ctor_get(x_126, 1); +lean_inc(x_128); +if (lean_is_exclusive(x_126)) { + lean_ctor_release(x_126, 0); + lean_ctor_release(x_126, 1); + x_129 = x_126; +} else { + lean_dec_ref(x_126); + x_129 = lean_box(0); +} +x_130 = lean_nat_add(x_78, x_49); +lean_dec(x_78); +x_131 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_131, 0, x_77); +lean_ctor_set(x_131, 1, x_130); +lean_ctor_set(x_131, 2, x_79); +x_132 = lean_array_push(x_35, x_127); +lean_ctor_set(x_20, 1, x_132); +lean_ctor_set(x_8, 0, x_131); +x_133 = lean_nat_add(x_9, x_49); +lean_dec(x_9); +x_134 = lean_nat_dec_lt(x_133, x_7); +if (x_134 == 0) +{ +lean_object* x_135; +lean_dec(x_133); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_129)) { + x_135 = lean_alloc_ctor(0, 2, 0); +} else { + x_135 = x_129; +} +lean_ctor_set(x_135, 0, x_8); +lean_ctor_set(x_135, 1, x_128); +return x_135; +} +else +{ +lean_dec(x_129); +x_9 = x_133; +x_16 = x_128; +goto _start; +} +} +else +{ +lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; +lean_dec_ref(x_26); +lean_dec(x_79); +lean_dec(x_78); +lean_dec_ref(x_77); +lean_dec_ref(x_29); +lean_dec_ref(x_32); +lean_dec_ref(x_21); +lean_free_object(x_20); +lean_dec(x_35); +lean_free_object(x_19); +lean_free_object(x_18); +lean_free_object(x_17); +lean_free_object(x_8); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_137 = lean_ctor_get(x_126, 0); +lean_inc(x_137); +x_138 = lean_ctor_get(x_126, 1); +lean_inc(x_138); +if (lean_is_exclusive(x_126)) { + lean_ctor_release(x_126, 0); + lean_ctor_release(x_126, 1); + x_139 = x_126; +} else { + lean_dec_ref(x_126); + x_139 = lean_box(0); +} +if (lean_is_scalar(x_139)) { + x_140 = lean_alloc_ctor(1, 2, 0); +} else { + x_140 = x_139; +} +lean_ctor_set(x_140, 0, x_137); +lean_ctor_set(x_140, 1, x_138); +return x_140; +} +} +} +} +else +{ +lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; uint8_t x_146; +lean_dec(x_26); +x_141 = lean_ctor_get(x_23, 0); +lean_inc_ref(x_141); +x_142 = lean_ctor_get(x_23, 1); +lean_inc(x_142); +x_143 = lean_ctor_get(x_23, 2); +lean_inc(x_143); +x_144 = lean_nat_add(x_68, x_49); +lean_inc_ref(x_67); +x_145 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_145, 0, x_67); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_145, 2, x_69); +x_146 = lean_nat_dec_lt(x_142, x_143); +if (x_146 == 0) +{ +lean_object* x_147; +lean_dec(x_143); +lean_dec(x_142); +lean_dec_ref(x_141); +lean_dec(x_68); +lean_dec_ref(x_67); +lean_dec(x_58); +lean_dec_ref(x_57); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_38); +lean_dec_ref(x_37); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +lean_ctor_set(x_17, 0, x_145); +x_147 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_147, 0, x_8); +lean_ctor_set(x_147, 1, x_16); +return x_147; +} +else +{ +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; +if (lean_is_exclusive(x_23)) { + lean_ctor_release(x_23, 0); + lean_ctor_release(x_23, 1); + lean_ctor_release(x_23, 2); + x_148 = x_23; +} else { + lean_dec_ref(x_23); + x_148 = lean_box(0); +} +x_149 = lean_array_fget(x_37, x_38); +lean_dec(x_38); +lean_dec_ref(x_37); +x_150 = lean_array_fget(x_46, x_47); +lean_dec(x_47); +lean_dec_ref(x_46); +x_151 = lean_array_fget(x_57, x_58); +lean_dec(x_58); +lean_dec_ref(x_57); +x_152 = lean_array_fget(x_67, x_68); +lean_dec(x_68); +lean_dec_ref(x_67); +x_153 = lean_array_fget(x_141, x_142); +x_154 = lean_box(x_2); +x_155 = lean_box(x_3); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_9); +lean_inc_ref(x_1); +x_156 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__6___boxed), 18, 9); +lean_closure_set(x_156, 0, x_149); +lean_closure_set(x_156, 1, x_153); +lean_closure_set(x_156, 2, x_1); +lean_closure_set(x_156, 3, x_9); +lean_closure_set(x_156, 4, x_154); +lean_closure_set(x_156, 5, x_155); +lean_closure_set(x_156, 6, x_4); +lean_closure_set(x_156, 7, x_5); +lean_closure_set(x_156, 8, x_151); +x_157 = lean_nat_sub(x_152, x_5); +lean_dec(x_152); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_6); +x_158 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_150, x_157, x_6, x_156, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_158) == 0) +{ +lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; uint8_t x_166; +x_159 = lean_ctor_get(x_158, 0); +lean_inc(x_159); +x_160 = lean_ctor_get(x_158, 1); +lean_inc(x_160); +if (lean_is_exclusive(x_158)) { + lean_ctor_release(x_158, 0); + lean_ctor_release(x_158, 1); + x_161 = x_158; +} else { + lean_dec_ref(x_158); + x_161 = lean_box(0); +} +x_162 = lean_nat_add(x_142, x_49); +lean_dec(x_142); +if (lean_is_scalar(x_148)) { + x_163 = lean_alloc_ctor(0, 3, 0); +} else { + x_163 = x_148; +} +lean_ctor_set(x_163, 0, x_141); +lean_ctor_set(x_163, 1, x_162); +lean_ctor_set(x_163, 2, x_143); +x_164 = lean_array_push(x_35, x_159); +lean_ctor_set(x_20, 1, x_164); +lean_ctor_set(x_17, 0, x_145); +lean_ctor_set(x_8, 0, x_163); +x_165 = lean_nat_add(x_9, x_49); +lean_dec(x_9); +x_166 = lean_nat_dec_lt(x_165, x_7); +if (x_166 == 0) +{ +lean_object* x_167; +lean_dec(x_165); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_161)) { + x_167 = lean_alloc_ctor(0, 2, 0); +} else { + x_167 = x_161; +} +lean_ctor_set(x_167, 0, x_8); +lean_ctor_set(x_167, 1, x_160); +return x_167; +} +else +{ +lean_dec(x_161); +x_9 = x_165; +x_16 = x_160; +goto _start; +} +} +else +{ +lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; +lean_dec(x_148); +lean_dec_ref(x_145); +lean_dec(x_143); +lean_dec(x_142); +lean_dec_ref(x_141); +lean_dec_ref(x_29); +lean_dec_ref(x_32); +lean_dec_ref(x_21); +lean_free_object(x_20); +lean_dec(x_35); +lean_free_object(x_19); +lean_free_object(x_18); +lean_free_object(x_17); +lean_free_object(x_8); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_169 = lean_ctor_get(x_158, 0); +lean_inc(x_169); +x_170 = lean_ctor_get(x_158, 1); +lean_inc(x_170); +if (lean_is_exclusive(x_158)) { + lean_ctor_release(x_158, 0); + lean_ctor_release(x_158, 1); + x_171 = x_158; +} else { + lean_dec_ref(x_158); + x_171 = lean_box(0); +} +if (lean_is_scalar(x_171)) { + x_172 = lean_alloc_ctor(1, 2, 0); +} else { + x_172 = x_171; +} +lean_ctor_set(x_172, 0, x_169); +lean_ctor_set(x_172, 1, x_170); +return x_172; +} +} +} +} +} +else +{ +lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; uint8_t x_178; +lean_dec(x_29); +x_173 = lean_ctor_get(x_26, 0); +lean_inc_ref(x_173); +x_174 = lean_ctor_get(x_26, 1); +lean_inc(x_174); +x_175 = lean_ctor_get(x_26, 2); +lean_inc(x_175); +x_176 = lean_nat_add(x_58, x_49); +lean_inc_ref(x_57); +x_177 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_177, 0, x_57); +lean_ctor_set(x_177, 1, x_176); +lean_ctor_set(x_177, 2, x_59); +x_178 = lean_nat_dec_lt(x_174, x_175); +if (x_178 == 0) +{ +lean_object* x_179; +lean_dec(x_175); +lean_dec(x_174); +lean_dec_ref(x_173); +lean_dec(x_58); +lean_dec_ref(x_57); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_38); +lean_dec_ref(x_37); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +lean_ctor_set(x_18, 0, x_177); +x_179 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_179, 0, x_8); +lean_ctor_set(x_179, 1, x_16); +return x_179; +} +else +{ +lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; uint8_t x_186; +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + lean_ctor_release(x_26, 2); + x_180 = x_26; +} else { + lean_dec_ref(x_26); + x_180 = lean_box(0); +} +x_181 = lean_ctor_get(x_23, 0); +lean_inc_ref(x_181); +x_182 = lean_ctor_get(x_23, 1); +lean_inc(x_182); +x_183 = lean_ctor_get(x_23, 2); +lean_inc(x_183); +x_184 = lean_nat_add(x_174, x_49); +lean_inc_ref(x_173); +if (lean_is_scalar(x_180)) { + x_185 = lean_alloc_ctor(0, 3, 0); +} else { + x_185 = x_180; +} +lean_ctor_set(x_185, 0, x_173); +lean_ctor_set(x_185, 1, x_184); +lean_ctor_set(x_185, 2, x_175); +x_186 = lean_nat_dec_lt(x_182, x_183); +if (x_186 == 0) +{ +lean_object* x_187; +lean_dec(x_183); +lean_dec(x_182); +lean_dec_ref(x_181); +lean_dec(x_174); +lean_dec_ref(x_173); +lean_dec(x_58); +lean_dec_ref(x_57); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_38); +lean_dec_ref(x_37); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +lean_ctor_set(x_18, 0, x_177); +lean_ctor_set(x_17, 0, x_185); +x_187 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_187, 0, x_8); +lean_ctor_set(x_187, 1, x_16); +return x_187; +} +else +{ +lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; +if (lean_is_exclusive(x_23)) { + lean_ctor_release(x_23, 0); + lean_ctor_release(x_23, 1); + lean_ctor_release(x_23, 2); + x_188 = x_23; +} else { + lean_dec_ref(x_23); + x_188 = lean_box(0); +} +x_189 = lean_array_fget(x_37, x_38); +lean_dec(x_38); +lean_dec_ref(x_37); +x_190 = lean_array_fget(x_46, x_47); +lean_dec(x_47); +lean_dec_ref(x_46); +x_191 = lean_array_fget(x_57, x_58); +lean_dec(x_58); +lean_dec_ref(x_57); +x_192 = lean_array_fget(x_173, x_174); +lean_dec(x_174); +lean_dec_ref(x_173); +x_193 = lean_array_fget(x_181, x_182); +x_194 = lean_box(x_2); +x_195 = lean_box(x_3); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_9); +lean_inc_ref(x_1); +x_196 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__6___boxed), 18, 9); +lean_closure_set(x_196, 0, x_189); +lean_closure_set(x_196, 1, x_193); +lean_closure_set(x_196, 2, x_1); +lean_closure_set(x_196, 3, x_9); +lean_closure_set(x_196, 4, x_194); +lean_closure_set(x_196, 5, x_195); +lean_closure_set(x_196, 6, x_4); +lean_closure_set(x_196, 7, x_5); +lean_closure_set(x_196, 8, x_191); +x_197 = lean_nat_sub(x_192, x_5); +lean_dec(x_192); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_6); +x_198 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_190, x_197, x_6, x_196, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_198) == 0) +{ +lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; uint8_t x_206; +x_199 = lean_ctor_get(x_198, 0); +lean_inc(x_199); +x_200 = lean_ctor_get(x_198, 1); +lean_inc(x_200); +if (lean_is_exclusive(x_198)) { + lean_ctor_release(x_198, 0); + lean_ctor_release(x_198, 1); + x_201 = x_198; +} else { + lean_dec_ref(x_198); + x_201 = lean_box(0); +} +x_202 = lean_nat_add(x_182, x_49); +lean_dec(x_182); +if (lean_is_scalar(x_188)) { + x_203 = lean_alloc_ctor(0, 3, 0); +} else { + x_203 = x_188; +} +lean_ctor_set(x_203, 0, x_181); +lean_ctor_set(x_203, 1, x_202); +lean_ctor_set(x_203, 2, x_183); +x_204 = lean_array_push(x_35, x_199); +lean_ctor_set(x_20, 1, x_204); +lean_ctor_set(x_18, 0, x_177); +lean_ctor_set(x_17, 0, x_185); +lean_ctor_set(x_8, 0, x_203); +x_205 = lean_nat_add(x_9, x_49); +lean_dec(x_9); +x_206 = lean_nat_dec_lt(x_205, x_7); +if (x_206 == 0) +{ +lean_object* x_207; +lean_dec(x_205); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_201)) { + x_207 = lean_alloc_ctor(0, 2, 0); +} else { + x_207 = x_201; +} +lean_ctor_set(x_207, 0, x_8); +lean_ctor_set(x_207, 1, x_200); +return x_207; +} +else +{ +lean_dec(x_201); +x_9 = x_205; +x_16 = x_200; +goto _start; +} +} +else +{ +lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; +lean_dec(x_188); +lean_dec_ref(x_185); +lean_dec(x_183); +lean_dec(x_182); +lean_dec_ref(x_181); +lean_dec_ref(x_177); +lean_dec_ref(x_32); +lean_dec_ref(x_21); +lean_free_object(x_20); +lean_dec(x_35); +lean_free_object(x_19); +lean_free_object(x_18); +lean_free_object(x_17); +lean_free_object(x_8); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_209 = lean_ctor_get(x_198, 0); +lean_inc(x_209); +x_210 = lean_ctor_get(x_198, 1); +lean_inc(x_210); +if (lean_is_exclusive(x_198)) { + lean_ctor_release(x_198, 0); + lean_ctor_release(x_198, 1); + x_211 = x_198; +} else { + lean_dec_ref(x_198); + x_211 = lean_box(0); +} +if (lean_is_scalar(x_211)) { + x_212 = lean_alloc_ctor(1, 2, 0); +} else { + x_212 = x_211; +} +lean_ctor_set(x_212, 0, x_209); +lean_ctor_set(x_212, 1, x_210); +return x_212; +} +} +} +} +} +} +else +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; +lean_dec(x_32); +x_213 = lean_ctor_get(x_29, 0); +lean_inc_ref(x_213); +x_214 = lean_ctor_get(x_29, 1); +lean_inc(x_214); +x_215 = lean_ctor_get(x_29, 2); +lean_inc(x_215); +x_216 = lean_nat_add(x_47, x_49); +lean_inc_ref(x_46); +x_217 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_217, 0, x_46); +lean_ctor_set(x_217, 1, x_216); +lean_ctor_set(x_217, 2, x_48); +x_218 = lean_nat_dec_lt(x_214, x_215); +if (x_218 == 0) +{ +lean_object* x_219; +lean_dec(x_215); +lean_dec(x_214); +lean_dec_ref(x_213); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_38); +lean_dec_ref(x_37); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +lean_ctor_set(x_19, 0, x_217); +x_219 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_219, 0, x_8); +lean_ctor_set(x_219, 1, x_16); +return x_219; +} +else +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; uint8_t x_226; +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_220 = x_29; +} else { + lean_dec_ref(x_29); + x_220 = lean_box(0); +} +x_221 = lean_ctor_get(x_26, 0); +lean_inc_ref(x_221); +x_222 = lean_ctor_get(x_26, 1); +lean_inc(x_222); +x_223 = lean_ctor_get(x_26, 2); +lean_inc(x_223); +x_224 = lean_nat_add(x_214, x_49); +lean_inc_ref(x_213); +if (lean_is_scalar(x_220)) { + x_225 = lean_alloc_ctor(0, 3, 0); +} else { + x_225 = x_220; +} +lean_ctor_set(x_225, 0, x_213); +lean_ctor_set(x_225, 1, x_224); +lean_ctor_set(x_225, 2, x_215); +x_226 = lean_nat_dec_lt(x_222, x_223); +if (x_226 == 0) +{ +lean_object* x_227; +lean_dec(x_223); +lean_dec(x_222); +lean_dec_ref(x_221); +lean_dec(x_214); +lean_dec_ref(x_213); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_38); +lean_dec_ref(x_37); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +lean_ctor_set(x_19, 0, x_217); +lean_ctor_set(x_18, 0, x_225); +x_227 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_227, 0, x_8); +lean_ctor_set(x_227, 1, x_16); +return x_227; +} +else +{ +lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; uint8_t x_234; +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + lean_ctor_release(x_26, 2); + x_228 = x_26; +} else { + lean_dec_ref(x_26); + x_228 = lean_box(0); +} +x_229 = lean_ctor_get(x_23, 0); +lean_inc_ref(x_229); +x_230 = lean_ctor_get(x_23, 1); +lean_inc(x_230); +x_231 = lean_ctor_get(x_23, 2); +lean_inc(x_231); +x_232 = lean_nat_add(x_222, x_49); +lean_inc_ref(x_221); +if (lean_is_scalar(x_228)) { + x_233 = lean_alloc_ctor(0, 3, 0); +} else { + x_233 = x_228; +} +lean_ctor_set(x_233, 0, x_221); +lean_ctor_set(x_233, 1, x_232); +lean_ctor_set(x_233, 2, x_223); +x_234 = lean_nat_dec_lt(x_230, x_231); +if (x_234 == 0) +{ +lean_object* x_235; +lean_dec(x_231); +lean_dec(x_230); +lean_dec_ref(x_229); +lean_dec(x_222); +lean_dec_ref(x_221); +lean_dec(x_214); +lean_dec_ref(x_213); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec(x_38); +lean_dec_ref(x_37); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +lean_ctor_set(x_19, 0, x_217); +lean_ctor_set(x_18, 0, x_225); +lean_ctor_set(x_17, 0, x_233); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_8); +lean_ctor_set(x_235, 1, x_16); +return x_235; +} +else +{ +lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +if (lean_is_exclusive(x_23)) { + lean_ctor_release(x_23, 0); + lean_ctor_release(x_23, 1); + lean_ctor_release(x_23, 2); + x_236 = x_23; +} else { + lean_dec_ref(x_23); + x_236 = lean_box(0); +} +x_237 = lean_array_fget(x_37, x_38); +lean_dec(x_38); +lean_dec_ref(x_37); +x_238 = lean_array_fget(x_46, x_47); +lean_dec(x_47); +lean_dec_ref(x_46); +x_239 = lean_array_fget(x_213, x_214); +lean_dec(x_214); +lean_dec_ref(x_213); +x_240 = lean_array_fget(x_221, x_222); +lean_dec(x_222); +lean_dec_ref(x_221); +x_241 = lean_array_fget(x_229, x_230); +x_242 = lean_box(x_2); +x_243 = lean_box(x_3); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_9); +lean_inc_ref(x_1); +x_244 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__6___boxed), 18, 9); +lean_closure_set(x_244, 0, x_237); +lean_closure_set(x_244, 1, x_241); +lean_closure_set(x_244, 2, x_1); +lean_closure_set(x_244, 3, x_9); +lean_closure_set(x_244, 4, x_242); +lean_closure_set(x_244, 5, x_243); +lean_closure_set(x_244, 6, x_4); +lean_closure_set(x_244, 7, x_5); +lean_closure_set(x_244, 8, x_239); +x_245 = lean_nat_sub(x_240, x_5); +lean_dec(x_240); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_6); +x_246 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_238, x_245, x_6, x_244, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_246) == 0) +{ +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; uint8_t x_254; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; +} else { + lean_dec_ref(x_246); + x_249 = lean_box(0); +} +x_250 = lean_nat_add(x_230, x_49); +lean_dec(x_230); +if (lean_is_scalar(x_236)) { + x_251 = lean_alloc_ctor(0, 3, 0); +} else { + x_251 = x_236; +} +lean_ctor_set(x_251, 0, x_229); +lean_ctor_set(x_251, 1, x_250); +lean_ctor_set(x_251, 2, x_231); +x_252 = lean_array_push(x_35, x_247); +lean_ctor_set(x_20, 1, x_252); +lean_ctor_set(x_19, 0, x_217); +lean_ctor_set(x_18, 0, x_225); +lean_ctor_set(x_17, 0, x_233); +lean_ctor_set(x_8, 0, x_251); +x_253 = lean_nat_add(x_9, x_49); +lean_dec(x_9); +x_254 = lean_nat_dec_lt(x_253, x_7); +if (x_254 == 0) +{ +lean_object* x_255; +lean_dec(x_253); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_249)) { + x_255 = lean_alloc_ctor(0, 2, 0); +} else { + x_255 = x_249; +} +lean_ctor_set(x_255, 0, x_8); +lean_ctor_set(x_255, 1, x_248); +return x_255; +} +else +{ +lean_dec(x_249); +x_9 = x_253; +x_16 = x_248; +goto _start; +} +} +else +{ +lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; +lean_dec(x_236); +lean_dec_ref(x_233); +lean_dec(x_231); +lean_dec(x_230); +lean_dec_ref(x_229); +lean_dec_ref(x_225); +lean_dec_ref(x_217); +lean_dec_ref(x_21); +lean_free_object(x_20); +lean_dec(x_35); +lean_free_object(x_19); +lean_free_object(x_18); +lean_free_object(x_17); +lean_free_object(x_8); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_257 = lean_ctor_get(x_246, 0); +lean_inc(x_257); +x_258 = lean_ctor_get(x_246, 1); +lean_inc(x_258); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_259 = x_246; +} else { + lean_dec_ref(x_246); + x_259 = lean_box(0); +} +if (lean_is_scalar(x_259)) { + x_260 = lean_alloc_ctor(1, 2, 0); +} else { + x_260 = x_259; +} +lean_ctor_set(x_260, 0, x_257); +lean_ctor_set(x_260, 1, x_258); +return x_260; +} +} +} +} +} +} +} +else +{ +lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; uint8_t x_267; +lean_dec(x_21); +x_261 = lean_ctor_get(x_32, 0); +lean_inc_ref(x_261); +x_262 = lean_ctor_get(x_32, 1); +lean_inc(x_262); +x_263 = lean_ctor_get(x_32, 2); +lean_inc(x_263); +x_264 = lean_unsigned_to_nat(1u); +x_265 = lean_nat_add(x_38, x_264); +lean_inc_ref(x_37); +x_266 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_266, 0, x_37); +lean_ctor_set(x_266, 1, x_265); +lean_ctor_set(x_266, 2, x_39); +x_267 = lean_nat_dec_lt(x_262, x_263); +if (x_267 == 0) +{ +lean_object* x_268; +lean_dec(x_263); +lean_dec(x_262); +lean_dec_ref(x_261); +lean_dec(x_38); +lean_dec_ref(x_37); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +lean_ctor_set(x_20, 0, x_266); +x_268 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_268, 0, x_8); +lean_ctor_set(x_268, 1, x_16); +return x_268; +} +else +{ +lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; uint8_t x_275; +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_269 = x_32; +} else { + lean_dec_ref(x_32); + x_269 = lean_box(0); +} +x_270 = lean_ctor_get(x_29, 0); +lean_inc_ref(x_270); +x_271 = lean_ctor_get(x_29, 1); +lean_inc(x_271); +x_272 = lean_ctor_get(x_29, 2); +lean_inc(x_272); +x_273 = lean_nat_add(x_262, x_264); +lean_inc_ref(x_261); +if (lean_is_scalar(x_269)) { + x_274 = lean_alloc_ctor(0, 3, 0); +} else { + x_274 = x_269; +} +lean_ctor_set(x_274, 0, x_261); +lean_ctor_set(x_274, 1, x_273); +lean_ctor_set(x_274, 2, x_263); +x_275 = lean_nat_dec_lt(x_271, x_272); +if (x_275 == 0) +{ +lean_object* x_276; +lean_dec(x_272); +lean_dec(x_271); +lean_dec_ref(x_270); +lean_dec(x_262); +lean_dec_ref(x_261); +lean_dec(x_38); +lean_dec_ref(x_37); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +lean_ctor_set(x_20, 0, x_266); +lean_ctor_set(x_19, 0, x_274); +x_276 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_276, 0, x_8); +lean_ctor_set(x_276, 1, x_16); +return x_276; +} +else +{ +lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; uint8_t x_283; +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_277 = x_29; +} else { + lean_dec_ref(x_29); + x_277 = lean_box(0); +} +x_278 = lean_ctor_get(x_26, 0); +lean_inc_ref(x_278); +x_279 = lean_ctor_get(x_26, 1); +lean_inc(x_279); +x_280 = lean_ctor_get(x_26, 2); +lean_inc(x_280); +x_281 = lean_nat_add(x_271, x_264); +lean_inc_ref(x_270); +if (lean_is_scalar(x_277)) { + x_282 = lean_alloc_ctor(0, 3, 0); +} else { + x_282 = x_277; +} +lean_ctor_set(x_282, 0, x_270); +lean_ctor_set(x_282, 1, x_281); +lean_ctor_set(x_282, 2, x_272); +x_283 = lean_nat_dec_lt(x_279, x_280); +if (x_283 == 0) +{ +lean_object* x_284; +lean_dec(x_280); +lean_dec(x_279); +lean_dec_ref(x_278); +lean_dec(x_271); +lean_dec_ref(x_270); +lean_dec(x_262); +lean_dec_ref(x_261); +lean_dec(x_38); +lean_dec_ref(x_37); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +lean_ctor_set(x_20, 0, x_266); +lean_ctor_set(x_19, 0, x_274); +lean_ctor_set(x_18, 0, x_282); +x_284 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_284, 0, x_8); +lean_ctor_set(x_284, 1, x_16); +return x_284; +} +else +{ +lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; uint8_t x_291; +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + lean_ctor_release(x_26, 2); + x_285 = x_26; +} else { + lean_dec_ref(x_26); + x_285 = lean_box(0); +} +x_286 = lean_ctor_get(x_23, 0); +lean_inc_ref(x_286); +x_287 = lean_ctor_get(x_23, 1); +lean_inc(x_287); +x_288 = lean_ctor_get(x_23, 2); +lean_inc(x_288); +x_289 = lean_nat_add(x_279, x_264); +lean_inc_ref(x_278); +if (lean_is_scalar(x_285)) { + x_290 = lean_alloc_ctor(0, 3, 0); +} else { + x_290 = x_285; +} +lean_ctor_set(x_290, 0, x_278); +lean_ctor_set(x_290, 1, x_289); +lean_ctor_set(x_290, 2, x_280); +x_291 = lean_nat_dec_lt(x_287, x_288); +if (x_291 == 0) +{ +lean_object* x_292; +lean_dec(x_288); +lean_dec(x_287); +lean_dec_ref(x_286); +lean_dec(x_279); +lean_dec_ref(x_278); +lean_dec(x_271); +lean_dec_ref(x_270); +lean_dec(x_262); +lean_dec_ref(x_261); +lean_dec(x_38); +lean_dec_ref(x_37); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +lean_ctor_set(x_20, 0, x_266); +lean_ctor_set(x_19, 0, x_274); +lean_ctor_set(x_18, 0, x_282); +lean_ctor_set(x_17, 0, x_290); +x_292 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_292, 0, x_8); +lean_ctor_set(x_292, 1, x_16); +return x_292; +} +else +{ +lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; +if (lean_is_exclusive(x_23)) { + lean_ctor_release(x_23, 0); + lean_ctor_release(x_23, 1); + lean_ctor_release(x_23, 2); + x_293 = x_23; +} else { + lean_dec_ref(x_23); + x_293 = lean_box(0); +} +x_294 = lean_array_fget(x_37, x_38); +lean_dec(x_38); +lean_dec_ref(x_37); +x_295 = lean_array_fget(x_261, x_262); +lean_dec(x_262); +lean_dec_ref(x_261); +x_296 = lean_array_fget(x_270, x_271); +lean_dec(x_271); +lean_dec_ref(x_270); +x_297 = lean_array_fget(x_278, x_279); +lean_dec(x_279); +lean_dec_ref(x_278); +x_298 = lean_array_fget(x_286, x_287); +x_299 = lean_box(x_2); +x_300 = lean_box(x_3); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_9); +lean_inc_ref(x_1); +x_301 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__6___boxed), 18, 9); +lean_closure_set(x_301, 0, x_294); +lean_closure_set(x_301, 1, x_298); +lean_closure_set(x_301, 2, x_1); +lean_closure_set(x_301, 3, x_9); +lean_closure_set(x_301, 4, x_299); +lean_closure_set(x_301, 5, x_300); +lean_closure_set(x_301, 6, x_4); +lean_closure_set(x_301, 7, x_5); +lean_closure_set(x_301, 8, x_296); +x_302 = lean_nat_sub(x_297, x_5); +lean_dec(x_297); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_6); +x_303 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_295, x_302, x_6, x_301, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_303) == 0) +{ +lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; uint8_t x_311; +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +if (lean_is_exclusive(x_303)) { + lean_ctor_release(x_303, 0); + lean_ctor_release(x_303, 1); + x_306 = x_303; +} else { + lean_dec_ref(x_303); + x_306 = lean_box(0); +} +x_307 = lean_nat_add(x_287, x_264); +lean_dec(x_287); +if (lean_is_scalar(x_293)) { + x_308 = lean_alloc_ctor(0, 3, 0); +} else { + x_308 = x_293; +} +lean_ctor_set(x_308, 0, x_286); +lean_ctor_set(x_308, 1, x_307); +lean_ctor_set(x_308, 2, x_288); +x_309 = lean_array_push(x_35, x_304); +lean_ctor_set(x_20, 1, x_309); +lean_ctor_set(x_20, 0, x_266); +lean_ctor_set(x_19, 0, x_274); +lean_ctor_set(x_18, 0, x_282); +lean_ctor_set(x_17, 0, x_290); +lean_ctor_set(x_8, 0, x_308); +x_310 = lean_nat_add(x_9, x_264); +lean_dec(x_9); +x_311 = lean_nat_dec_lt(x_310, x_7); +if (x_311 == 0) +{ +lean_object* x_312; +lean_dec(x_310); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_306)) { + x_312 = lean_alloc_ctor(0, 2, 0); +} else { + x_312 = x_306; +} +lean_ctor_set(x_312, 0, x_8); +lean_ctor_set(x_312, 1, x_305); +return x_312; +} +else +{ +lean_dec(x_306); +x_9 = x_310; +x_16 = x_305; +goto _start; +} +} +else +{ +lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; +lean_dec(x_293); +lean_dec_ref(x_290); +lean_dec(x_288); +lean_dec(x_287); +lean_dec_ref(x_286); +lean_dec_ref(x_282); +lean_dec_ref(x_274); +lean_dec_ref(x_266); +lean_free_object(x_20); +lean_dec(x_35); +lean_free_object(x_19); +lean_free_object(x_18); +lean_free_object(x_17); +lean_free_object(x_8); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_314 = lean_ctor_get(x_303, 0); +lean_inc(x_314); +x_315 = lean_ctor_get(x_303, 1); +lean_inc(x_315); +if (lean_is_exclusive(x_303)) { + lean_ctor_release(x_303, 0); + lean_ctor_release(x_303, 1); + x_316 = x_303; +} else { + lean_dec_ref(x_303); + x_316 = lean_box(0); +} +if (lean_is_scalar(x_316)) { + x_317 = lean_alloc_ctor(1, 2, 0); +} else { + x_317 = x_316; +} +lean_ctor_set(x_317, 0, x_314); +lean_ctor_set(x_317, 1, x_315); +return x_317; +} +} +} +} +} +} +} +} +else +{ +lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; uint8_t x_322; +x_318 = lean_ctor_get(x_20, 1); +lean_inc(x_318); +lean_dec(x_20); +x_319 = lean_ctor_get(x_21, 0); +lean_inc_ref(x_319); +x_320 = lean_ctor_get(x_21, 1); +lean_inc(x_320); +x_321 = lean_ctor_get(x_21, 2); +lean_inc(x_321); +x_322 = lean_nat_dec_lt(x_320, x_321); +if (x_322 == 0) +{ +lean_object* x_323; lean_object* x_324; +lean_dec(x_321); +lean_dec(x_320); +lean_dec_ref(x_319); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_323 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_323, 0, x_21); +lean_ctor_set(x_323, 1, x_318); +lean_ctor_set(x_19, 1, x_323); +x_324 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_324, 0, x_8); +lean_ctor_set(x_324, 1, x_16); +return x_324; +} +else +{ +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; uint8_t x_332; +if (lean_is_exclusive(x_21)) { + lean_ctor_release(x_21, 0); + lean_ctor_release(x_21, 1); + lean_ctor_release(x_21, 2); + x_325 = x_21; +} else { + lean_dec_ref(x_21); + x_325 = lean_box(0); +} +x_326 = lean_ctor_get(x_32, 0); +lean_inc_ref(x_326); +x_327 = lean_ctor_get(x_32, 1); +lean_inc(x_327); +x_328 = lean_ctor_get(x_32, 2); +lean_inc(x_328); +x_329 = lean_unsigned_to_nat(1u); +x_330 = lean_nat_add(x_320, x_329); +lean_inc_ref(x_319); +if (lean_is_scalar(x_325)) { + x_331 = lean_alloc_ctor(0, 3, 0); +} else { + x_331 = x_325; +} +lean_ctor_set(x_331, 0, x_319); +lean_ctor_set(x_331, 1, x_330); +lean_ctor_set(x_331, 2, x_321); +x_332 = lean_nat_dec_lt(x_327, x_328); +if (x_332 == 0) +{ +lean_object* x_333; lean_object* x_334; +lean_dec(x_328); +lean_dec(x_327); +lean_dec_ref(x_326); +lean_dec(x_320); +lean_dec_ref(x_319); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_333 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_333, 0, x_331); +lean_ctor_set(x_333, 1, x_318); +lean_ctor_set(x_19, 1, x_333); +x_334 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_334, 0, x_8); +lean_ctor_set(x_334, 1, x_16); +return x_334; +} +else +{ +lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; uint8_t x_341; +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + x_335 = x_32; +} else { + lean_dec_ref(x_32); + x_335 = lean_box(0); +} +x_336 = lean_ctor_get(x_29, 0); +lean_inc_ref(x_336); +x_337 = lean_ctor_get(x_29, 1); +lean_inc(x_337); +x_338 = lean_ctor_get(x_29, 2); +lean_inc(x_338); +x_339 = lean_nat_add(x_327, x_329); +lean_inc_ref(x_326); +if (lean_is_scalar(x_335)) { + x_340 = lean_alloc_ctor(0, 3, 0); +} else { + x_340 = x_335; +} +lean_ctor_set(x_340, 0, x_326); +lean_ctor_set(x_340, 1, x_339); +lean_ctor_set(x_340, 2, x_328); +x_341 = lean_nat_dec_lt(x_337, x_338); +if (x_341 == 0) +{ +lean_object* x_342; lean_object* x_343; +lean_dec(x_338); +lean_dec(x_337); +lean_dec_ref(x_336); +lean_dec(x_327); +lean_dec_ref(x_326); +lean_dec(x_320); +lean_dec_ref(x_319); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_342 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_342, 0, x_331); +lean_ctor_set(x_342, 1, x_318); +lean_ctor_set(x_19, 1, x_342); +lean_ctor_set(x_19, 0, x_340); +x_343 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_343, 0, x_8); +lean_ctor_set(x_343, 1, x_16); +return x_343; +} +else +{ +lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_344 = x_29; +} else { + lean_dec_ref(x_29); + x_344 = lean_box(0); +} +x_345 = lean_ctor_get(x_26, 0); +lean_inc_ref(x_345); +x_346 = lean_ctor_get(x_26, 1); +lean_inc(x_346); +x_347 = lean_ctor_get(x_26, 2); +lean_inc(x_347); +x_348 = lean_nat_add(x_337, x_329); +lean_inc_ref(x_336); +if (lean_is_scalar(x_344)) { + x_349 = lean_alloc_ctor(0, 3, 0); +} else { + x_349 = x_344; +} +lean_ctor_set(x_349, 0, x_336); +lean_ctor_set(x_349, 1, x_348); +lean_ctor_set(x_349, 2, x_338); +x_350 = lean_nat_dec_lt(x_346, x_347); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; +lean_dec(x_347); +lean_dec(x_346); +lean_dec_ref(x_345); +lean_dec(x_337); +lean_dec_ref(x_336); +lean_dec(x_327); +lean_dec_ref(x_326); +lean_dec(x_320); +lean_dec_ref(x_319); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_351 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_351, 0, x_331); +lean_ctor_set(x_351, 1, x_318); +lean_ctor_set(x_19, 1, x_351); +lean_ctor_set(x_19, 0, x_340); +lean_ctor_set(x_18, 0, x_349); +x_352 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_352, 0, x_8); +lean_ctor_set(x_352, 1, x_16); +return x_352; +} +else +{ +lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; uint8_t x_359; +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + lean_ctor_release(x_26, 2); + x_353 = x_26; +} else { + lean_dec_ref(x_26); + x_353 = lean_box(0); +} +x_354 = lean_ctor_get(x_23, 0); +lean_inc_ref(x_354); +x_355 = lean_ctor_get(x_23, 1); +lean_inc(x_355); +x_356 = lean_ctor_get(x_23, 2); +lean_inc(x_356); +x_357 = lean_nat_add(x_346, x_329); +lean_inc_ref(x_345); +if (lean_is_scalar(x_353)) { + x_358 = lean_alloc_ctor(0, 3, 0); +} else { + x_358 = x_353; +} +lean_ctor_set(x_358, 0, x_345); +lean_ctor_set(x_358, 1, x_357); +lean_ctor_set(x_358, 2, x_347); +x_359 = lean_nat_dec_lt(x_355, x_356); +if (x_359 == 0) +{ +lean_object* x_360; lean_object* x_361; +lean_dec(x_356); +lean_dec(x_355); +lean_dec_ref(x_354); +lean_dec(x_346); +lean_dec_ref(x_345); +lean_dec(x_337); +lean_dec_ref(x_336); +lean_dec(x_327); +lean_dec_ref(x_326); +lean_dec(x_320); +lean_dec_ref(x_319); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_360 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_360, 0, x_331); +lean_ctor_set(x_360, 1, x_318); +lean_ctor_set(x_19, 1, x_360); +lean_ctor_set(x_19, 0, x_340); +lean_ctor_set(x_18, 0, x_349); +lean_ctor_set(x_17, 0, x_358); +x_361 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_361, 0, x_8); +lean_ctor_set(x_361, 1, x_16); +return x_361; +} +else +{ +lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; +if (lean_is_exclusive(x_23)) { + lean_ctor_release(x_23, 0); + lean_ctor_release(x_23, 1); + lean_ctor_release(x_23, 2); + x_362 = x_23; +} else { + lean_dec_ref(x_23); + x_362 = lean_box(0); +} +x_363 = lean_array_fget(x_319, x_320); +lean_dec(x_320); +lean_dec_ref(x_319); +x_364 = lean_array_fget(x_326, x_327); +lean_dec(x_327); +lean_dec_ref(x_326); +x_365 = lean_array_fget(x_336, x_337); +lean_dec(x_337); +lean_dec_ref(x_336); +x_366 = lean_array_fget(x_345, x_346); +lean_dec(x_346); +lean_dec_ref(x_345); +x_367 = lean_array_fget(x_354, x_355); +x_368 = lean_box(x_2); +x_369 = lean_box(x_3); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_9); +lean_inc_ref(x_1); +x_370 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__6___boxed), 18, 9); +lean_closure_set(x_370, 0, x_363); +lean_closure_set(x_370, 1, x_367); +lean_closure_set(x_370, 2, x_1); +lean_closure_set(x_370, 3, x_9); +lean_closure_set(x_370, 4, x_368); +lean_closure_set(x_370, 5, x_369); +lean_closure_set(x_370, 6, x_4); +lean_closure_set(x_370, 7, x_5); +lean_closure_set(x_370, 8, x_365); +x_371 = lean_nat_sub(x_366, x_5); +lean_dec(x_366); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_6); +x_372 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_364, x_371, x_6, x_370, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_372) == 0) +{ +lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; uint8_t x_381; +x_373 = lean_ctor_get(x_372, 0); +lean_inc(x_373); +x_374 = lean_ctor_get(x_372, 1); +lean_inc(x_374); +if (lean_is_exclusive(x_372)) { + lean_ctor_release(x_372, 0); + lean_ctor_release(x_372, 1); + x_375 = x_372; +} else { + lean_dec_ref(x_372); + x_375 = lean_box(0); +} +x_376 = lean_nat_add(x_355, x_329); +lean_dec(x_355); +if (lean_is_scalar(x_362)) { + x_377 = lean_alloc_ctor(0, 3, 0); +} else { + x_377 = x_362; +} +lean_ctor_set(x_377, 0, x_354); +lean_ctor_set(x_377, 1, x_376); +lean_ctor_set(x_377, 2, x_356); +x_378 = lean_array_push(x_318, x_373); +x_379 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_379, 0, x_331); +lean_ctor_set(x_379, 1, x_378); +lean_ctor_set(x_19, 1, x_379); +lean_ctor_set(x_19, 0, x_340); +lean_ctor_set(x_18, 0, x_349); +lean_ctor_set(x_17, 0, x_358); +lean_ctor_set(x_8, 0, x_377); +x_380 = lean_nat_add(x_9, x_329); +lean_dec(x_9); +x_381 = lean_nat_dec_lt(x_380, x_7); +if (x_381 == 0) +{ +lean_object* x_382; +lean_dec(x_380); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_375)) { + x_382 = lean_alloc_ctor(0, 2, 0); +} else { + x_382 = x_375; +} +lean_ctor_set(x_382, 0, x_8); +lean_ctor_set(x_382, 1, x_374); +return x_382; +} +else +{ +lean_dec(x_375); +x_9 = x_380; +x_16 = x_374; +goto _start; +} +} +else +{ +lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; +lean_dec(x_362); +lean_dec_ref(x_358); +lean_dec(x_356); +lean_dec(x_355); +lean_dec_ref(x_354); +lean_dec_ref(x_349); +lean_dec_ref(x_340); +lean_dec_ref(x_331); +lean_dec(x_318); +lean_free_object(x_19); +lean_free_object(x_18); +lean_free_object(x_17); +lean_free_object(x_8); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_384 = lean_ctor_get(x_372, 0); +lean_inc(x_384); +x_385 = lean_ctor_get(x_372, 1); +lean_inc(x_385); +if (lean_is_exclusive(x_372)) { + lean_ctor_release(x_372, 0); + lean_ctor_release(x_372, 1); + x_386 = x_372; +} else { + lean_dec_ref(x_372); + x_386 = lean_box(0); +} +if (lean_is_scalar(x_386)) { + x_387 = lean_alloc_ctor(1, 2, 0); +} else { + x_387 = x_386; +} +lean_ctor_set(x_387, 0, x_384); +lean_ctor_set(x_387, 1, x_385); +return x_387; +} +} +} +} +} +} +} +} +else +{ +lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; uint8_t x_394; +x_388 = lean_ctor_get(x_19, 0); +lean_inc(x_388); +lean_dec(x_19); +x_389 = lean_ctor_get(x_20, 1); +lean_inc(x_389); +if (lean_is_exclusive(x_20)) { + lean_ctor_release(x_20, 0); + lean_ctor_release(x_20, 1); + x_390 = x_20; +} else { + lean_dec_ref(x_20); + x_390 = lean_box(0); +} +x_391 = lean_ctor_get(x_21, 0); +lean_inc_ref(x_391); +x_392 = lean_ctor_get(x_21, 1); +lean_inc(x_392); +x_393 = lean_ctor_get(x_21, 2); +lean_inc(x_393); +x_394 = lean_nat_dec_lt(x_392, x_393); +if (x_394 == 0) +{ +lean_object* x_395; lean_object* x_396; lean_object* x_397; +lean_dec(x_393); +lean_dec(x_392); +lean_dec_ref(x_391); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_390)) { + x_395 = lean_alloc_ctor(0, 2, 0); +} else { + x_395 = x_390; +} +lean_ctor_set(x_395, 0, x_21); +lean_ctor_set(x_395, 1, x_389); +x_396 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_396, 0, x_388); +lean_ctor_set(x_396, 1, x_395); +lean_ctor_set(x_18, 1, x_396); +x_397 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_397, 0, x_8); +lean_ctor_set(x_397, 1, x_16); +return x_397; +} +else +{ +lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; uint8_t x_405; +if (lean_is_exclusive(x_21)) { + lean_ctor_release(x_21, 0); + lean_ctor_release(x_21, 1); + lean_ctor_release(x_21, 2); + x_398 = x_21; +} else { + lean_dec_ref(x_21); + x_398 = lean_box(0); +} +x_399 = lean_ctor_get(x_388, 0); +lean_inc_ref(x_399); +x_400 = lean_ctor_get(x_388, 1); +lean_inc(x_400); +x_401 = lean_ctor_get(x_388, 2); +lean_inc(x_401); +x_402 = lean_unsigned_to_nat(1u); +x_403 = lean_nat_add(x_392, x_402); +lean_inc_ref(x_391); +if (lean_is_scalar(x_398)) { + x_404 = lean_alloc_ctor(0, 3, 0); +} else { + x_404 = x_398; +} +lean_ctor_set(x_404, 0, x_391); +lean_ctor_set(x_404, 1, x_403); +lean_ctor_set(x_404, 2, x_393); +x_405 = lean_nat_dec_lt(x_400, x_401); +if (x_405 == 0) +{ +lean_object* x_406; lean_object* x_407; lean_object* x_408; +lean_dec(x_401); +lean_dec(x_400); +lean_dec_ref(x_399); +lean_dec(x_392); +lean_dec_ref(x_391); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_390)) { + x_406 = lean_alloc_ctor(0, 2, 0); +} else { + x_406 = x_390; +} +lean_ctor_set(x_406, 0, x_404); +lean_ctor_set(x_406, 1, x_389); +x_407 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_407, 0, x_388); +lean_ctor_set(x_407, 1, x_406); +lean_ctor_set(x_18, 1, x_407); +x_408 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_408, 0, x_8); +lean_ctor_set(x_408, 1, x_16); +return x_408; +} +else +{ +lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; uint8_t x_415; +if (lean_is_exclusive(x_388)) { + lean_ctor_release(x_388, 0); + lean_ctor_release(x_388, 1); + lean_ctor_release(x_388, 2); + x_409 = x_388; +} else { + lean_dec_ref(x_388); + x_409 = lean_box(0); +} +x_410 = lean_ctor_get(x_29, 0); +lean_inc_ref(x_410); +x_411 = lean_ctor_get(x_29, 1); +lean_inc(x_411); +x_412 = lean_ctor_get(x_29, 2); +lean_inc(x_412); +x_413 = lean_nat_add(x_400, x_402); +lean_inc_ref(x_399); +if (lean_is_scalar(x_409)) { + x_414 = lean_alloc_ctor(0, 3, 0); +} else { + x_414 = x_409; +} +lean_ctor_set(x_414, 0, x_399); +lean_ctor_set(x_414, 1, x_413); +lean_ctor_set(x_414, 2, x_401); +x_415 = lean_nat_dec_lt(x_411, x_412); +if (x_415 == 0) +{ +lean_object* x_416; lean_object* x_417; lean_object* x_418; +lean_dec(x_412); +lean_dec(x_411); +lean_dec_ref(x_410); +lean_dec(x_400); +lean_dec_ref(x_399); +lean_dec(x_392); +lean_dec_ref(x_391); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_390)) { + x_416 = lean_alloc_ctor(0, 2, 0); +} else { + x_416 = x_390; +} +lean_ctor_set(x_416, 0, x_404); +lean_ctor_set(x_416, 1, x_389); +x_417 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_417, 0, x_414); +lean_ctor_set(x_417, 1, x_416); +lean_ctor_set(x_18, 1, x_417); +x_418 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_418, 0, x_8); +lean_ctor_set(x_418, 1, x_16); +return x_418; +} +else +{ +lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; uint8_t x_425; +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + lean_ctor_release(x_29, 2); + x_419 = x_29; +} else { + lean_dec_ref(x_29); + x_419 = lean_box(0); +} +x_420 = lean_ctor_get(x_26, 0); +lean_inc_ref(x_420); +x_421 = lean_ctor_get(x_26, 1); +lean_inc(x_421); +x_422 = lean_ctor_get(x_26, 2); +lean_inc(x_422); +x_423 = lean_nat_add(x_411, x_402); +lean_inc_ref(x_410); +if (lean_is_scalar(x_419)) { + x_424 = lean_alloc_ctor(0, 3, 0); +} else { + x_424 = x_419; +} +lean_ctor_set(x_424, 0, x_410); +lean_ctor_set(x_424, 1, x_423); +lean_ctor_set(x_424, 2, x_412); +x_425 = lean_nat_dec_lt(x_421, x_422); +if (x_425 == 0) +{ +lean_object* x_426; lean_object* x_427; lean_object* x_428; +lean_dec(x_422); +lean_dec(x_421); +lean_dec_ref(x_420); +lean_dec(x_411); +lean_dec_ref(x_410); +lean_dec(x_400); +lean_dec_ref(x_399); +lean_dec(x_392); +lean_dec_ref(x_391); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_390)) { + x_426 = lean_alloc_ctor(0, 2, 0); +} else { + x_426 = x_390; +} +lean_ctor_set(x_426, 0, x_404); +lean_ctor_set(x_426, 1, x_389); +x_427 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_427, 0, x_414); +lean_ctor_set(x_427, 1, x_426); +lean_ctor_set(x_18, 1, x_427); +lean_ctor_set(x_18, 0, x_424); +x_428 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_428, 0, x_8); +lean_ctor_set(x_428, 1, x_16); +return x_428; +} +else +{ +lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; uint8_t x_435; +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + lean_ctor_release(x_26, 2); + x_429 = x_26; +} else { + lean_dec_ref(x_26); + x_429 = lean_box(0); +} +x_430 = lean_ctor_get(x_23, 0); +lean_inc_ref(x_430); +x_431 = lean_ctor_get(x_23, 1); +lean_inc(x_431); +x_432 = lean_ctor_get(x_23, 2); +lean_inc(x_432); +x_433 = lean_nat_add(x_421, x_402); +lean_inc_ref(x_420); +if (lean_is_scalar(x_429)) { + x_434 = lean_alloc_ctor(0, 3, 0); +} else { + x_434 = x_429; +} +lean_ctor_set(x_434, 0, x_420); +lean_ctor_set(x_434, 1, x_433); +lean_ctor_set(x_434, 2, x_422); +x_435 = lean_nat_dec_lt(x_431, x_432); +if (x_435 == 0) +{ +lean_object* x_436; lean_object* x_437; lean_object* x_438; +lean_dec(x_432); +lean_dec(x_431); +lean_dec_ref(x_430); +lean_dec(x_421); +lean_dec_ref(x_420); +lean_dec(x_411); +lean_dec_ref(x_410); +lean_dec(x_400); +lean_dec_ref(x_399); +lean_dec(x_392); +lean_dec_ref(x_391); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_390)) { + x_436 = lean_alloc_ctor(0, 2, 0); +} else { + x_436 = x_390; +} +lean_ctor_set(x_436, 0, x_404); +lean_ctor_set(x_436, 1, x_389); +x_437 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_437, 0, x_414); +lean_ctor_set(x_437, 1, x_436); +lean_ctor_set(x_18, 1, x_437); +lean_ctor_set(x_18, 0, x_424); +lean_ctor_set(x_17, 0, x_434); +x_438 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_438, 0, x_8); +lean_ctor_set(x_438, 1, x_16); +return x_438; +} +else +{ +lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; +if (lean_is_exclusive(x_23)) { + lean_ctor_release(x_23, 0); + lean_ctor_release(x_23, 1); + lean_ctor_release(x_23, 2); + x_439 = x_23; +} else { + lean_dec_ref(x_23); + x_439 = lean_box(0); +} +x_440 = lean_array_fget(x_391, x_392); +lean_dec(x_392); +lean_dec_ref(x_391); +x_441 = lean_array_fget(x_399, x_400); +lean_dec(x_400); +lean_dec_ref(x_399); +x_442 = lean_array_fget(x_410, x_411); +lean_dec(x_411); +lean_dec_ref(x_410); +x_443 = lean_array_fget(x_420, x_421); +lean_dec(x_421); +lean_dec_ref(x_420); +x_444 = lean_array_fget(x_430, x_431); +x_445 = lean_box(x_2); +x_446 = lean_box(x_3); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_9); +lean_inc_ref(x_1); +x_447 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__6___boxed), 18, 9); +lean_closure_set(x_447, 0, x_440); +lean_closure_set(x_447, 1, x_444); +lean_closure_set(x_447, 2, x_1); +lean_closure_set(x_447, 3, x_9); +lean_closure_set(x_447, 4, x_445); +lean_closure_set(x_447, 5, x_446); +lean_closure_set(x_447, 6, x_4); +lean_closure_set(x_447, 7, x_5); +lean_closure_set(x_447, 8, x_442); +x_448 = lean_nat_sub(x_443, x_5); +lean_dec(x_443); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_6); +x_449 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_441, x_448, x_6, x_447, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_449) == 0) +{ +lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; uint8_t x_459; +x_450 = lean_ctor_get(x_449, 0); +lean_inc(x_450); +x_451 = lean_ctor_get(x_449, 1); +lean_inc(x_451); +if (lean_is_exclusive(x_449)) { + lean_ctor_release(x_449, 0); + lean_ctor_release(x_449, 1); + x_452 = x_449; +} else { + lean_dec_ref(x_449); + x_452 = lean_box(0); +} +x_453 = lean_nat_add(x_431, x_402); +lean_dec(x_431); +if (lean_is_scalar(x_439)) { + x_454 = lean_alloc_ctor(0, 3, 0); +} else { + x_454 = x_439; +} +lean_ctor_set(x_454, 0, x_430); +lean_ctor_set(x_454, 1, x_453); +lean_ctor_set(x_454, 2, x_432); +x_455 = lean_array_push(x_389, x_450); +if (lean_is_scalar(x_390)) { + x_456 = lean_alloc_ctor(0, 2, 0); +} else { + x_456 = x_390; +} +lean_ctor_set(x_456, 0, x_404); +lean_ctor_set(x_456, 1, x_455); +x_457 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_457, 0, x_414); +lean_ctor_set(x_457, 1, x_456); +lean_ctor_set(x_18, 1, x_457); +lean_ctor_set(x_18, 0, x_424); +lean_ctor_set(x_17, 0, x_434); +lean_ctor_set(x_8, 0, x_454); +x_458 = lean_nat_add(x_9, x_402); +lean_dec(x_9); +x_459 = lean_nat_dec_lt(x_458, x_7); +if (x_459 == 0) +{ +lean_object* x_460; +lean_dec(x_458); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_452)) { + x_460 = lean_alloc_ctor(0, 2, 0); +} else { + x_460 = x_452; +} +lean_ctor_set(x_460, 0, x_8); +lean_ctor_set(x_460, 1, x_451); +return x_460; +} +else +{ +lean_dec(x_452); +x_9 = x_458; +x_16 = x_451; +goto _start; +} +} +else +{ +lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; +lean_dec(x_439); +lean_dec_ref(x_434); +lean_dec(x_432); +lean_dec(x_431); +lean_dec_ref(x_430); +lean_dec_ref(x_424); +lean_dec_ref(x_414); +lean_dec_ref(x_404); +lean_dec(x_390); +lean_dec(x_389); +lean_free_object(x_18); +lean_free_object(x_17); +lean_free_object(x_8); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_462 = lean_ctor_get(x_449, 0); +lean_inc(x_462); +x_463 = lean_ctor_get(x_449, 1); +lean_inc(x_463); +if (lean_is_exclusive(x_449)) { + lean_ctor_release(x_449, 0); + lean_ctor_release(x_449, 1); + x_464 = x_449; +} else { + lean_dec_ref(x_449); + x_464 = lean_box(0); +} +if (lean_is_scalar(x_464)) { + x_465 = lean_alloc_ctor(1, 2, 0); +} else { + x_465 = x_464; +} +lean_ctor_set(x_465, 0, x_462); +lean_ctor_set(x_465, 1, x_463); +return x_465; +} +} +} +} +} +} +} +} +else +{ +lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; uint8_t x_474; +x_466 = lean_ctor_get(x_18, 0); +lean_inc(x_466); +lean_dec(x_18); +x_467 = lean_ctor_get(x_19, 0); +lean_inc(x_467); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_468 = x_19; +} else { + lean_dec_ref(x_19); + x_468 = lean_box(0); +} +x_469 = lean_ctor_get(x_20, 1); +lean_inc(x_469); +if (lean_is_exclusive(x_20)) { + lean_ctor_release(x_20, 0); + lean_ctor_release(x_20, 1); + x_470 = x_20; +} else { + lean_dec_ref(x_20); + x_470 = lean_box(0); +} +x_471 = lean_ctor_get(x_21, 0); +lean_inc_ref(x_471); +x_472 = lean_ctor_get(x_21, 1); +lean_inc(x_472); +x_473 = lean_ctor_get(x_21, 2); +lean_inc(x_473); +x_474 = lean_nat_dec_lt(x_472, x_473); +if (x_474 == 0) +{ +lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; +lean_dec(x_473); +lean_dec(x_472); +lean_dec_ref(x_471); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_470)) { + x_475 = lean_alloc_ctor(0, 2, 0); +} else { + x_475 = x_470; +} +lean_ctor_set(x_475, 0, x_21); +lean_ctor_set(x_475, 1, x_469); +if (lean_is_scalar(x_468)) { + x_476 = lean_alloc_ctor(0, 2, 0); +} else { + x_476 = x_468; +} +lean_ctor_set(x_476, 0, x_467); +lean_ctor_set(x_476, 1, x_475); +x_477 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_477, 0, x_466); +lean_ctor_set(x_477, 1, x_476); +lean_ctor_set(x_17, 1, x_477); +x_478 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_478, 0, x_8); +lean_ctor_set(x_478, 1, x_16); +return x_478; +} +else +{ +lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; uint8_t x_486; +if (lean_is_exclusive(x_21)) { + lean_ctor_release(x_21, 0); + lean_ctor_release(x_21, 1); + lean_ctor_release(x_21, 2); + x_479 = x_21; +} else { + lean_dec_ref(x_21); + x_479 = lean_box(0); +} +x_480 = lean_ctor_get(x_467, 0); +lean_inc_ref(x_480); +x_481 = lean_ctor_get(x_467, 1); +lean_inc(x_481); +x_482 = lean_ctor_get(x_467, 2); +lean_inc(x_482); +x_483 = lean_unsigned_to_nat(1u); +x_484 = lean_nat_add(x_472, x_483); +lean_inc_ref(x_471); +if (lean_is_scalar(x_479)) { + x_485 = lean_alloc_ctor(0, 3, 0); +} else { + x_485 = x_479; +} +lean_ctor_set(x_485, 0, x_471); +lean_ctor_set(x_485, 1, x_484); +lean_ctor_set(x_485, 2, x_473); +x_486 = lean_nat_dec_lt(x_481, x_482); +if (x_486 == 0) +{ +lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; +lean_dec(x_482); +lean_dec(x_481); +lean_dec_ref(x_480); +lean_dec(x_472); +lean_dec_ref(x_471); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_470)) { + x_487 = lean_alloc_ctor(0, 2, 0); +} else { + x_487 = x_470; +} +lean_ctor_set(x_487, 0, x_485); +lean_ctor_set(x_487, 1, x_469); +if (lean_is_scalar(x_468)) { + x_488 = lean_alloc_ctor(0, 2, 0); +} else { + x_488 = x_468; +} +lean_ctor_set(x_488, 0, x_467); +lean_ctor_set(x_488, 1, x_487); +x_489 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_489, 0, x_466); +lean_ctor_set(x_489, 1, x_488); +lean_ctor_set(x_17, 1, x_489); +x_490 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_490, 0, x_8); +lean_ctor_set(x_490, 1, x_16); +return x_490; +} +else +{ +lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; uint8_t x_497; +if (lean_is_exclusive(x_467)) { + lean_ctor_release(x_467, 0); + lean_ctor_release(x_467, 1); + lean_ctor_release(x_467, 2); + x_491 = x_467; +} else { + lean_dec_ref(x_467); + x_491 = lean_box(0); +} +x_492 = lean_ctor_get(x_466, 0); +lean_inc_ref(x_492); +x_493 = lean_ctor_get(x_466, 1); +lean_inc(x_493); +x_494 = lean_ctor_get(x_466, 2); +lean_inc(x_494); +x_495 = lean_nat_add(x_481, x_483); +lean_inc_ref(x_480); +if (lean_is_scalar(x_491)) { + x_496 = lean_alloc_ctor(0, 3, 0); +} else { + x_496 = x_491; +} +lean_ctor_set(x_496, 0, x_480); +lean_ctor_set(x_496, 1, x_495); +lean_ctor_set(x_496, 2, x_482); +x_497 = lean_nat_dec_lt(x_493, x_494); +if (x_497 == 0) +{ +lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; +lean_dec(x_494); +lean_dec(x_493); +lean_dec_ref(x_492); +lean_dec(x_481); +lean_dec_ref(x_480); +lean_dec(x_472); +lean_dec_ref(x_471); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_470)) { + x_498 = lean_alloc_ctor(0, 2, 0); +} else { + x_498 = x_470; +} +lean_ctor_set(x_498, 0, x_485); +lean_ctor_set(x_498, 1, x_469); +if (lean_is_scalar(x_468)) { + x_499 = lean_alloc_ctor(0, 2, 0); +} else { + x_499 = x_468; +} +lean_ctor_set(x_499, 0, x_496); +lean_ctor_set(x_499, 1, x_498); +x_500 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_500, 0, x_466); +lean_ctor_set(x_500, 1, x_499); +lean_ctor_set(x_17, 1, x_500); +x_501 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_501, 0, x_8); +lean_ctor_set(x_501, 1, x_16); +return x_501; +} +else +{ +lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; uint8_t x_508; +if (lean_is_exclusive(x_466)) { + lean_ctor_release(x_466, 0); + lean_ctor_release(x_466, 1); + lean_ctor_release(x_466, 2); + x_502 = x_466; +} else { + lean_dec_ref(x_466); + x_502 = lean_box(0); +} +x_503 = lean_ctor_get(x_26, 0); +lean_inc_ref(x_503); +x_504 = lean_ctor_get(x_26, 1); +lean_inc(x_504); +x_505 = lean_ctor_get(x_26, 2); +lean_inc(x_505); +x_506 = lean_nat_add(x_493, x_483); +lean_inc_ref(x_492); +if (lean_is_scalar(x_502)) { + x_507 = lean_alloc_ctor(0, 3, 0); +} else { + x_507 = x_502; +} +lean_ctor_set(x_507, 0, x_492); +lean_ctor_set(x_507, 1, x_506); +lean_ctor_set(x_507, 2, x_494); +x_508 = lean_nat_dec_lt(x_504, x_505); +if (x_508 == 0) +{ +lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; +lean_dec(x_505); +lean_dec(x_504); +lean_dec_ref(x_503); +lean_dec(x_493); +lean_dec_ref(x_492); +lean_dec(x_481); +lean_dec_ref(x_480); +lean_dec(x_472); +lean_dec_ref(x_471); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_470)) { + x_509 = lean_alloc_ctor(0, 2, 0); +} else { + x_509 = x_470; +} +lean_ctor_set(x_509, 0, x_485); +lean_ctor_set(x_509, 1, x_469); +if (lean_is_scalar(x_468)) { + x_510 = lean_alloc_ctor(0, 2, 0); +} else { + x_510 = x_468; +} +lean_ctor_set(x_510, 0, x_496); +lean_ctor_set(x_510, 1, x_509); +x_511 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_511, 0, x_507); +lean_ctor_set(x_511, 1, x_510); +lean_ctor_set(x_17, 1, x_511); +x_512 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_512, 0, x_8); +lean_ctor_set(x_512, 1, x_16); +return x_512; +} +else +{ +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; +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + lean_ctor_release(x_26, 2); + x_513 = x_26; +} else { + lean_dec_ref(x_26); + x_513 = lean_box(0); +} +x_514 = lean_ctor_get(x_23, 0); +lean_inc_ref(x_514); +x_515 = lean_ctor_get(x_23, 1); +lean_inc(x_515); +x_516 = lean_ctor_get(x_23, 2); +lean_inc(x_516); +x_517 = lean_nat_add(x_504, x_483); +lean_inc_ref(x_503); +if (lean_is_scalar(x_513)) { + x_518 = lean_alloc_ctor(0, 3, 0); +} else { + x_518 = x_513; +} +lean_ctor_set(x_518, 0, x_503); +lean_ctor_set(x_518, 1, x_517); +lean_ctor_set(x_518, 2, x_505); +x_519 = lean_nat_dec_lt(x_515, x_516); +if (x_519 == 0) +{ +lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; +lean_dec(x_516); +lean_dec(x_515); +lean_dec_ref(x_514); +lean_dec(x_504); +lean_dec_ref(x_503); +lean_dec(x_493); +lean_dec_ref(x_492); +lean_dec(x_481); +lean_dec_ref(x_480); +lean_dec(x_472); +lean_dec_ref(x_471); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_470)) { + x_520 = lean_alloc_ctor(0, 2, 0); +} else { + x_520 = x_470; +} +lean_ctor_set(x_520, 0, x_485); +lean_ctor_set(x_520, 1, x_469); +if (lean_is_scalar(x_468)) { + x_521 = lean_alloc_ctor(0, 2, 0); +} else { + x_521 = x_468; +} +lean_ctor_set(x_521, 0, x_496); +lean_ctor_set(x_521, 1, x_520); +x_522 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_522, 0, x_507); +lean_ctor_set(x_522, 1, x_521); +lean_ctor_set(x_17, 1, x_522); +lean_ctor_set(x_17, 0, x_518); +x_523 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_523, 0, x_8); +lean_ctor_set(x_523, 1, x_16); +return x_523; +} +else +{ +lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; +if (lean_is_exclusive(x_23)) { + lean_ctor_release(x_23, 0); + lean_ctor_release(x_23, 1); + lean_ctor_release(x_23, 2); + x_524 = x_23; +} else { + lean_dec_ref(x_23); + x_524 = lean_box(0); +} +x_525 = lean_array_fget(x_471, x_472); +lean_dec(x_472); +lean_dec_ref(x_471); +x_526 = lean_array_fget(x_480, x_481); +lean_dec(x_481); +lean_dec_ref(x_480); +x_527 = lean_array_fget(x_492, x_493); +lean_dec(x_493); +lean_dec_ref(x_492); +x_528 = lean_array_fget(x_503, x_504); +lean_dec(x_504); +lean_dec_ref(x_503); +x_529 = lean_array_fget(x_514, x_515); +x_530 = lean_box(x_2); +x_531 = lean_box(x_3); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_9); +lean_inc_ref(x_1); +x_532 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__6___boxed), 18, 9); +lean_closure_set(x_532, 0, x_525); +lean_closure_set(x_532, 1, x_529); +lean_closure_set(x_532, 2, x_1); +lean_closure_set(x_532, 3, x_9); +lean_closure_set(x_532, 4, x_530); +lean_closure_set(x_532, 5, x_531); +lean_closure_set(x_532, 6, x_4); +lean_closure_set(x_532, 7, x_5); +lean_closure_set(x_532, 8, x_527); +x_533 = lean_nat_sub(x_528, x_5); +lean_dec(x_528); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_6); +x_534 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_526, x_533, x_6, x_532, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_534) == 0) +{ +lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; uint8_t x_545; +x_535 = lean_ctor_get(x_534, 0); +lean_inc(x_535); +x_536 = lean_ctor_get(x_534, 1); +lean_inc(x_536); +if (lean_is_exclusive(x_534)) { + lean_ctor_release(x_534, 0); + lean_ctor_release(x_534, 1); + x_537 = x_534; +} else { + lean_dec_ref(x_534); + x_537 = lean_box(0); +} +x_538 = lean_nat_add(x_515, x_483); +lean_dec(x_515); +if (lean_is_scalar(x_524)) { + x_539 = lean_alloc_ctor(0, 3, 0); +} else { + x_539 = x_524; +} +lean_ctor_set(x_539, 0, x_514); +lean_ctor_set(x_539, 1, x_538); +lean_ctor_set(x_539, 2, x_516); +x_540 = lean_array_push(x_469, x_535); +if (lean_is_scalar(x_470)) { + x_541 = lean_alloc_ctor(0, 2, 0); +} else { + x_541 = x_470; +} +lean_ctor_set(x_541, 0, x_485); +lean_ctor_set(x_541, 1, x_540); +if (lean_is_scalar(x_468)) { + x_542 = lean_alloc_ctor(0, 2, 0); +} else { + x_542 = x_468; +} +lean_ctor_set(x_542, 0, x_496); +lean_ctor_set(x_542, 1, x_541); +x_543 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_543, 0, x_507); +lean_ctor_set(x_543, 1, x_542); +lean_ctor_set(x_17, 1, x_543); +lean_ctor_set(x_17, 0, x_518); +lean_ctor_set(x_8, 0, x_539); +x_544 = lean_nat_add(x_9, x_483); +lean_dec(x_9); +x_545 = lean_nat_dec_lt(x_544, x_7); +if (x_545 == 0) +{ +lean_object* x_546; +lean_dec(x_544); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_537)) { + x_546 = lean_alloc_ctor(0, 2, 0); +} else { + x_546 = x_537; +} +lean_ctor_set(x_546, 0, x_8); +lean_ctor_set(x_546, 1, x_536); +return x_546; +} +else +{ +lean_dec(x_537); +x_9 = x_544; +x_16 = x_536; +goto _start; +} +} +else +{ +lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; +lean_dec(x_524); +lean_dec_ref(x_518); +lean_dec(x_516); +lean_dec(x_515); +lean_dec_ref(x_514); +lean_dec_ref(x_507); +lean_dec_ref(x_496); +lean_dec_ref(x_485); +lean_dec(x_470); +lean_dec(x_469); +lean_dec(x_468); +lean_free_object(x_17); +lean_free_object(x_8); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_548 = lean_ctor_get(x_534, 0); +lean_inc(x_548); +x_549 = lean_ctor_get(x_534, 1); +lean_inc(x_549); +if (lean_is_exclusive(x_534)) { + lean_ctor_release(x_534, 0); + lean_ctor_release(x_534, 1); + x_550 = x_534; +} else { + lean_dec_ref(x_534); + x_550 = lean_box(0); +} +if (lean_is_scalar(x_550)) { + x_551 = lean_alloc_ctor(1, 2, 0); +} else { + x_551 = x_550; +} +lean_ctor_set(x_551, 0, x_548); +lean_ctor_set(x_551, 1, x_549); +return x_551; +} +} +} +} +} +} +} +} +else +{ +lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; uint8_t x_562; +x_552 = lean_ctor_get(x_17, 0); +lean_inc(x_552); +lean_dec(x_17); +x_553 = lean_ctor_get(x_18, 0); +lean_inc(x_553); +if (lean_is_exclusive(x_18)) { + lean_ctor_release(x_18, 0); + lean_ctor_release(x_18, 1); + x_554 = x_18; +} else { + lean_dec_ref(x_18); + x_554 = lean_box(0); +} +x_555 = lean_ctor_get(x_19, 0); +lean_inc(x_555); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_556 = x_19; +} else { + lean_dec_ref(x_19); + x_556 = lean_box(0); +} +x_557 = lean_ctor_get(x_20, 1); +lean_inc(x_557); +if (lean_is_exclusive(x_20)) { + lean_ctor_release(x_20, 0); + lean_ctor_release(x_20, 1); + x_558 = x_20; +} else { + lean_dec_ref(x_20); + x_558 = lean_box(0); +} +x_559 = lean_ctor_get(x_21, 0); +lean_inc_ref(x_559); +x_560 = lean_ctor_get(x_21, 1); +lean_inc(x_560); +x_561 = lean_ctor_get(x_21, 2); +lean_inc(x_561); +x_562 = lean_nat_dec_lt(x_560, x_561); +if (x_562 == 0) +{ +lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; +lean_dec(x_561); +lean_dec(x_560); +lean_dec_ref(x_559); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_558)) { + x_563 = lean_alloc_ctor(0, 2, 0); +} else { + x_563 = x_558; +} +lean_ctor_set(x_563, 0, x_21); +lean_ctor_set(x_563, 1, x_557); +if (lean_is_scalar(x_556)) { + x_564 = lean_alloc_ctor(0, 2, 0); +} else { + x_564 = x_556; +} +lean_ctor_set(x_564, 0, x_555); +lean_ctor_set(x_564, 1, x_563); +if (lean_is_scalar(x_554)) { + x_565 = lean_alloc_ctor(0, 2, 0); +} else { + x_565 = x_554; +} +lean_ctor_set(x_565, 0, x_553); +lean_ctor_set(x_565, 1, x_564); +x_566 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_566, 0, x_552); +lean_ctor_set(x_566, 1, x_565); +lean_ctor_set(x_8, 1, x_566); +x_567 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_567, 0, x_8); +lean_ctor_set(x_567, 1, x_16); +return x_567; +} +else +{ +lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; uint8_t x_575; +if (lean_is_exclusive(x_21)) { + lean_ctor_release(x_21, 0); + lean_ctor_release(x_21, 1); + lean_ctor_release(x_21, 2); + x_568 = x_21; +} else { + lean_dec_ref(x_21); + x_568 = lean_box(0); +} +x_569 = lean_ctor_get(x_555, 0); +lean_inc_ref(x_569); +x_570 = lean_ctor_get(x_555, 1); +lean_inc(x_570); +x_571 = lean_ctor_get(x_555, 2); +lean_inc(x_571); +x_572 = lean_unsigned_to_nat(1u); +x_573 = lean_nat_add(x_560, x_572); +lean_inc_ref(x_559); +if (lean_is_scalar(x_568)) { + x_574 = lean_alloc_ctor(0, 3, 0); +} else { + x_574 = x_568; +} +lean_ctor_set(x_574, 0, x_559); +lean_ctor_set(x_574, 1, x_573); +lean_ctor_set(x_574, 2, x_561); +x_575 = lean_nat_dec_lt(x_570, x_571); +if (x_575 == 0) +{ +lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; +lean_dec(x_571); +lean_dec(x_570); +lean_dec_ref(x_569); +lean_dec(x_560); +lean_dec_ref(x_559); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_558)) { + x_576 = lean_alloc_ctor(0, 2, 0); +} else { + x_576 = x_558; +} +lean_ctor_set(x_576, 0, x_574); +lean_ctor_set(x_576, 1, x_557); +if (lean_is_scalar(x_556)) { + x_577 = lean_alloc_ctor(0, 2, 0); +} else { + x_577 = x_556; +} +lean_ctor_set(x_577, 0, x_555); +lean_ctor_set(x_577, 1, x_576); +if (lean_is_scalar(x_554)) { + x_578 = lean_alloc_ctor(0, 2, 0); +} else { + x_578 = x_554; +} +lean_ctor_set(x_578, 0, x_553); +lean_ctor_set(x_578, 1, x_577); +x_579 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_579, 0, x_552); +lean_ctor_set(x_579, 1, x_578); +lean_ctor_set(x_8, 1, x_579); +x_580 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_580, 0, x_8); +lean_ctor_set(x_580, 1, x_16); +return x_580; +} +else +{ +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; +if (lean_is_exclusive(x_555)) { + lean_ctor_release(x_555, 0); + lean_ctor_release(x_555, 1); + lean_ctor_release(x_555, 2); + x_581 = x_555; +} else { + lean_dec_ref(x_555); + x_581 = lean_box(0); +} +x_582 = lean_ctor_get(x_553, 0); +lean_inc_ref(x_582); +x_583 = lean_ctor_get(x_553, 1); +lean_inc(x_583); +x_584 = lean_ctor_get(x_553, 2); +lean_inc(x_584); +x_585 = lean_nat_add(x_570, x_572); +lean_inc_ref(x_569); +if (lean_is_scalar(x_581)) { + x_586 = lean_alloc_ctor(0, 3, 0); +} else { + x_586 = x_581; +} +lean_ctor_set(x_586, 0, x_569); +lean_ctor_set(x_586, 1, x_585); +lean_ctor_set(x_586, 2, x_571); +x_587 = lean_nat_dec_lt(x_583, x_584); +if (x_587 == 0) +{ +lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; +lean_dec(x_584); +lean_dec(x_583); +lean_dec_ref(x_582); +lean_dec(x_570); +lean_dec_ref(x_569); +lean_dec(x_560); +lean_dec_ref(x_559); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_558)) { + x_588 = lean_alloc_ctor(0, 2, 0); +} else { + x_588 = x_558; +} +lean_ctor_set(x_588, 0, x_574); +lean_ctor_set(x_588, 1, x_557); +if (lean_is_scalar(x_556)) { + x_589 = lean_alloc_ctor(0, 2, 0); +} else { + x_589 = x_556; +} +lean_ctor_set(x_589, 0, x_586); +lean_ctor_set(x_589, 1, x_588); +if (lean_is_scalar(x_554)) { + x_590 = lean_alloc_ctor(0, 2, 0); +} else { + x_590 = x_554; +} +lean_ctor_set(x_590, 0, x_553); +lean_ctor_set(x_590, 1, x_589); +x_591 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_591, 0, x_552); +lean_ctor_set(x_591, 1, x_590); +lean_ctor_set(x_8, 1, x_591); +x_592 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_592, 0, x_8); +lean_ctor_set(x_592, 1, x_16); +return x_592; +} +else +{ +lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; uint8_t x_599; +if (lean_is_exclusive(x_553)) { + lean_ctor_release(x_553, 0); + lean_ctor_release(x_553, 1); + lean_ctor_release(x_553, 2); + x_593 = x_553; +} else { + lean_dec_ref(x_553); + x_593 = lean_box(0); +} +x_594 = lean_ctor_get(x_552, 0); +lean_inc_ref(x_594); +x_595 = lean_ctor_get(x_552, 1); +lean_inc(x_595); +x_596 = lean_ctor_get(x_552, 2); +lean_inc(x_596); +x_597 = lean_nat_add(x_583, x_572); +lean_inc_ref(x_582); +if (lean_is_scalar(x_593)) { + x_598 = lean_alloc_ctor(0, 3, 0); +} else { + x_598 = x_593; +} +lean_ctor_set(x_598, 0, x_582); +lean_ctor_set(x_598, 1, x_597); +lean_ctor_set(x_598, 2, x_584); +x_599 = lean_nat_dec_lt(x_595, x_596); +if (x_599 == 0) +{ +lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; +lean_dec(x_596); +lean_dec(x_595); +lean_dec_ref(x_594); +lean_dec(x_583); +lean_dec_ref(x_582); +lean_dec(x_570); +lean_dec_ref(x_569); +lean_dec(x_560); +lean_dec_ref(x_559); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_558)) { + x_600 = lean_alloc_ctor(0, 2, 0); +} else { + x_600 = x_558; +} +lean_ctor_set(x_600, 0, x_574); +lean_ctor_set(x_600, 1, x_557); +if (lean_is_scalar(x_556)) { + x_601 = lean_alloc_ctor(0, 2, 0); +} else { + x_601 = x_556; +} +lean_ctor_set(x_601, 0, x_586); +lean_ctor_set(x_601, 1, x_600); +if (lean_is_scalar(x_554)) { + x_602 = lean_alloc_ctor(0, 2, 0); +} else { + x_602 = x_554; +} +lean_ctor_set(x_602, 0, x_598); +lean_ctor_set(x_602, 1, x_601); +x_603 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_603, 0, x_552); +lean_ctor_set(x_603, 1, x_602); +lean_ctor_set(x_8, 1, x_603); +x_604 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_604, 0, x_8); +lean_ctor_set(x_604, 1, x_16); +return x_604; +} +else +{ +lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; uint8_t x_611; +if (lean_is_exclusive(x_552)) { + lean_ctor_release(x_552, 0); + lean_ctor_release(x_552, 1); + lean_ctor_release(x_552, 2); + x_605 = x_552; +} else { + lean_dec_ref(x_552); + x_605 = lean_box(0); +} +x_606 = lean_ctor_get(x_23, 0); +lean_inc_ref(x_606); +x_607 = lean_ctor_get(x_23, 1); +lean_inc(x_607); +x_608 = lean_ctor_get(x_23, 2); +lean_inc(x_608); +x_609 = lean_nat_add(x_595, x_572); +lean_inc_ref(x_594); +if (lean_is_scalar(x_605)) { + x_610 = lean_alloc_ctor(0, 3, 0); +} else { + x_610 = x_605; +} +lean_ctor_set(x_610, 0, x_594); +lean_ctor_set(x_610, 1, x_609); +lean_ctor_set(x_610, 2, x_596); +x_611 = lean_nat_dec_lt(x_607, x_608); +if (x_611 == 0) +{ +lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; +lean_dec(x_608); +lean_dec(x_607); +lean_dec_ref(x_606); +lean_dec(x_595); +lean_dec_ref(x_594); +lean_dec(x_583); +lean_dec_ref(x_582); +lean_dec(x_570); +lean_dec_ref(x_569); +lean_dec(x_560); +lean_dec_ref(x_559); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_558)) { + x_612 = lean_alloc_ctor(0, 2, 0); +} else { + x_612 = x_558; +} +lean_ctor_set(x_612, 0, x_574); +lean_ctor_set(x_612, 1, x_557); +if (lean_is_scalar(x_556)) { + x_613 = lean_alloc_ctor(0, 2, 0); +} else { + x_613 = x_556; +} +lean_ctor_set(x_613, 0, x_586); +lean_ctor_set(x_613, 1, x_612); +if (lean_is_scalar(x_554)) { + x_614 = lean_alloc_ctor(0, 2, 0); +} else { + x_614 = x_554; +} +lean_ctor_set(x_614, 0, x_598); +lean_ctor_set(x_614, 1, x_613); +x_615 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_615, 0, x_610); +lean_ctor_set(x_615, 1, x_614); +lean_ctor_set(x_8, 1, x_615); +x_616 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_616, 0, x_8); +lean_ctor_set(x_616, 1, x_16); +return x_616; +} +else +{ +lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; +if (lean_is_exclusive(x_23)) { + lean_ctor_release(x_23, 0); + lean_ctor_release(x_23, 1); + lean_ctor_release(x_23, 2); + x_617 = x_23; +} else { + lean_dec_ref(x_23); + x_617 = lean_box(0); +} +x_618 = lean_array_fget(x_559, x_560); +lean_dec(x_560); +lean_dec_ref(x_559); +x_619 = lean_array_fget(x_569, x_570); +lean_dec(x_570); +lean_dec_ref(x_569); +x_620 = lean_array_fget(x_582, x_583); +lean_dec(x_583); +lean_dec_ref(x_582); +x_621 = lean_array_fget(x_594, x_595); +lean_dec(x_595); +lean_dec_ref(x_594); +x_622 = lean_array_fget(x_606, x_607); +x_623 = lean_box(x_2); +x_624 = lean_box(x_3); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_9); +lean_inc_ref(x_1); +x_625 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__6___boxed), 18, 9); +lean_closure_set(x_625, 0, x_618); +lean_closure_set(x_625, 1, x_622); +lean_closure_set(x_625, 2, x_1); +lean_closure_set(x_625, 3, x_9); +lean_closure_set(x_625, 4, x_623); +lean_closure_set(x_625, 5, x_624); +lean_closure_set(x_625, 6, x_4); +lean_closure_set(x_625, 7, x_5); +lean_closure_set(x_625, 8, x_620); +x_626 = lean_nat_sub(x_621, x_5); +lean_dec(x_621); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_6); +x_627 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_619, x_626, x_6, x_625, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_627) == 0) +{ +lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; uint8_t x_639; +x_628 = lean_ctor_get(x_627, 0); +lean_inc(x_628); +x_629 = lean_ctor_get(x_627, 1); +lean_inc(x_629); +if (lean_is_exclusive(x_627)) { + lean_ctor_release(x_627, 0); + lean_ctor_release(x_627, 1); + x_630 = x_627; +} else { + lean_dec_ref(x_627); + x_630 = lean_box(0); +} +x_631 = lean_nat_add(x_607, x_572); +lean_dec(x_607); +if (lean_is_scalar(x_617)) { + x_632 = lean_alloc_ctor(0, 3, 0); +} else { + x_632 = x_617; +} +lean_ctor_set(x_632, 0, x_606); +lean_ctor_set(x_632, 1, x_631); +lean_ctor_set(x_632, 2, x_608); +x_633 = lean_array_push(x_557, x_628); +if (lean_is_scalar(x_558)) { + x_634 = lean_alloc_ctor(0, 2, 0); +} else { + x_634 = x_558; +} +lean_ctor_set(x_634, 0, x_574); +lean_ctor_set(x_634, 1, x_633); +if (lean_is_scalar(x_556)) { + x_635 = lean_alloc_ctor(0, 2, 0); +} else { + x_635 = x_556; +} +lean_ctor_set(x_635, 0, x_586); +lean_ctor_set(x_635, 1, x_634); +if (lean_is_scalar(x_554)) { + x_636 = lean_alloc_ctor(0, 2, 0); +} else { + x_636 = x_554; +} +lean_ctor_set(x_636, 0, x_598); +lean_ctor_set(x_636, 1, x_635); +x_637 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_637, 0, x_610); +lean_ctor_set(x_637, 1, x_636); +lean_ctor_set(x_8, 1, x_637); +lean_ctor_set(x_8, 0, x_632); +x_638 = lean_nat_add(x_9, x_572); +lean_dec(x_9); +x_639 = lean_nat_dec_lt(x_638, x_7); +if (x_639 == 0) +{ +lean_object* x_640; +lean_dec(x_638); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_630)) { + x_640 = lean_alloc_ctor(0, 2, 0); +} else { + x_640 = x_630; +} +lean_ctor_set(x_640, 0, x_8); +lean_ctor_set(x_640, 1, x_629); +return x_640; +} +else +{ +lean_dec(x_630); +x_9 = x_638; +x_16 = x_629; +goto _start; +} +} +else +{ +lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; +lean_dec(x_617); +lean_dec_ref(x_610); +lean_dec(x_608); +lean_dec(x_607); +lean_dec_ref(x_606); +lean_dec_ref(x_598); +lean_dec_ref(x_586); +lean_dec_ref(x_574); +lean_dec(x_558); +lean_dec(x_557); +lean_dec(x_556); +lean_dec(x_554); +lean_free_object(x_8); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_642 = lean_ctor_get(x_627, 0); +lean_inc(x_642); +x_643 = lean_ctor_get(x_627, 1); +lean_inc(x_643); +if (lean_is_exclusive(x_627)) { + lean_ctor_release(x_627, 0); + lean_ctor_release(x_627, 1); + x_644 = x_627; +} else { + lean_dec_ref(x_627); + x_644 = lean_box(0); +} +if (lean_is_scalar(x_644)) { + x_645 = lean_alloc_ctor(1, 2, 0); +} else { + x_645 = x_644; +} +lean_ctor_set(x_645, 0, x_642); +lean_ctor_set(x_645, 1, x_643); +return x_645; +} +} +} +} +} +} +} +} +else +{ +lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; uint8_t x_658; +x_646 = lean_ctor_get(x_8, 0); +lean_inc(x_646); +lean_dec(x_8); +x_647 = lean_ctor_get(x_17, 0); +lean_inc(x_647); +if (lean_is_exclusive(x_17)) { + lean_ctor_release(x_17, 0); + lean_ctor_release(x_17, 1); + x_648 = x_17; +} else { + lean_dec_ref(x_17); + x_648 = lean_box(0); +} +x_649 = lean_ctor_get(x_18, 0); +lean_inc(x_649); +if (lean_is_exclusive(x_18)) { + lean_ctor_release(x_18, 0); + lean_ctor_release(x_18, 1); + x_650 = x_18; +} else { + lean_dec_ref(x_18); + x_650 = lean_box(0); +} +x_651 = lean_ctor_get(x_19, 0); +lean_inc(x_651); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + x_652 = x_19; +} else { + lean_dec_ref(x_19); + x_652 = lean_box(0); +} +x_653 = lean_ctor_get(x_20, 1); +lean_inc(x_653); +if (lean_is_exclusive(x_20)) { + lean_ctor_release(x_20, 0); + lean_ctor_release(x_20, 1); + x_654 = x_20; +} else { + lean_dec_ref(x_20); + x_654 = lean_box(0); +} +x_655 = lean_ctor_get(x_21, 0); +lean_inc_ref(x_655); +x_656 = lean_ctor_get(x_21, 1); +lean_inc(x_656); +x_657 = lean_ctor_get(x_21, 2); +lean_inc(x_657); +x_658 = lean_nat_dec_lt(x_656, x_657); +if (x_658 == 0) +{ +lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; +lean_dec(x_657); +lean_dec(x_656); +lean_dec_ref(x_655); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_654)) { + x_659 = lean_alloc_ctor(0, 2, 0); +} else { + x_659 = x_654; +} +lean_ctor_set(x_659, 0, x_21); +lean_ctor_set(x_659, 1, x_653); +if (lean_is_scalar(x_652)) { + x_660 = lean_alloc_ctor(0, 2, 0); +} else { + x_660 = x_652; +} +lean_ctor_set(x_660, 0, x_651); +lean_ctor_set(x_660, 1, x_659); +if (lean_is_scalar(x_650)) { + x_661 = lean_alloc_ctor(0, 2, 0); +} else { + x_661 = x_650; +} +lean_ctor_set(x_661, 0, x_649); +lean_ctor_set(x_661, 1, x_660); +if (lean_is_scalar(x_648)) { + x_662 = lean_alloc_ctor(0, 2, 0); +} else { + x_662 = x_648; +} +lean_ctor_set(x_662, 0, x_647); +lean_ctor_set(x_662, 1, x_661); +x_663 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_663, 0, x_646); +lean_ctor_set(x_663, 1, x_662); +x_664 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_664, 0, x_663); +lean_ctor_set(x_664, 1, x_16); +return x_664; +} +else +{ +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; uint8_t x_672; +if (lean_is_exclusive(x_21)) { + lean_ctor_release(x_21, 0); + lean_ctor_release(x_21, 1); + lean_ctor_release(x_21, 2); + x_665 = x_21; +} else { + lean_dec_ref(x_21); + x_665 = lean_box(0); +} +x_666 = lean_ctor_get(x_651, 0); +lean_inc_ref(x_666); +x_667 = lean_ctor_get(x_651, 1); +lean_inc(x_667); +x_668 = lean_ctor_get(x_651, 2); +lean_inc(x_668); +x_669 = lean_unsigned_to_nat(1u); +x_670 = lean_nat_add(x_656, x_669); +lean_inc_ref(x_655); +if (lean_is_scalar(x_665)) { + x_671 = lean_alloc_ctor(0, 3, 0); +} else { + x_671 = x_665; +} +lean_ctor_set(x_671, 0, x_655); +lean_ctor_set(x_671, 1, x_670); +lean_ctor_set(x_671, 2, x_657); +x_672 = lean_nat_dec_lt(x_667, x_668); +if (x_672 == 0) +{ +lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; +lean_dec(x_668); +lean_dec(x_667); +lean_dec_ref(x_666); +lean_dec(x_656); +lean_dec_ref(x_655); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_654)) { + x_673 = lean_alloc_ctor(0, 2, 0); +} else { + x_673 = x_654; +} +lean_ctor_set(x_673, 0, x_671); +lean_ctor_set(x_673, 1, x_653); +if (lean_is_scalar(x_652)) { + x_674 = lean_alloc_ctor(0, 2, 0); +} else { + x_674 = x_652; +} +lean_ctor_set(x_674, 0, x_651); +lean_ctor_set(x_674, 1, x_673); +if (lean_is_scalar(x_650)) { + x_675 = lean_alloc_ctor(0, 2, 0); +} else { + x_675 = x_650; +} +lean_ctor_set(x_675, 0, x_649); +lean_ctor_set(x_675, 1, x_674); +if (lean_is_scalar(x_648)) { + x_676 = lean_alloc_ctor(0, 2, 0); +} else { + x_676 = x_648; +} +lean_ctor_set(x_676, 0, x_647); +lean_ctor_set(x_676, 1, x_675); +x_677 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_677, 0, x_646); +lean_ctor_set(x_677, 1, x_676); +x_678 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_678, 0, x_677); +lean_ctor_set(x_678, 1, x_16); +return x_678; +} +else +{ +lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; uint8_t x_685; +if (lean_is_exclusive(x_651)) { + lean_ctor_release(x_651, 0); + lean_ctor_release(x_651, 1); + lean_ctor_release(x_651, 2); + x_679 = x_651; +} else { + lean_dec_ref(x_651); + x_679 = lean_box(0); +} +x_680 = lean_ctor_get(x_649, 0); +lean_inc_ref(x_680); +x_681 = lean_ctor_get(x_649, 1); +lean_inc(x_681); +x_682 = lean_ctor_get(x_649, 2); +lean_inc(x_682); +x_683 = lean_nat_add(x_667, x_669); +lean_inc_ref(x_666); +if (lean_is_scalar(x_679)) { + x_684 = lean_alloc_ctor(0, 3, 0); +} else { + x_684 = x_679; +} +lean_ctor_set(x_684, 0, x_666); +lean_ctor_set(x_684, 1, x_683); +lean_ctor_set(x_684, 2, x_668); +x_685 = lean_nat_dec_lt(x_681, x_682); +if (x_685 == 0) +{ +lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; +lean_dec(x_682); +lean_dec(x_681); +lean_dec_ref(x_680); +lean_dec(x_667); +lean_dec_ref(x_666); +lean_dec(x_656); +lean_dec_ref(x_655); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_654)) { + x_686 = lean_alloc_ctor(0, 2, 0); +} else { + x_686 = x_654; +} +lean_ctor_set(x_686, 0, x_671); +lean_ctor_set(x_686, 1, x_653); +if (lean_is_scalar(x_652)) { + x_687 = lean_alloc_ctor(0, 2, 0); +} else { + x_687 = x_652; +} +lean_ctor_set(x_687, 0, x_684); +lean_ctor_set(x_687, 1, x_686); +if (lean_is_scalar(x_650)) { + x_688 = lean_alloc_ctor(0, 2, 0); +} else { + x_688 = x_650; +} +lean_ctor_set(x_688, 0, x_649); +lean_ctor_set(x_688, 1, x_687); +if (lean_is_scalar(x_648)) { + x_689 = lean_alloc_ctor(0, 2, 0); +} else { + x_689 = x_648; +} +lean_ctor_set(x_689, 0, x_647); +lean_ctor_set(x_689, 1, x_688); +x_690 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_690, 0, x_646); +lean_ctor_set(x_690, 1, x_689); +x_691 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_691, 0, x_690); +lean_ctor_set(x_691, 1, x_16); +return x_691; +} +else +{ +lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; uint8_t x_698; +if (lean_is_exclusive(x_649)) { + lean_ctor_release(x_649, 0); + lean_ctor_release(x_649, 1); + lean_ctor_release(x_649, 2); + x_692 = x_649; +} else { + lean_dec_ref(x_649); + x_692 = lean_box(0); +} +x_693 = lean_ctor_get(x_647, 0); +lean_inc_ref(x_693); +x_694 = lean_ctor_get(x_647, 1); +lean_inc(x_694); +x_695 = lean_ctor_get(x_647, 2); +lean_inc(x_695); +x_696 = lean_nat_add(x_681, x_669); +lean_inc_ref(x_680); +if (lean_is_scalar(x_692)) { + x_697 = lean_alloc_ctor(0, 3, 0); +} else { + x_697 = x_692; +} +lean_ctor_set(x_697, 0, x_680); +lean_ctor_set(x_697, 1, x_696); +lean_ctor_set(x_697, 2, x_682); +x_698 = lean_nat_dec_lt(x_694, x_695); +if (x_698 == 0) +{ +lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; +lean_dec(x_695); +lean_dec(x_694); +lean_dec_ref(x_693); +lean_dec(x_681); +lean_dec_ref(x_680); +lean_dec(x_667); +lean_dec_ref(x_666); +lean_dec(x_656); +lean_dec_ref(x_655); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_654)) { + x_699 = lean_alloc_ctor(0, 2, 0); +} else { + x_699 = x_654; +} +lean_ctor_set(x_699, 0, x_671); +lean_ctor_set(x_699, 1, x_653); +if (lean_is_scalar(x_652)) { + x_700 = lean_alloc_ctor(0, 2, 0); +} else { + x_700 = x_652; +} +lean_ctor_set(x_700, 0, x_684); +lean_ctor_set(x_700, 1, x_699); +if (lean_is_scalar(x_650)) { + x_701 = lean_alloc_ctor(0, 2, 0); +} else { + x_701 = x_650; +} +lean_ctor_set(x_701, 0, x_697); +lean_ctor_set(x_701, 1, x_700); +if (lean_is_scalar(x_648)) { + x_702 = lean_alloc_ctor(0, 2, 0); +} else { + x_702 = x_648; +} +lean_ctor_set(x_702, 0, x_647); +lean_ctor_set(x_702, 1, x_701); +x_703 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_703, 0, x_646); +lean_ctor_set(x_703, 1, x_702); +x_704 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_704, 0, x_703); +lean_ctor_set(x_704, 1, x_16); +return x_704; +} +else +{ +lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; uint8_t x_711; +if (lean_is_exclusive(x_647)) { + lean_ctor_release(x_647, 0); + lean_ctor_release(x_647, 1); + lean_ctor_release(x_647, 2); + x_705 = x_647; +} else { + lean_dec_ref(x_647); + x_705 = lean_box(0); +} +x_706 = lean_ctor_get(x_646, 0); +lean_inc_ref(x_706); +x_707 = lean_ctor_get(x_646, 1); +lean_inc(x_707); +x_708 = lean_ctor_get(x_646, 2); +lean_inc(x_708); +x_709 = lean_nat_add(x_694, x_669); +lean_inc_ref(x_693); +if (lean_is_scalar(x_705)) { + x_710 = lean_alloc_ctor(0, 3, 0); +} else { + x_710 = x_705; +} +lean_ctor_set(x_710, 0, x_693); +lean_ctor_set(x_710, 1, x_709); +lean_ctor_set(x_710, 2, x_695); +x_711 = lean_nat_dec_lt(x_707, x_708); +if (x_711 == 0) +{ +lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; +lean_dec(x_708); +lean_dec(x_707); +lean_dec_ref(x_706); +lean_dec(x_694); +lean_dec_ref(x_693); +lean_dec(x_681); +lean_dec_ref(x_680); +lean_dec(x_667); +lean_dec_ref(x_666); +lean_dec(x_656); +lean_dec_ref(x_655); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_654)) { + x_712 = lean_alloc_ctor(0, 2, 0); +} else { + x_712 = x_654; +} +lean_ctor_set(x_712, 0, x_671); +lean_ctor_set(x_712, 1, x_653); +if (lean_is_scalar(x_652)) { + x_713 = lean_alloc_ctor(0, 2, 0); +} else { + x_713 = x_652; +} +lean_ctor_set(x_713, 0, x_684); +lean_ctor_set(x_713, 1, x_712); +if (lean_is_scalar(x_650)) { + x_714 = lean_alloc_ctor(0, 2, 0); +} else { + x_714 = x_650; +} +lean_ctor_set(x_714, 0, x_697); +lean_ctor_set(x_714, 1, x_713); +if (lean_is_scalar(x_648)) { + x_715 = lean_alloc_ctor(0, 2, 0); +} else { + x_715 = x_648; +} +lean_ctor_set(x_715, 0, x_710); +lean_ctor_set(x_715, 1, x_714); +x_716 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_716, 0, x_646); +lean_ctor_set(x_716, 1, x_715); +x_717 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_717, 0, x_716); +lean_ctor_set(x_717, 1, x_16); +return x_717; +} +else +{ +lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; +if (lean_is_exclusive(x_646)) { + lean_ctor_release(x_646, 0); + lean_ctor_release(x_646, 1); + lean_ctor_release(x_646, 2); + x_718 = x_646; +} else { + lean_dec_ref(x_646); + x_718 = lean_box(0); +} +x_719 = lean_array_fget(x_655, x_656); +lean_dec(x_656); +lean_dec_ref(x_655); +x_720 = lean_array_fget(x_666, x_667); +lean_dec(x_667); +lean_dec_ref(x_666); +x_721 = lean_array_fget(x_680, x_681); +lean_dec(x_681); +lean_dec_ref(x_680); +x_722 = lean_array_fget(x_693, x_694); +lean_dec(x_694); +lean_dec_ref(x_693); +x_723 = lean_array_fget(x_706, x_707); +x_724 = lean_box(x_2); +x_725 = lean_box(x_3); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_9); +lean_inc_ref(x_1); +x_726 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__6___boxed), 18, 9); +lean_closure_set(x_726, 0, x_719); +lean_closure_set(x_726, 1, x_723); +lean_closure_set(x_726, 2, x_1); +lean_closure_set(x_726, 3, x_9); +lean_closure_set(x_726, 4, x_724); +lean_closure_set(x_726, 5, x_725); +lean_closure_set(x_726, 6, x_4); +lean_closure_set(x_726, 7, x_5); +lean_closure_set(x_726, 8, x_721); +x_727 = lean_nat_sub(x_722, x_5); +lean_dec(x_722); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_6); +x_728 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg(x_720, x_727, x_6, x_726, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_728) == 0) +{ +lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; uint8_t x_741; +x_729 = lean_ctor_get(x_728, 0); +lean_inc(x_729); +x_730 = lean_ctor_get(x_728, 1); +lean_inc(x_730); +if (lean_is_exclusive(x_728)) { + lean_ctor_release(x_728, 0); + lean_ctor_release(x_728, 1); + x_731 = x_728; +} else { + lean_dec_ref(x_728); + x_731 = lean_box(0); +} +x_732 = lean_nat_add(x_707, x_669); +lean_dec(x_707); +if (lean_is_scalar(x_718)) { + x_733 = lean_alloc_ctor(0, 3, 0); +} else { + x_733 = x_718; +} +lean_ctor_set(x_733, 0, x_706); +lean_ctor_set(x_733, 1, x_732); +lean_ctor_set(x_733, 2, x_708); +x_734 = lean_array_push(x_653, x_729); +if (lean_is_scalar(x_654)) { + x_735 = lean_alloc_ctor(0, 2, 0); +} else { + x_735 = x_654; +} +lean_ctor_set(x_735, 0, x_671); +lean_ctor_set(x_735, 1, x_734); +if (lean_is_scalar(x_652)) { + x_736 = lean_alloc_ctor(0, 2, 0); +} else { + x_736 = x_652; +} +lean_ctor_set(x_736, 0, x_684); +lean_ctor_set(x_736, 1, x_735); +if (lean_is_scalar(x_650)) { + x_737 = lean_alloc_ctor(0, 2, 0); +} else { + x_737 = x_650; +} +lean_ctor_set(x_737, 0, x_697); +lean_ctor_set(x_737, 1, x_736); +if (lean_is_scalar(x_648)) { + x_738 = lean_alloc_ctor(0, 2, 0); +} else { + x_738 = x_648; +} +lean_ctor_set(x_738, 0, x_710); +lean_ctor_set(x_738, 1, x_737); +x_739 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_739, 0, x_733); +lean_ctor_set(x_739, 1, x_738); +x_740 = lean_nat_add(x_9, x_669); +lean_dec(x_9); +x_741 = lean_nat_dec_lt(x_740, x_7); +if (x_741 == 0) +{ +lean_object* x_742; +lean_dec(x_740); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +if (lean_is_scalar(x_731)) { + x_742 = lean_alloc_ctor(0, 2, 0); +} else { + x_742 = x_731; +} +lean_ctor_set(x_742, 0, x_739); +lean_ctor_set(x_742, 1, x_730); +return x_742; +} +else +{ +lean_dec(x_731); +x_8 = x_739; +x_9 = x_740; +x_16 = x_730; +goto _start; +} +} +else +{ +lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; +lean_dec(x_718); +lean_dec_ref(x_710); +lean_dec(x_708); +lean_dec(x_707); +lean_dec_ref(x_706); +lean_dec_ref(x_697); +lean_dec_ref(x_684); +lean_dec_ref(x_671); +lean_dec(x_654); +lean_dec(x_653); +lean_dec(x_652); +lean_dec(x_650); +lean_dec(x_648); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_744 = lean_ctor_get(x_728, 0); +lean_inc(x_744); +x_745 = lean_ctor_get(x_728, 1); +lean_inc(x_745); +if (lean_is_exclusive(x_728)) { + lean_ctor_release(x_728, 0); + lean_ctor_release(x_728, 1); + x_746 = x_728; +} else { + lean_dec_ref(x_728); + x_746 = lean_box(0); +} +if (lean_is_scalar(x_746)) { + x_747 = lean_alloc_ctor(1, 2, 0); +} else { + x_747 = x_746; +} +lean_ctor_set(x_747, 0, x_744); +lean_ctor_set(x_747, 1, x_745); +return x_747; +} +} +} +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23) { +_start: +{ +lean_object* x_24; +x_24 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_11, x_13, x_14, x_17, x_18, x_19, x_20, x_21, x_22, x_23); +return x_24; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__17___lam__0(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; uint8_t x_10; @@ -23640,219 +36754,2280 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__17(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_10; -x_10 = l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(x_1, x_6, x_9); +lean_object* x_9; lean_object* x_10; +x_9 = lean_alloc_closure((void*)(l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__17___lam__0___boxed), 8, 0); +x_10 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_10) == 0) +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_10, 0); +x_13 = l_Lean_Meta_Match_Extension_getMatcherInfo_x3f(x_12, x_1); +lean_ctor_set(x_10, 0, x_13); return x_10; } -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__2(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: +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = lean_ctor_get(x_10, 0); +x_15 = lean_ctor_get(x_10, 1); +lean_inc(x_15); +lean_inc(x_14); +lean_dec(x_10); +x_16 = l_Lean_Meta_Match_Extension_getMatcherInfo_x3f(x_14, x_1); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_15); +return x_17; +} +} +else +{ +uint8_t x_18; +lean_dec(x_1); +x_18 = !lean_is_exclusive(x_10); +if (x_18 == 0) { -lean_object* x_10; -x_10 = l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(x_1, x_6, x_9); return x_10; } -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { -_start: +else { -lean_object* x_10; -x_10 = l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(x_1, x_6, x_9); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_1, x_2, x_6, x_7, x_8, x_9, x_10); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Meta_Split_splitMatch(x_1, x_2, x_6, x_7, x_8, x_9, x_10); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { -_start: -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_16 = l_Lean_mkApp5(x_1, x_2, x_3, x_4, x_5, x_15); -x_17 = lean_array_set(x_6, x_7, x_16); -x_18 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__4; -x_19 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__5; -x_20 = l_Lean_Name_mkStr4(x_8, x_9, x_18, x_19); +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_10, 0); +x_20 = lean_ctor_get(x_10, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_10); x_21 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_21, 0, x_10); -lean_ctor_set(x_21, 1, x_11); -x_22 = l_Lean_Expr_const___override(x_20, x_21); -x_23 = l_Lean_mkAppN(x_22, x_17); -lean_dec_ref(x_17); -x_24 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_24, 0, x_12); -lean_ctor_set(x_24, 1, x_13); -lean_ctor_set(x_24, 2, x_14); -lean_ctor_set(x_24, 3, x_23); -return x_24; +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_20); +return x_21; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__7(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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__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_10; -x_10 = l_Lean_Meta_reduceMatcher_x3f(x_1, x_5, x_6, x_7, x_8, x_9); +x_10 = lean_get_match_equations_for(x_1, x_5, x_6, x_7, x_8, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__8(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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { _start: { -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_findSpec(x_1, x_2, x_6, x_7, x_8, x_9, x_10); -return x_11; +lean_object* x_14; +x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x_11, x_12, x_13); +return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__9(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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__2(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_10; -x_10 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_10, 0, x_1); -lean_ctor_set(x_10, 1, x_9); +x_10 = l_Lean_Meta_getLevel(x_1, x_5, x_6, x_7, x_8, x_9); return x_10; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10___closed__0() { +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__3___closed__0() { _start: { -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mkPreTag), 1, 0); -return x_1; -} -} -static uint64_t _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10___closed__1() { -_start: -{ -uint8_t x_1; uint64_t x_2; -x_1 = 1; -x_2 = l_Lean_Meta_TransparencyMode_toUInt64(x_1); +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, size_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_44; uint8_t x_45; -x_44 = l_Lean_Meta_Context_config(x_8); -x_45 = !lean_is_exclusive(x_44); -if (x_45 == 0) +lean_object* x_16; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc_ref(x_2); +x_16 = lean_apply_9(x_1, x_2, x_3, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_16) == 0) { -uint8_t 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; uint8_t x_53; uint8_t x_54; lean_object* x_55; lean_object* x_56; uint8_t x_57; uint64_t x_58; uint64_t x_59; uint64_t x_60; uint64_t x_61; uint64_t x_62; uint64_t x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; -x_46 = lean_ctor_get_uint8(x_8, sizeof(void*)*7); -x_47 = lean_ctor_get(x_8, 1); +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; size_t x_28; lean_object* x_29; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec_ref(x_16); +x_19 = lean_unsigned_to_nat(0u); +x_20 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__3___closed__0; +x_21 = lean_array_get_size(x_4); +x_22 = l_Array_toSubarray___redArg(x_4, x_19, x_21); +x_23 = lean_array_get_size(x_5); +x_24 = l_Array_toSubarray___redArg(x_5, x_19, x_23); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_20); +lean_ctor_set(x_25, 1, x_17); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_22); +lean_ctor_set(x_27, 1, x_26); +x_28 = lean_array_size(x_2); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc_ref(x_9); +x_29 = l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5(x_6, x_2, x_28, x_7, x_27, x_9, x_10, x_11, x_12, x_13, x_14, x_18); +if (lean_obj_tag(x_29) == 0) +{ +lean_object* x_30; lean_object* x_31; uint8_t x_32; +x_30 = lean_ctor_get(x_29, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_30, 1); +lean_inc(x_31); +lean_dec(x_30); +x_32 = !lean_is_exclusive(x_31); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; +x_33 = lean_ctor_get(x_31, 1); +x_34 = lean_ctor_get(x_31, 0); +lean_dec(x_34); +x_35 = lean_ctor_get(x_29, 1); +lean_inc(x_35); +lean_dec_ref(x_29); +x_36 = !lean_is_exclusive(x_33); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; uint8_t x_39; uint8_t x_40; uint8_t x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_37 = lean_ctor_get(x_33, 0); +x_38 = lean_ctor_get(x_33, 1); +x_39 = 0; +x_40 = 1; +x_41 = 1; +x_42 = lean_box(x_39); +x_43 = lean_box(x_40); +x_44 = lean_box(x_41); +lean_inc(x_38); +x_45 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__0___boxed), 13, 5); +lean_closure_set(x_45, 0, x_2); +lean_closure_set(x_45, 1, x_38); +lean_closure_set(x_45, 2, x_42); +lean_closure_set(x_45, 3, x_43); +lean_closure_set(x_45, 4, x_44); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc_ref(x_9); +x_46 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_45, x_9, x_10, x_11, x_12, x_13, x_14, x_35); +if (lean_obj_tag(x_46) == 0) +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_47 = lean_ctor_get(x_46, 0); lean_inc(x_47); -x_48 = lean_ctor_get(x_8, 2); -lean_inc_ref(x_48); -x_49 = lean_ctor_get(x_8, 3); -lean_inc_ref(x_49); -x_50 = lean_ctor_get(x_8, 4); -lean_inc(x_50); -x_51 = lean_ctor_get(x_8, 5); -lean_inc(x_51); -x_52 = lean_ctor_get(x_8, 6); -lean_inc(x_52); -x_53 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 1); -x_54 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 2); -x_55 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10___closed__0; -x_56 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3), 11, 4); -lean_closure_set(x_56, 0, x_2); -lean_closure_set(x_56, 1, x_3); -lean_closure_set(x_56, 2, x_4); -lean_closure_set(x_56, 3, x_55); -x_57 = 1; -lean_ctor_set_uint8(x_44, 9, x_57); -x_58 = l_Lean_Meta_Context_configKey(x_8); -x_59 = 2; -x_60 = lean_uint64_shift_right(x_58, x_59); -x_61 = lean_uint64_shift_left(x_60, x_59); -x_62 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10___closed__1; -x_63 = lean_uint64_lor(x_61, x_62); -x_64 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_64, 0, x_44); -lean_ctor_set_uint64(x_64, sizeof(void*)*1, x_63); -x_65 = lean_alloc_ctor(0, 7, 3); -lean_ctor_set(x_65, 0, x_64); -lean_ctor_set(x_65, 1, x_47); -lean_ctor_set(x_65, 2, x_48); -lean_ctor_set(x_65, 3, x_49); -lean_ctor_set(x_65, 4, x_50); -lean_ctor_set(x_65, 5, x_51); -lean_ctor_set(x_65, 6, x_52); -lean_ctor_set_uint8(x_65, sizeof(void*)*7, x_46); -lean_ctor_set_uint8(x_65, sizeof(void*)*7 + 1, x_53); -lean_ctor_set_uint8(x_65, sizeof(void*)*7 + 2, x_54); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc(x_7); -lean_inc_ref(x_6); -x_66 = l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14(x_56, x_6, x_7, x_65, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_66) == 0) +x_48 = lean_ctor_get(x_46, 1); +lean_inc(x_48); +lean_dec_ref(x_46); +x_49 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__2___boxed), 9, 1); +lean_closure_set(x_49, 0, x_38); +x_50 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_49, x_9, x_10, x_11, x_12, x_13, x_14, x_48); +lean_dec(x_10); +if (lean_obj_tag(x_50) == 0) { -lean_object* x_67; lean_object* x_68; -x_67 = lean_ctor_get(x_66, 0); -lean_inc(x_67); -x_68 = lean_ctor_get(x_66, 1); -lean_inc(x_68); -lean_dec_ref(x_66); -x_13 = x_67; -x_14 = x_68; -goto block_43; +uint8_t x_51; +x_51 = !lean_is_exclusive(x_50); +if (x_51 == 0) +{ +lean_object* x_52; +x_52 = lean_ctor_get(x_50, 0); +lean_ctor_set(x_33, 1, x_37); +lean_ctor_set(x_33, 0, x_52); +lean_ctor_set(x_31, 0, x_47); +lean_ctor_set(x_50, 0, x_31); +return x_50; } else { -if (lean_obj_tag(x_66) == 0) -{ -lean_object* x_69; lean_object* x_70; -x_69 = lean_ctor_get(x_66, 0); -lean_inc(x_69); -x_70 = lean_ctor_get(x_66, 1); -lean_inc(x_70); -lean_dec_ref(x_66); -x_13 = x_69; -x_14 = x_70; -goto block_43; +lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_53 = lean_ctor_get(x_50, 0); +x_54 = lean_ctor_get(x_50, 1); +lean_inc(x_54); +lean_inc(x_53); +lean_dec(x_50); +lean_ctor_set(x_33, 1, x_37); +lean_ctor_set(x_33, 0, x_53); +lean_ctor_set(x_31, 0, x_47); +x_55 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_55, 0, x_31); +lean_ctor_set(x_55, 1, x_54); +return x_55; +} } else { -uint8_t x_71; -lean_dec(x_11); +uint8_t x_56; +lean_dec(x_47); +lean_free_object(x_33); +lean_dec(x_37); +lean_free_object(x_31); +x_56 = !lean_is_exclusive(x_50); +if (x_56 == 0) +{ +return x_50; +} +else +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_57 = lean_ctor_get(x_50, 0); +x_58 = lean_ctor_get(x_50, 1); +lean_inc(x_58); +lean_inc(x_57); +lean_dec(x_50); +x_59 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_59, 0, x_57); +lean_ctor_set(x_59, 1, x_58); +return x_59; +} +} +} +else +{ +uint8_t x_60; +lean_free_object(x_33); +lean_dec(x_38); +lean_dec(x_37); +lean_free_object(x_31); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +x_60 = !lean_is_exclusive(x_46); +if (x_60 == 0) +{ +return x_46; +} +else +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_61 = lean_ctor_get(x_46, 0); +x_62 = lean_ctor_get(x_46, 1); +lean_inc(x_62); +lean_inc(x_61); +lean_dec(x_46); +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_61); +lean_ctor_set(x_63, 1, x_62); +return x_63; +} +} +} +else +{ +lean_object* x_64; lean_object* x_65; uint8_t x_66; uint8_t x_67; uint8_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; +x_64 = lean_ctor_get(x_33, 0); +x_65 = lean_ctor_get(x_33, 1); +lean_inc(x_65); +lean_inc(x_64); +lean_dec(x_33); +x_66 = 0; +x_67 = 1; +x_68 = 1; +x_69 = lean_box(x_66); +x_70 = lean_box(x_67); +x_71 = lean_box(x_68); +lean_inc(x_65); +x_72 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__0___boxed), 13, 5); +lean_closure_set(x_72, 0, x_2); +lean_closure_set(x_72, 1, x_65); +lean_closure_set(x_72, 2, x_69); +lean_closure_set(x_72, 3, x_70); +lean_closure_set(x_72, 4, x_71); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc_ref(x_9); +x_73 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_72, x_9, x_10, x_11, x_12, x_13, x_14, x_35); +if (lean_obj_tag(x_73) == 0) +{ +lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_74 = lean_ctor_get(x_73, 0); +lean_inc(x_74); +x_75 = lean_ctor_get(x_73, 1); +lean_inc(x_75); +lean_dec_ref(x_73); +x_76 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__2___boxed), 9, 1); +lean_closure_set(x_76, 0, x_65); +x_77 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_76, x_9, x_10, x_11, x_12, x_13, x_14, x_75); +lean_dec(x_10); +if (lean_obj_tag(x_77) == 0) +{ +lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_78 = lean_ctor_get(x_77, 0); +lean_inc(x_78); +x_79 = lean_ctor_get(x_77, 1); +lean_inc(x_79); +if (lean_is_exclusive(x_77)) { + lean_ctor_release(x_77, 0); + lean_ctor_release(x_77, 1); + x_80 = x_77; +} else { + lean_dec_ref(x_77); + x_80 = lean_box(0); +} +x_81 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_81, 0, x_78); +lean_ctor_set(x_81, 1, x_64); +lean_ctor_set(x_31, 1, x_81); +lean_ctor_set(x_31, 0, x_74); +if (lean_is_scalar(x_80)) { + x_82 = lean_alloc_ctor(0, 2, 0); +} else { + x_82 = x_80; +} +lean_ctor_set(x_82, 0, x_31); +lean_ctor_set(x_82, 1, x_79); +return x_82; +} +else +{ +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +lean_dec(x_74); +lean_dec(x_64); +lean_free_object(x_31); +x_83 = lean_ctor_get(x_77, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_77, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_77)) { + lean_ctor_release(x_77, 0); + lean_ctor_release(x_77, 1); + x_85 = x_77; +} else { + lean_dec_ref(x_77); + x_85 = lean_box(0); +} +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); +} else { + x_86 = x_85; +} +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; +} +} +else +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; +lean_dec(x_65); +lean_dec(x_64); +lean_free_object(x_31); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +x_87 = lean_ctor_get(x_73, 0); +lean_inc(x_87); +x_88 = lean_ctor_get(x_73, 1); +lean_inc(x_88); +if (lean_is_exclusive(x_73)) { + lean_ctor_release(x_73, 0); + lean_ctor_release(x_73, 1); + x_89 = x_73; +} else { + lean_dec_ref(x_73); + x_89 = lean_box(0); +} +if (lean_is_scalar(x_89)) { + x_90 = lean_alloc_ctor(1, 2, 0); +} else { + x_90 = x_89; +} +lean_ctor_set(x_90, 0, x_87); +lean_ctor_set(x_90, 1, x_88); +return x_90; +} +} +} +else +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; uint8_t x_96; uint8_t x_97; uint8_t x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_91 = lean_ctor_get(x_31, 1); +lean_inc(x_91); +lean_dec(x_31); +x_92 = lean_ctor_get(x_29, 1); +lean_inc(x_92); +lean_dec_ref(x_29); +x_93 = lean_ctor_get(x_91, 0); +lean_inc(x_93); +x_94 = lean_ctor_get(x_91, 1); +lean_inc(x_94); +if (lean_is_exclusive(x_91)) { + lean_ctor_release(x_91, 0); + lean_ctor_release(x_91, 1); + x_95 = x_91; +} else { + lean_dec_ref(x_91); + x_95 = lean_box(0); +} +x_96 = 0; +x_97 = 1; +x_98 = 1; +x_99 = lean_box(x_96); +x_100 = lean_box(x_97); +x_101 = lean_box(x_98); +lean_inc(x_94); +x_102 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__0___boxed), 13, 5); +lean_closure_set(x_102, 0, x_2); +lean_closure_set(x_102, 1, x_94); +lean_closure_set(x_102, 2, x_99); +lean_closure_set(x_102, 3, x_100); +lean_closure_set(x_102, 4, x_101); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc_ref(x_9); +x_103 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_102, x_9, x_10, x_11, x_12, x_13, x_14, x_92); +if (lean_obj_tag(x_103) == 0) +{ +lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; +x_104 = lean_ctor_get(x_103, 0); +lean_inc(x_104); +x_105 = lean_ctor_get(x_103, 1); +lean_inc(x_105); +lean_dec_ref(x_103); +x_106 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__2___boxed), 9, 1); +lean_closure_set(x_106, 0, x_94); +x_107 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_106, x_9, x_10, x_11, x_12, x_13, x_14, x_105); +lean_dec(x_10); +if (lean_obj_tag(x_107) == 0) +{ +lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; +x_108 = lean_ctor_get(x_107, 0); +lean_inc(x_108); +x_109 = lean_ctor_get(x_107, 1); +lean_inc(x_109); +if (lean_is_exclusive(x_107)) { + lean_ctor_release(x_107, 0); + lean_ctor_release(x_107, 1); + x_110 = x_107; +} else { + lean_dec_ref(x_107); + x_110 = lean_box(0); +} +if (lean_is_scalar(x_95)) { + x_111 = lean_alloc_ctor(0, 2, 0); +} else { + x_111 = x_95; +} +lean_ctor_set(x_111, 0, x_108); +lean_ctor_set(x_111, 1, x_93); +x_112 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_112, 0, x_104); +lean_ctor_set(x_112, 1, x_111); +if (lean_is_scalar(x_110)) { + x_113 = lean_alloc_ctor(0, 2, 0); +} else { + x_113 = x_110; +} +lean_ctor_set(x_113, 0, x_112); +lean_ctor_set(x_113, 1, x_109); +return x_113; +} +else +{ +lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; +lean_dec(x_104); +lean_dec(x_95); +lean_dec(x_93); +x_114 = lean_ctor_get(x_107, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_107, 1); +lean_inc(x_115); +if (lean_is_exclusive(x_107)) { + lean_ctor_release(x_107, 0); + lean_ctor_release(x_107, 1); + x_116 = x_107; +} else { + lean_dec_ref(x_107); + x_116 = lean_box(0); +} +if (lean_is_scalar(x_116)) { + x_117 = lean_alloc_ctor(1, 2, 0); +} else { + x_117 = x_116; +} +lean_ctor_set(x_117, 0, x_114); +lean_ctor_set(x_117, 1, x_115); +return x_117; +} +} +else +{ +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; +lean_dec(x_95); +lean_dec(x_94); +lean_dec(x_93); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +x_118 = lean_ctor_get(x_103, 0); +lean_inc(x_118); +x_119 = lean_ctor_get(x_103, 1); +lean_inc(x_119); +if (lean_is_exclusive(x_103)) { + lean_ctor_release(x_103, 0); + lean_ctor_release(x_103, 1); + x_120 = x_103; +} else { + lean_dec_ref(x_103); + x_120 = lean_box(0); +} +if (lean_is_scalar(x_120)) { + x_121 = lean_alloc_ctor(1, 2, 0); +} else { + x_121 = x_120; +} +lean_ctor_set(x_121, 0, x_118); +lean_ctor_set(x_121, 1, x_119); +return x_121; +} +} +} +else +{ +uint8_t x_122; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_2); +x_122 = !lean_is_exclusive(x_29); +if (x_122 == 0) +{ +return x_29; +} +else +{ +lean_object* x_123; lean_object* x_124; lean_object* x_125; +x_123 = lean_ctor_get(x_29, 0); +x_124 = lean_ctor_get(x_29, 1); +lean_inc(x_124); +lean_inc(x_123); +lean_dec(x_29); +x_125 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_125, 0, x_123); +lean_ctor_set(x_125, 1, x_124); +return x_125; +} +} +} +else +{ +uint8_t x_126; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_2); +x_126 = !lean_is_exclusive(x_16); +if (x_126 == 0) +{ +return x_16; +} +else +{ +lean_object* x_127; lean_object* x_128; lean_object* x_129; +x_127 = lean_ctor_get(x_16, 0); +x_128 = lean_ctor_get(x_16, 1); +lean_inc(x_128); +lean_inc(x_127); +lean_dec(x_16); +x_129 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_129, 0, x_127); +lean_ctor_set(x_129, 1, x_128); +return x_129; +} +} +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("unexpected matcher application, motive must be lambda expression with #", 71, 71); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__0; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(" arguments", 10, 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__2; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_16 = lean_array_get_size(x_7); +x_17 = lean_array_get_size(x_6); +x_18 = lean_nat_dec_eq(x_16, x_17); +lean_dec(x_16); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_19 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__1; +x_20 = l_Nat_reprFast(x_17); +x_21 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_21, 0, x_20); +x_22 = l_Lean_MessageData_ofFormat(x_21); +x_23 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_23, 0, x_19); +lean_ctor_set(x_23, 1, x_22); +x_24 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__3; +x_25 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +x_26 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_25, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +x_27 = !lean_is_exclusive(x_26); +if (x_27 == 0) +{ +return x_26; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_26, 0); +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_26); +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +return x_30; +} +} +else +{ +lean_object* x_31; lean_object* x_32; +lean_dec(x_17); +x_31 = lean_box(0); +x_32 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__3(x_1, x_7, x_8, x_2, x_3, x_4, x_5, x_31, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +return x_32; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__5(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_10; +x_10 = l_Lean_Meta_isTypeCorrect(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_inferArgumentTypesN(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, size_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { +_start: +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_22 = lean_ctor_get(x_14, 1); +x_23 = lean_ctor_get(x_22, 1); +x_24 = lean_ctor_get(x_23, 1); +x_25 = lean_apply_8(x_1, x_2, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +if (lean_obj_tag(x_25) == 0) +{ +uint8_t x_26; +x_26 = !lean_is_exclusive(x_25); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; size_t x_29; lean_object* x_30; lean_object* x_31; +x_27 = lean_ctor_get(x_25, 0); +x_28 = l_Array_append___redArg(x_3, x_27); +lean_dec(x_27); +x_29 = lean_array_size(x_4); +x_30 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__8(x_5, x_29, x_6, x_4); +lean_inc(x_24); +x_31 = lean_alloc_ctor(0, 10, 0); +lean_ctor_set(x_31, 0, x_7); +lean_ctor_set(x_31, 1, x_8); +lean_ctor_set(x_31, 2, x_9); +lean_ctor_set(x_31, 3, x_10); +lean_ctor_set(x_31, 4, x_11); +lean_ctor_set(x_31, 5, x_12); +lean_ctor_set(x_31, 6, x_13); +lean_ctor_set(x_31, 7, x_30); +lean_ctor_set(x_31, 8, x_24); +lean_ctor_set(x_31, 9, x_28); +lean_ctor_set(x_25, 0, x_31); +return x_25; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; size_t x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_32 = lean_ctor_get(x_25, 0); +x_33 = lean_ctor_get(x_25, 1); +lean_inc(x_33); +lean_inc(x_32); +lean_dec(x_25); +x_34 = l_Array_append___redArg(x_3, x_32); +lean_dec(x_32); +x_35 = lean_array_size(x_4); +x_36 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__8(x_5, x_35, x_6, x_4); +lean_inc(x_24); +x_37 = lean_alloc_ctor(0, 10, 0); +lean_ctor_set(x_37, 0, x_7); +lean_ctor_set(x_37, 1, x_8); +lean_ctor_set(x_37, 2, x_9); +lean_ctor_set(x_37, 3, x_10); +lean_ctor_set(x_37, 4, x_11); +lean_ctor_set(x_37, 5, x_12); +lean_ctor_set(x_37, 6, x_13); +lean_ctor_set(x_37, 7, x_36); +lean_ctor_set(x_37, 8, x_24); +lean_ctor_set(x_37, 9, x_34); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_33); +return x_38; +} +} +else +{ +uint8_t x_39; +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); lean_dec_ref(x_10); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_71 = !lean_is_exclusive(x_66); -if (x_71 == 0) +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_39 = !lean_is_exclusive(x_25); +if (x_39 == 0) { +return x_25; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_25, 0); +x_41 = lean_ctor_get(x_25, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_25); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, size_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, uint8_t 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) { +_start: +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_array_get_size(x_1); +lean_inc(x_29); +x_30 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__6___boxed), 10, 2); +lean_closure_set(x_30, 0, x_29); +lean_closure_set(x_30, 1, x_2); +lean_inc(x_27); +lean_inc_ref(x_26); +lean_inc(x_25); +lean_inc_ref(x_24); +lean_inc_ref(x_22); +x_31 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_30, x_22, x_23, x_24, x_25, x_26, x_27, x_28); +if (lean_obj_tag(x_31) == 0) +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +x_33 = lean_ctor_get(x_31, 1); +lean_inc(x_33); +lean_dec_ref(x_31); +lean_inc(x_29); +lean_inc(x_15); +x_34 = l_Array_toSubarray___redArg(x_1, x_15, x_29); +x_35 = lean_array_get_size(x_5); +lean_inc(x_15); +lean_inc_ref(x_5); +x_36 = l_Array_toSubarray___redArg(x_5, x_15, x_35); +x_37 = lean_array_get_size(x_32); +lean_inc(x_15); +x_38 = l_Array_toSubarray___redArg(x_32, x_15, x_37); +x_39 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_16); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_36); +lean_ctor_set(x_40, 1, x_39); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_34); +lean_ctor_set(x_41, 1, x_40); +x_42 = lean_nat_dec_lt(x_15, x_29); +if (x_42 == 0) +{ +lean_object* x_43; +lean_dec(x_29); +lean_dec_ref(x_18); +lean_dec(x_15); +x_43 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__7(x_3, x_4, x_20, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_41, x_22, x_23, x_24, x_25, x_26, x_27, x_33); +lean_dec_ref(x_41); +lean_dec(x_6); +return x_43; +} +else +{ +lean_object* x_44; +lean_inc(x_27); +lean_inc_ref(x_26); +lean_inc(x_25); +lean_inc_ref(x_24); +lean_inc(x_23); +lean_inc_ref(x_22); +lean_inc(x_6); +x_44 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg(x_17, x_18, x_19, x_6, x_29, x_41, x_15, x_22, x_23, x_24, x_25, x_26, x_27, x_33); +lean_dec(x_29); +if (lean_obj_tag(x_44) == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_44, 0); +lean_inc(x_45); +x_46 = lean_ctor_get(x_44, 1); +lean_inc(x_46); +lean_dec_ref(x_44); +x_47 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__7(x_3, x_4, x_20, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_45, x_22, x_23, x_24, x_25, x_26, x_27, x_46); +lean_dec(x_45); +lean_dec(x_6); +return x_47; +} +else +{ +uint8_t x_48; +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec(x_23); +lean_dec_ref(x_22); +lean_dec_ref(x_20); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_48 = !lean_is_exclusive(x_44); +if (x_48 == 0) +{ +return x_44; +} +else +{ +lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_49 = lean_ctor_get(x_44, 0); +x_50 = lean_ctor_get(x_44, 1); +lean_inc(x_50); +lean_inc(x_49); +lean_dec(x_44); +x_51 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_51, 0, x_49); +lean_ctor_set(x_51, 1, x_50); +return x_51; +} +} +} +} +else +{ +uint8_t x_52; +lean_dec(x_29); +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec(x_23); +lean_dec_ref(x_22); +lean_dec_ref(x_20); +lean_dec_ref(x_18); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +x_52 = !lean_is_exclusive(x_31); +if (x_52 == 0) +{ +return x_31; +} +else +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_53 = lean_ctor_get(x_31, 0); +x_54 = lean_ctor_get(x_31, 1); +lean_inc(x_54); +lean_inc(x_53); +lean_dec(x_31); +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_54); +return x_55; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__9(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_10; +x_10 = l_Lean_Meta_check(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_isTypeCorrect(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_inferArgumentTypesN(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__12(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_10; +x_10 = l_Lean_Meta_isTypeCorrect(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_inferArgumentTypesN(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__14(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, size_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { +_start: +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_22 = lean_ctor_get(x_14, 1); +x_23 = lean_ctor_get(x_22, 1); +x_24 = lean_ctor_get(x_23, 1); +x_25 = lean_ctor_get(x_24, 1); +x_26 = lean_ctor_get(x_25, 1); +x_27 = lean_apply_8(x_1, x_2, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +if (lean_obj_tag(x_27) == 0) +{ +uint8_t x_28; +x_28 = !lean_is_exclusive(x_27); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; size_t x_31; lean_object* x_32; lean_object* x_33; +x_29 = lean_ctor_get(x_27, 0); +x_30 = l_Array_append___redArg(x_3, x_29); +lean_dec(x_29); +x_31 = lean_array_size(x_4); +x_32 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__8(x_5, x_31, x_6, x_4); +lean_inc(x_26); +x_33 = lean_alloc_ctor(0, 10, 0); +lean_ctor_set(x_33, 0, x_7); +lean_ctor_set(x_33, 1, x_8); +lean_ctor_set(x_33, 2, x_9); +lean_ctor_set(x_33, 3, x_10); +lean_ctor_set(x_33, 4, x_11); +lean_ctor_set(x_33, 5, x_12); +lean_ctor_set(x_33, 6, x_13); +lean_ctor_set(x_33, 7, x_32); +lean_ctor_set(x_33, 8, x_26); +lean_ctor_set(x_33, 9, x_30); +lean_ctor_set(x_27, 0, x_33); +return x_27; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; size_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_34 = lean_ctor_get(x_27, 0); +x_35 = lean_ctor_get(x_27, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_27); +x_36 = l_Array_append___redArg(x_3, x_34); +lean_dec(x_34); +x_37 = lean_array_size(x_4); +x_38 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__8(x_5, x_37, x_6, x_4); +lean_inc(x_26); +x_39 = lean_alloc_ctor(0, 10, 0); +lean_ctor_set(x_39, 0, x_7); +lean_ctor_set(x_39, 1, x_8); +lean_ctor_set(x_39, 2, x_9); +lean_ctor_set(x_39, 3, x_10); +lean_ctor_set(x_39, 4, x_11); +lean_ctor_set(x_39, 5, x_12); +lean_ctor_set(x_39, 6, x_13); +lean_ctor_set(x_39, 7, x_38); +lean_ctor_set(x_39, 8, x_26); +lean_ctor_set(x_39, 9, x_36); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_39); +lean_ctor_set(x_40, 1, x_35); +return x_40; +} +} +else +{ +uint8_t x_41; +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_41 = !lean_is_exclusive(x_27); +if (x_41 == 0) +{ +return x_27; +} +else +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_42 = lean_ctor_get(x_27, 0); +x_43 = lean_ctor_get(x_27, 1); +lean_inc(x_43); +lean_inc(x_42); +lean_dec(x_27); +x_44 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_44, 0, x_42); +lean_ctor_set(x_44, 1, x_43); +return x_44; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__15(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, size_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, uint8_t x_21, uint8_t x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26, lean_object* x_27, lean_object* x_28, lean_object* x_29, lean_object* x_30, lean_object* x_31, lean_object* x_32) { +_start: +{ +lean_object* x_33; +lean_inc(x_31); +lean_inc_ref(x_30); +lean_inc(x_29); +lean_inc_ref(x_28); +lean_inc_ref(x_26); +x_33 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_1, x_26, x_27, x_28, x_29, x_30, x_31, x_32); +if (lean_obj_tag(x_33) == 0) +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; uint8_t x_50; +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +x_35 = lean_ctor_get(x_33, 1); +lean_inc(x_35); +lean_dec_ref(x_33); +lean_inc(x_16); +lean_inc(x_15); +x_36 = l_Array_toSubarray___redArg(x_14, x_15, x_16); +x_37 = lean_array_get_size(x_17); +lean_inc(x_15); +x_38 = l_Array_toSubarray___redArg(x_17, x_15, x_37); +x_39 = lean_array_get_size(x_4); +lean_inc(x_15); +lean_inc_ref(x_4); +x_40 = l_Array_toSubarray___redArg(x_4, x_15, x_39); +x_41 = lean_array_get_size(x_18); +lean_inc(x_15); +x_42 = l_Array_toSubarray___redArg(x_18, x_15, x_41); +x_43 = lean_array_get_size(x_34); +lean_inc(x_15); +x_44 = l_Array_toSubarray___redArg(x_34, x_15, x_43); +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_44); +lean_ctor_set(x_45, 1, x_19); +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_42); +lean_ctor_set(x_46, 1, x_45); +x_47 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_47, 0, x_40); +lean_ctor_set(x_47, 1, x_46); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_38); +lean_ctor_set(x_48, 1, x_47); +x_49 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_49, 0, x_36); +lean_ctor_set(x_49, 1, x_48); +x_50 = lean_nat_dec_lt(x_15, x_16); +if (x_50 == 0) +{ +lean_object* x_51; +lean_dec(x_23); +lean_dec_ref(x_20); +lean_dec(x_16); +lean_dec(x_15); +x_51 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__14(x_2, x_3, x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_49, x_26, x_27, x_28, x_29, x_30, x_31, x_35); +lean_dec_ref(x_49); +lean_dec(x_5); +return x_51; +} +else +{ +lean_object* x_52; +lean_inc(x_31); +lean_inc_ref(x_30); +lean_inc(x_29); +lean_inc_ref(x_28); +lean_inc(x_27); +lean_inc_ref(x_26); +lean_inc(x_15); +lean_inc(x_5); +x_52 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg(x_20, x_21, x_22, x_5, x_23, x_15, x_16, x_49, x_15, x_26, x_27, x_28, x_29, x_30, x_31, x_35); +lean_dec(x_16); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_52, 1); +lean_inc(x_54); +lean_dec_ref(x_52); +x_55 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__14(x_2, x_3, x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_53, x_26, x_27, x_28, x_29, x_30, x_31, x_54); +lean_dec(x_53); +lean_dec(x_5); +return x_55; +} +else +{ +uint8_t x_56; +lean_dec(x_31); +lean_dec_ref(x_30); +lean_dec(x_29); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec_ref(x_24); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_56 = !lean_is_exclusive(x_52); +if (x_56 == 0) +{ +return x_52; +} +else +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_57 = lean_ctor_get(x_52, 0); +x_58 = lean_ctor_get(x_52, 1); +lean_inc(x_58); +lean_inc(x_57); +lean_dec(x_52); +x_59 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_59, 0, x_57); +lean_ctor_set(x_59, 1, x_58); +return x_59; +} +} +} +} +else +{ +uint8_t x_60; +lean_dec(x_31); +lean_dec_ref(x_30); +lean_dec(x_29); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec_ref(x_24); +lean_dec(x_23); +lean_dec_ref(x_20); +lean_dec_ref(x_19); +lean_dec_ref(x_18); +lean_dec_ref(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_60 = !lean_is_exclusive(x_33); +if (x_60 == 0) +{ +return x_33; +} +else +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_61 = lean_ctor_get(x_33, 0); +x_62 = lean_ctor_get(x_33, 1); +lean_inc(x_62); +lean_inc(x_61); +lean_dec(x_33); +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_61); +lean_ctor_set(x_63, 1, x_62); +return x_63; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__16(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_10; +x_10 = l_Lean_Meta_check(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__17(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__18(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_4 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_1); +x_5 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +x_6 = l_Lean_indentD(x_2); +x_7 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_7, 0, x_5); +lean_ctor_set(x_7, 1, x_6); +x_8 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_8, 0, x_7); +lean_ctor_set(x_8, 1, x_3); +return x_8; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("failed to transform matcher, type error when constructing splitter motive:", 74, 74); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__0; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("\nfailed with", 12, 12); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__2; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19(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, size_t x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, uint8_t 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) { +_start: +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_array_get_size(x_1); +lean_inc(x_31); +x_32 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__11___boxed), 10, 2); +lean_closure_set(x_32, 0, x_31); +lean_closure_set(x_32, 1, x_2); +lean_inc(x_29); +lean_inc_ref(x_28); +lean_inc(x_27); +lean_inc_ref(x_26); +lean_inc_ref(x_24); +x_33 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_32, x_24, x_25, x_26, x_27, x_28, x_29, x_30); +if (lean_obj_tag(x_33) == 0) +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +x_35 = lean_ctor_get(x_33, 1); +lean_inc(x_35); +lean_dec_ref(x_33); +lean_inc(x_29); +lean_inc_ref(x_28); +lean_inc(x_27); +lean_inc_ref(x_26); +lean_inc_ref(x_24); +x_36 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_3, x_24, x_25, x_26, x_27, x_28, x_29, x_35); +if (lean_obj_tag(x_36) == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +x_38 = lean_ctor_get(x_36, 1); +lean_inc(x_38); +lean_dec_ref(x_36); +x_39 = lean_ctor_get(x_37, 1); +lean_inc(x_39); +x_40 = lean_ctor_get(x_37, 2); +lean_inc_ref(x_40); +lean_dec(x_37); +lean_inc(x_39); +x_41 = l_Lean_Expr_const___override(x_39, x_4); +x_42 = l_Lean_mkAppN(x_41, x_5); +lean_inc_ref(x_6); +x_43 = l_Lean_Expr_app___override(x_42, x_6); +x_44 = l_Lean_mkAppN(x_43, x_7); +lean_inc_ref(x_44); +x_45 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__12___boxed), 9, 1); +lean_closure_set(x_45, 0, x_44); +lean_inc(x_29); +lean_inc_ref(x_28); +lean_inc(x_27); +lean_inc_ref(x_26); +lean_inc_ref(x_24); +x_46 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_45, x_24, x_25, x_26, x_27, x_28, x_29, x_38); +if (lean_obj_tag(x_46) == 0) +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; uint8_t x_50; +x_47 = lean_ctor_get(x_46, 0); +lean_inc(x_47); +x_48 = lean_ctor_get(x_46, 1); +lean_inc(x_48); +lean_dec_ref(x_46); +lean_inc_ref(x_44); +lean_inc(x_31); +x_49 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__13___boxed), 10, 2); +lean_closure_set(x_49, 0, x_31); +lean_closure_set(x_49, 1, x_44); +x_50 = lean_unbox(x_47); +lean_dec(x_47); +if (x_50 == 0) +{ +lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; +lean_inc_ref(x_44); +x_51 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__16___boxed), 9, 1); +lean_closure_set(x_51, 0, x_44); +lean_inc(x_25); +lean_inc_ref(x_24); +x_52 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__17___boxed), 8, 3); +lean_closure_set(x_52, 0, x_51); +lean_closure_set(x_52, 1, x_24); +lean_closure_set(x_52, 2, x_25); +x_53 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__1; +x_54 = l_Lean_indentExpr(x_44); +x_55 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_54); +x_56 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__3; +x_57 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_57, 0, x_55); +lean_ctor_set(x_57, 1, x_56); +x_58 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__18), 2, 1); +lean_closure_set(x_58, 0, x_57); +lean_inc(x_29); +lean_inc_ref(x_28); +lean_inc(x_27); +lean_inc_ref(x_26); +x_59 = l_Lean_Meta_mapErrorImp___redArg(x_52, x_58, x_26, x_27, x_28, x_29, x_48); +if (lean_obj_tag(x_59) == 0) +{ +if (lean_obj_tag(x_59) == 0) +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = lean_ctor_get(x_59, 0); +lean_inc(x_60); +x_61 = lean_ctor_get(x_59, 1); +lean_inc(x_61); +lean_dec_ref(x_59); +x_62 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__15(x_49, x_8, x_9, x_40, x_10, x_11, x_39, x_12, x_13, x_14, x_5, x_6, x_7, x_1, x_15, x_31, x_16, x_34, x_17, x_18, x_19, x_20, x_21, x_22, x_60, x_24, x_25, x_26, x_27, x_28, x_29, x_61); +lean_dec(x_60); +return x_62; +} +else +{ +uint8_t x_63; +lean_dec_ref(x_49); +lean_dec_ref(x_40); +lean_dec(x_39); +lean_dec(x_34); +lean_dec(x_31); +lean_dec(x_29); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_18); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_1); +x_63 = !lean_is_exclusive(x_59); +if (x_63 == 0) +{ +lean_ctor_set_tag(x_59, 1); +return x_59; +} +else +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_64 = lean_ctor_get(x_59, 0); +x_65 = lean_ctor_get(x_59, 1); +lean_inc(x_65); +lean_inc(x_64); +lean_dec(x_59); +x_66 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_66, 0, x_64); +lean_ctor_set(x_66, 1, x_65); +return x_66; +} +} +} +else +{ +uint8_t x_67; +lean_dec_ref(x_49); +lean_dec_ref(x_40); +lean_dec(x_39); +lean_dec(x_34); +lean_dec(x_31); +lean_dec(x_29); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_18); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_1); +x_67 = !lean_is_exclusive(x_59); +if (x_67 == 0) +{ +return x_59; +} +else +{ +lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_68 = lean_ctor_get(x_59, 0); +x_69 = lean_ctor_get(x_59, 1); +lean_inc(x_69); +lean_inc(x_68); +lean_dec(x_59); +x_70 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_70, 0, x_68); +lean_ctor_set(x_70, 1, x_69); +return x_70; +} +} +} +else +{ +lean_object* x_71; lean_object* x_72; +lean_dec_ref(x_44); +x_71 = lean_box(0); +x_72 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__15(x_49, x_8, x_9, x_40, x_10, x_11, x_39, x_12, x_13, x_14, x_5, x_6, x_7, x_1, x_15, x_31, x_16, x_34, x_17, x_18, x_19, x_20, x_21, x_22, x_71, x_24, x_25, x_26, x_27, x_28, x_29, x_48); +return x_72; +} +} +else +{ +uint8_t x_73; +lean_dec_ref(x_44); +lean_dec_ref(x_40); +lean_dec(x_39); +lean_dec(x_34); +lean_dec(x_31); +lean_dec(x_29); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_18); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_1); +x_73 = !lean_is_exclusive(x_46); +if (x_73 == 0) +{ +return x_46; +} +else +{ +lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_74 = lean_ctor_get(x_46, 0); +x_75 = lean_ctor_get(x_46, 1); +lean_inc(x_75); +lean_inc(x_74); +lean_dec(x_46); +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; +} +} +} +else +{ +uint8_t x_77; +lean_dec(x_34); +lean_dec(x_31); +lean_dec(x_29); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_18); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_1); +x_77 = !lean_is_exclusive(x_36); +if (x_77 == 0) +{ +return x_36; +} +else +{ +lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_78 = lean_ctor_get(x_36, 0); +x_79 = lean_ctor_get(x_36, 1); +lean_inc(x_79); +lean_inc(x_78); +lean_dec(x_36); +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; +} +} +} +else +{ +uint8_t x_81; +lean_dec(x_31); +lean_dec(x_29); +lean_dec_ref(x_28); +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_18); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +x_81 = !lean_is_exclusive(x_33); +if (x_81 == 0) +{ +return x_33; +} +else +{ +lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_82 = lean_ctor_get(x_33, 0); +x_83 = lean_ctor_get(x_33, 1); +lean_inc(x_83); +lean_inc(x_82); +lean_dec(x_33); +x_84 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_84, 0, x_82); +lean_ctor_set(x_84, 1, x_83); +return x_84; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__20(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_10; +x_10 = l_Lean_Meta_check(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__0() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30___redArg___closed__0; +x_2 = lean_unsigned_to_nat(0u); +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("failed to transform matcher, type error when constructing new motive:", 69, 69); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("failed to transform matcher, type error when constructing new pre-splitter motive:", 82, 82); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__3; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23(lean_object* x_1, lean_object* x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, uint8_t x_13, lean_object* x_14, uint8_t x_15, uint8_t x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26) { +_start: +{ +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; size_t x_35; lean_object* x_36; +x_27 = lean_unsigned_to_nat(0u); +x_28 = l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30___redArg___closed__0; +x_29 = l_Array_reverse___redArg(x_1); +x_30 = lean_array_get_size(x_29); +x_31 = l_Array_toSubarray___redArg(x_29, x_27, x_30); +lean_inc_ref(x_2); +x_32 = l_Array_reverse___redArg(x_2); +x_33 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__0; +x_34 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_34, 0, x_31); +lean_ctor_set(x_34, 1, x_33); +x_35 = lean_array_size(x_32); +lean_inc(x_25); +lean_inc_ref(x_24); +lean_inc(x_23); +lean_inc_ref(x_22); +lean_inc_ref(x_20); +x_36 = l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__7(x_32, x_35, x_3, x_34, x_20, x_21, x_22, x_23, x_24, x_25, x_26); +lean_dec_ref(x_32); +if (lean_obj_tag(x_36) == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +if (lean_is_exclusive(x_37)) { + lean_ctor_release(x_37, 0); + lean_ctor_release(x_37, 1); + x_39 = x_37; +} else { + lean_dec_ref(x_37); + x_39 = lean_box(0); +} +x_40 = lean_ctor_get(x_36, 1); +lean_inc(x_40); +lean_dec_ref(x_36); +x_41 = lean_ctor_get(x_38, 0); +lean_inc(x_41); +x_42 = lean_ctor_get(x_38, 1); +lean_inc(x_42); +if (lean_is_exclusive(x_38)) { + lean_ctor_release(x_38, 0); + lean_ctor_release(x_38, 1); + x_43 = x_38; +} else { + lean_dec_ref(x_38); + x_43 = lean_box(0); +} +if (x_15 == 0) +{ +lean_dec(x_18); +lean_dec_ref(x_17); +goto block_81; +} +else +{ +if (x_16 == 0) +{ +lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; +lean_dec(x_43); +lean_dec(x_39); +lean_inc_ref(x_19); +x_82 = lean_array_to_list(x_19); +lean_inc(x_82); +x_83 = l_Lean_Expr_const___override(x_4, x_82); +x_84 = l_Lean_mkAppN(x_83, x_5); +lean_inc_ref(x_6); +x_85 = l_Lean_Expr_app___override(x_84, x_6); +x_86 = l_Lean_mkAppN(x_85, x_2); +lean_inc_ref(x_86); +x_87 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__10___boxed), 9, 1); +lean_closure_set(x_87, 0, x_86); +lean_inc(x_25); +lean_inc_ref(x_24); +lean_inc(x_23); +lean_inc_ref(x_22); +lean_inc_ref(x_20); +x_88 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_87, x_20, x_21, x_22, x_23, x_24, x_25, x_40); +if (lean_obj_tag(x_88) == 0) +{ +lean_object* x_89; uint8_t x_90; +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) +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; +x_91 = lean_ctor_get(x_88, 1); +lean_inc(x_91); +lean_dec_ref(x_88); +lean_inc_ref(x_86); +x_92 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__20___boxed), 9, 1); +lean_closure_set(x_92, 0, x_86); +lean_inc(x_21); +lean_inc_ref(x_20); +x_93 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__17___boxed), 8, 3); +lean_closure_set(x_93, 0, x_92); +lean_closure_set(x_93, 1, x_20); +lean_closure_set(x_93, 2, x_21); +x_94 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__4; +lean_inc_ref(x_86); +x_95 = l_Lean_indentExpr(x_86); +x_96 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_96, 0, x_94); +lean_ctor_set(x_96, 1, x_95); +x_97 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__3; +x_98 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_98, 0, x_96); +lean_ctor_set(x_98, 1, x_97); +x_99 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__18), 2, 1); +lean_closure_set(x_99, 0, x_98); +lean_inc(x_25); +lean_inc_ref(x_24); +lean_inc(x_23); +lean_inc_ref(x_22); +x_100 = l_Lean_Meta_mapErrorImp___redArg(x_93, x_99, x_22, x_23, x_24, x_25, x_91); +if (lean_obj_tag(x_100) == 0) +{ +if (lean_obj_tag(x_100) == 0) +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_101 = lean_ctor_get(x_100, 0); +lean_inc(x_101); +x_102 = lean_ctor_get(x_100, 1); +lean_inc(x_102); +lean_dec_ref(x_100); +x_103 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19(x_7, x_86, x_17, x_82, x_5, x_6, x_2, x_8, x_9, x_41, x_3, x_19, x_11, x_12, x_27, x_10, x_28, x_14, x_13, x_15, x_18, x_42, x_101, x_20, x_21, x_22, x_23, x_24, x_25, x_102); +lean_dec(x_101); +return x_103; +} +else +{ +uint8_t x_104; +lean_dec_ref(x_86); +lean_dec(x_82); +lean_dec(x_42); +lean_dec(x_41); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec(x_23); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec_ref(x_19); +lean_dec(x_18); +lean_dec_ref(x_17); +lean_dec_ref(x_14); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_2); +x_104 = !lean_is_exclusive(x_100); +if (x_104 == 0) +{ +lean_ctor_set_tag(x_100, 1); +return x_100; +} +else +{ +lean_object* x_105; lean_object* x_106; lean_object* x_107; +x_105 = lean_ctor_get(x_100, 0); +x_106 = lean_ctor_get(x_100, 1); +lean_inc(x_106); +lean_inc(x_105); +lean_dec(x_100); +x_107 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_107, 0, x_105); +lean_ctor_set(x_107, 1, x_106); +return x_107; +} +} +} +else +{ +uint8_t x_108; +lean_dec_ref(x_86); +lean_dec(x_82); +lean_dec(x_42); +lean_dec(x_41); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec(x_23); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec_ref(x_19); +lean_dec(x_18); +lean_dec_ref(x_17); +lean_dec_ref(x_14); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_2); +x_108 = !lean_is_exclusive(x_100); +if (x_108 == 0) +{ +return x_100; +} +else +{ +lean_object* x_109; lean_object* x_110; lean_object* x_111; +x_109 = lean_ctor_get(x_100, 0); +x_110 = lean_ctor_get(x_100, 1); +lean_inc(x_110); +lean_inc(x_109); +lean_dec(x_100); +x_111 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_111, 0, x_109); +lean_ctor_set(x_111, 1, x_110); +return x_111; +} +} +} +else +{ +lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_112 = lean_ctor_get(x_88, 1); +lean_inc(x_112); +lean_dec_ref(x_88); +x_113 = lean_box(0); +x_114 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19(x_7, x_86, x_17, x_82, x_5, x_6, x_2, x_8, x_9, x_41, x_3, x_19, x_11, x_12, x_27, x_10, x_28, x_14, x_13, x_15, x_18, x_42, x_113, x_20, x_21, x_22, x_23, x_24, x_25, x_112); +return x_114; +} +} +else +{ +uint8_t x_115; +lean_dec_ref(x_86); +lean_dec(x_82); +lean_dec(x_42); +lean_dec(x_41); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec(x_23); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec_ref(x_19); +lean_dec(x_18); +lean_dec_ref(x_17); +lean_dec_ref(x_14); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_2); +x_115 = !lean_is_exclusive(x_88); +if (x_115 == 0) +{ +return x_88; +} +else +{ +lean_object* x_116; lean_object* x_117; lean_object* x_118; +x_116 = lean_ctor_get(x_88, 0); +x_117 = lean_ctor_get(x_88, 1); +lean_inc(x_117); +lean_inc(x_116); +lean_dec(x_88); +x_118 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_118, 0, x_116); +lean_ctor_set(x_118, 1, x_117); +return x_118; +} +} +} +else +{ +lean_dec(x_18); +lean_dec_ref(x_17); +goto block_81; +} +} +block_81: +{ +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_inc_ref(x_19); +x_44 = lean_array_to_list(x_19); +lean_inc(x_4); +x_45 = l_Lean_Expr_const___override(x_4, x_44); +x_46 = l_Lean_mkAppN(x_45, x_5); +lean_inc_ref(x_6); +x_47 = l_Lean_Expr_app___override(x_46, x_6); +x_48 = l_Lean_mkAppN(x_47, x_2); +lean_inc_ref(x_48); +x_49 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__5___boxed), 9, 1); +lean_closure_set(x_49, 0, x_48); +lean_inc(x_25); +lean_inc_ref(x_24); +lean_inc(x_23); +lean_inc_ref(x_22); +lean_inc_ref(x_20); +x_50 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_49, x_20, x_21, x_22, x_23, x_24, x_25, x_40); +if (lean_obj_tag(x_50) == 0) +{ +lean_object* x_51; lean_object* x_52; uint8_t x_53; uint8_t x_54; +x_51 = lean_ctor_get(x_50, 0); +lean_inc(x_51); +x_52 = lean_ctor_get(x_50, 1); +lean_inc(x_52); +lean_dec_ref(x_50); +x_53 = 1; +x_54 = lean_unbox(x_51); +lean_dec(x_51); +if (x_54 == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_55 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__2; +lean_inc_ref(x_48); +x_56 = l_Lean_indentExpr(x_48); +if (lean_is_scalar(x_43)) { + x_57 = lean_alloc_ctor(7, 2, 0); +} else { + x_57 = x_43; + lean_ctor_set_tag(x_57, 7); +} +lean_ctor_set(x_57, 0, x_55); +lean_ctor_set(x_57, 1, x_56); +x_58 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +if (lean_is_scalar(x_39)) { + x_59 = lean_alloc_ctor(7, 2, 0); +} else { + x_59 = x_39; + lean_ctor_set_tag(x_59, 7); +} +lean_ctor_set(x_59, 0, x_57); +lean_ctor_set(x_59, 1, x_58); +lean_inc(x_25); +lean_inc_ref(x_24); +lean_inc(x_23); +lean_inc_ref(x_22); +lean_inc_ref(x_20); +x_60 = l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11(x_59, x_20, x_21, x_22, x_23, x_24, x_25, x_52); +if (lean_obj_tag(x_60) == 0) +{ +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_ref(x_60); +lean_inc_ref(x_48); +x_62 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__9___boxed), 9, 1); +lean_closure_set(x_62, 0, x_48); +lean_inc(x_25); +lean_inc_ref(x_24); +lean_inc(x_23); +lean_inc_ref(x_22); +lean_inc_ref(x_20); +x_63 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_62, x_20, x_21, x_22, x_23, x_24, x_25, x_61); +if (lean_obj_tag(x_63) == 0) +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_64 = lean_ctor_get(x_63, 0); +lean_inc(x_64); +x_65 = lean_ctor_get(x_63, 1); +lean_inc(x_65); +lean_dec_ref(x_63); +x_66 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__8(x_7, x_48, x_8, x_9, x_10, x_41, x_3, x_4, x_19, x_11, x_12, x_5, x_6, x_2, x_27, x_28, x_13, x_14, x_53, x_42, x_64, x_20, x_21, x_22, x_23, x_24, x_25, x_65); +lean_dec(x_64); return x_66; } else { +uint8_t x_67; +lean_dec_ref(x_48); +lean_dec(x_42); +lean_dec(x_41); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec(x_23); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec_ref(x_19); +lean_dec_ref(x_14); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_2); +x_67 = !lean_is_exclusive(x_63); +if (x_67 == 0) +{ +return x_63; +} +else +{ +lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_68 = lean_ctor_get(x_63, 0); +x_69 = lean_ctor_get(x_63, 1); +lean_inc(x_69); +lean_inc(x_68); +lean_dec(x_63); +x_70 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_70, 0, x_68); +lean_ctor_set(x_70, 1, x_69); +return x_70; +} +} +} +else +{ +uint8_t x_71; +lean_dec_ref(x_48); +lean_dec(x_42); +lean_dec(x_41); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec(x_23); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec_ref(x_19); +lean_dec_ref(x_14); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_2); +x_71 = !lean_is_exclusive(x_60); +if (x_71 == 0) +{ +return x_60; +} +else +{ lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_66, 0); -x_73 = lean_ctor_get(x_66, 1); +x_72 = lean_ctor_get(x_60, 0); +x_73 = lean_ctor_get(x_60, 1); lean_inc(x_73); lean_inc(x_72); -lean_dec(x_66); +lean_dec(x_60); x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_72); lean_ctor_set(x_74, 1, x_73); @@ -23860,4319 +39035,545 @@ return x_74; } } } -} else { -uint8_t x_75; uint8_t x_76; uint8_t x_77; uint8_t x_78; uint8_t x_79; uint8_t x_80; uint8_t x_81; uint8_t x_82; uint8_t x_83; uint8_t x_84; uint8_t x_85; uint8_t x_86; uint8_t x_87; uint8_t x_88; uint8_t x_89; uint8_t x_90; uint8_t x_91; uint8_t x_92; uint8_t x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; uint8_t x_101; lean_object* x_102; lean_object* x_103; uint8_t x_104; lean_object* x_105; uint64_t x_106; uint64_t x_107; uint64_t x_108; uint64_t x_109; uint64_t x_110; uint64_t x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; -x_75 = lean_ctor_get_uint8(x_44, 0); -x_76 = lean_ctor_get_uint8(x_44, 1); -x_77 = lean_ctor_get_uint8(x_44, 2); -x_78 = lean_ctor_get_uint8(x_44, 3); -x_79 = lean_ctor_get_uint8(x_44, 4); -x_80 = lean_ctor_get_uint8(x_44, 5); -x_81 = lean_ctor_get_uint8(x_44, 6); -x_82 = lean_ctor_get_uint8(x_44, 7); -x_83 = lean_ctor_get_uint8(x_44, 8); -x_84 = lean_ctor_get_uint8(x_44, 10); -x_85 = lean_ctor_get_uint8(x_44, 11); -x_86 = lean_ctor_get_uint8(x_44, 12); -x_87 = lean_ctor_get_uint8(x_44, 13); -x_88 = lean_ctor_get_uint8(x_44, 14); -x_89 = lean_ctor_get_uint8(x_44, 15); -x_90 = lean_ctor_get_uint8(x_44, 16); -x_91 = lean_ctor_get_uint8(x_44, 17); -x_92 = lean_ctor_get_uint8(x_44, 18); -lean_dec(x_44); -x_93 = lean_ctor_get_uint8(x_8, sizeof(void*)*7); -x_94 = lean_ctor_get(x_8, 1); -lean_inc(x_94); -x_95 = lean_ctor_get(x_8, 2); -lean_inc_ref(x_95); -x_96 = lean_ctor_get(x_8, 3); -lean_inc_ref(x_96); -x_97 = lean_ctor_get(x_8, 4); -lean_inc(x_97); -x_98 = lean_ctor_get(x_8, 5); -lean_inc(x_98); -x_99 = lean_ctor_get(x_8, 6); -lean_inc(x_99); -x_100 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 1); -x_101 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 2); -x_102 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10___closed__0; -x_103 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3), 11, 4); -lean_closure_set(x_103, 0, x_2); -lean_closure_set(x_103, 1, x_3); -lean_closure_set(x_103, 2, x_4); -lean_closure_set(x_103, 3, x_102); -x_104 = 1; -x_105 = lean_alloc_ctor(0, 0, 19); -lean_ctor_set_uint8(x_105, 0, x_75); -lean_ctor_set_uint8(x_105, 1, x_76); -lean_ctor_set_uint8(x_105, 2, x_77); -lean_ctor_set_uint8(x_105, 3, x_78); -lean_ctor_set_uint8(x_105, 4, x_79); -lean_ctor_set_uint8(x_105, 5, x_80); -lean_ctor_set_uint8(x_105, 6, x_81); -lean_ctor_set_uint8(x_105, 7, x_82); -lean_ctor_set_uint8(x_105, 8, x_83); -lean_ctor_set_uint8(x_105, 9, x_104); -lean_ctor_set_uint8(x_105, 10, x_84); -lean_ctor_set_uint8(x_105, 11, x_85); -lean_ctor_set_uint8(x_105, 12, x_86); -lean_ctor_set_uint8(x_105, 13, x_87); -lean_ctor_set_uint8(x_105, 14, x_88); -lean_ctor_set_uint8(x_105, 15, x_89); -lean_ctor_set_uint8(x_105, 16, x_90); -lean_ctor_set_uint8(x_105, 17, x_91); -lean_ctor_set_uint8(x_105, 18, x_92); -x_106 = l_Lean_Meta_Context_configKey(x_8); -x_107 = 2; -x_108 = lean_uint64_shift_right(x_106, x_107); -x_109 = lean_uint64_shift_left(x_108, x_107); -x_110 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10___closed__1; -x_111 = lean_uint64_lor(x_109, x_110); -x_112 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_112, 0, x_105); -lean_ctor_set_uint64(x_112, sizeof(void*)*1, x_111); -x_113 = lean_alloc_ctor(0, 7, 3); -lean_ctor_set(x_113, 0, x_112); -lean_ctor_set(x_113, 1, x_94); -lean_ctor_set(x_113, 2, x_95); -lean_ctor_set(x_113, 3, x_96); -lean_ctor_set(x_113, 4, x_97); -lean_ctor_set(x_113, 5, x_98); -lean_ctor_set(x_113, 6, x_99); -lean_ctor_set_uint8(x_113, sizeof(void*)*7, x_93); -lean_ctor_set_uint8(x_113, sizeof(void*)*7 + 1, x_100); -lean_ctor_set_uint8(x_113, sizeof(void*)*7 + 2, x_101); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc(x_7); -lean_inc_ref(x_6); -x_114 = l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14(x_103, x_6, x_7, x_113, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_114) == 0) -{ -lean_object* x_115; lean_object* x_116; -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_ref(x_114); -x_13 = x_115; -x_14 = x_116; -goto block_43; -} -else -{ -if (lean_obj_tag(x_114) == 0) -{ -lean_object* x_117; lean_object* x_118; -x_117 = lean_ctor_get(x_114, 0); -lean_inc(x_117); -x_118 = lean_ctor_get(x_114, 1); -lean_inc(x_118); -lean_dec_ref(x_114); -x_13 = x_117; -x_14 = x_118; -goto block_43; -} -else -{ -lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -x_119 = lean_ctor_get(x_114, 0); -lean_inc(x_119); -x_120 = lean_ctor_get(x_114, 1); -lean_inc(x_120); -if (lean_is_exclusive(x_114)) { - lean_ctor_release(x_114, 0); - lean_ctor_release(x_114, 1); - x_121 = x_114; -} else { - lean_dec_ref(x_114); - x_121 = lean_box(0); -} -if (lean_is_scalar(x_121)) { - x_122 = lean_alloc_ctor(1, 2, 0); -} else { - x_122 = x_121; -} -lean_ctor_set(x_122, 0, x_119); -lean_ctor_set(x_122, 1, x_120); -return x_122; -} -} -} -block_43: -{ -uint8_t x_15; -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_16 = lean_ctor_get(x_13, 0); -x_17 = lean_ctor_get(x_13, 1); -x_18 = lean_array_to_list(x_17); -x_19 = l_Lean_Elab_Tactic_Do_step_assignMVars(x_1, x_18, x_6, x_7, x_8, x_9, x_10, x_11, x_14); -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; -x_21 = lean_ctor_get(x_19, 0); -lean_dec(x_21); -x_22 = lean_box(0); -lean_ctor_set_tag(x_13, 1); -lean_ctor_set(x_13, 1, x_22); -lean_ctor_set(x_19, 0, x_13); -return x_19; -} -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_19, 1); -lean_inc(x_23); -lean_dec(x_19); -x_24 = lean_box(0); -lean_ctor_set_tag(x_13, 1); -lean_ctor_set(x_13, 1, x_24); -x_25 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_25, 0, x_13); -lean_ctor_set(x_25, 1, x_23); -return x_25; -} -} -else -{ -uint8_t x_26; -lean_free_object(x_13); -lean_dec(x_16); -x_26 = !lean_is_exclusive(x_19); -if (x_26 == 0) -{ -return x_19; -} -else -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_27 = lean_ctor_get(x_19, 0); -x_28 = lean_ctor_get(x_19, 1); -lean_inc(x_28); -lean_inc(x_27); -lean_dec(x_19); -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_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_30 = lean_ctor_get(x_13, 0); -x_31 = lean_ctor_get(x_13, 1); -lean_inc(x_31); -lean_inc(x_30); -lean_dec(x_13); -x_32 = lean_array_to_list(x_31); -x_33 = l_Lean_Elab_Tactic_Do_step_assignMVars(x_1, x_32, x_6, x_7, x_8, x_9, x_10, x_11, x_14); -if (lean_obj_tag(x_33) == 0) -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_34 = lean_ctor_get(x_33, 1); -lean_inc(x_34); -if (lean_is_exclusive(x_33)) { - lean_ctor_release(x_33, 0); - lean_ctor_release(x_33, 1); - x_35 = x_33; -} else { - lean_dec_ref(x_33); - x_35 = lean_box(0); -} -x_36 = lean_box(0); -x_37 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_37, 0, x_30); -lean_ctor_set(x_37, 1, x_36); -if (lean_is_scalar(x_35)) { - x_38 = lean_alloc_ctor(0, 2, 0); -} else { - x_38 = x_35; -} -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_34); -return x_38; -} -else -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; -lean_dec(x_30); -x_39 = lean_ctor_get(x_33, 0); -lean_inc(x_39); -x_40 = lean_ctor_get(x_33, 1); -lean_inc(x_40); -if (lean_is_exclusive(x_33)) { - lean_ctor_release(x_33, 0); - lean_ctor_release(x_33, 1); - x_41 = x_33; -} else { - lean_dec_ref(x_33); - x_41 = lean_box(0); -} -if (lean_is_scalar(x_41)) { - x_42 = lean_alloc_ctor(1, 2, 0); -} else { - x_42 = x_41; -} -lean_ctor_set(x_42, 0, x_39); -lean_ctor_set(x_42, 1, x_40); -return x_42; -} -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__11(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { -_start: -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_16 = lean_expr_instantiate1(x_1, x_7); -x_17 = l_Lean_Expr_getAppNumArgs(x_2); -x_18 = lean_mk_empty_array_with_capacity(x_17); -lean_dec(x_17); -x_19 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_2, x_18); -x_20 = l_Lean_Expr_betaRev(x_16, x_19, x_3, x_3); -lean_dec_ref(x_19); -x_21 = lean_apply_1(x_4, x_20); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc(x_10); -lean_inc_ref(x_9); -x_22 = l_Lean_Elab_Tactic_Do_step_onWPApp(x_5, x_21, x_6, x_9, x_10, x_11, x_12, x_13, x_14, x_15); -if (lean_obj_tag(x_22) == 0) -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_22, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_22, 1); -lean_inc(x_24); -lean_dec_ref(x_22); -x_25 = lean_apply_8(x_8, x_23, x_9, x_10, x_11, x_12, x_13, x_14, x_24); -return x_25; -} -else -{ -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -return x_22; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__13(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_Lean_Meta_splitIfTarget_x3f(x_1, x_2, x_3, x_7, x_8, x_9, x_10, x_11); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__12(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_10; -x_10 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__0___redArg(x_1, x_5, x_6, x_7, x_8, x_9); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__14(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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_FVarId_getValue_x3f___redArg(x_1, x_2, x_6, x_8, x_9, x_10); -return x_11; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Lean.Elab.Tactic.Do.VCGen", 25, 25); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Lean.Elab.Tactic.Do.step.onWPApp", 32, 32); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("PredTrans.apply has wrong number of levels", 42, 42); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__3() { -_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_Tactic_Do_step_onWPApp___lam__15___closed__2; -x_2 = lean_unsigned_to_nat(37u); -x_3 = lean_unsigned_to_nat(298u); -x_4 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__1; -x_5 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__0; -x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); -return x_6; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("rewrite_program", 15, 15); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__4; -x_2 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__2; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Simplified", 10, 10); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__6; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Failed to find spec. Trying simp. Reason: ", 42, 42); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__8; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__10() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Candidate spec for ", 19, 19); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__10; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__12() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked(": ", 2, 2); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__12; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__14() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("SpecProof.global ", 17, 17); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__15() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__14; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__16() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("SpecProof.local ", 16, 16); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__17() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__16; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__18() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("SpecProof.stx _ ", 16, 16); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__19() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__18; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__20() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked(" ", 1, 1); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__21() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__20; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__22() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Failed to split if ", 19, 19); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__23() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__22; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__24() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("ite", 3, 3); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__25() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__24; -x_2 = l_Lean_Name_mkStr1(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__26() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("dite", 4, 4); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__27() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__26; -x_2 = l_Lean_Name_mkStr1(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__28() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Target: ", 8, 8); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__29() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__28; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { -_start: -{ -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_53; -lean_inc(x_17); -lean_inc_ref(x_16); -lean_inc(x_15); -lean_inc_ref(x_14); -lean_inc_ref(x_12); -x_53 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_1, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -if (lean_obj_tag(x_53) == 0) -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_54 = lean_ctor_get(x_53, 0); -lean_inc(x_54); -x_55 = lean_ctor_get(x_53, 1); -lean_inc(x_55); -if (lean_is_exclusive(x_53)) { - lean_ctor_release(x_53, 0); - lean_ctor_release(x_53, 1); - x_56 = x_53; -} else { - lean_dec_ref(x_53); - x_56 = lean_box(0); -} -lean_inc(x_54); -x_57 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__2___boxed), 9, 1); -lean_closure_set(x_57, 0, x_54); -lean_inc(x_17); -lean_inc_ref(x_16); -lean_inc(x_15); -lean_inc_ref(x_14); -lean_inc_ref(x_12); -x_58 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_57, x_12, x_13, x_14, x_15, x_16, x_17, x_55); -if (lean_obj_tag(x_58) == 0) -{ -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; -x_59 = lean_ctor_get(x_58, 0); -lean_inc(x_59); -x_60 = lean_ctor_get(x_58, 1); -lean_inc(x_60); -if (lean_is_exclusive(x_58)) { - lean_ctor_release(x_58, 0); - lean_ctor_release(x_58, 1); - x_61 = x_58; -} else { - lean_dec_ref(x_58); - x_61 = lean_box(0); -} -x_62 = l_Lean_Expr_cleanupAnnotations(x_59); -x_63 = l_Lean_Expr_isApp(x_62); -if (x_63 == 0) -{ -lean_object* x_64; -lean_dec_ref(x_62); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_64 = l_Lean_Elab_Tactic_Do_step_onFail___redArg(x_2, x_3, x_13, x_14, x_15, x_16, x_17, x_60); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec(x_13); -return x_64; -} -else -{ -lean_object* x_65; lean_object* x_66; uint8_t x_67; -x_65 = lean_ctor_get(x_62, 1); -lean_inc_ref(x_65); -x_66 = l_Lean_Expr_appFnCleanup___redArg(x_62); -x_67 = l_Lean_Expr_isApp(x_66); -if (x_67 == 0) -{ -lean_object* x_68; -lean_dec_ref(x_66); -lean_dec_ref(x_65); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_68 = l_Lean_Elab_Tactic_Do_step_onFail___redArg(x_2, x_3, x_13, x_14, x_15, x_16, x_17, x_60); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec(x_13); -return x_68; -} -else -{ -lean_object* x_69; lean_object* x_70; uint8_t x_71; -x_69 = lean_ctor_get(x_66, 1); -lean_inc_ref(x_69); -x_70 = l_Lean_Expr_appFnCleanup___redArg(x_66); -x_71 = l_Lean_Expr_isApp(x_70); -if (x_71 == 0) -{ -lean_object* x_72; -lean_dec_ref(x_70); -lean_dec_ref(x_69); -lean_dec_ref(x_65); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_72 = l_Lean_Elab_Tactic_Do_step_onFail___redArg(x_2, x_3, x_13, x_14, x_15, x_16, x_17, x_60); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec(x_13); -return x_72; -} -else -{ -lean_object* x_73; lean_object* x_74; uint8_t x_75; -x_73 = lean_ctor_get(x_70, 1); -lean_inc_ref(x_73); -x_74 = l_Lean_Expr_appFnCleanup___redArg(x_70); -x_75 = l_Lean_Expr_isApp(x_74); -if (x_75 == 0) -{ -lean_object* x_76; -lean_dec_ref(x_74); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec_ref(x_65); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_76 = l_Lean_Elab_Tactic_Do_step_onFail___redArg(x_2, x_3, x_13, x_14, x_15, x_16, x_17, x_60); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec(x_13); +lean_object* x_75; lean_object* x_76; +lean_dec(x_43); +lean_dec(x_39); +x_75 = lean_box(0); +x_76 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__8(x_7, x_48, x_8, x_9, x_10, x_41, x_3, x_4, x_19, x_11, x_12, x_5, x_6, x_2, x_27, x_28, x_13, x_14, x_53, x_42, x_75, x_20, x_21, x_22, x_23, x_24, x_25, x_52); return x_76; } -else -{ -lean_object* x_77; lean_object* x_78; uint8_t x_79; -x_77 = lean_ctor_get(x_74, 1); -lean_inc_ref(x_77); -x_78 = l_Lean_Expr_appFnCleanup___redArg(x_74); -x_79 = l_Lean_Expr_isApp(x_78); -if (x_79 == 0) -{ -lean_object* x_80; -lean_dec_ref(x_78); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec_ref(x_65); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_80 = l_Lean_Elab_Tactic_Do_step_onFail___redArg(x_2, x_3, x_13, x_14, x_15, x_16, x_17, x_60); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec(x_13); -return x_80; -} -else -{ -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; uint8_t x_86; -x_81 = lean_ctor_get(x_78, 1); -lean_inc_ref(x_81); -x_82 = l_Lean_Expr_appFnCleanup___redArg(x_78); -x_83 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; -x_84 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_85 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__6; -x_86 = l_Lean_Expr_isConstOf(x_82, x_85); -if (x_86 == 0) -{ -lean_object* x_87; -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec_ref(x_65); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_87 = l_Lean_Elab_Tactic_Do_step_onFail___redArg(x_2, x_3, x_13, x_14, x_15, x_16, x_17, x_60); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec(x_13); -return x_87; -} -else -{ -lean_object* x_88; lean_object* x_89; -x_88 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__3___boxed), 9, 1); -lean_closure_set(x_88, 0, x_65); -lean_inc(x_17); -lean_inc_ref(x_16); -lean_inc(x_15); -lean_inc_ref(x_14); -lean_inc_ref(x_12); -x_89 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_88, x_12, x_13, x_14, x_15, x_16, x_17, x_60); -if (lean_obj_tag(x_89) == 0) -{ -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_102; -x_90 = lean_ctor_get(x_89, 0); -lean_inc(x_90); -x_91 = lean_ctor_get(x_89, 1); -lean_inc(x_91); -if (lean_is_exclusive(x_89)) { - lean_ctor_release(x_89, 0); - lean_ctor_release(x_89, 1); - x_92 = x_89; -} else { - lean_dec_ref(x_89); - x_92 = lean_box(0); -} -x_102 = l_Lean_Expr_constLevels_x21(x_82); -if (lean_obj_tag(x_102) == 0) -{ -lean_dec(x_92); -lean_dec(x_90); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_93 = x_12; -x_94 = x_13; -x_95 = x_14; -x_96 = x_15; -x_97 = x_16; -x_98 = x_17; -goto block_101; -} -else -{ -lean_object* x_103; -x_103 = lean_ctor_get(x_102, 1); -lean_inc(x_103); -if (lean_obj_tag(x_103) == 0) -{ -lean_dec_ref(x_102); -lean_dec(x_92); -lean_dec(x_90); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_93 = x_12; -x_94 = x_13; -x_95 = x_14; -x_96 = x_15; -x_97 = x_16; -x_98 = x_17; -goto block_101; -} -else -{ -lean_object* x_104; lean_object* x_105; -x_104 = lean_ctor_get(x_103, 1); -lean_inc(x_104); -if (lean_is_exclusive(x_103)) { - lean_ctor_release(x_103, 0); - lean_ctor_release(x_103, 1); - x_105 = x_103; -} else { - lean_dec_ref(x_103); - x_105 = lean_box(0); -} -if (lean_obj_tag(x_104) == 0) -{ -lean_object* x_106; lean_object* x_107; lean_object* x_108; -x_106 = lean_ctor_get(x_102, 0); -lean_inc(x_106); -x_107 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -lean_inc(x_17); -lean_inc_ref(x_16); -lean_inc(x_15); -lean_inc_ref(x_14); -lean_inc_ref(x_12); -x_108 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1(x_107, x_12, x_13, x_14, x_15, x_16, x_17, x_91); -if (lean_obj_tag(x_108) == 0) -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_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; uint8_t x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_205; uint8_t x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; uint8_t x_214; lean_object* x_237; uint8_t x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_249; uint8_t x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_268; uint8_t x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; uint8_t x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; uint8_t x_428; lean_object* x_429; uint8_t x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; uint8_t x_438; uint8_t x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; uint8_t x_573; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; uint8_t x_658; -x_109 = lean_ctor_get(x_108, 0); -lean_inc(x_109); -x_110 = lean_ctor_get(x_108, 1); -lean_inc(x_110); -if (lean_is_exclusive(x_108)) { - lean_ctor_release(x_108, 0); - lean_ctor_release(x_108, 1); - x_111 = x_108; -} else { - lean_dec_ref(x_108); - x_111 = lean_box(0); -} -lean_inc_ref(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc(x_106); -lean_inc(x_6); -lean_inc_ref(x_5); -lean_inc_ref(x_69); -lean_inc_ref(x_73); -lean_inc_ref(x_77); -lean_inc_ref(x_81); -lean_inc_ref(x_82); -x_112 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__6___boxed), 15, 14); -lean_closure_set(x_112, 0, x_82); -lean_closure_set(x_112, 1, x_81); -lean_closure_set(x_112, 2, x_77); -lean_closure_set(x_112, 3, x_73); -lean_closure_set(x_112, 4, x_69); -lean_closure_set(x_112, 5, x_5); -lean_closure_set(x_112, 6, x_6); -lean_closure_set(x_112, 7, x_83); -lean_closure_set(x_112, 8, x_84); -lean_closure_set(x_112, 9, x_106); -lean_closure_set(x_112, 10, x_104); -lean_closure_set(x_112, 11, x_7); -lean_closure_set(x_112, 12, x_8); -lean_closure_set(x_112, 13, x_9); -x_137 = l_Lean_Expr_headBeta(x_90); -x_658 = lean_unbox(x_109); -lean_dec(x_109); -if (x_658 == 0) -{ -x_646 = x_12; -x_647 = x_13; -x_648 = x_14; -x_649 = x_15; -x_650 = x_16; -x_651 = x_17; -x_652 = x_110; -goto block_657; -} -else -{ -lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; -x_659 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__29; -lean_inc_ref(x_137); -x_660 = l_Lean_MessageData_ofExpr(x_137); -x_661 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_661, 0, x_659); -lean_ctor_set(x_661, 1, x_660); -x_662 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -x_663 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_663, 0, x_661); -lean_ctor_set(x_663, 1, x_662); -lean_inc(x_17); -lean_inc_ref(x_16); -lean_inc(x_15); -lean_inc_ref(x_14); -lean_inc_ref(x_12); -x_664 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2(x_107, x_663, x_12, x_13, x_14, x_15, x_16, x_17, x_110); -if (lean_obj_tag(x_664) == 0) -{ -lean_object* x_665; -x_665 = lean_ctor_get(x_664, 1); -lean_inc(x_665); -lean_dec_ref(x_664); -x_646 = x_12; -x_647 = x_13; -x_648 = x_14; -x_649 = x_15; -x_650 = x_16; -x_651 = x_17; -x_652 = x_665; -goto block_657; -} -else -{ -uint8_t x_666; -lean_dec_ref(x_137); -lean_dec_ref(x_112); -lean_dec(x_111); -lean_dec(x_106); -lean_dec(x_105); -lean_dec_ref(x_102); -lean_dec(x_92); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_666 = !lean_is_exclusive(x_664); -if (x_666 == 0) -{ -return x_664; -} -else -{ -lean_object* x_667; lean_object* x_668; lean_object* x_669; -x_667 = lean_ctor_get(x_664, 0); -x_668 = lean_ctor_get(x_664, 1); -lean_inc(x_668); -lean_inc(x_667); -lean_dec(x_664); -x_669 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_669, 0, x_667); -lean_ctor_set(x_669, 1, x_668); -return x_669; -} -} -} -block_136: -{ -lean_object* x_121; lean_object* x_122; -lean_inc_ref(x_113); -x_121 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__7___boxed), 9, 1); -lean_closure_set(x_121, 0, x_113); -lean_inc(x_119); -lean_inc_ref(x_118); -lean_inc(x_117); -lean_inc_ref(x_116); -lean_inc_ref(x_114); -x_122 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_121, x_114, x_115, x_116, x_117, x_118, x_119, x_120); -if (lean_obj_tag(x_122) == 0) -{ -lean_object* x_123; -x_123 = lean_ctor_get(x_122, 0); -lean_inc(x_123); -switch (lean_obj_tag(x_123)) { -case 0: -{ -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_dec_ref(x_113); -lean_dec_ref(x_2); -x_124 = lean_ctor_get(x_122, 1); -lean_inc(x_124); -lean_dec_ref(x_122); -x_125 = lean_ctor_get(x_123, 0); -lean_inc_ref(x_125); -lean_dec_ref(x_123); -x_126 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_115, x_124); -x_127 = lean_ctor_get(x_126, 1); -lean_inc(x_127); -lean_dec_ref(x_126); -x_128 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__6(x_82, x_81, x_77, x_73, x_69, x_5, x_6, x_83, x_84, x_106, x_104, x_7, x_8, x_9, x_125); -lean_dec(x_6); -x_129 = l_Lean_Elab_Tactic_Do_step_onWPApp(x_4, x_128, x_3, x_114, x_115, x_116, x_117, x_118, x_119, x_127); -return x_129; -} -case 1: -{ -lean_object* x_130; -lean_dec_ref(x_123); -lean_dec(x_106); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -x_130 = lean_ctor_get(x_122, 1); -lean_inc(x_130); -lean_dec_ref(x_122); -x_19 = x_113; -x_20 = x_114; -x_21 = x_115; -x_22 = x_116; -x_23 = x_117; -x_24 = x_118; -x_25 = x_119; -x_26 = x_130; -goto block_52; -} -default: -{ -lean_object* x_131; -lean_dec(x_123); -lean_dec(x_106); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -x_131 = lean_ctor_get(x_122, 1); -lean_inc(x_131); -lean_dec_ref(x_122); -x_19 = x_113; -x_20 = x_114; -x_21 = x_115; -x_22 = x_116; -x_23 = x_117; -x_24 = x_118; -x_25 = x_119; -x_26 = x_131; -goto block_52; -} -} -} -else -{ -uint8_t x_132; -lean_dec(x_119); -lean_dec_ref(x_118); -lean_dec(x_117); -lean_dec_ref(x_116); -lean_dec(x_115); -lean_dec_ref(x_114); -lean_dec_ref(x_113); -lean_dec(x_106); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_132 = !lean_is_exclusive(x_122); -if (x_132 == 0) -{ -return x_122; -} -else -{ -lean_object* x_133; lean_object* x_134; lean_object* x_135; -x_133 = lean_ctor_get(x_122, 0); -x_134 = lean_ctor_get(x_122, 1); -lean_inc(x_134); -lean_inc(x_133); -lean_dec(x_122); -x_135 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_135, 0, x_133); -lean_ctor_set(x_135, 1, x_134); -return x_135; -} -} -} -block_160: -{ -lean_object* x_147; lean_object* x_148; -lean_inc_ref(x_139); -lean_inc_ref(x_9); -lean_inc_ref(x_69); -lean_inc_ref(x_73); -lean_inc_ref(x_77); -lean_inc_ref(x_81); -x_147 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__6(x_82, x_81, x_77, x_73, x_69, x_5, x_6, x_83, x_84, x_106, x_104, x_7, x_8, x_9, x_139); -lean_dec(x_6); -x_148 = l_Lean_Elab_Tactic_Do_step_onWPApp(x_4, x_147, x_3, x_140, x_141, x_142, x_143, x_144, x_145, x_146); -if (lean_obj_tag(x_148) == 0) -{ -uint8_t x_149; -x_149 = !lean_is_exclusive(x_148); -if (x_149 == 0) -{ -lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; -x_150 = lean_ctor_get(x_148, 0); -x_151 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__5; -x_152 = l_Lean_Expr_const___override(x_151, x_102); -x_153 = l_Lean_mkApp10(x_152, x_81, x_77, x_69, x_9, x_10, x_73, x_137, x_139, x_138, x_150); -lean_ctor_set(x_148, 0, x_153); -return x_148; -} -else -{ -lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_154 = lean_ctor_get(x_148, 0); -x_155 = lean_ctor_get(x_148, 1); -lean_inc(x_155); -lean_inc(x_154); -lean_dec(x_148); -x_156 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__5; -x_157 = l_Lean_Expr_const___override(x_156, x_102); -x_158 = l_Lean_mkApp10(x_157, x_81, x_77, x_69, x_9, x_10, x_73, x_137, x_139, x_138, x_154); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_158); -lean_ctor_set(x_159, 1, x_155); -return x_159; -} -} -else -{ -lean_dec_ref(x_139); -lean_dec_ref(x_138); -lean_dec_ref(x_137); -lean_dec_ref(x_102); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -return x_148; -} -} -block_204: -{ -lean_object* x_169; lean_object* x_170; -lean_inc_ref(x_137); -x_169 = lean_alloc_closure((void*)(l_Lean_Meta_Simp_simp___boxed), 9, 1); -lean_closure_set(x_169, 0, x_137); -lean_inc(x_163); -lean_inc_ref(x_165); -lean_inc(x_162); -lean_inc_ref(x_166); -lean_inc_ref(x_164); -x_170 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_169, x_164, x_167, x_166, x_162, x_165, x_163, x_168); -if (lean_obj_tag(x_170) == 0) -{ -lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; uint8_t x_175; -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_ref(x_170); -x_173 = lean_ctor_get(x_171, 0); -lean_inc_ref(x_173); -x_174 = lean_ctor_get(x_171, 1); -lean_inc(x_174); -lean_dec(x_171); -x_175 = lean_expr_eqv(x_173, x_137); -if (x_175 == 0) -{ -if (x_161 == 0) -{ -lean_object* x_176; -lean_dec(x_174); -lean_dec_ref(x_173); -lean_dec_ref(x_164); -lean_dec_ref(x_137); -lean_dec(x_106); -lean_dec_ref(x_102); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_176 = l_Lean_Elab_Tactic_Do_step_onFail___redArg(x_2, x_3, x_167, x_166, x_162, x_165, x_163, x_172); -lean_dec(x_163); -lean_dec_ref(x_165); -lean_dec(x_162); -lean_dec(x_167); -return x_176; -} -else -{ -lean_object* x_177; -lean_dec_ref(x_2); -x_177 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_167, x_172); -if (lean_obj_tag(x_174) == 0) -{ -lean_object* x_178; lean_object* x_179; lean_object* x_180; -lean_dec_ref(x_137); -lean_dec_ref(x_102); -lean_dec_ref(x_10); -x_178 = lean_ctor_get(x_177, 1); -lean_inc(x_178); -lean_dec_ref(x_177); -x_179 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__6(x_82, x_81, x_77, x_73, x_69, x_5, x_6, x_83, x_84, x_106, x_104, x_7, x_8, x_9, x_173); -lean_dec(x_6); -x_180 = l_Lean_Elab_Tactic_Do_step_onWPApp(x_4, x_179, x_3, x_164, x_167, x_166, x_162, x_165, x_163, x_178); -return x_180; -} -else -{ -lean_object* x_181; lean_object* x_182; lean_object* x_183; -x_181 = lean_ctor_get(x_177, 1); -lean_inc(x_181); -lean_dec_ref(x_177); -x_182 = lean_ctor_get(x_174, 0); -lean_inc(x_182); -lean_dec_ref(x_174); -lean_inc(x_163); -lean_inc_ref(x_165); -lean_inc(x_162); -lean_inc_ref(x_166); -lean_inc_ref(x_164); -x_183 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1(x_107, x_164, x_167, x_166, x_162, x_165, x_163, x_181); -if (lean_obj_tag(x_183) == 0) -{ -lean_object* x_184; uint8_t x_185; -x_184 = lean_ctor_get(x_183, 0); -lean_inc(x_184); -x_185 = lean_unbox(x_184); -lean_dec(x_184); -if (x_185 == 0) -{ -lean_object* x_186; -x_186 = lean_ctor_get(x_183, 1); -lean_inc(x_186); -lean_dec_ref(x_183); -x_138 = x_182; -x_139 = x_173; -x_140 = x_164; -x_141 = x_167; -x_142 = x_166; -x_143 = x_162; -x_144 = x_165; -x_145 = x_163; -x_146 = x_186; -goto block_160; -} -else -{ -lean_object* x_187; lean_object* x_188; lean_object* x_189; -x_187 = lean_ctor_get(x_183, 1); -lean_inc(x_187); -lean_dec_ref(x_183); -x_188 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__7; -lean_inc(x_163); -lean_inc_ref(x_165); -lean_inc(x_162); -lean_inc_ref(x_166); -lean_inc_ref(x_164); -x_189 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2(x_107, x_188, x_164, x_167, x_166, x_162, x_165, x_163, x_187); -if (lean_obj_tag(x_189) == 0) -{ -lean_object* x_190; -x_190 = lean_ctor_get(x_189, 1); -lean_inc(x_190); -lean_dec_ref(x_189); -x_138 = x_182; -x_139 = x_173; -x_140 = x_164; -x_141 = x_167; -x_142 = x_166; -x_143 = x_162; -x_144 = x_165; -x_145 = x_163; -x_146 = x_190; -goto block_160; -} -else -{ -uint8_t x_191; -lean_dec(x_182); -lean_dec_ref(x_173); -lean_dec(x_167); -lean_dec_ref(x_166); -lean_dec_ref(x_165); -lean_dec_ref(x_164); -lean_dec(x_163); -lean_dec(x_162); -lean_dec_ref(x_137); -lean_dec(x_106); -lean_dec_ref(x_102); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -x_191 = !lean_is_exclusive(x_189); -if (x_191 == 0) -{ -return x_189; -} -else -{ -lean_object* x_192; lean_object* x_193; lean_object* x_194; -x_192 = lean_ctor_get(x_189, 0); -x_193 = lean_ctor_get(x_189, 1); -lean_inc(x_193); -lean_inc(x_192); -lean_dec(x_189); -x_194 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_194, 0, x_192); -lean_ctor_set(x_194, 1, x_193); -return x_194; -} -} -} -} -else -{ -uint8_t x_195; -lean_dec(x_182); -lean_dec_ref(x_173); -lean_dec(x_167); -lean_dec_ref(x_166); -lean_dec_ref(x_165); -lean_dec_ref(x_164); -lean_dec(x_163); -lean_dec(x_162); -lean_dec_ref(x_137); -lean_dec(x_106); -lean_dec_ref(x_102); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -x_195 = !lean_is_exclusive(x_183); -if (x_195 == 0) -{ -return x_183; -} -else -{ -lean_object* x_196; lean_object* x_197; lean_object* x_198; -x_196 = lean_ctor_get(x_183, 0); -x_197 = lean_ctor_get(x_183, 1); -lean_inc(x_197); -lean_inc(x_196); -lean_dec(x_183); -x_198 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_198, 0, x_196); -lean_ctor_set(x_198, 1, x_197); -return x_198; -} -} -} -} -} -else -{ -lean_object* x_199; -lean_dec(x_174); -lean_dec_ref(x_173); -lean_dec_ref(x_164); -lean_dec_ref(x_137); -lean_dec(x_106); -lean_dec_ref(x_102); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_199 = l_Lean_Elab_Tactic_Do_step_onFail___redArg(x_2, x_3, x_167, x_166, x_162, x_165, x_163, x_172); -lean_dec(x_163); -lean_dec_ref(x_165); -lean_dec(x_162); -lean_dec(x_167); -return x_199; -} -} -else -{ -uint8_t x_200; -lean_dec(x_167); -lean_dec_ref(x_166); -lean_dec_ref(x_165); -lean_dec_ref(x_164); -lean_dec(x_163); -lean_dec(x_162); -lean_dec_ref(x_137); -lean_dec(x_106); -lean_dec_ref(x_102); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_200 = !lean_is_exclusive(x_170); -if (x_200 == 0) -{ -return x_170; -} -else -{ -lean_object* x_201; lean_object* x_202; lean_object* x_203; -x_201 = lean_ctor_get(x_170, 0); -x_202 = lean_ctor_get(x_170, 1); -lean_inc(x_202); -lean_inc(x_201); -lean_dec(x_170); -x_203 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_203, 0, x_201); -lean_ctor_set(x_203, 1, x_202); -return x_203; -} -} -} -block_236: -{ -if (x_214 == 0) -{ -lean_object* x_215; -lean_dec(x_111); -lean_inc(x_208); -lean_inc_ref(x_211); -lean_inc(x_207); -lean_inc_ref(x_212); -lean_inc_ref(x_209); -x_215 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1(x_107, x_209, x_213, x_212, x_207, x_211, x_208, x_210); -if (lean_obj_tag(x_215) == 0) -{ -lean_object* x_216; uint8_t x_217; -x_216 = lean_ctor_get(x_215, 0); -lean_inc(x_216); -x_217 = lean_unbox(x_216); -lean_dec(x_216); -if (x_217 == 0) -{ -lean_object* x_218; -lean_dec_ref(x_205); -lean_dec(x_92); -lean_dec(x_61); -x_218 = lean_ctor_get(x_215, 1); -lean_inc(x_218); -lean_dec_ref(x_215); -x_161 = x_206; -x_162 = x_207; -x_163 = x_208; -x_164 = x_209; -x_165 = x_211; -x_166 = x_212; -x_167 = x_213; -x_168 = x_218; -goto block_204; -} -else -{ -lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_219 = lean_ctor_get(x_215, 1); -lean_inc(x_219); -lean_dec_ref(x_215); -x_220 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__9; -x_221 = l_Lean_Exception_toMessageData(x_205); -if (lean_is_scalar(x_92)) { - x_222 = lean_alloc_ctor(7, 2, 0); -} else { - x_222 = x_92; - lean_ctor_set_tag(x_222, 7); -} -lean_ctor_set(x_222, 0, x_220); -lean_ctor_set(x_222, 1, x_221); -x_223 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -if (lean_is_scalar(x_61)) { - x_224 = lean_alloc_ctor(7, 2, 0); -} else { - x_224 = x_61; - lean_ctor_set_tag(x_224, 7); -} -lean_ctor_set(x_224, 0, x_222); -lean_ctor_set(x_224, 1, x_223); -lean_inc(x_208); -lean_inc_ref(x_211); -lean_inc(x_207); -lean_inc_ref(x_212); -lean_inc_ref(x_209); -x_225 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2(x_107, x_224, x_209, x_213, x_212, x_207, x_211, x_208, x_219); -if (lean_obj_tag(x_225) == 0) -{ -lean_object* x_226; -x_226 = lean_ctor_get(x_225, 1); -lean_inc(x_226); -lean_dec_ref(x_225); -x_161 = x_206; -x_162 = x_207; -x_163 = x_208; -x_164 = x_209; -x_165 = x_211; -x_166 = x_212; -x_167 = x_213; -x_168 = x_226; -goto block_204; -} -else -{ -uint8_t x_227; -lean_dec(x_213); -lean_dec_ref(x_212); -lean_dec_ref(x_211); -lean_dec_ref(x_209); -lean_dec(x_208); -lean_dec(x_207); -lean_dec_ref(x_137); -lean_dec(x_106); -lean_dec_ref(x_102); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_227 = !lean_is_exclusive(x_225); -if (x_227 == 0) -{ -return x_225; -} -else -{ -lean_object* x_228; lean_object* x_229; lean_object* x_230; -x_228 = lean_ctor_get(x_225, 0); -x_229 = lean_ctor_get(x_225, 1); -lean_inc(x_229); -lean_inc(x_228); -lean_dec(x_225); -x_230 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_230, 0, x_228); -lean_ctor_set(x_230, 1, x_229); -return x_230; -} -} -} -} -else -{ -uint8_t x_231; -lean_dec(x_213); -lean_dec_ref(x_212); -lean_dec_ref(x_211); -lean_dec_ref(x_209); -lean_dec(x_208); -lean_dec(x_207); -lean_dec_ref(x_205); -lean_dec_ref(x_137); -lean_dec(x_106); -lean_dec_ref(x_102); -lean_dec(x_92); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec(x_61); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_231 = !lean_is_exclusive(x_215); -if (x_231 == 0) -{ -return x_215; -} -else -{ -lean_object* x_232; lean_object* x_233; lean_object* x_234; -x_232 = lean_ctor_get(x_215, 0); -x_233 = lean_ctor_get(x_215, 1); -lean_inc(x_233); -lean_inc(x_232); -lean_dec(x_215); -x_234 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_234, 0, x_232); -lean_ctor_set(x_234, 1, x_233); -return x_234; -} -} -} -else -{ -lean_object* x_235; -lean_dec(x_213); -lean_dec_ref(x_212); -lean_dec_ref(x_211); -lean_dec_ref(x_209); -lean_dec(x_208); -lean_dec(x_207); -lean_dec_ref(x_137); -lean_dec(x_106); -lean_dec_ref(x_102); -lean_dec(x_92); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec(x_61); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -if (lean_is_scalar(x_111)) { - x_235 = lean_alloc_ctor(1, 2, 0); -} else { - x_235 = x_111; - lean_ctor_set_tag(x_235, 1); -} -lean_ctor_set(x_235, 0, x_205); -lean_ctor_set(x_235, 1, x_210); -return x_235; -} -} -block_248: -{ -uint8_t x_246; -x_246 = l_Lean_Exception_isInterrupt(x_244); -if (x_246 == 0) -{ -uint8_t x_247; -x_247 = l_Lean_Exception_isRuntime(x_244); -x_205 = x_244; -x_206 = x_238; -x_207 = x_237; -x_208 = x_240; -x_209 = x_239; -x_210 = x_245; -x_211 = x_241; -x_212 = x_242; -x_213 = x_243; -x_214 = x_247; -goto block_236; -} -else -{ -x_205 = x_244; -x_206 = x_238; -x_207 = x_237; -x_208 = x_240; -x_209 = x_239; -x_210 = x_245; -x_211 = x_241; -x_212 = x_242; -x_213 = x_243; -x_214 = x_246; -goto block_236; -} -} -block_267: -{ -if (lean_obj_tag(x_256) == 0) -{ -lean_object* x_257; -lean_dec(x_111); -lean_dec(x_92); -lean_dec(x_61); -x_257 = lean_ctor_get(x_256, 0); -lean_inc(x_257); -if (lean_obj_tag(x_257) == 0) -{ -lean_object* x_258; -lean_dec_ref(x_257); -x_258 = lean_ctor_get(x_256, 1); -lean_inc(x_258); -lean_dec_ref(x_256); -x_161 = x_250; -x_162 = x_249; -x_163 = x_252; -x_164 = x_251; -x_165 = x_253; -x_166 = x_254; -x_167 = x_255; -x_168 = x_258; -goto block_204; } else { -uint8_t x_259; -lean_dec(x_255); -lean_dec_ref(x_254); -lean_dec_ref(x_253); -lean_dec(x_252); -lean_dec_ref(x_251); -lean_dec(x_249); -lean_dec_ref(x_137); -lean_dec(x_106); -lean_dec_ref(x_102); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_259 = !lean_is_exclusive(x_256); -if (x_259 == 0) -{ -lean_object* x_260; lean_object* x_261; -x_260 = lean_ctor_get(x_256, 0); -lean_dec(x_260); -x_261 = lean_ctor_get(x_257, 0); -lean_inc(x_261); -lean_dec_ref(x_257); -lean_ctor_set(x_256, 0, x_261); -return x_256; -} -else -{ -lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_262 = lean_ctor_get(x_256, 1); -lean_inc(x_262); -lean_dec(x_256); -x_263 = lean_ctor_get(x_257, 0); -lean_inc(x_263); -lean_dec_ref(x_257); -x_264 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_264, 0, x_263); -lean_ctor_set(x_264, 1, x_262); -return x_264; -} -} -} -else -{ -lean_object* x_265; lean_object* x_266; -x_265 = lean_ctor_get(x_256, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_256, 1); -lean_inc(x_266); -lean_dec_ref(x_256); -x_237 = x_249; -x_238 = x_250; -x_239 = x_251; -x_240 = x_252; -x_241 = x_253; -x_242 = x_254; -x_243 = x_255; -x_244 = x_265; -x_245 = x_266; -goto block_248; -} -} -block_288: -{ -lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; -if (lean_is_scalar(x_56)) { - x_279 = lean_alloc_ctor(7, 2, 0); -} else { - x_279 = x_56; - lean_ctor_set_tag(x_279, 7); -} -lean_ctor_set(x_279, 0, x_268); -lean_ctor_set(x_279, 1, x_278); -x_280 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -x_281 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_281, 0, x_279); -lean_ctor_set(x_281, 1, x_280); -lean_inc(x_271); -lean_inc_ref(x_274); -lean_inc(x_270); -lean_inc_ref(x_276); -lean_inc_ref(x_272); -x_282 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2(x_107, x_281, x_272, x_277, x_276, x_270, x_274, x_271, x_273); -if (lean_obj_tag(x_282) == 0) -{ -lean_object* x_283; lean_object* x_284; lean_object* x_285; -x_283 = lean_ctor_get(x_282, 0); -lean_inc(x_283); -x_284 = lean_ctor_get(x_282, 1); -lean_inc(x_284); -lean_dec_ref(x_282); -lean_inc(x_271); -lean_inc_ref(x_274); -lean_inc(x_270); -lean_inc_ref(x_276); -lean_inc(x_277); -lean_inc_ref(x_272); -x_285 = lean_apply_8(x_275, x_283, x_272, x_277, x_276, x_270, x_274, x_271, x_284); -x_249 = x_270; -x_250 = x_269; -x_251 = x_272; -x_252 = x_271; -x_253 = x_274; -x_254 = x_276; -x_255 = x_277; -x_256 = x_285; -goto block_267; -} -else -{ -lean_object* x_286; lean_object* x_287; -lean_dec_ref(x_275); -x_286 = lean_ctor_get(x_282, 0); -lean_inc(x_286); -x_287 = lean_ctor_get(x_282, 1); -lean_inc(x_287); -lean_dec_ref(x_282); -x_237 = x_270; -x_238 = x_269; -x_239 = x_272; -x_240 = x_271; -x_241 = x_274; -x_242 = x_276; -x_243 = x_277; -x_244 = x_286; -x_245 = x_287; -goto block_248; -} -} -block_427: -{ -lean_object* x_298; lean_object* x_299; lean_object* x_300; -x_298 = lean_ctor_get(x_4, 0); -lean_inc_ref(x_298); -x_299 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__8___boxed), 10, 2); -lean_closure_set(x_299, 0, x_298); -lean_closure_set(x_299, 1, x_54); -lean_inc(x_296); -lean_inc_ref(x_295); -lean_inc(x_294); -lean_inc_ref(x_293); -lean_inc_ref(x_291); -x_300 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_299, x_291, x_292, x_293, x_294, x_295, x_296, x_297); -if (lean_obj_tag(x_300) == 0) -{ -uint8_t x_301; -x_301 = !lean_is_exclusive(x_300); -if (x_301 == 0) -{ -lean_object* x_302; lean_object* x_303; lean_object* x_304; -x_302 = lean_ctor_get(x_300, 0); -x_303 = lean_ctor_get(x_300, 1); -lean_inc(x_296); -lean_inc_ref(x_295); -lean_inc(x_294); -lean_inc_ref(x_293); -lean_inc_ref(x_291); -x_304 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1(x_107, x_291, x_292, x_293, x_294, x_295, x_296, x_303); -if (lean_obj_tag(x_304) == 0) -{ -uint8_t x_305; -x_305 = !lean_is_exclusive(x_304); -if (x_305 == 0) -{ -lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; uint8_t x_310; -x_306 = lean_ctor_get(x_304, 0); -x_307 = lean_ctor_get(x_304, 1); -lean_inc(x_302); -x_308 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__9___boxed), 9, 1); -lean_closure_set(x_308, 0, x_302); -lean_inc(x_3); -lean_inc_ref(x_308); -lean_inc_ref(x_2); -lean_inc_ref(x_4); -x_309 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10___boxed), 12, 4); -lean_closure_set(x_309, 0, x_4); -lean_closure_set(x_309, 1, x_2); -lean_closure_set(x_309, 2, x_308); -lean_closure_set(x_309, 3, x_3); -x_310 = lean_unbox(x_306); -lean_dec(x_306); -if (x_310 == 0) -{ -lean_object* x_311; lean_object* x_312; -lean_dec_ref(x_309); -lean_free_object(x_304); -lean_free_object(x_300); -lean_dec(x_302); -lean_dec_ref(x_290); -lean_dec(x_56); -x_311 = lean_box(0); -lean_inc(x_296); -lean_inc_ref(x_295); -lean_inc(x_294); -lean_inc_ref(x_293); -lean_inc(x_292); -lean_inc_ref(x_291); -lean_inc(x_3); -lean_inc_ref(x_2); -lean_inc_ref(x_4); -x_312 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10(x_4, x_2, x_308, x_3, x_311, x_291, x_292, x_293, x_294, x_295, x_296, x_307); -x_249 = x_294; -x_250 = x_289; -x_251 = x_291; -x_252 = x_296; -x_253 = x_295; -x_254 = x_293; -x_255 = x_292; -x_256 = x_312; -goto block_267; -} -else -{ -lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; -lean_dec_ref(x_308); -x_313 = lean_ctor_get(x_302, 2); -lean_inc_ref(x_313); -lean_dec(x_302); -x_314 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__11; -x_315 = l_Lean_Expr_constName_x21(x_290); -lean_dec_ref(x_290); -x_316 = l_Lean_MessageData_ofName(x_315); -lean_ctor_set_tag(x_304, 7); -lean_ctor_set(x_304, 1, x_316); -lean_ctor_set(x_304, 0, x_314); -x_317 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__13; -lean_ctor_set_tag(x_300, 7); -lean_ctor_set(x_300, 1, x_317); -lean_ctor_set(x_300, 0, x_304); -switch (lean_obj_tag(x_313)) { -case 0: -{ -lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; -x_318 = lean_ctor_get(x_313, 0); -lean_inc(x_318); -lean_dec_ref(x_313); -x_319 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__15; -x_320 = l_Lean_MessageData_ofName(x_318); -x_321 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -x_322 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -x_323 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_323, 0, x_321); -lean_ctor_set(x_323, 1, x_322); -x_268 = x_300; -x_269 = x_289; -x_270 = x_294; -x_271 = x_296; -x_272 = x_291; -x_273 = x_307; -x_274 = x_295; -x_275 = x_309; -x_276 = x_293; -x_277 = x_292; -x_278 = x_323; -goto block_288; -} -case 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; -x_324 = lean_ctor_get(x_313, 0); -lean_inc(x_324); -lean_dec_ref(x_313); -x_325 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__17; -x_326 = l_Lean_Expr_fvar___override(x_324); -x_327 = l_Lean_MessageData_ofExpr(x_326); -x_328 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_328, 0, x_325); -lean_ctor_set(x_328, 1, x_327); -x_329 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -x_330 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_330, 0, x_328); -lean_ctor_set(x_330, 1, x_329); -x_268 = x_300; -x_269 = x_289; -x_270 = x_294; -x_271 = x_296; -x_272 = x_291; -x_273 = x_307; -x_274 = x_295; -x_275 = x_309; -x_276 = x_293; -x_277 = x_292; -x_278 = x_330; -goto block_288; -} -default: -{ -lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; -x_331 = lean_ctor_get(x_313, 1); -lean_inc(x_331); -x_332 = lean_ctor_get(x_313, 2); -lean_inc_ref(x_332); -lean_dec_ref(x_313); -x_333 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__19; -x_334 = l_Lean_MessageData_ofSyntax(x_331); -x_335 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__21; -x_337 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_337, 0, x_335); -lean_ctor_set(x_337, 1, x_336); -x_338 = l_Lean_MessageData_ofExpr(x_332); -x_339 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_339, 0, x_337); -lean_ctor_set(x_339, 1, x_338); -x_340 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -x_341 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_341, 0, x_339); -lean_ctor_set(x_341, 1, x_340); -x_268 = x_300; -x_269 = x_289; -x_270 = x_294; -x_271 = x_296; -x_272 = x_291; -x_273 = x_307; -x_274 = x_295; -x_275 = x_309; -x_276 = x_293; -x_277 = x_292; -x_278 = x_341; -goto block_288; -} -} -} -} -else -{ -lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; uint8_t x_346; -x_342 = lean_ctor_get(x_304, 0); -x_343 = lean_ctor_get(x_304, 1); -lean_inc(x_343); -lean_inc(x_342); -lean_dec(x_304); -lean_inc(x_302); -x_344 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__9___boxed), 9, 1); -lean_closure_set(x_344, 0, x_302); -lean_inc(x_3); -lean_inc_ref(x_344); -lean_inc_ref(x_2); -lean_inc_ref(x_4); -x_345 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10___boxed), 12, 4); -lean_closure_set(x_345, 0, x_4); -lean_closure_set(x_345, 1, x_2); -lean_closure_set(x_345, 2, x_344); -lean_closure_set(x_345, 3, x_3); -x_346 = lean_unbox(x_342); -lean_dec(x_342); -if (x_346 == 0) -{ -lean_object* x_347; lean_object* x_348; -lean_dec_ref(x_345); -lean_free_object(x_300); -lean_dec(x_302); -lean_dec_ref(x_290); -lean_dec(x_56); -x_347 = lean_box(0); -lean_inc(x_296); -lean_inc_ref(x_295); -lean_inc(x_294); -lean_inc_ref(x_293); -lean_inc(x_292); -lean_inc_ref(x_291); -lean_inc(x_3); -lean_inc_ref(x_2); -lean_inc_ref(x_4); -x_348 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10(x_4, x_2, x_344, x_3, x_347, x_291, x_292, x_293, x_294, x_295, x_296, x_343); -x_249 = x_294; -x_250 = x_289; -x_251 = x_291; -x_252 = x_296; -x_253 = x_295; -x_254 = x_293; -x_255 = x_292; -x_256 = x_348; -goto block_267; -} -else -{ -lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; -lean_dec_ref(x_344); -x_349 = lean_ctor_get(x_302, 2); -lean_inc_ref(x_349); -lean_dec(x_302); -x_350 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__11; -x_351 = l_Lean_Expr_constName_x21(x_290); -lean_dec_ref(x_290); -x_352 = l_Lean_MessageData_ofName(x_351); -x_353 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_353, 0, x_350); -lean_ctor_set(x_353, 1, x_352); -x_354 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__13; -lean_ctor_set_tag(x_300, 7); -lean_ctor_set(x_300, 1, x_354); -lean_ctor_set(x_300, 0, x_353); -switch (lean_obj_tag(x_349)) { -case 0: -{ -lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; -x_355 = lean_ctor_get(x_349, 0); -lean_inc(x_355); -lean_dec_ref(x_349); -x_356 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__15; -x_357 = l_Lean_MessageData_ofName(x_355); -x_358 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_358, 0, x_356); -lean_ctor_set(x_358, 1, x_357); -x_359 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -x_360 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_360, 0, x_358); -lean_ctor_set(x_360, 1, x_359); -x_268 = x_300; -x_269 = x_289; -x_270 = x_294; -x_271 = x_296; -x_272 = x_291; -x_273 = x_343; -x_274 = x_295; -x_275 = x_345; -x_276 = x_293; -x_277 = x_292; -x_278 = x_360; -goto block_288; -} -case 1: -{ -lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; -x_361 = lean_ctor_get(x_349, 0); -lean_inc(x_361); -lean_dec_ref(x_349); -x_362 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__17; -x_363 = l_Lean_Expr_fvar___override(x_361); -x_364 = l_Lean_MessageData_ofExpr(x_363); -x_365 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_365, 0, x_362); -lean_ctor_set(x_365, 1, x_364); -x_366 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -x_367 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_367, 0, x_365); -lean_ctor_set(x_367, 1, x_366); -x_268 = x_300; -x_269 = x_289; -x_270 = x_294; -x_271 = x_296; -x_272 = x_291; -x_273 = x_343; -x_274 = x_295; -x_275 = x_345; -x_276 = x_293; -x_277 = x_292; -x_278 = x_367; -goto block_288; -} -default: -{ -lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; -x_368 = lean_ctor_get(x_349, 1); -lean_inc(x_368); -x_369 = lean_ctor_get(x_349, 2); -lean_inc_ref(x_369); -lean_dec_ref(x_349); -x_370 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__19; -x_371 = l_Lean_MessageData_ofSyntax(x_368); -x_372 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_372, 0, x_370); -lean_ctor_set(x_372, 1, x_371); -x_373 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__21; -x_374 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_374, 0, x_372); -lean_ctor_set(x_374, 1, x_373); -x_375 = l_Lean_MessageData_ofExpr(x_369); -x_376 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_376, 0, x_374); -lean_ctor_set(x_376, 1, x_375); -x_377 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -x_378 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_378, 0, x_376); -lean_ctor_set(x_378, 1, x_377); -x_268 = x_300; -x_269 = x_289; -x_270 = x_294; -x_271 = x_296; -x_272 = x_291; -x_273 = x_343; -x_274 = x_295; -x_275 = x_345; -x_276 = x_293; -x_277 = x_292; -x_278 = x_378; -goto block_288; -} -} -} -} -} -else -{ -lean_object* x_379; lean_object* x_380; -lean_free_object(x_300); -lean_dec(x_302); -lean_dec_ref(x_290); -lean_dec(x_56); -x_379 = lean_ctor_get(x_304, 0); -lean_inc(x_379); -x_380 = lean_ctor_get(x_304, 1); -lean_inc(x_380); -lean_dec_ref(x_304); -x_237 = x_294; -x_238 = x_289; -x_239 = x_291; -x_240 = x_296; -x_241 = x_295; -x_242 = x_293; -x_243 = x_292; -x_244 = x_379; -x_245 = x_380; -goto block_248; -} -} -else -{ -lean_object* x_381; lean_object* x_382; lean_object* x_383; -x_381 = lean_ctor_get(x_300, 0); -x_382 = lean_ctor_get(x_300, 1); -lean_inc(x_382); -lean_inc(x_381); -lean_dec(x_300); -lean_inc(x_296); -lean_inc_ref(x_295); -lean_inc(x_294); -lean_inc_ref(x_293); -lean_inc_ref(x_291); -x_383 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1(x_107, x_291, x_292, x_293, x_294, x_295, x_296, x_382); -if (lean_obj_tag(x_383) == 0) -{ -lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; uint8_t x_389; -x_384 = lean_ctor_get(x_383, 0); -lean_inc(x_384); -x_385 = lean_ctor_get(x_383, 1); -lean_inc(x_385); -if (lean_is_exclusive(x_383)) { - lean_ctor_release(x_383, 0); - lean_ctor_release(x_383, 1); - x_386 = x_383; -} else { - lean_dec_ref(x_383); - x_386 = lean_box(0); -} -lean_inc(x_381); -x_387 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__9___boxed), 9, 1); -lean_closure_set(x_387, 0, x_381); -lean_inc(x_3); -lean_inc_ref(x_387); -lean_inc_ref(x_2); -lean_inc_ref(x_4); -x_388 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10___boxed), 12, 4); -lean_closure_set(x_388, 0, x_4); -lean_closure_set(x_388, 1, x_2); -lean_closure_set(x_388, 2, x_387); -lean_closure_set(x_388, 3, x_3); -x_389 = lean_unbox(x_384); -lean_dec(x_384); -if (x_389 == 0) -{ -lean_object* x_390; lean_object* x_391; -lean_dec_ref(x_388); -lean_dec(x_386); -lean_dec(x_381); -lean_dec_ref(x_290); -lean_dec(x_56); -x_390 = lean_box(0); -lean_inc(x_296); -lean_inc_ref(x_295); -lean_inc(x_294); -lean_inc_ref(x_293); -lean_inc(x_292); -lean_inc_ref(x_291); -lean_inc(x_3); -lean_inc_ref(x_2); -lean_inc_ref(x_4); -x_391 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10(x_4, x_2, x_387, x_3, x_390, x_291, x_292, x_293, x_294, x_295, x_296, x_385); -x_249 = x_294; -x_250 = x_289; -x_251 = x_291; -x_252 = x_296; -x_253 = x_295; -x_254 = x_293; -x_255 = x_292; -x_256 = x_391; -goto block_267; -} -else -{ -lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; -lean_dec_ref(x_387); -x_392 = lean_ctor_get(x_381, 2); -lean_inc_ref(x_392); -lean_dec(x_381); -x_393 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__11; -x_394 = l_Lean_Expr_constName_x21(x_290); -lean_dec_ref(x_290); -x_395 = l_Lean_MessageData_ofName(x_394); -if (lean_is_scalar(x_386)) { - x_396 = lean_alloc_ctor(7, 2, 0); -} else { - x_396 = x_386; - lean_ctor_set_tag(x_396, 7); -} -lean_ctor_set(x_396, 0, x_393); -lean_ctor_set(x_396, 1, x_395); -x_397 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__13; -x_398 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_398, 0, x_396); -lean_ctor_set(x_398, 1, x_397); -switch (lean_obj_tag(x_392)) { -case 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; -x_399 = lean_ctor_get(x_392, 0); -lean_inc(x_399); -lean_dec_ref(x_392); -x_400 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__15; -x_401 = l_Lean_MessageData_ofName(x_399); -x_402 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_402, 0, x_400); -lean_ctor_set(x_402, 1, x_401); -x_403 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -x_404 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_404, 0, x_402); -lean_ctor_set(x_404, 1, x_403); -x_268 = x_398; -x_269 = x_289; -x_270 = x_294; -x_271 = x_296; -x_272 = x_291; -x_273 = x_385; -x_274 = x_295; -x_275 = x_388; -x_276 = x_293; -x_277 = x_292; -x_278 = x_404; -goto block_288; -} -case 1: -{ -lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; -x_405 = lean_ctor_get(x_392, 0); -lean_inc(x_405); -lean_dec_ref(x_392); -x_406 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__17; -x_407 = l_Lean_Expr_fvar___override(x_405); -x_408 = l_Lean_MessageData_ofExpr(x_407); -x_409 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_409, 0, x_406); -lean_ctor_set(x_409, 1, x_408); -x_410 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -x_411 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_411, 0, x_409); -lean_ctor_set(x_411, 1, x_410); -x_268 = x_398; -x_269 = x_289; -x_270 = x_294; -x_271 = x_296; -x_272 = x_291; -x_273 = x_385; -x_274 = x_295; -x_275 = x_388; -x_276 = x_293; -x_277 = x_292; -x_278 = x_411; -goto block_288; -} -default: -{ -lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; -x_412 = lean_ctor_get(x_392, 1); -lean_inc(x_412); -x_413 = lean_ctor_get(x_392, 2); -lean_inc_ref(x_413); -lean_dec_ref(x_392); -x_414 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__19; -x_415 = l_Lean_MessageData_ofSyntax(x_412); -x_416 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_416, 0, x_414); -lean_ctor_set(x_416, 1, x_415); -x_417 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__21; -x_418 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_418, 0, x_416); -lean_ctor_set(x_418, 1, x_417); -x_419 = l_Lean_MessageData_ofExpr(x_413); -x_420 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_420, 0, x_418); -lean_ctor_set(x_420, 1, x_419); -x_421 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -x_422 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_422, 0, x_420); -lean_ctor_set(x_422, 1, x_421); -x_268 = x_398; -x_269 = x_289; -x_270 = x_294; -x_271 = x_296; -x_272 = x_291; -x_273 = x_385; -x_274 = x_295; -x_275 = x_388; -x_276 = x_293; -x_277 = x_292; -x_278 = x_422; -goto block_288; -} -} -} -} -else -{ -lean_object* x_423; lean_object* x_424; -lean_dec(x_381); -lean_dec_ref(x_290); -lean_dec(x_56); -x_423 = lean_ctor_get(x_383, 0); -lean_inc(x_423); -x_424 = lean_ctor_get(x_383, 1); -lean_inc(x_424); -lean_dec_ref(x_383); -x_237 = x_294; -x_238 = x_289; -x_239 = x_291; -x_240 = x_296; -x_241 = x_295; -x_242 = x_293; -x_243 = x_292; -x_244 = x_423; -x_245 = x_424; -goto block_248; -} -} -} -else -{ -lean_object* x_425; lean_object* x_426; -lean_dec_ref(x_290); -lean_dec(x_56); -x_425 = lean_ctor_get(x_300, 0); -lean_inc(x_425); -x_426 = lean_ctor_get(x_300, 1); -lean_inc(x_426); -lean_dec_ref(x_300); -x_237 = x_294; -x_238 = x_289; -x_239 = x_291; -x_240 = x_296; -x_241 = x_295; -x_242 = x_293; -x_243 = x_292; -x_244 = x_425; -x_245 = x_426; -goto block_248; -} -} -block_547: -{ -if (x_438 == 0) -{ -lean_dec(x_105); -x_289 = x_430; -x_290 = x_434; -x_291 = x_433; -x_292 = x_431; -x_293 = x_437; -x_294 = x_436; -x_295 = x_435; -x_296 = x_429; -x_297 = x_432; -goto block_427; -} -else -{ -lean_object* x_439; lean_object* x_440; lean_object* x_441; -lean_inc_ref(x_2); -x_439 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_2); -lean_inc(x_3); -x_440 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__4___boxed), 10, 2); -lean_closure_set(x_440, 0, x_439); -lean_closure_set(x_440, 1, x_3); -lean_inc(x_429); -lean_inc_ref(x_435); -lean_inc(x_436); -lean_inc_ref(x_437); -lean_inc_ref(x_433); -x_441 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_440, x_433, x_431, x_437, x_436, x_435, x_429, x_432); -if (lean_obj_tag(x_441) == 0) -{ -uint8_t x_442; -x_442 = !lean_is_exclusive(x_441); -if (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; -x_443 = lean_ctor_get(x_441, 0); -x_444 = lean_ctor_get(x_441, 1); -x_445 = l_Lean_Expr_mvarId_x21(x_443); -x_446 = lean_box(0); -x_447 = lean_box(x_428); -x_448 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__13___boxed), 11, 3); -lean_closure_set(x_448, 0, x_445); -lean_closure_set(x_448, 1, x_446); -lean_closure_set(x_448, 2, x_447); -lean_inc(x_429); -lean_inc_ref(x_435); -lean_inc(x_436); -lean_inc_ref(x_437); -lean_inc_ref(x_433); -x_449 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_448, x_433, x_431, x_437, x_436, x_435, x_429, x_444); -if (lean_obj_tag(x_449) == 0) -{ -lean_object* x_450; -x_450 = lean_ctor_get(x_449, 0); -lean_inc(x_450); -if (lean_obj_tag(x_450) == 0) -{ -lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; -lean_dec(x_443); -lean_dec(x_105); -x_451 = lean_ctor_get(x_449, 1); -lean_inc(x_451); -lean_dec_ref(x_449); -x_452 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__23; -lean_inc_ref(x_137); -x_453 = l_Lean_MessageData_ofExpr(x_137); -lean_ctor_set_tag(x_441, 7); -lean_ctor_set(x_441, 1, x_453); -lean_ctor_set(x_441, 0, x_452); -x_454 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -x_455 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_455, 0, x_441); -lean_ctor_set(x_455, 1, x_454); -x_456 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__12___boxed), 9, 1); -lean_closure_set(x_456, 0, x_455); -lean_inc(x_429); -lean_inc_ref(x_435); -lean_inc(x_436); -lean_inc_ref(x_437); -lean_inc_ref(x_433); -x_457 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_456, x_433, x_431, x_437, x_436, x_435, x_429, x_451); -if (lean_obj_tag(x_457) == 0) -{ -lean_object* x_458; -x_458 = lean_ctor_get(x_457, 1); -lean_inc(x_458); -lean_dec_ref(x_457); -x_289 = x_430; -x_290 = x_434; -x_291 = x_433; -x_292 = x_431; -x_293 = x_437; -x_294 = x_436; -x_295 = x_435; -x_296 = x_429; -x_297 = x_458; -goto block_427; -} -else -{ -uint8_t x_459; -lean_dec_ref(x_437); -lean_dec(x_436); -lean_dec_ref(x_435); -lean_dec_ref(x_434); -lean_dec_ref(x_433); -lean_dec(x_431); -lean_dec(x_429); -lean_dec_ref(x_137); -lean_dec(x_111); -lean_dec(x_106); -lean_dec_ref(x_102); -lean_dec(x_92); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_459 = !lean_is_exclusive(x_457); -if (x_459 == 0) -{ -return x_457; -} -else -{ -lean_object* x_460; lean_object* x_461; lean_object* x_462; -x_460 = lean_ctor_get(x_457, 0); -x_461 = lean_ctor_get(x_457, 1); -lean_inc(x_461); -lean_inc(x_460); -lean_dec(x_457); -x_462 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_462, 0, x_460); -lean_ctor_set(x_462, 1, x_461); -return x_462; -} -} -} -else -{ -uint8_t x_463; -lean_free_object(x_441); -lean_dec_ref(x_434); -lean_dec_ref(x_137); -lean_dec(x_111); -lean_dec(x_106); -lean_dec(x_92); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_3); -lean_dec_ref(x_2); -x_463 = !lean_is_exclusive(x_102); -if (x_463 == 0) -{ -lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; -x_464 = lean_ctor_get(x_102, 1); -lean_dec(x_464); -x_465 = lean_ctor_get(x_102, 0); -lean_dec(x_465); -x_466 = lean_ctor_get(x_450, 0); -lean_inc(x_466); -lean_dec_ref(x_450); -x_467 = lean_ctor_get(x_466, 0); -lean_inc(x_467); -x_468 = lean_ctor_get(x_466, 1); -lean_inc(x_468); -lean_dec(x_466); -x_469 = lean_ctor_get(x_449, 1); -lean_inc(x_469); -lean_dec_ref(x_449); -x_470 = lean_ctor_get(x_467, 0); -lean_inc(x_470); -lean_dec(x_467); -x_471 = lean_ctor_get(x_468, 0); -lean_inc(x_471); -lean_dec(x_468); -x_472 = lean_box(0); -if (lean_is_scalar(x_105)) { - x_473 = lean_alloc_ctor(1, 2, 0); -} else { - x_473 = x_105; -} -lean_ctor_set(x_473, 0, x_471); -lean_ctor_set(x_473, 1, x_472); -lean_ctor_set(x_102, 1, x_473); -lean_ctor_set(x_102, 0, x_470); -x_474 = l_Lean_Elab_Tactic_Do_step_assignMVars(x_4, x_102, x_433, x_431, x_437, x_436, x_435, x_429, x_469); -if (lean_obj_tag(x_474) == 0) -{ -uint8_t x_475; -x_475 = !lean_is_exclusive(x_474); -if (x_475 == 0) -{ -lean_object* x_476; -x_476 = lean_ctor_get(x_474, 0); -lean_dec(x_476); -lean_ctor_set(x_474, 0, x_443); -return x_474; -} -else -{ -lean_object* x_477; lean_object* x_478; -x_477 = lean_ctor_get(x_474, 1); -lean_inc(x_477); -lean_dec(x_474); -x_478 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_478, 0, x_443); -lean_ctor_set(x_478, 1, x_477); -return x_478; -} -} -else -{ -uint8_t x_479; -lean_dec(x_443); -x_479 = !lean_is_exclusive(x_474); -if (x_479 == 0) -{ -return x_474; -} -else -{ -lean_object* x_480; lean_object* x_481; lean_object* x_482; -x_480 = lean_ctor_get(x_474, 0); -x_481 = lean_ctor_get(x_474, 1); -lean_inc(x_481); -lean_inc(x_480); -lean_dec(x_474); -x_482 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_482, 0, x_480); -lean_ctor_set(x_482, 1, x_481); -return x_482; -} -} -} -else -{ -lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; -lean_dec(x_102); -x_483 = lean_ctor_get(x_450, 0); -lean_inc(x_483); -lean_dec_ref(x_450); -x_484 = lean_ctor_get(x_483, 0); -lean_inc(x_484); -x_485 = lean_ctor_get(x_483, 1); -lean_inc(x_485); -lean_dec(x_483); -x_486 = lean_ctor_get(x_449, 1); -lean_inc(x_486); -lean_dec_ref(x_449); -x_487 = lean_ctor_get(x_484, 0); -lean_inc(x_487); -lean_dec(x_484); -x_488 = lean_ctor_get(x_485, 0); -lean_inc(x_488); -lean_dec(x_485); -x_489 = lean_box(0); -if (lean_is_scalar(x_105)) { - x_490 = lean_alloc_ctor(1, 2, 0); -} else { - x_490 = x_105; -} -lean_ctor_set(x_490, 0, x_488); -lean_ctor_set(x_490, 1, x_489); -x_491 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_491, 0, x_487); -lean_ctor_set(x_491, 1, x_490); -x_492 = l_Lean_Elab_Tactic_Do_step_assignMVars(x_4, x_491, x_433, x_431, x_437, x_436, x_435, x_429, x_486); -if (lean_obj_tag(x_492) == 0) -{ -lean_object* x_493; lean_object* x_494; lean_object* x_495; -x_493 = lean_ctor_get(x_492, 1); -lean_inc(x_493); -if (lean_is_exclusive(x_492)) { - lean_ctor_release(x_492, 0); - lean_ctor_release(x_492, 1); - x_494 = x_492; -} else { - lean_dec_ref(x_492); - x_494 = lean_box(0); -} -if (lean_is_scalar(x_494)) { - x_495 = lean_alloc_ctor(0, 2, 0); -} else { - x_495 = x_494; -} -lean_ctor_set(x_495, 0, x_443); -lean_ctor_set(x_495, 1, x_493); -return x_495; -} -else -{ -lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; -lean_dec(x_443); -x_496 = lean_ctor_get(x_492, 0); -lean_inc(x_496); -x_497 = lean_ctor_get(x_492, 1); -lean_inc(x_497); -if (lean_is_exclusive(x_492)) { - lean_ctor_release(x_492, 0); - lean_ctor_release(x_492, 1); - x_498 = x_492; -} else { - lean_dec_ref(x_492); - x_498 = lean_box(0); -} -if (lean_is_scalar(x_498)) { - x_499 = lean_alloc_ctor(1, 2, 0); -} else { - x_499 = x_498; -} -lean_ctor_set(x_499, 0, x_496); -lean_ctor_set(x_499, 1, x_497); -return x_499; -} -} -} -} -else -{ -uint8_t x_500; -lean_free_object(x_441); -lean_dec(x_443); -lean_dec_ref(x_437); -lean_dec(x_436); -lean_dec_ref(x_435); -lean_dec_ref(x_434); -lean_dec_ref(x_433); -lean_dec(x_431); -lean_dec(x_429); -lean_dec_ref(x_137); -lean_dec(x_111); -lean_dec(x_106); -lean_dec(x_105); -lean_dec_ref(x_102); -lean_dec(x_92); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_500 = !lean_is_exclusive(x_449); -if (x_500 == 0) -{ -return x_449; -} -else -{ -lean_object* x_501; lean_object* x_502; lean_object* x_503; -x_501 = lean_ctor_get(x_449, 0); -x_502 = lean_ctor_get(x_449, 1); -lean_inc(x_502); -lean_inc(x_501); -lean_dec(x_449); -x_503 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_503, 0, x_501); -lean_ctor_set(x_503, 1, x_502); -return x_503; -} -} -} -else -{ -lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; -x_504 = lean_ctor_get(x_441, 0); -x_505 = lean_ctor_get(x_441, 1); -lean_inc(x_505); -lean_inc(x_504); -lean_dec(x_441); -x_506 = l_Lean_Expr_mvarId_x21(x_504); -x_507 = lean_box(0); -x_508 = lean_box(x_428); -x_509 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__13___boxed), 11, 3); -lean_closure_set(x_509, 0, x_506); -lean_closure_set(x_509, 1, x_507); -lean_closure_set(x_509, 2, x_508); -lean_inc(x_429); -lean_inc_ref(x_435); -lean_inc(x_436); -lean_inc_ref(x_437); -lean_inc_ref(x_433); -x_510 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_509, x_433, x_431, x_437, x_436, x_435, x_429, x_505); -if (lean_obj_tag(x_510) == 0) -{ -lean_object* x_511; -x_511 = lean_ctor_get(x_510, 0); -lean_inc(x_511); -if (lean_obj_tag(x_511) == 0) -{ -lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; -lean_dec(x_504); -lean_dec(x_105); -x_512 = lean_ctor_get(x_510, 1); -lean_inc(x_512); -lean_dec_ref(x_510); -x_513 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__23; -lean_inc_ref(x_137); -x_514 = l_Lean_MessageData_ofExpr(x_137); -x_515 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_515, 0, x_513); -lean_ctor_set(x_515, 1, x_514); -x_516 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; -x_517 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_517, 0, x_515); -lean_ctor_set(x_517, 1, x_516); -x_518 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__12___boxed), 9, 1); -lean_closure_set(x_518, 0, x_517); -lean_inc(x_429); -lean_inc_ref(x_435); -lean_inc(x_436); -lean_inc_ref(x_437); -lean_inc_ref(x_433); -x_519 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_518, x_433, x_431, x_437, x_436, x_435, x_429, x_512); -if (lean_obj_tag(x_519) == 0) -{ -lean_object* x_520; -x_520 = lean_ctor_get(x_519, 1); -lean_inc(x_520); -lean_dec_ref(x_519); -x_289 = x_430; -x_290 = x_434; -x_291 = x_433; -x_292 = x_431; -x_293 = x_437; -x_294 = x_436; -x_295 = x_435; -x_296 = x_429; -x_297 = x_520; -goto block_427; -} -else -{ -lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; -lean_dec_ref(x_437); -lean_dec(x_436); -lean_dec_ref(x_435); -lean_dec_ref(x_434); -lean_dec_ref(x_433); -lean_dec(x_431); -lean_dec(x_429); -lean_dec_ref(x_137); -lean_dec(x_111); -lean_dec(x_106); -lean_dec_ref(x_102); -lean_dec(x_92); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_521 = lean_ctor_get(x_519, 0); -lean_inc(x_521); -x_522 = lean_ctor_get(x_519, 1); -lean_inc(x_522); -if (lean_is_exclusive(x_519)) { - lean_ctor_release(x_519, 0); - lean_ctor_release(x_519, 1); - x_523 = x_519; -} else { - lean_dec_ref(x_519); - x_523 = lean_box(0); -} -if (lean_is_scalar(x_523)) { - x_524 = lean_alloc_ctor(1, 2, 0); -} else { - x_524 = x_523; -} -lean_ctor_set(x_524, 0, x_521); -lean_ctor_set(x_524, 1, x_522); -return x_524; -} -} -else -{ -lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; -lean_dec_ref(x_434); -lean_dec_ref(x_137); -lean_dec(x_111); -lean_dec(x_106); -lean_dec(x_92); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_3); -lean_dec_ref(x_2); -if (lean_is_exclusive(x_102)) { - lean_ctor_release(x_102, 0); - lean_ctor_release(x_102, 1); - x_525 = x_102; -} else { - lean_dec_ref(x_102); - x_525 = lean_box(0); -} -x_526 = lean_ctor_get(x_511, 0); -lean_inc(x_526); -lean_dec_ref(x_511); -x_527 = lean_ctor_get(x_526, 0); -lean_inc(x_527); -x_528 = lean_ctor_get(x_526, 1); -lean_inc(x_528); -lean_dec(x_526); -x_529 = lean_ctor_get(x_510, 1); -lean_inc(x_529); -lean_dec_ref(x_510); -x_530 = lean_ctor_get(x_527, 0); -lean_inc(x_530); -lean_dec(x_527); -x_531 = lean_ctor_get(x_528, 0); -lean_inc(x_531); -lean_dec(x_528); -x_532 = lean_box(0); -if (lean_is_scalar(x_105)) { - x_533 = lean_alloc_ctor(1, 2, 0); -} else { - x_533 = x_105; -} -lean_ctor_set(x_533, 0, x_531); -lean_ctor_set(x_533, 1, x_532); -if (lean_is_scalar(x_525)) { - x_534 = lean_alloc_ctor(1, 2, 0); -} else { - x_534 = x_525; -} -lean_ctor_set(x_534, 0, x_530); -lean_ctor_set(x_534, 1, x_533); -x_535 = l_Lean_Elab_Tactic_Do_step_assignMVars(x_4, x_534, x_433, x_431, x_437, x_436, x_435, x_429, x_529); -if (lean_obj_tag(x_535) == 0) -{ -lean_object* x_536; lean_object* x_537; lean_object* x_538; -x_536 = lean_ctor_get(x_535, 1); -lean_inc(x_536); -if (lean_is_exclusive(x_535)) { - lean_ctor_release(x_535, 0); - lean_ctor_release(x_535, 1); - x_537 = x_535; -} else { - lean_dec_ref(x_535); - x_537 = lean_box(0); -} -if (lean_is_scalar(x_537)) { - x_538 = lean_alloc_ctor(0, 2, 0); -} else { - x_538 = x_537; -} -lean_ctor_set(x_538, 0, x_504); -lean_ctor_set(x_538, 1, x_536); -return x_538; -} -else -{ -lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; -lean_dec(x_504); -x_539 = lean_ctor_get(x_535, 0); -lean_inc(x_539); -x_540 = lean_ctor_get(x_535, 1); -lean_inc(x_540); -if (lean_is_exclusive(x_535)) { - lean_ctor_release(x_535, 0); - lean_ctor_release(x_535, 1); - x_541 = x_535; -} else { - lean_dec_ref(x_535); - x_541 = lean_box(0); -} -if (lean_is_scalar(x_541)) { - x_542 = lean_alloc_ctor(1, 2, 0); -} else { - x_542 = x_541; -} -lean_ctor_set(x_542, 0, x_539); -lean_ctor_set(x_542, 1, x_540); -return x_542; -} -} -} -else -{ -lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; -lean_dec(x_504); -lean_dec_ref(x_437); -lean_dec(x_436); -lean_dec_ref(x_435); -lean_dec_ref(x_434); -lean_dec_ref(x_433); -lean_dec(x_431); -lean_dec(x_429); -lean_dec_ref(x_137); -lean_dec(x_111); -lean_dec(x_106); -lean_dec(x_105); -lean_dec_ref(x_102); -lean_dec(x_92); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_543 = lean_ctor_get(x_510, 0); -lean_inc(x_543); -x_544 = lean_ctor_get(x_510, 1); -lean_inc(x_544); -if (lean_is_exclusive(x_510)) { - lean_ctor_release(x_510, 0); - lean_ctor_release(x_510, 1); - x_545 = x_510; -} else { - lean_dec_ref(x_510); - x_545 = lean_box(0); -} -if (lean_is_scalar(x_545)) { - x_546 = lean_alloc_ctor(1, 2, 0); -} else { - x_546 = x_545; -} -lean_ctor_set(x_546, 0, x_543); -lean_ctor_set(x_546, 1, x_544); -return x_546; -} -} -} -else -{ -lean_dec_ref(x_437); -lean_dec(x_436); -lean_dec_ref(x_435); -lean_dec_ref(x_434); -lean_dec_ref(x_433); -lean_dec(x_431); -lean_dec(x_429); -lean_dec_ref(x_137); -lean_dec(x_111); -lean_dec(x_106); -lean_dec(x_105); -lean_dec_ref(x_102); -lean_dec(x_92); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -return x_441; -} -} -} -block_565: -{ -uint8_t x_557; -x_557 = l_Lean_Expr_isConst(x_549); -if (x_557 == 0) -{ -lean_object* x_558; -lean_dec_ref(x_550); -lean_dec_ref(x_549); -lean_dec_ref(x_137); -lean_dec(x_111); -lean_dec(x_106); -lean_dec(x_105); -lean_dec_ref(x_102); -lean_dec(x_92); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_558 = l_Lean_Elab_Tactic_Do_step_onFail___redArg(x_2, x_3, x_551, x_552, x_553, x_554, x_555, x_556); -lean_dec(x_555); -lean_dec_ref(x_554); -lean_dec(x_553); -lean_dec(x_551); -return x_558; -} -else -{ -lean_object* x_559; lean_object* x_560; lean_object* x_561; uint8_t x_562; -x_559 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_551, x_556); -x_560 = lean_ctor_get(x_559, 1); -lean_inc(x_560); -lean_dec_ref(x_559); -x_561 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__25; -x_562 = l_Lean_Expr_isConstOf(x_549, x_561); -if (x_562 == 0) -{ -lean_object* x_563; uint8_t x_564; -x_563 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__27; -x_564 = l_Lean_Expr_isConstOf(x_549, x_563); -x_428 = x_548; -x_429 = x_555; -x_430 = x_557; -x_431 = x_551; -x_432 = x_560; -x_433 = x_550; -x_434 = x_549; -x_435 = x_554; -x_436 = x_553; -x_437 = x_552; -x_438 = x_564; -goto block_547; -} -else -{ -x_428 = x_548; -x_429 = x_555; -x_430 = x_557; -x_431 = x_551; -x_432 = x_560; -x_433 = x_550; -x_434 = x_549; -x_435 = x_554; -x_436 = x_553; -x_437 = x_552; -x_438 = x_86; -goto block_547; -} -} -} -block_645: -{ -lean_object* x_574; -x_574 = l_Lean_Expr_getAppFn_x27(x_137); -if (lean_obj_tag(x_574) == 8) -{ -lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; uint8_t x_583; lean_object* x_584; -lean_dec(x_111); -lean_dec(x_106); -lean_dec(x_105); -lean_dec_ref(x_102); -lean_dec(x_92); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_2); -x_575 = lean_ctor_get(x_574, 0); -lean_inc(x_575); -x_576 = lean_ctor_get(x_574, 1); -lean_inc_ref(x_576); -x_577 = lean_ctor_get(x_574, 2); -lean_inc_ref(x_577); -x_578 = lean_ctor_get(x_574, 3); -lean_inc_ref(x_578); -lean_dec_ref(x_574); -x_579 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_567, x_568); -x_580 = lean_ctor_get(x_579, 1); -lean_inc(x_580); -lean_dec_ref(x_579); -x_581 = lean_box(x_573); -x_582 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__11___boxed), 15, 6); -lean_closure_set(x_582, 0, x_578); -lean_closure_set(x_582, 1, x_137); -lean_closure_set(x_582, 2, x_581); -lean_closure_set(x_582, 3, x_112); -lean_closure_set(x_582, 4, x_4); -lean_closure_set(x_582, 5, x_3); -x_583 = 0; -x_584 = l_Lean_Elab_Tactic_Do_withSharing___redArg(x_575, x_576, x_577, x_582, x_583, x_566, x_567, x_572, x_570, x_571, x_569, x_580); -return x_584; -} -else -{ -lean_object* x_585; -lean_dec_ref(x_112); -lean_inc(x_569); -lean_inc_ref(x_571); -lean_inc(x_570); -lean_inc_ref(x_572); -lean_inc_ref(x_566); -x_585 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_11, x_566, x_567, x_572, x_570, x_571, x_569, x_568); -if (lean_obj_tag(x_585) == 0) -{ -lean_object* x_586; lean_object* x_587; lean_object* x_588; -x_586 = lean_ctor_get(x_585, 0); -lean_inc(x_586); -x_587 = lean_ctor_get(x_585, 1); -lean_inc(x_587); -lean_dec_ref(x_585); -x_588 = l_Lean_Meta_isMatcherAppCore_x3f(x_586, x_137); -if (lean_obj_tag(x_588) == 0) -{ -lean_object* x_589; -x_589 = l_Lean_Expr_fvarId_x3f(x_574); -if (lean_obj_tag(x_589) == 0) -{ -x_548 = x_573; -x_549 = x_574; -x_550 = x_566; -x_551 = x_567; -x_552 = x_572; -x_553 = x_570; -x_554 = x_571; -x_555 = x_569; -x_556 = x_587; -goto block_565; -} -else -{ -lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; -x_590 = lean_ctor_get(x_589, 0); -lean_inc(x_590); -lean_dec_ref(x_589); -x_591 = lean_box(x_573); -x_592 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__14___boxed), 10, 2); -lean_closure_set(x_592, 0, x_590); -lean_closure_set(x_592, 1, x_591); -lean_inc(x_569); -lean_inc_ref(x_571); -lean_inc(x_570); -lean_inc_ref(x_572); -lean_inc_ref(x_566); -x_593 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_592, x_566, x_567, x_572, x_570, x_571, x_569, x_587); -if (lean_obj_tag(x_593) == 0) -{ -lean_object* x_594; -x_594 = lean_ctor_get(x_593, 0); -lean_inc(x_594); -if (lean_obj_tag(x_594) == 0) -{ -lean_object* x_595; -x_595 = lean_ctor_get(x_593, 1); -lean_inc(x_595); -lean_dec_ref(x_593); -x_548 = x_573; -x_549 = x_574; -x_550 = x_566; -x_551 = x_567; -x_552 = x_572; -x_553 = x_570; -x_554 = x_571; -x_555 = x_569; -x_556 = x_595; -goto block_565; -} -else -{ -lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; -lean_dec_ref(x_574); -lean_dec(x_111); -lean_dec(x_105); -lean_dec_ref(x_102); -lean_dec(x_92); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_10); -lean_dec_ref(x_2); -x_596 = lean_ctor_get(x_593, 1); -lean_inc(x_596); -lean_dec_ref(x_593); -x_597 = lean_ctor_get(x_594, 0); -lean_inc(x_597); -lean_dec_ref(x_594); -x_598 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_567, x_596); -x_599 = lean_ctor_get(x_598, 1); -lean_inc(x_599); -lean_dec_ref(x_598); -x_600 = l_Lean_Expr_getAppNumArgs(x_137); -x_601 = lean_mk_empty_array_with_capacity(x_600); -lean_dec(x_600); -x_602 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_137, x_601); -x_603 = l_Lean_Expr_betaRev(x_597, x_602, x_573, x_573); -lean_dec_ref(x_602); -x_604 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__6(x_82, x_81, x_77, x_73, x_69, x_5, x_6, x_83, x_84, x_106, x_104, x_7, x_8, x_9, x_603); -lean_dec(x_6); -x_605 = l_Lean_Elab_Tactic_Do_step_onWPApp(x_4, x_604, x_3, x_566, x_567, x_572, x_570, x_571, x_569, x_599); -return x_605; -} -} -else -{ -uint8_t x_606; -lean_dec_ref(x_574); -lean_dec_ref(x_572); -lean_dec_ref(x_571); -lean_dec(x_570); -lean_dec(x_569); -lean_dec(x_567); -lean_dec_ref(x_566); -lean_dec_ref(x_137); -lean_dec(x_111); -lean_dec(x_106); -lean_dec(x_105); -lean_dec_ref(x_102); -lean_dec(x_92); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_606 = !lean_is_exclusive(x_593); -if (x_606 == 0) -{ -return x_593; -} -else -{ -lean_object* x_607; lean_object* x_608; lean_object* x_609; -x_607 = lean_ctor_get(x_593, 0); -x_608 = lean_ctor_get(x_593, 1); -lean_inc(x_608); -lean_inc(x_607); -lean_dec(x_593); -x_609 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_609, 0, x_607); -lean_ctor_set(x_609, 1, x_608); -return x_609; -} -} -} -} -else -{ -lean_object* x_610; lean_object* x_611; lean_object* x_612; -lean_dec_ref(x_574); -lean_dec(x_111); -lean_dec(x_105); -lean_dec(x_92); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -x_610 = lean_ctor_get(x_588, 0); -lean_inc(x_610); -lean_dec_ref(x_588); -lean_inc_ref(x_137); -x_611 = lean_alloc_closure((void*)(l_Lean_Meta_Simp_simpMatchDiscrs_x3f), 10, 2); -lean_closure_set(x_611, 0, x_610); -lean_closure_set(x_611, 1, x_137); -lean_inc(x_569); -lean_inc_ref(x_571); -lean_inc(x_570); -lean_inc_ref(x_572); -lean_inc_ref(x_566); -x_612 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_611, x_566, x_567, x_572, x_570, x_571, x_569, x_587); -if (lean_obj_tag(x_612) == 0) -{ -lean_object* x_613; -x_613 = lean_ctor_get(x_612, 0); -lean_inc(x_613); -if (lean_obj_tag(x_613) == 0) -{ -lean_object* x_614; -lean_dec_ref(x_102); -lean_dec_ref(x_10); -x_614 = lean_ctor_get(x_612, 1); -lean_inc(x_614); -lean_dec_ref(x_612); -x_113 = x_137; -x_114 = x_566; -x_115 = x_567; -x_116 = x_572; -x_117 = x_570; -x_118 = x_571; -x_119 = x_569; -x_120 = x_614; -goto block_136; -} -else -{ -lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; -x_615 = lean_ctor_get(x_612, 1); -lean_inc(x_615); -lean_dec_ref(x_612); -x_616 = lean_ctor_get(x_613, 0); -lean_inc(x_616); -lean_dec_ref(x_613); -x_617 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_567, x_615); -x_618 = lean_ctor_get(x_616, 1); -lean_inc(x_618); -if (lean_obj_tag(x_618) == 0) -{ -lean_object* x_619; lean_object* x_620; -lean_dec_ref(x_137); -lean_dec_ref(x_102); -lean_dec_ref(x_10); -x_619 = lean_ctor_get(x_617, 1); -lean_inc(x_619); -lean_dec_ref(x_617); -x_620 = lean_ctor_get(x_616, 0); -lean_inc_ref(x_620); -lean_dec(x_616); -x_113 = x_620; -x_114 = x_566; -x_115 = x_567; -x_116 = x_572; -x_117 = x_570; -x_118 = x_571; -x_119 = x_569; -x_120 = x_619; -goto block_136; -} -else -{ -lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; -lean_dec_ref(x_2); -x_621 = lean_ctor_get(x_617, 1); -lean_inc(x_621); -lean_dec_ref(x_617); -x_622 = lean_ctor_get(x_616, 0); -lean_inc_ref(x_622); -lean_dec(x_616); -x_623 = lean_ctor_get(x_618, 0); -lean_inc(x_623); -lean_dec_ref(x_618); -lean_inc_ref(x_622); -lean_inc_ref(x_9); -lean_inc_ref(x_69); -lean_inc_ref(x_73); -lean_inc_ref(x_77); -lean_inc_ref(x_81); -x_624 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__6(x_82, x_81, x_77, x_73, x_69, x_5, x_6, x_83, x_84, x_106, x_104, x_7, x_8, x_9, x_622); -lean_dec(x_6); -x_625 = l_Lean_Elab_Tactic_Do_step_onWPApp(x_4, x_624, x_3, x_566, x_567, x_572, x_570, x_571, x_569, x_621); -if (lean_obj_tag(x_625) == 0) -{ -uint8_t x_626; -x_626 = !lean_is_exclusive(x_625); -if (x_626 == 0) -{ -lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; -x_627 = lean_ctor_get(x_625, 0); -x_628 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__5; -x_629 = l_Lean_Expr_const___override(x_628, x_102); -x_630 = l_Lean_mkApp10(x_629, x_81, x_77, x_69, x_9, x_10, x_73, x_137, x_622, x_623, x_627); -lean_ctor_set(x_625, 0, x_630); -return x_625; -} -else -{ -lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; -x_631 = lean_ctor_get(x_625, 0); -x_632 = lean_ctor_get(x_625, 1); -lean_inc(x_632); -lean_inc(x_631); -lean_dec(x_625); -x_633 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__5; -x_634 = l_Lean_Expr_const___override(x_633, x_102); -x_635 = l_Lean_mkApp10(x_634, x_81, x_77, x_69, x_9, x_10, x_73, x_137, x_622, x_623, x_631); -x_636 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_636, 0, x_635); -lean_ctor_set(x_636, 1, x_632); -return x_636; -} -} -else -{ -lean_dec(x_623); -lean_dec_ref(x_622); -lean_dec_ref(x_137); -lean_dec_ref(x_102); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -return x_625; -} -} -} -} -else -{ -uint8_t x_637; -lean_dec_ref(x_572); -lean_dec_ref(x_571); -lean_dec(x_570); -lean_dec(x_569); -lean_dec(x_567); -lean_dec_ref(x_566); -lean_dec_ref(x_137); -lean_dec(x_106); -lean_dec_ref(x_102); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_637 = !lean_is_exclusive(x_612); -if (x_637 == 0) -{ -return x_612; -} -else -{ -lean_object* x_638; lean_object* x_639; lean_object* x_640; -x_638 = lean_ctor_get(x_612, 0); -x_639 = lean_ctor_get(x_612, 1); -lean_inc(x_639); -lean_inc(x_638); -lean_dec(x_612); -x_640 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_640, 0, x_638); -lean_ctor_set(x_640, 1, x_639); -return x_640; -} -} -} -} -else -{ -uint8_t x_641; -lean_dec_ref(x_574); -lean_dec_ref(x_572); -lean_dec_ref(x_571); -lean_dec(x_570); -lean_dec(x_569); -lean_dec(x_567); -lean_dec_ref(x_566); -lean_dec_ref(x_137); -lean_dec(x_111); -lean_dec(x_106); -lean_dec(x_105); -lean_dec_ref(x_102); -lean_dec(x_92); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_641 = !lean_is_exclusive(x_585); -if (x_641 == 0) -{ -return x_585; -} -else -{ -lean_object* x_642; lean_object* x_643; lean_object* x_644; -x_642 = lean_ctor_get(x_585, 0); -x_643 = lean_ctor_get(x_585, 1); -lean_inc(x_643); -lean_inc(x_642); -lean_dec(x_585); -x_644 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_644, 0, x_642); -lean_ctor_set(x_644, 1, x_643); -return x_644; -} -} -} -} -block_657: -{ -lean_object* x_653; uint8_t x_654; -x_653 = l_Lean_Expr_getAppFn_x27(x_137); -x_654 = l_Lean_Expr_isLambda(x_653); -lean_dec_ref(x_653); -if (x_654 == 0) -{ -if (x_654 == 0) -{ -x_566 = x_646; -x_567 = x_647; -x_568 = x_652; -x_569 = x_651; -x_570 = x_649; -x_571 = x_650; -x_572 = x_648; -x_573 = x_654; -goto block_645; -} -else -{ -lean_object* x_655; -lean_dec_ref(x_137); -lean_dec_ref(x_112); -lean_dec(x_111); -lean_dec(x_106); -lean_dec(x_105); -lean_dec_ref(x_102); -lean_dec(x_92); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -x_655 = l_Lean_Elab_Tactic_Do_step_onLambda(x_4, x_2, x_3, x_646, x_647, x_648, x_649, x_650, x_651, x_652); -return x_655; -} -} -else -{ -uint8_t x_656; -x_656 = 0; -x_566 = x_646; -x_567 = x_647; -x_568 = x_652; -x_569 = x_651; -x_570 = x_649; -x_571 = x_650; -x_572 = x_648; -x_573 = x_656; -goto block_645; -} -} -} -else -{ -uint8_t x_670; -lean_dec(x_106); -lean_dec(x_105); -lean_dec_ref(x_102); -lean_dec(x_92); -lean_dec(x_90); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_670 = !lean_is_exclusive(x_108); -if (x_670 == 0) -{ -return x_108; -} -else -{ -lean_object* x_671; lean_object* x_672; lean_object* x_673; -x_671 = lean_ctor_get(x_108, 0); -x_672 = lean_ctor_get(x_108, 1); -lean_inc(x_672); -lean_inc(x_671); -lean_dec(x_108); -x_673 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_673, 0, x_671); -lean_ctor_set(x_673, 1, x_672); -return x_673; -} -} -} -else -{ -lean_dec(x_105); -lean_dec_ref(x_104); -lean_dec_ref(x_102); -lean_dec(x_92); -lean_dec(x_90); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_93 = x_12; -x_94 = x_13; -x_95 = x_14; -x_96 = x_15; -x_97 = x_16; -x_98 = x_17; -goto block_101; -} -} -} -block_101: -{ -lean_object* x_99; lean_object* x_100; -x_99 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__3; -x_100 = l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0(x_99, x_93, x_94, x_95, x_96, x_97, x_98, x_91); -return x_100; -} -} -else -{ -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_77); -lean_dec_ref(x_73); -lean_dec_ref(x_69); -lean_dec(x_61); -lean_dec(x_56); -lean_dec(x_54); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -return x_89; -} -} -} -} -} -} -} -} -else -{ -lean_dec(x_56); -lean_dec(x_54); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -return x_58; -} -} -else -{ -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -return x_53; -} -block_52: -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_27 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_21, x_26); -x_28 = lean_ctor_get(x_27, 1); -lean_inc(x_28); -lean_dec_ref(x_27); -x_29 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_2); -x_30 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__4___boxed), 10, 2); -lean_closure_set(x_30, 0, x_29); -lean_closure_set(x_30, 1, x_3); -lean_inc(x_25); -lean_inc_ref(x_24); -lean_inc(x_23); -lean_inc_ref(x_22); -lean_inc_ref(x_20); -x_31 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_30, x_20, x_21, x_22, x_23, x_24, x_25, x_28); -if (lean_obj_tag(x_31) == 0) -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_32 = lean_ctor_get(x_31, 0); -lean_inc(x_32); -x_33 = lean_ctor_get(x_31, 1); -lean_inc(x_33); -lean_dec_ref(x_31); -x_34 = l_Lean_Expr_mvarId_x21(x_32); -x_35 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__5___boxed), 10, 2); -lean_closure_set(x_35, 0, x_34); -lean_closure_set(x_35, 1, x_19); -lean_inc(x_25); -lean_inc_ref(x_24); -lean_inc(x_23); -lean_inc_ref(x_22); -lean_inc_ref(x_20); -x_36 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_35, x_20, x_21, x_22, x_23, x_24, x_25, x_33); -if (lean_obj_tag(x_36) == 0) -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_37 = lean_ctor_get(x_36, 0); -lean_inc(x_37); -x_38 = lean_ctor_get(x_36, 1); -lean_inc(x_38); -lean_dec_ref(x_36); -x_39 = l_Lean_Elab_Tactic_Do_step_assignMVars(x_4, x_37, x_20, x_21, x_22, x_23, x_24, x_25, x_38); -if (lean_obj_tag(x_39) == 0) -{ -uint8_t x_40; -x_40 = !lean_is_exclusive(x_39); -if (x_40 == 0) -{ -lean_object* x_41; -x_41 = lean_ctor_get(x_39, 0); +uint8_t x_77; +lean_dec_ref(x_48); +lean_dec(x_43); +lean_dec(x_42); lean_dec(x_41); -lean_ctor_set(x_39, 0, x_32); -return x_39; -} -else -{ -lean_object* x_42; lean_object* x_43; -x_42 = lean_ctor_get(x_39, 1); -lean_inc(x_42); lean_dec(x_39); -x_43 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_43, 0, x_32); -lean_ctor_set(x_43, 1, x_42); -return x_43; -} -} -else -{ -uint8_t x_44; -lean_dec(x_32); -x_44 = !lean_is_exclusive(x_39); -if (x_44 == 0) -{ -return x_39; -} -else -{ -lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_45 = lean_ctor_get(x_39, 0); -x_46 = lean_ctor_get(x_39, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_39); -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_45); -lean_ctor_set(x_47, 1, x_46); -return x_47; -} -} -} -else -{ -uint8_t x_48; -lean_dec(x_32); lean_dec(x_25); lean_dec_ref(x_24); lean_dec(x_23); lean_dec_ref(x_22); lean_dec(x_21); lean_dec_ref(x_20); -lean_dec_ref(x_4); -x_48 = !lean_is_exclusive(x_36); -if (x_48 == 0) +lean_dec_ref(x_19); +lean_dec_ref(x_14); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_2); +x_77 = !lean_is_exclusive(x_50); +if (x_77 == 0) +{ +return x_50; +} +else +{ +lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_78 = lean_ctor_get(x_50, 0); +x_79 = lean_ctor_get(x_50, 1); +lean_inc(x_79); +lean_inc(x_78); +lean_dec(x_50); +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; +} +} +} +} +else +{ +uint8_t x_119; +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec(x_23); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec_ref(x_19); +lean_dec(x_18); +lean_dec_ref(x_17); +lean_dec_ref(x_14); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_2); +x_119 = !lean_is_exclusive(x_36); +if (x_119 == 0) { return x_36; } else { +lean_object* x_120; lean_object* x_121; lean_object* x_122; +x_120 = lean_ctor_get(x_36, 0); +x_121 = lean_ctor_get(x_36, 1); +lean_inc(x_121); +lean_inc(x_120); +lean_dec(x_36); +x_122 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_122, 0, x_120); +lean_ctor_set(x_122, 1, x_121); +return x_122; +} +} +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__21___boxed__const__1() { +_start: +{ +size_t x_1; lean_object* x_2; +x_1 = 0; +x_2 = lean_box_usize(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__21(lean_object* x_1, lean_object* x_2, lean_object* 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, lean_object* x_12, lean_object* x_13, lean_object* x_14, uint8_t x_15, uint8_t x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26) { +_start: +{ +size_t x_27; size_t x_28; lean_object* x_29; +x_27 = lean_array_size(x_1); +x_28 = 0; +lean_inc(x_25); +lean_inc_ref(x_24); +lean_inc(x_23); +lean_inc_ref(x_22); +lean_inc(x_21); +lean_inc_ref(x_20); +lean_inc_ref(x_2); +x_29 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__4(x_2, x_27, x_28, x_1, x_20, x_21, x_22, x_23, x_24, x_25, x_26); +if (lean_obj_tag(x_29) == 0) +{ +lean_object* x_30; lean_object* x_31; size_t x_32; lean_object* x_33; +x_30 = lean_ctor_get(x_29, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_29, 1); +lean_inc(x_31); +lean_dec_ref(x_29); +x_32 = lean_array_size(x_3); +lean_inc(x_25); +lean_inc_ref(x_24); +lean_inc(x_23); +lean_inc_ref(x_22); +lean_inc(x_21); +lean_inc_ref(x_20); +lean_inc_ref(x_3); +x_33 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__4(x_2, x_32, x_28, x_3, x_20, x_21, x_22, x_23, x_24, x_25, x_31); +if (lean_obj_tag(x_33) == 0) +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; lean_object* x_40; +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +x_35 = lean_ctor_get(x_33, 1); +lean_inc(x_35); +lean_dec_ref(x_33); +x_36 = lean_box(x_6); +x_37 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__21___boxed__const__1; +lean_inc_ref(x_5); +lean_inc(x_34); +x_38 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___boxed), 15, 6); +lean_closure_set(x_38, 0, x_4); +lean_closure_set(x_38, 1, x_34); +lean_closure_set(x_38, 2, x_5); +lean_closure_set(x_38, 3, x_36); +lean_closure_set(x_38, 4, x_37); +lean_closure_set(x_38, 5, x_3); +x_39 = 0; +lean_inc(x_25); +lean_inc_ref(x_24); +lean_inc(x_23); +lean_inc_ref(x_22); +lean_inc(x_21); +lean_inc_ref(x_20); +x_40 = l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__6___redArg(x_7, x_38, x_39, x_20, x_21, x_22, x_23, x_24, x_25, x_35); +if (lean_obj_tag(x_40) == 0) +{ +lean_object* x_41; lean_object* x_42; +x_41 = lean_ctor_get(x_40, 0); +lean_inc(x_41); +x_42 = lean_ctor_get(x_41, 1); +lean_inc(x_42); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_43 = lean_ctor_get(x_40, 1); +lean_inc(x_43); +lean_dec_ref(x_40); +x_44 = lean_ctor_get(x_41, 0); +lean_inc(x_44); +lean_dec(x_41); +x_45 = lean_ctor_get(x_42, 1); +lean_inc(x_45); +lean_dec(x_42); +x_46 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23(x_45, x_34, x_28, x_8, x_30, x_44, x_9, x_10, x_11, x_12, x_13, x_5, x_39, x_14, x_15, x_16, x_17, x_19, x_18, x_20, x_21, x_22, x_23, x_24, x_25, x_43); +return x_46; +} +else +{ +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; +x_47 = lean_ctor_get(x_40, 1); +lean_inc(x_47); +lean_dec_ref(x_40); +x_48 = lean_ctor_get(x_41, 0); +lean_inc(x_48); +lean_dec(x_41); +x_49 = lean_ctor_get(x_42, 0); +lean_inc(x_49); +x_50 = lean_ctor_get(x_42, 1); +lean_inc(x_50); +lean_dec(x_42); +x_51 = lean_ctor_get(x_13, 0); +lean_inc(x_51); +x_52 = lean_array_set(x_18, x_51, x_49); +lean_dec(x_51); +x_53 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23(x_50, x_34, x_28, x_8, x_30, x_48, x_9, x_10, x_11, x_12, x_13, x_5, x_39, x_14, x_15, x_16, x_17, x_19, x_52, x_20, x_21, x_22, x_23, x_24, x_25, x_47); +return x_53; +} +} +else +{ +uint8_t x_54; +lean_dec(x_34); +lean_dec(x_30); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec(x_23); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec_ref(x_17); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_5); +x_54 = !lean_is_exclusive(x_40); +if (x_54 == 0) +{ +return x_40; +} +else +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_55 = lean_ctor_get(x_40, 0); +x_56 = lean_ctor_get(x_40, 1); +lean_inc(x_56); +lean_inc(x_55); +lean_dec(x_40); +x_57 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_55); +lean_ctor_set(x_57, 1, x_56); +return x_57; +} +} +} +else +{ +uint8_t x_58; +lean_dec(x_30); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec(x_23); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec_ref(x_17); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_58 = !lean_is_exclusive(x_33); +if (x_58 == 0) +{ +return x_33; +} +else +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_59 = lean_ctor_get(x_33, 0); +x_60 = lean_ctor_get(x_33, 1); +lean_inc(x_60); +lean_inc(x_59); +lean_dec(x_33); +x_61 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_61, 0, x_59); +lean_ctor_set(x_61, 1, x_60); +return x_61; +} +} +} +else +{ +uint8_t x_62; +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec(x_23); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec_ref(x_17); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_62 = !lean_is_exclusive(x_29); +if (x_62 == 0) +{ +return x_29; +} +else +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +lean_inc(x_64); +lean_inc(x_63); +lean_dec(x_29); +x_65 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_65, 0, x_63); +lean_ctor_set(x_65, 1, x_64); +return x_65; +} +} +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("matcher ", 8, 8); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__0; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(" has no MatchInfo found", 23, 23); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__2; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_alloc_closure((void*)(l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__17___lam__0___boxed), 8, 0); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc_ref(x_8); +x_16 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_15, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec_ref(x_16); +x_19 = lean_ctor_get(x_1, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_20); +x_21 = lean_ctor_get(x_1, 2); +lean_inc(x_21); +x_22 = lean_ctor_get(x_1, 3); +lean_inc_ref(x_22); +x_23 = lean_ctor_get(x_1, 4); +lean_inc_ref(x_23); +x_24 = lean_ctor_get(x_1, 5); +lean_inc_ref(x_24); +x_25 = lean_ctor_get(x_1, 6); +lean_inc_ref(x_25); +x_26 = lean_ctor_get(x_1, 7); +lean_inc_ref(x_26); +x_27 = lean_ctor_get(x_1, 8); +lean_inc_ref(x_27); +x_28 = lean_ctor_get(x_1, 9); +lean_inc_ref(x_28); +lean_dec_ref(x_1); +lean_inc(x_19); +x_29 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__1___boxed), 9, 1); +lean_closure_set(x_29, 0, x_19); +lean_inc(x_19); +x_30 = l_Lean_isCasesOnRecursor(x_17, x_19); +if (x_30 == 0) +{ +lean_object* x_31; +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc_ref(x_8); +lean_inc(x_19); +x_31 = l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__17(x_19, x_8, x_9, x_10, x_11, x_12, x_13, x_18); +if (lean_obj_tag(x_31) == 0) +{ +lean_object* x_32; +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +if (lean_obj_tag(x_32) == 0) +{ +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; uint8_t x_40; +lean_dec_ref(x_29); +lean_dec_ref(x_28); +lean_dec_ref(x_27); +lean_dec_ref(x_26); +lean_dec_ref(x_25); +lean_dec_ref(x_24); +lean_dec_ref(x_23); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +x_33 = lean_ctor_get(x_31, 1); +lean_inc(x_33); +lean_dec_ref(x_31); +x_34 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__1; +x_35 = l_Lean_MessageData_ofName(x_19); +x_36 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +x_37 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__3; +x_38 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_37); +x_39 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_38, x_8, x_9, x_10, x_11, x_12, x_13, x_33); +lean_dec(x_9); +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) +{ +return x_39; +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; +} +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_44 = lean_ctor_get(x_31, 1); +lean_inc(x_44); +lean_dec_ref(x_31); +x_45 = lean_ctor_get(x_32, 0); +lean_inc(x_45); +lean_dec_ref(x_32); +x_46 = l_Lean_Meta_Match_MatcherInfo_getNumDiscrEqs(x_45); +lean_dec(x_45); +x_47 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__21(x_23, x_4, x_25, x_5, x_22, x_3, x_24, x_19, x_27, x_7, x_28, x_26, x_21, x_6, x_2, x_30, x_29, x_20, x_46, x_8, x_9, x_10, x_11, x_12, x_13, x_44); +return x_47; +} +} +else +{ +uint8_t x_48; +lean_dec_ref(x_29); +lean_dec_ref(x_28); +lean_dec_ref(x_27); +lean_dec_ref(x_26); +lean_dec_ref(x_25); +lean_dec_ref(x_24); +lean_dec_ref(x_23); +lean_dec_ref(x_22); +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec(x_19); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +x_48 = !lean_is_exclusive(x_31); +if (x_48 == 0) +{ +return x_31; +} +else +{ lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_49 = lean_ctor_get(x_36, 0); -x_50 = lean_ctor_get(x_36, 1); +x_49 = lean_ctor_get(x_31, 0); +x_50 = lean_ctor_get(x_31, 1); lean_inc(x_50); lean_inc(x_49); -lean_dec(x_36); +lean_dec(x_31); x_51 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_51, 0, x_49); lean_ctor_set(x_51, 1, x_50); @@ -28182,69 +39583,4888 @@ return x_51; } else { -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec(x_21); -lean_dec_ref(x_20); -lean_dec_ref(x_19); +lean_object* x_52; lean_object* x_53; +x_52 = lean_unsigned_to_nat(0u); +x_53 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__21(x_23, x_4, x_25, x_5, x_22, x_3, x_24, x_19, x_27, x_7, x_28, x_26, x_21, x_6, x_2, x_30, x_29, x_20, x_52, x_8, x_9, x_10, x_11, x_12, x_13, x_18); +return x_53; +} +} +else +{ +uint8_t x_54; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); lean_dec_ref(x_4); -return x_31; +lean_dec_ref(x_1); +x_54 = !lean_is_exclusive(x_16); +if (x_54 == 0) +{ +return x_16; +} +else +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_55 = lean_ctor_get(x_16, 0); +x_56 = lean_ctor_get(x_16, 1); +lean_inc(x_56); +lean_inc(x_55); +lean_dec(x_16); +x_57 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_55); +lean_ctor_set(x_57, 1, x_56); +return x_57; } } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__0(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_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_11 = lean_ctor_get(x_2, 0); -lean_inc(x_11); -x_12 = lean_ctor_get(x_2, 1); +lean_object* x_10; +x_10 = l_Lean_Meta_getLevel(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x_11, x_12, x_13); +return x_14; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__1___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("isTrue", 6, 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__1___closed__0; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__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, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__1___closed__1; +x_13 = lean_unsigned_to_nat(0u); +x_14 = l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30___redArg___closed__0; +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_15 = lean_apply_10(x_1, x_12, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +lean_dec_ref(x_15); +x_18 = lean_mk_empty_array_with_capacity(x_2); +x_19 = lean_array_push(x_18, x_4); +x_20 = 0; +x_21 = 1; +x_22 = lean_box(x_20); +x_23 = lean_box(x_3); +x_24 = lean_box(x_21); +x_25 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__2___boxed), 13, 5); +lean_closure_set(x_25, 0, x_19); +lean_closure_set(x_25, 1, x_16); +lean_closure_set(x_25, 2, x_22); +lean_closure_set(x_25, 3, x_23); +lean_closure_set(x_25, 4, x_24); +x_26 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_17); +lean_dec(x_6); +return x_26; +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +return x_15; +} +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("isFalse", 7, 7); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4___closed__0; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4___closed__1; +x_13 = l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30___redArg___closed__0; +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_2); +x_14 = lean_apply_10(x_1, x_12, x_2, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t 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; +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec_ref(x_14); +x_17 = lean_mk_empty_array_with_capacity(x_2); +lean_dec(x_2); +x_18 = lean_array_push(x_17, x_4); +x_19 = 0; +x_20 = 1; +x_21 = lean_box(x_19); +x_22 = lean_box(x_3); +x_23 = lean_box(x_20); +x_24 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__2___boxed), 13, 5); +lean_closure_set(x_24, 0, x_18); +lean_closure_set(x_24, 1, x_15); +lean_closure_set(x_24, 2, x_21); +lean_closure_set(x_24, 3, x_22); +lean_closure_set(x_24, 4, x_23); +x_25 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_24, x_5, x_6, x_7, x_8, x_9, x_10, x_16); +lean_dec(x_6); +return x_25; +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_2); +return x_14; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__7(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_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__1___closed__1; +x_11 = lean_unsigned_to_nat(0u); +x_12 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__0; +x_13 = lean_array_push(x_12, x_2); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +lean_inc_ref(x_13); +x_14 = lean_apply_10(x_1, x_10, x_11, x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; lean_object* x_16; uint8_t x_17; uint8_t 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; +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec_ref(x_14); +x_17 = 0; +x_18 = 1; +x_19 = 1; +x_20 = lean_box(x_17); +x_21 = lean_box(x_18); +x_22 = lean_box(x_19); +x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__0___boxed), 13, 5); +lean_closure_set(x_23, 0, x_13); +lean_closure_set(x_23, 1, x_15); +lean_closure_set(x_23, 2, x_20); +lean_closure_set(x_23, 3, x_21); +lean_closure_set(x_23, 4, x_22); +x_24 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_23, x_3, x_4, x_5, x_6, x_7, x_8, x_16); +lean_dec(x_4); +return x_24; +} +else +{ +lean_dec_ref(x_13); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_14; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4___closed__1; +x_12 = lean_mk_empty_array_with_capacity(x_1); +x_13 = lean_array_push(x_12, x_3); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc_ref(x_13); +x_14 = lean_apply_10(x_2, x_11, x_1, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; lean_object* x_16; uint8_t x_17; uint8_t 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; +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec_ref(x_14); +x_17 = 0; +x_18 = 1; +x_19 = 1; +x_20 = lean_box(x_17); +x_21 = lean_box(x_18); +x_22 = lean_box(x_19); +x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__0___boxed), 13, 5); +lean_closure_set(x_23, 0, x_13); +lean_closure_set(x_23, 1, x_15); +lean_closure_set(x_23, 2, x_20); +lean_closure_set(x_23, 3, x_21); +lean_closure_set(x_23, 4, x_22); +x_24 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_23, x_4, x_5, x_6, x_7, x_8, x_9, x_16); +lean_dec(x_5); +return x_24; +} +else +{ +lean_dec_ref(x_13); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +return x_14; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_13 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__8; +x_14 = lean_unsigned_to_nat(1u); +x_15 = lean_nat_add(x_2, x_14); +x_16 = lean_name_append_index_after(x_13, x_15); +x_17 = lean_apply_10(x_1, x_16, x_2, x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_1); +lean_ctor_set(x_11, 1, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_1); +lean_ctor_set(x_9, 1, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_1); +lean_ctor_set(x_9, 1, x_8); +return x_9; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("ite", 3, 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__0; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("dite", 4, 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__2; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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: +{ +switch (lean_obj_tag(x_1)) { +case 0: +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_1, 0); lean_inc_ref(x_12); +lean_dec_ref(x_1); +lean_inc_ref(x_2); +x_13 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__0___boxed), 9, 1); +lean_closure_set(x_13, 0, x_2); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_14 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec_ref(x_14); +x_17 = lean_unsigned_to_nat(1u); +x_18 = l_Lean_Expr_getAppNumArgs(x_12); +x_19 = lean_nat_sub(x_18, x_17); +x_20 = lean_nat_sub(x_19, x_17); +lean_dec(x_19); +x_21 = l_Lean_Expr_getRevArg_x21(x_12, x_20); +x_22 = lean_unsigned_to_nat(2u); +x_23 = lean_nat_sub(x_18, x_22); +lean_dec(x_18); +x_24 = lean_nat_sub(x_23, x_17); +lean_dec(x_23); +x_25 = l_Lean_Expr_getRevArg_x21(x_12, x_24); +lean_dec_ref(x_12); +if (x_4 == 0) +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_26 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__1___closed__1; +x_27 = lean_unsigned_to_nat(0u); +x_28 = l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30___redArg___closed__0; +lean_inc_ref(x_3); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_29 = lean_apply_10(x_3, x_26, x_27, x_28, x_5, x_6, x_7, x_8, x_9, x_10, x_16); +if (lean_obj_tag(x_29) == 0) +{ +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; +x_31 = lean_ctor_get(x_29, 0); +x_32 = lean_ctor_get(x_29, 1); +x_33 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4___closed__1; +x_34 = lean_apply_10(x_3, x_33, x_17, x_28, x_5, x_6, x_7, x_8, x_9, x_10, x_32); +if (lean_obj_tag(x_34) == 0) +{ +uint8_t x_35; +x_35 = !lean_is_exclusive(x_34); +if (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_34, 0); +x_37 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__1; +x_38 = lean_box(0); +lean_ctor_set_tag(x_29, 1); +lean_ctor_set(x_29, 1, x_38); +lean_ctor_set(x_29, 0, x_15); +x_39 = l_Lean_Expr_const___override(x_37, x_29); +x_40 = l_Lean_mkApp5(x_39, x_2, x_21, x_25, x_31, x_36); +lean_ctor_set(x_34, 0, x_40); +return x_34; +} +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; +x_41 = lean_ctor_get(x_34, 0); +x_42 = lean_ctor_get(x_34, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_34); +x_43 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__1; +x_44 = lean_box(0); +lean_ctor_set_tag(x_29, 1); +lean_ctor_set(x_29, 1, x_44); +lean_ctor_set(x_29, 0, x_15); +x_45 = l_Lean_Expr_const___override(x_43, x_29); +x_46 = l_Lean_mkApp5(x_45, x_2, x_21, x_25, x_31, x_41); +x_47 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_47, 1, x_42); +return x_47; +} +} +else +{ +lean_free_object(x_29); +lean_dec(x_31); +lean_dec_ref(x_25); +lean_dec_ref(x_21); +lean_dec(x_15); +lean_dec_ref(x_2); +return x_34; +} +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_48 = lean_ctor_get(x_29, 0); +x_49 = lean_ctor_get(x_29, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_29); +x_50 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4___closed__1; +x_51 = lean_apply_10(x_3, x_50, x_17, x_28, x_5, x_6, x_7, x_8, x_9, x_10, x_49); +if (lean_obj_tag(x_51) == 0) +{ +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; +x_52 = lean_ctor_get(x_51, 0); +lean_inc(x_52); +x_53 = lean_ctor_get(x_51, 1); +lean_inc(x_53); +if (lean_is_exclusive(x_51)) { + lean_ctor_release(x_51, 0); + lean_ctor_release(x_51, 1); + x_54 = x_51; +} else { + lean_dec_ref(x_51); + x_54 = lean_box(0); +} +x_55 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__1; +x_56 = lean_box(0); +x_57 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_15); +lean_ctor_set(x_57, 1, x_56); +x_58 = l_Lean_Expr_const___override(x_55, x_57); +x_59 = l_Lean_mkApp5(x_58, x_2, x_21, x_25, x_48, x_52); +if (lean_is_scalar(x_54)) { + x_60 = lean_alloc_ctor(0, 2, 0); +} else { + x_60 = x_54; +} +lean_ctor_set(x_60, 0, x_59); +lean_ctor_set(x_60, 1, x_53); +return x_60; +} +else +{ +lean_dec(x_48); +lean_dec_ref(x_25); +lean_dec_ref(x_21); +lean_dec(x_15); +lean_dec_ref(x_2); +return x_51; +} +} +} +else +{ +lean_dec_ref(x_25); +lean_dec_ref(x_21); +lean_dec(x_15); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +return x_29; +} +} +else +{ +lean_object* x_61; lean_object* x_62; +x_61 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__0; +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_62 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_61, x_5, x_6, x_7, x_8, x_9, x_10, x_16); +if (lean_obj_tag(x_62) == 0) +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; uint8_t x_67; uint8_t x_68; lean_object* x_69; +x_63 = lean_ctor_get(x_62, 0); +lean_inc(x_63); +x_64 = lean_ctor_get(x_62, 1); +lean_inc(x_64); +lean_dec_ref(x_62); +x_65 = lean_box(x_4); +lean_inc_ref(x_3); +x_66 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__1___boxed), 11, 3); +lean_closure_set(x_66, 0, x_3); +lean_closure_set(x_66, 1, x_17); +lean_closure_set(x_66, 2, x_65); +x_67 = 0; +x_68 = 0; +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_21); +lean_inc(x_63); +x_69 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg(x_63, x_67, x_21, x_66, x_68, x_5, x_6, x_7, x_8, x_9, x_10, x_64); +if (lean_obj_tag(x_69) == 0) +{ +uint8_t x_70; +x_70 = !lean_is_exclusive(x_69); +if (x_70 == 0) +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_71 = lean_ctor_get(x_69, 0); +x_72 = lean_ctor_get(x_69, 1); +x_73 = lean_box(x_4); +x_74 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4___boxed), 11, 3); +lean_closure_set(x_74, 0, x_3); +lean_closure_set(x_74, 1, x_17); +lean_closure_set(x_74, 2, x_73); +lean_inc_ref(x_21); +x_75 = l_Lean_mkNot(x_21); +x_76 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg(x_63, x_67, x_75, x_74, x_68, x_5, x_6, x_7, x_8, x_9, x_10, x_72); +if (lean_obj_tag(x_76) == 0) +{ +uint8_t x_77; +x_77 = !lean_is_exclusive(x_76); +if (x_77 == 0) +{ +lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_78 = lean_ctor_get(x_76, 0); +x_79 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__3; +x_80 = lean_box(0); +lean_ctor_set_tag(x_69, 1); +lean_ctor_set(x_69, 1, x_80); +lean_ctor_set(x_69, 0, x_15); +x_81 = l_Lean_Expr_const___override(x_79, x_69); +x_82 = l_Lean_mkApp5(x_81, x_2, x_21, x_25, x_71, x_78); +lean_ctor_set(x_76, 0, x_82); +return x_76; +} +else +{ +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_83 = lean_ctor_get(x_76, 0); +x_84 = lean_ctor_get(x_76, 1); +lean_inc(x_84); +lean_inc(x_83); +lean_dec(x_76); +x_85 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__3; +x_86 = lean_box(0); +lean_ctor_set_tag(x_69, 1); +lean_ctor_set(x_69, 1, x_86); +lean_ctor_set(x_69, 0, x_15); +x_87 = l_Lean_Expr_const___override(x_85, x_69); +x_88 = l_Lean_mkApp5(x_87, x_2, x_21, x_25, x_71, x_83); +x_89 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_89, 0, x_88); +lean_ctor_set(x_89, 1, x_84); +return x_89; +} +} +else +{ +lean_free_object(x_69); +lean_dec(x_71); +lean_dec_ref(x_25); +lean_dec_ref(x_21); +lean_dec(x_15); +lean_dec_ref(x_2); +return x_76; +} +} +else +{ +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; +x_90 = lean_ctor_get(x_69, 0); +x_91 = lean_ctor_get(x_69, 1); +lean_inc(x_91); +lean_inc(x_90); +lean_dec(x_69); +x_92 = lean_box(x_4); +x_93 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4___boxed), 11, 3); +lean_closure_set(x_93, 0, x_3); +lean_closure_set(x_93, 1, x_17); +lean_closure_set(x_93, 2, x_92); +lean_inc_ref(x_21); +x_94 = l_Lean_mkNot(x_21); +x_95 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg(x_63, x_67, x_94, x_93, x_68, x_5, x_6, x_7, x_8, x_9, x_10, x_91); +if (lean_obj_tag(x_95) == 0) +{ +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; +x_96 = lean_ctor_get(x_95, 0); +lean_inc(x_96); +x_97 = lean_ctor_get(x_95, 1); +lean_inc(x_97); +if (lean_is_exclusive(x_95)) { + lean_ctor_release(x_95, 0); + lean_ctor_release(x_95, 1); + x_98 = x_95; +} else { + lean_dec_ref(x_95); + x_98 = lean_box(0); +} +x_99 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__3; +x_100 = lean_box(0); +x_101 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_101, 0, x_15); +lean_ctor_set(x_101, 1, x_100); +x_102 = l_Lean_Expr_const___override(x_99, x_101); +x_103 = l_Lean_mkApp5(x_102, x_2, x_21, x_25, x_90, x_96); +if (lean_is_scalar(x_98)) { + x_104 = lean_alloc_ctor(0, 2, 0); +} else { + x_104 = x_98; +} +lean_ctor_set(x_104, 0, x_103); +lean_ctor_set(x_104, 1, x_97); +return x_104; +} +else +{ +lean_dec(x_90); +lean_dec_ref(x_25); +lean_dec_ref(x_21); +lean_dec(x_15); +lean_dec_ref(x_2); +return x_95; +} +} +} +else +{ +lean_dec(x_63); +lean_dec_ref(x_25); +lean_dec_ref(x_21); +lean_dec(x_15); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +return x_69; +} +} +else +{ +uint8_t x_105; +lean_dec_ref(x_25); +lean_dec_ref(x_21); +lean_dec(x_15); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_105 = !lean_is_exclusive(x_62); +if (x_105 == 0) +{ +return x_62; +} +else +{ +lean_object* x_106; lean_object* x_107; lean_object* x_108; +x_106 = lean_ctor_get(x_62, 0); +x_107 = lean_ctor_get(x_62, 1); +lean_inc(x_107); +lean_inc(x_106); +lean_dec(x_62); +x_108 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_108, 0, x_106); +lean_ctor_set(x_108, 1, x_107); +return x_108; +} +} +} +} +else +{ +uint8_t x_109; +lean_dec_ref(x_12); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_109 = !lean_is_exclusive(x_14); +if (x_109 == 0) +{ +return x_14; +} +else +{ +lean_object* x_110; lean_object* x_111; lean_object* x_112; +x_110 = lean_ctor_get(x_14, 0); +x_111 = lean_ctor_get(x_14, 1); +lean_inc(x_111); +lean_inc(x_110); +lean_dec(x_14); +x_112 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_112, 0, x_110); +lean_ctor_set(x_112, 1, x_111); +return x_112; +} +} +} +case 1: +{ +lean_object* x_113; lean_object* x_114; lean_object* x_115; +x_113 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_113); +lean_dec_ref(x_1); +lean_inc_ref(x_2); +x_114 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__0___boxed), 9, 1); +lean_closure_set(x_114, 0, x_2); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_115 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_114, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_115) == 0) +{ +lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; +x_116 = lean_ctor_get(x_115, 0); +lean_inc(x_116); +x_117 = lean_ctor_get(x_115, 1); +lean_inc(x_117); +lean_dec_ref(x_115); +x_118 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__0; +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_119 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_118, x_5, x_6, x_7, x_8, x_9, x_10, x_117); +if (lean_obj_tag(x_119) == 0) +{ +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; uint8_t x_128; uint8_t x_129; lean_object* x_130; +x_120 = lean_ctor_get(x_119, 0); +lean_inc(x_120); +x_121 = lean_ctor_get(x_119, 1); +lean_inc(x_121); +lean_dec_ref(x_119); +lean_inc_ref(x_3); +x_122 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__7), 9, 1); +lean_closure_set(x_122, 0, x_3); +x_123 = lean_unsigned_to_nat(1u); +x_124 = l_Lean_Expr_getAppNumArgs(x_113); +x_125 = lean_nat_sub(x_124, x_123); +x_126 = lean_nat_sub(x_125, x_123); +lean_dec(x_125); +x_127 = l_Lean_Expr_getRevArg_x21(x_113, x_126); +x_128 = 0; +x_129 = 0; +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_127); +lean_inc(x_120); +x_130 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg(x_120, x_128, x_127, x_122, x_129, x_5, x_6, x_7, x_8, x_9, x_10, x_121); +if (lean_obj_tag(x_130) == 0) +{ +uint8_t x_131; +x_131 = !lean_is_exclusive(x_130); +if (x_131 == 0) +{ +lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; +x_132 = lean_ctor_get(x_130, 0); +x_133 = lean_ctor_get(x_130, 1); +x_134 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__5), 10, 2); +lean_closure_set(x_134, 0, x_123); +lean_closure_set(x_134, 1, x_3); +lean_inc_ref(x_127); +x_135 = l_Lean_mkNot(x_127); +x_136 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg(x_120, x_128, x_135, x_134, x_129, x_5, x_6, x_7, x_8, x_9, x_10, x_133); +if (lean_obj_tag(x_136) == 0) +{ +uint8_t x_137; +x_137 = !lean_is_exclusive(x_136); +if (x_137 == 0) +{ +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; +x_138 = lean_ctor_get(x_136, 0); +x_139 = lean_unsigned_to_nat(2u); +x_140 = lean_nat_sub(x_124, x_139); +lean_dec(x_124); +x_141 = lean_nat_sub(x_140, x_123); +lean_dec(x_140); +x_142 = l_Lean_Expr_getRevArg_x21(x_113, x_141); +lean_dec_ref(x_113); +x_143 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__3; +x_144 = lean_box(0); +lean_ctor_set_tag(x_130, 1); +lean_ctor_set(x_130, 1, x_144); +lean_ctor_set(x_130, 0, x_116); +x_145 = l_Lean_Expr_const___override(x_143, x_130); +x_146 = l_Lean_mkApp5(x_145, x_2, x_127, x_142, x_132, x_138); +lean_ctor_set(x_136, 0, x_146); +return x_136; +} +else +{ +lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; +x_147 = lean_ctor_get(x_136, 0); +x_148 = lean_ctor_get(x_136, 1); +lean_inc(x_148); +lean_inc(x_147); +lean_dec(x_136); +x_149 = lean_unsigned_to_nat(2u); +x_150 = lean_nat_sub(x_124, x_149); +lean_dec(x_124); +x_151 = lean_nat_sub(x_150, x_123); +lean_dec(x_150); +x_152 = l_Lean_Expr_getRevArg_x21(x_113, x_151); +lean_dec_ref(x_113); +x_153 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__3; +x_154 = lean_box(0); +lean_ctor_set_tag(x_130, 1); +lean_ctor_set(x_130, 1, x_154); +lean_ctor_set(x_130, 0, x_116); +x_155 = l_Lean_Expr_const___override(x_153, x_130); +x_156 = l_Lean_mkApp5(x_155, x_2, x_127, x_152, x_132, x_147); +x_157 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_157, 0, x_156); +lean_ctor_set(x_157, 1, x_148); +return x_157; +} +} +else +{ +lean_free_object(x_130); +lean_dec(x_132); +lean_dec_ref(x_127); +lean_dec(x_124); +lean_dec(x_116); +lean_dec_ref(x_113); +lean_dec_ref(x_2); +return x_136; +} +} +else +{ +lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; +x_158 = lean_ctor_get(x_130, 0); +x_159 = lean_ctor_get(x_130, 1); +lean_inc(x_159); +lean_inc(x_158); +lean_dec(x_130); +x_160 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__5), 10, 2); +lean_closure_set(x_160, 0, x_123); +lean_closure_set(x_160, 1, x_3); +lean_inc_ref(x_127); +x_161 = l_Lean_mkNot(x_127); +x_162 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg(x_120, x_128, x_161, x_160, x_129, x_5, x_6, x_7, x_8, x_9, x_10, x_159); +if (lean_obj_tag(x_162) == 0) +{ +lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; +x_163 = lean_ctor_get(x_162, 0); +lean_inc(x_163); +x_164 = lean_ctor_get(x_162, 1); +lean_inc(x_164); +if (lean_is_exclusive(x_162)) { + lean_ctor_release(x_162, 0); + lean_ctor_release(x_162, 1); + x_165 = x_162; +} else { + lean_dec_ref(x_162); + x_165 = lean_box(0); +} +x_166 = lean_unsigned_to_nat(2u); +x_167 = lean_nat_sub(x_124, x_166); +lean_dec(x_124); +x_168 = lean_nat_sub(x_167, x_123); +lean_dec(x_167); +x_169 = l_Lean_Expr_getRevArg_x21(x_113, x_168); +lean_dec_ref(x_113); +x_170 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__3; +x_171 = lean_box(0); +x_172 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_172, 0, x_116); +lean_ctor_set(x_172, 1, x_171); +x_173 = l_Lean_Expr_const___override(x_170, x_172); +x_174 = l_Lean_mkApp5(x_173, x_2, x_127, x_169, x_158, x_163); +if (lean_is_scalar(x_165)) { + x_175 = lean_alloc_ctor(0, 2, 0); +} else { + x_175 = x_165; +} +lean_ctor_set(x_175, 0, x_174); +lean_ctor_set(x_175, 1, x_164); +return x_175; +} +else +{ +lean_dec(x_158); +lean_dec_ref(x_127); +lean_dec(x_124); +lean_dec(x_116); +lean_dec_ref(x_113); +lean_dec_ref(x_2); +return x_162; +} +} +} +else +{ +lean_dec_ref(x_127); +lean_dec(x_124); +lean_dec(x_120); +lean_dec(x_116); +lean_dec_ref(x_113); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +return x_130; +} +} +else +{ +uint8_t x_176; +lean_dec(x_116); +lean_dec_ref(x_113); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_176 = !lean_is_exclusive(x_119); +if (x_176 == 0) +{ +return x_119; +} +else +{ +lean_object* x_177; lean_object* x_178; lean_object* x_179; +x_177 = lean_ctor_get(x_119, 0); +x_178 = lean_ctor_get(x_119, 1); +lean_inc(x_178); +lean_inc(x_177); +lean_dec(x_119); +x_179 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_179, 0, x_177); +lean_ctor_set(x_179, 1, x_178); +return x_179; +} +} +} +else +{ +uint8_t x_180; +lean_dec_ref(x_113); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_180 = !lean_is_exclusive(x_115); +if (x_180 == 0) +{ +return x_115; +} +else +{ +lean_object* x_181; lean_object* x_182; lean_object* x_183; +x_181 = lean_ctor_get(x_115, 0); +x_182 = lean_ctor_get(x_115, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_115); +x_183 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_183, 0, x_181); +lean_ctor_set(x_183, 1, x_182); +return x_183; +} +} +} +default: +{ +lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; +x_184 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_184); +lean_dec_ref(x_1); +x_185 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__3___boxed), 12, 1); +lean_closure_set(x_185, 0, x_3); +x_186 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__6___boxed), 10, 1); +lean_closure_set(x_186, 0, x_2); +x_187 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__8___boxed), 8, 0); +x_188 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__9___boxed), 8, 0); +x_189 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3(x_184, x_4, x_4, x_187, x_186, x_185, x_188, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_189) == 0) +{ +uint8_t x_190; +x_190 = !lean_is_exclusive(x_189); +if (x_190 == 0) +{ +lean_object* x_191; lean_object* x_192; +x_191 = lean_ctor_get(x_189, 0); +x_192 = l_Lean_Meta_MatcherApp_toExpr(x_191); +lean_ctor_set(x_189, 0, x_192); +return x_189; +} +else +{ +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; +x_193 = lean_ctor_get(x_189, 0); +x_194 = lean_ctor_get(x_189, 1); +lean_inc(x_194); +lean_inc(x_193); +lean_dec(x_189); +x_195 = l_Lean_Meta_MatcherApp_toExpr(x_193); +x_196 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_196, 0, x_195); +lean_ctor_set(x_196, 1, x_194); +return x_196; +} +} +else +{ +uint8_t x_197; +x_197 = !lean_is_exclusive(x_189); +if (x_197 == 0) +{ +return x_189; +} +else +{ +lean_object* x_198; lean_object* x_199; lean_object* x_200; +x_198 = lean_ctor_get(x_189, 0); +x_199 = lean_ctor_get(x_189, 1); +lean_inc(x_199); +lean_inc(x_198); +lean_dec(x_189); +x_200 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_200, 0, x_198); +lean_ctor_set(x_200, 1, x_199); +return x_200; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__0(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; lean_object* x_10; +x_9 = lean_ctor_get(x_4, 2); +lean_inc_ref(x_9); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__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_10; +x_10 = lean_infer_type(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__2(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, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; size_t x_14; size_t x_15; lean_object* x_16; +x_12 = l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30___redArg___closed__0; +x_13 = l_Lean_Elab_Tactic_Do_SplitInfo_altInfos(x_1); +x_14 = lean_array_size(x_13); +x_15 = 0; +x_16 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__1(x_3, x_2, x_13, x_14, x_15, x_12, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec_ref(x_13); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_getNumJoinParams(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_15 = l_Lean_mkApp5(x_1, x_2, x_3, x_4, x_5, x_14); +x_16 = lean_array_set(x_6, x_7, x_15); +x_17 = lean_unsigned_to_nat(4u); +x_18 = l_Array_extract___redArg(x_16, x_8, x_17); +lean_dec_ref(x_16); +x_19 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__0; +x_20 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__1; +x_21 = l_Lean_Name_mkStr4(x_9, x_10, x_19, x_20); +x_22 = l_Lean_Expr_const___override(x_21, x_11); +x_23 = l_Lean_mkAppN(x_22, x_18); +lean_dec_ref(x_18); +lean_inc_ref(x_13); +lean_inc(x_12); +x_24 = l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp(x_12, x_13); +x_25 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_25, 0, x_12); +lean_ctor_set(x_25, 1, x_13); +lean_ctor_set(x_25, 2, x_24); +lean_ctor_set(x_25, 3, x_23); +return x_25; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = lean_array_get(x_1, x_2, x_5); +x_15 = l_Array_append___redArg(x_3, x_6); +x_16 = l_Lean_mkAppN(x_14, x_15); +lean_dec_ref(x_15); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_13); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__8(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_Meta_mkForallFVars(x_1, x_2, x_3, x_4, x_4, x_5, x_9, x_10, x_11, x_12, x_13); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +_start: +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = l_Lean_mkAppN(x_1, x_2); +lean_inc_ref(x_3); +x_18 = lean_apply_1(x_3, x_17); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_19 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_4, x_18, x_5, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); +lean_inc(x_21); +lean_dec_ref(x_19); +lean_inc_ref(x_2); +x_22 = lean_array_push(x_2, x_9); +x_23 = 1; +x_24 = lean_box(x_6); +x_25 = lean_box(x_7); +x_26 = lean_box(x_23); +lean_inc_ref(x_22); +x_27 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__8___boxed), 13, 5); +lean_closure_set(x_27, 0, x_22); +lean_closure_set(x_27, 1, x_20); +lean_closure_set(x_27, 2, x_24); +lean_closure_set(x_27, 3, x_25); +lean_closure_set(x_27, 4, x_26); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc_ref(x_10); +x_28 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_27, x_10, x_11, x_12, x_13, x_14, x_15, x_21); +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; lean_object* x_37; lean_object* x_38; +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +x_30 = lean_ctor_get(x_28, 1); +lean_inc(x_30); +lean_dec_ref(x_28); +x_31 = l_Lean_Expr_beta(x_8, x_2); +x_32 = lean_apply_1(x_3, x_31); +x_33 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_32); +x_34 = lean_box(x_6); +x_35 = lean_box(x_7); +x_36 = lean_box(x_23); +x_37 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__8___boxed), 13, 5); +lean_closure_set(x_37, 0, x_22); +lean_closure_set(x_37, 1, x_33); +lean_closure_set(x_37, 2, x_34); +lean_closure_set(x_37, 3, x_35); +lean_closure_set(x_37, 4, x_36); +x_38 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_37, x_10, x_11, x_12, x_13, x_14, x_15, x_30); +lean_dec(x_11); +if (lean_obj_tag(x_38) == 0) +{ +uint8_t x_39; +x_39 = !lean_is_exclusive(x_38); +if (x_39 == 0) +{ +lean_object* x_40; lean_object* x_41; +x_40 = lean_ctor_get(x_38, 0); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_29); +lean_ctor_set(x_41, 1, x_40); +lean_ctor_set(x_38, 0, x_41); +return x_38; +} +else +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_42 = lean_ctor_get(x_38, 0); +x_43 = lean_ctor_get(x_38, 1); +lean_inc(x_43); +lean_inc(x_42); +lean_dec(x_38); +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_29); +lean_ctor_set(x_44, 1, x_42); +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_44); +lean_ctor_set(x_45, 1, x_43); +return x_45; +} +} +else +{ +uint8_t x_46; +lean_dec(x_29); +x_46 = !lean_is_exclusive(x_38); +if (x_46 == 0) +{ +return x_38; +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_38, 0); +x_48 = lean_ctor_get(x_38, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_38); +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +return x_49; +} +} +} +else +{ +uint8_t x_50; +lean_dec_ref(x_22); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_8); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_50 = !lean_is_exclusive(x_28); +if (x_50 == 0) +{ +return x_28; +} +else +{ +lean_object* x_51; lean_object* x_52; lean_object* x_53; +x_51 = lean_ctor_get(x_28, 0); +x_52 = lean_ctor_get(x_28, 1); +lean_inc(x_52); +lean_inc(x_51); +lean_dec(x_28); +x_53 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +return x_53; +} +} +} +else +{ +uint8_t x_54; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_54 = !lean_is_exclusive(x_19); +if (x_54 == 0) +{ +return x_19; +} +else +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_55 = lean_ctor_get(x_19, 0); +x_56 = lean_ctor_get(x_19, 1); +lean_inc(x_56); +lean_inc(x_55); +lean_dec(x_19); +x_57 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_55); +lean_ctor_set(x_57, 1, x_56); +return x_57; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, uint8_t x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20) { +_start: +{ +lean_object* x_21; lean_object* x_22; +lean_inc_ref(x_12); +x_21 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__5___boxed), 13, 3); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_2); +lean_closure_set(x_21, 2, x_12); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc(x_15); +lean_inc_ref(x_14); +x_22 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3(x_3, x_4, x_21, x_5, x_14, x_15, x_16, x_17, x_18, x_19, x_20); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec_ref(x_22); +x_25 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__2; +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc_ref(x_14); +x_26 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_25, x_14, x_15, x_16, x_17, x_18, x_19, x_24); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; uint8_t x_33; lean_object* x_34; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec_ref(x_26); +x_29 = lean_box(x_5); +x_30 = lean_box(x_10); +x_31 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__6___boxed), 16, 8); +lean_closure_set(x_31, 0, x_6); +lean_closure_set(x_31, 1, x_12); +lean_closure_set(x_31, 2, x_7); +lean_closure_set(x_31, 3, x_8); +lean_closure_set(x_31, 4, x_9); +lean_closure_set(x_31, 5, x_29); +lean_closure_set(x_31, 6, x_30); +lean_closure_set(x_31, 7, x_11); +x_32 = 0; +x_33 = 0; +x_34 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg(x_27, x_32, x_23, x_31, x_33, x_14, x_15, x_16, x_17, x_18, x_19, x_28); +return x_34; +} +else +{ +uint8_t x_35; +lean_dec(x_23); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_35 = !lean_is_exclusive(x_26); +if (x_35 == 0) +{ +return x_26; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_ctor_get(x_26, 0); +x_37 = lean_ctor_get(x_26, 1); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_26); +x_38 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_37); +return x_38; +} +} +} +else +{ +uint8_t x_39; +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_39 = !lean_is_exclusive(x_22); +if (x_39 == 0) +{ +return x_22; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_22, 0); +x_41 = lean_ctor_get(x_22, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_22); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +_start: +{ +lean_object* x_17; +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc_ref(x_10); +x_17 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_1, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); +lean_inc(x_19); +lean_dec_ref(x_17); +x_20 = lean_local_ctx_num_indices(x_18); +x_21 = lean_array_get(x_2, x_3, x_7); +x_22 = l_Lean_Expr_mvarId_x21(x_21); +lean_dec_ref(x_21); +x_23 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_23, 0, x_4); +lean_ctor_set(x_23, 1, x_7); +lean_ctor_set(x_23, 2, x_8); +lean_ctor_set(x_23, 3, x_20); +lean_ctor_set(x_23, 4, x_22); +lean_ctor_set(x_23, 5, x_5); +x_24 = l_Lean_Expr_fvarId_x21(x_6); +x_25 = l_Lean_Elab_Tactic_Do_withJP___redArg(x_24, x_23, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_19); +return x_25; +} +else +{ +uint8_t x_26; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_2); +x_26 = !lean_is_exclusive(x_17); +if (x_26 == 0) +{ +return x_17; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_17, 0); +x_28 = lean_ctor_get(x_17, 1); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_17); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__9(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Lean_Meta_mkLetFVars(x_1, x_2, x_3, x_3, x_4, x_8, x_9, x_10, x_11, x_12); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__11(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, uint8_t x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { +_start: +{ +lean_object* x_20; lean_object* x_21; +lean_inc_ref(x_12); +x_20 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__10___boxed), 16, 6); +lean_closure_set(x_20, 0, x_1); +lean_closure_set(x_20, 1, x_2); +lean_closure_set(x_20, 2, x_3); +lean_closure_set(x_20, 3, x_4); +lean_closure_set(x_20, 4, x_12); +lean_closure_set(x_20, 5, x_5); +lean_inc(x_18); +lean_inc_ref(x_17); +lean_inc(x_16); +lean_inc_ref(x_15); +lean_inc(x_14); +lean_inc_ref(x_13); +x_21 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit(x_6, x_7, x_8, x_9, x_20, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +if (lean_obj_tag(x_21) == 0) +{ +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; +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +x_23 = lean_ctor_get(x_21, 1); +lean_inc(x_23); +lean_dec_ref(x_21); +x_24 = lean_mk_empty_array_with_capacity(x_10); +x_25 = lean_array_push(x_24, x_12); +x_26 = 1; +x_27 = lean_box(x_11); +x_28 = lean_box(x_26); +x_29 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__9___boxed), 12, 4); +lean_closure_set(x_29, 0, x_25); +lean_closure_set(x_29, 1, x_22); +lean_closure_set(x_29, 2, x_27); +lean_closure_set(x_29, 3, x_28); +x_30 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_29, x_13, x_14, x_15, x_16, x_17, x_18, x_23); +lean_dec(x_14); +return x_30; +} +else +{ +lean_dec(x_18); +lean_dec_ref(x_17); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +return x_21; +} +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Encountered dependent motive of ", 32, 32); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__0; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(" despite there being a join point.", 34, 34); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__2; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("joinPrf", 7, 7); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__4; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__5; +x_2 = lean_alloc_closure((void*)(l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___lam__0___boxed), 9, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Join point ", 11, 11); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__7; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(" with matcher ", 14, 14); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__9; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_24; +x_24 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_8, x_13); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_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; +x_25 = lean_ctor_get(x_24, 1); +lean_inc(x_25); +lean_dec_ref(x_24); +x_26 = lean_ctor_get(x_4, 3); +lean_inc_ref(x_26); +x_41 = l_Lean_instInhabitedExpr; +x_42 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg___closed__0; +x_43 = l_Lean_Expr_getAppNumArgs(x_26); +lean_inc(x_43); +x_44 = lean_mk_array(x_43, x_42); +x_45 = lean_unsigned_to_nat(1u); +x_46 = lean_nat_sub(x_43, x_45); +lean_dec(x_43); +lean_inc_ref(x_26); +x_47 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_26, x_44, x_46); +x_48 = lean_unsigned_to_nat(2u); +x_49 = lean_array_get(x_41, x_47, x_48); +x_50 = l_Lean_Expr_cleanupAnnotations(x_49); +x_51 = l_Lean_Expr_isApp(x_50); +if (x_51 == 0) +{ +lean_dec_ref(x_50); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_27 = x_7; +x_28 = x_8; +x_29 = x_9; +x_30 = x_10; +x_31 = x_11; +x_32 = x_12; +x_33 = x_25; +goto block_40; +} +else +{ +lean_object* x_52; lean_object* x_53; uint8_t x_54; +x_52 = lean_ctor_get(x_50, 1); +lean_inc_ref(x_52); +x_53 = l_Lean_Expr_appFnCleanup___redArg(x_50); +x_54 = l_Lean_Expr_isApp(x_53); +if (x_54 == 0) +{ +lean_dec_ref(x_53); +lean_dec_ref(x_52); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_27 = x_7; +x_28 = x_8; +x_29 = x_9; +x_30 = x_10; +x_31 = x_11; +x_32 = x_12; +x_33 = x_25; +goto block_40; +} +else +{ +lean_object* x_55; lean_object* x_56; uint8_t x_57; +x_55 = lean_ctor_get(x_53, 1); +lean_inc_ref(x_55); +x_56 = l_Lean_Expr_appFnCleanup___redArg(x_53); +x_57 = l_Lean_Expr_isApp(x_56); +if (x_57 == 0) +{ +lean_dec_ref(x_56); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_27 = x_7; +x_28 = x_8; +x_29 = x_9; +x_30 = x_10; +x_31 = x_11; +x_32 = x_12; +x_33 = x_25; +goto block_40; +} +else +{ +lean_object* x_58; lean_object* x_59; uint8_t x_60; +x_58 = lean_ctor_get(x_56, 1); +lean_inc_ref(x_58); +x_59 = l_Lean_Expr_appFnCleanup___redArg(x_56); +x_60 = l_Lean_Expr_isApp(x_59); +if (x_60 == 0) +{ +lean_dec_ref(x_59); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_27 = x_7; +x_28 = x_8; +x_29 = x_9; +x_30 = x_10; +x_31 = x_11; +x_32 = x_12; +x_33 = x_25; +goto block_40; +} +else +{ +lean_object* x_61; lean_object* x_62; uint8_t x_63; +x_61 = lean_ctor_get(x_59, 1); +lean_inc_ref(x_61); +x_62 = l_Lean_Expr_appFnCleanup___redArg(x_59); +x_63 = l_Lean_Expr_isApp(x_62); +if (x_63 == 0) +{ +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_27 = x_7; +x_28 = x_8; +x_29 = x_9; +x_30 = x_10; +x_31 = x_11; +x_32 = x_12; +x_33 = x_25; +goto block_40; +} +else +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; uint8_t x_69; +x_64 = lean_ctor_get(x_62, 1); +lean_inc_ref(x_64); +x_65 = l_Lean_Expr_appFnCleanup___redArg(x_62); +x_66 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; +x_67 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_68 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__6; +x_69 = l_Lean_Expr_isConstOf(x_65, x_68); +if (x_69 == 0) +{ +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_27 = x_7; +x_28 = x_8; +x_29 = x_9; +x_30 = x_10; +x_31 = x_11; +x_32 = x_12; +x_33 = x_25; +goto block_40; +} +else +{ +lean_object* x_70; lean_object* x_71; +lean_dec_ref(x_26); +x_70 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__0; +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc_ref(x_7); +x_71 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7(x_70, x_7, x_8, x_9, x_10, x_11, x_12, x_25); +if (lean_obj_tag(x_71) == 0) +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; uint8_t x_283; +x_72 = lean_ctor_get(x_71, 0); +lean_inc(x_72); +x_73 = lean_ctor_get(x_71, 1); +lean_inc(x_73); +lean_dec_ref(x_71); +x_74 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__0___boxed), 8, 0); +lean_inc_ref(x_2); +x_75 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__1___boxed), 9, 1); +lean_closure_set(x_75, 0, x_2); +x_76 = lean_box(x_69); +lean_inc_ref(x_5); +x_77 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__2___boxed), 11, 2); +lean_closure_set(x_77, 0, x_5); +lean_closure_set(x_77, 1, x_76); +x_283 = lean_unbox(x_72); +lean_dec(x_72); +if (x_283 == 0) +{ +x_78 = x_7; +x_79 = x_8; +x_80 = x_9; +x_81 = x_10; +x_82 = x_11; +x_83 = x_12; +x_84 = x_73; +goto block_282; +} +else +{ +lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; +x_284 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__8; +lean_inc_ref(x_2); +x_285 = l_Lean_MessageData_ofExpr(x_2); +x_286 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_286, 0, x_284); +lean_ctor_set(x_286, 1, x_285); +x_287 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__10; +x_288 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_288, 0, x_286); +lean_ctor_set(x_288, 1, x_287); +x_289 = l_Lean_Expr_getAppFn(x_52); +x_290 = l_Lean_MessageData_ofExpr(x_289); +x_291 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_291, 0, x_288); +lean_ctor_set(x_291, 1, x_290); +x_292 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_293 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_293, 0, x_291); +lean_ctor_set(x_293, 1, x_292); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc_ref(x_7); +x_294 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14(x_70, x_293, x_7, x_8, x_9, x_10, x_11, x_12, x_73); +if (lean_obj_tag(x_294) == 0) +{ +lean_object* x_295; +x_295 = lean_ctor_get(x_294, 1); +lean_inc(x_295); +lean_dec_ref(x_294); +x_78 = x_7; +x_79 = x_8; +x_80 = x_9; +x_81 = x_10; +x_82 = x_11; +x_83 = x_12; +x_84 = x_295; +goto block_282; +} +else +{ +uint8_t x_296; +lean_dec_ref(x_77); +lean_dec_ref(x_75); +lean_dec_ref(x_74); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_47); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_296 = !lean_is_exclusive(x_294); +if (x_296 == 0) +{ +return x_294; +} +else +{ +lean_object* x_297; lean_object* x_298; lean_object* x_299; +x_297 = lean_ctor_get(x_294, 0); +x_298 = lean_ctor_get(x_294, 1); +lean_inc(x_298); +lean_inc(x_297); +lean_dec(x_294); +x_299 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_299, 0, x_297); +lean_ctor_set(x_299, 1, x_298); +return x_299; +} +} +} +block_282: +{ +lean_object* x_85; +lean_inc_ref(x_5); +x_85 = l_Lean_Elab_Tactic_Do_SplitInfo_resTy(x_5); +if (lean_obj_tag(x_85) == 0) +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; +lean_dec_ref(x_77); +lean_dec_ref(x_75); +lean_dec_ref(x_74); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_86 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__1; +x_87 = l_Lean_MessageData_ofExpr(x_52); +x_88 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_88, 0, x_86); +lean_ctor_set(x_88, 1, x_87); +x_89 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__3; +x_90 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_90, 0, x_88); +lean_ctor_set(x_90, 1, x_89); +x_91 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_90, x_78, x_79, x_80, x_81, x_82, x_83, x_84); +lean_dec(x_79); +return x_91; +} +else +{ +uint8_t x_92; +lean_dec_ref(x_52); +x_92 = !lean_is_exclusive(x_85); +if (x_92 == 0) +{ +lean_object* x_93; lean_object* x_94; +x_93 = lean_ctor_get(x_85, 0); +x_94 = l_Lean_Expr_constLevels_x21(x_65); +if (lean_obj_tag(x_94) == 0) +{ +lean_free_object(x_85); +lean_dec(x_93); +lean_dec_ref(x_77); +lean_dec_ref(x_75); +lean_dec_ref(x_74); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_14 = x_78; +x_15 = x_79; +x_16 = x_80; +x_17 = x_81; +x_18 = x_82; +x_19 = x_83; +x_20 = x_84; +goto block_23; +} +else +{ +lean_object* x_95; +x_95 = lean_ctor_get(x_94, 1); +lean_inc(x_95); +if (lean_obj_tag(x_95) == 0) +{ +lean_dec_ref(x_94); +lean_free_object(x_85); +lean_dec(x_93); +lean_dec_ref(x_77); +lean_dec_ref(x_75); +lean_dec_ref(x_74); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_14 = x_78; +x_15 = x_79; +x_16 = x_80; +x_17 = x_81; +x_18 = x_82; +x_19 = x_83; +x_20 = x_84; +goto block_23; +} +else +{ +uint8_t x_96; +x_96 = !lean_is_exclusive(x_95); +if (x_96 == 0) +{ +lean_object* x_97; lean_object* x_98; +x_97 = lean_ctor_get(x_95, 1); +x_98 = lean_ctor_get(x_95, 0); +lean_dec(x_98); +if (lean_obj_tag(x_97) == 0) +{ +lean_object* x_99; lean_object* x_100; +x_99 = lean_ctor_get(x_94, 0); +lean_inc(x_99); +lean_dec_ref(x_94); +lean_inc(x_83); +lean_inc_ref(x_82); +lean_inc(x_81); +lean_inc_ref(x_80); +lean_inc_ref(x_78); +x_100 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_75, x_78, x_79, x_80, x_81, x_82, x_83, x_84); +if (lean_obj_tag(x_100) == 0) +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; +x_101 = lean_ctor_get(x_100, 0); +lean_inc(x_101); +x_102 = lean_ctor_get(x_100, 1); +lean_inc(x_102); +lean_dec_ref(x_100); +lean_inc(x_101); +x_103 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__3___boxed), 10, 2); +lean_closure_set(x_103, 0, x_101); +lean_closure_set(x_103, 1, x_93); +lean_inc(x_83); +lean_inc_ref(x_82); +lean_inc(x_81); +lean_inc_ref(x_80); +lean_inc_ref(x_78); +x_104 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_103, x_78, x_79, x_80, x_81, x_82, x_83, x_102); +if (lean_obj_tag(x_104) == 0) +{ +lean_object* x_105; lean_object* x_106; uint8_t x_107; lean_object* x_108; +x_105 = lean_ctor_get(x_104, 0); +lean_inc(x_105); +x_106 = lean_ctor_get(x_104, 1); +lean_inc(x_106); +lean_dec_ref(x_104); +lean_inc(x_105); +lean_ctor_set(x_85, 0, x_105); +x_107 = 0; +lean_inc(x_83); +lean_inc_ref(x_82); +lean_inc(x_81); +lean_inc_ref(x_80); +lean_inc(x_79); +lean_inc_ref(x_78); +lean_inc_ref(x_85); +lean_inc(x_101); +x_108 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(x_101, x_85, x_77, x_107, x_107, x_78, x_79, x_80, x_81, x_82, x_83, x_106); +if (lean_obj_tag(x_108) == 0) +{ +lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_109 = lean_ctor_get(x_108, 0); +lean_inc(x_109); +x_110 = lean_ctor_get(x_108, 1); +lean_inc(x_110); +lean_dec_ref(x_108); +x_111 = lean_array_get_size(x_109); +x_112 = lean_unsigned_to_nat(0u); +x_113 = lean_mk_empty_array_with_capacity(x_111); +lean_inc(x_83); +lean_inc_ref(x_82); +lean_inc(x_81); +lean_inc_ref(x_80); +lean_inc_ref(x_78); +lean_inc(x_6); +x_114 = l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__2___redArg(x_6, x_109, x_111, x_112, x_113, x_78, x_79, x_80, x_81, x_82, x_83, x_110); +lean_dec(x_109); +if (lean_obj_tag(x_114) == 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_ref(x_114); +x_117 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__9; +lean_inc(x_99); +lean_ctor_set(x_95, 0, x_99); +lean_inc_ref(x_95); +x_118 = l_Lean_Expr_const___override(x_117, x_95); +lean_inc_ref(x_61); +x_119 = l_Lean_Expr_app___override(x_118, x_61); +x_120 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__4___boxed), 14, 13); +lean_closure_set(x_120, 0, x_65); +lean_closure_set(x_120, 1, x_64); +lean_closure_set(x_120, 2, x_61); +lean_closure_set(x_120, 3, x_58); +lean_closure_set(x_120, 4, x_55); +lean_closure_set(x_120, 5, x_47); +lean_closure_set(x_120, 6, x_48); +lean_closure_set(x_120, 7, x_112); +lean_closure_set(x_120, 8, x_66); +lean_closure_set(x_120, 9, x_67); +lean_closure_set(x_120, 10, x_95); +lean_closure_set(x_120, 11, x_99); +lean_closure_set(x_120, 12, x_119); +x_121 = lean_box(x_107); +x_122 = lean_box(x_69); +lean_inc(x_6); +lean_inc_ref(x_1); +lean_inc_ref(x_2); +lean_inc_ref(x_5); +lean_inc(x_115); +x_123 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__7___boxed), 20, 11); +lean_closure_set(x_123, 0, x_41); +lean_closure_set(x_123, 1, x_115); +lean_closure_set(x_123, 2, x_5); +lean_closure_set(x_123, 3, x_42); +lean_closure_set(x_123, 4, x_121); +lean_closure_set(x_123, 5, x_2); +lean_closure_set(x_123, 6, x_120); +lean_closure_set(x_123, 7, x_1); +lean_closure_set(x_123, 8, x_6); +lean_closure_set(x_123, 9, x_122); +lean_closure_set(x_123, 10, x_3); +lean_inc(x_83); +lean_inc_ref(x_82); +lean_inc(x_81); +lean_inc_ref(x_80); +lean_inc(x_79); +lean_inc_ref(x_78); +x_124 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(x_101, x_85, x_123, x_107, x_107, x_78, x_79, x_80, x_81, x_82, x_83, x_116); +if (lean_obj_tag(x_124) == 0) +{ +lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; +x_125 = lean_ctor_get(x_124, 0); +lean_inc(x_125); +x_126 = lean_ctor_get(x_124, 1); +lean_inc(x_126); +lean_dec_ref(x_124); +x_127 = lean_ctor_get(x_125, 0); +lean_inc(x_127); +x_128 = lean_ctor_get(x_125, 1); +lean_inc(x_128); +lean_dec(x_125); +x_129 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__6; +lean_inc(x_83); +lean_inc_ref(x_82); +lean_inc(x_81); +lean_inc_ref(x_80); +lean_inc_ref(x_78); +x_130 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_129, x_78, x_79, x_80, x_81, x_82, x_83, x_126); +if (lean_obj_tag(x_130) == 0) +{ +lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; uint8_t x_135; lean_object* x_136; +x_131 = lean_ctor_get(x_130, 0); +lean_inc(x_131); +x_132 = lean_ctor_get(x_130, 1); +lean_inc(x_132); +lean_dec_ref(x_130); +x_133 = lean_box(x_69); +x_134 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__11___boxed), 19, 11); +lean_closure_set(x_134, 0, x_74); +lean_closure_set(x_134, 1, x_41); +lean_closure_set(x_134, 2, x_115); +lean_closure_set(x_134, 3, x_105); +lean_closure_set(x_134, 4, x_2); +lean_closure_set(x_134, 5, x_1); +lean_closure_set(x_134, 6, x_4); +lean_closure_set(x_134, 7, x_5); +lean_closure_set(x_134, 8, x_6); +lean_closure_set(x_134, 9, x_45); +lean_closure_set(x_134, 10, x_133); +x_135 = 1; +x_136 = l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__0___redArg(x_131, x_128, x_127, x_134, x_107, x_135, x_78, x_79, x_80, x_81, x_82, x_83, x_132); +return x_136; +} +else +{ +uint8_t x_137; +lean_dec(x_128); +lean_dec(x_127); +lean_dec(x_115); +lean_dec(x_105); +lean_dec(x_83); +lean_dec_ref(x_82); +lean_dec(x_81); +lean_dec_ref(x_80); +lean_dec(x_79); +lean_dec_ref(x_78); +lean_dec_ref(x_74); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_137 = !lean_is_exclusive(x_130); +if (x_137 == 0) +{ +return x_130; +} +else +{ +lean_object* x_138; lean_object* x_139; lean_object* x_140; +x_138 = lean_ctor_get(x_130, 0); +x_139 = lean_ctor_get(x_130, 1); +lean_inc(x_139); +lean_inc(x_138); +lean_dec(x_130); +x_140 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_140, 0, x_138); +lean_ctor_set(x_140, 1, x_139); +return x_140; +} +} +} +else +{ +uint8_t x_141; +lean_dec(x_115); +lean_dec(x_105); +lean_dec(x_83); +lean_dec_ref(x_82); +lean_dec(x_81); +lean_dec_ref(x_80); +lean_dec(x_79); +lean_dec_ref(x_78); +lean_dec_ref(x_74); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_141 = !lean_is_exclusive(x_124); +if (x_141 == 0) +{ +return x_124; +} +else +{ +lean_object* x_142; lean_object* x_143; lean_object* x_144; +x_142 = lean_ctor_get(x_124, 0); +x_143 = lean_ctor_get(x_124, 1); +lean_inc(x_143); +lean_inc(x_142); +lean_dec(x_124); +x_144 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_144, 0, x_142); +lean_ctor_set(x_144, 1, x_143); +return x_144; +} +} +} +else +{ +uint8_t x_145; +lean_dec_ref(x_85); +lean_dec(x_105); +lean_dec(x_101); +lean_dec(x_99); +lean_free_object(x_95); +lean_dec(x_83); +lean_dec_ref(x_82); +lean_dec(x_81); +lean_dec_ref(x_80); +lean_dec(x_79); +lean_dec_ref(x_78); +lean_dec_ref(x_74); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_145 = !lean_is_exclusive(x_114); +if (x_145 == 0) +{ +return x_114; +} +else +{ +lean_object* x_146; lean_object* x_147; lean_object* x_148; +x_146 = lean_ctor_get(x_114, 0); +x_147 = lean_ctor_get(x_114, 1); +lean_inc(x_147); +lean_inc(x_146); +lean_dec(x_114); +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; +} +} +} +else +{ +uint8_t x_149; +lean_dec_ref(x_85); +lean_dec(x_105); +lean_dec(x_101); +lean_dec(x_99); +lean_free_object(x_95); +lean_dec(x_83); +lean_dec_ref(x_82); +lean_dec(x_81); +lean_dec_ref(x_80); +lean_dec(x_79); +lean_dec_ref(x_78); +lean_dec_ref(x_74); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_149 = !lean_is_exclusive(x_108); +if (x_149 == 0) +{ +return x_108; +} +else +{ +lean_object* x_150; lean_object* x_151; lean_object* x_152; +x_150 = lean_ctor_get(x_108, 0); +x_151 = lean_ctor_get(x_108, 1); +lean_inc(x_151); +lean_inc(x_150); +lean_dec(x_108); +x_152 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_152, 0, x_150); +lean_ctor_set(x_152, 1, x_151); +return x_152; +} +} +} +else +{ +uint8_t x_153; +lean_dec(x_101); +lean_dec(x_99); +lean_free_object(x_95); +lean_free_object(x_85); +lean_dec(x_83); +lean_dec_ref(x_82); +lean_dec(x_81); +lean_dec_ref(x_80); +lean_dec(x_79); +lean_dec_ref(x_78); +lean_dec_ref(x_77); +lean_dec_ref(x_74); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_153 = !lean_is_exclusive(x_104); +if (x_153 == 0) +{ +return x_104; +} +else +{ +lean_object* x_154; lean_object* x_155; lean_object* x_156; +x_154 = lean_ctor_get(x_104, 0); +x_155 = lean_ctor_get(x_104, 1); +lean_inc(x_155); +lean_inc(x_154); +lean_dec(x_104); +x_156 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_156, 0, x_154); +lean_ctor_set(x_156, 1, x_155); +return x_156; +} +} +} +else +{ +lean_dec(x_99); +lean_free_object(x_95); +lean_free_object(x_85); +lean_dec(x_93); +lean_dec(x_83); +lean_dec_ref(x_82); +lean_dec(x_81); +lean_dec_ref(x_80); +lean_dec(x_79); +lean_dec_ref(x_78); +lean_dec_ref(x_77); +lean_dec_ref(x_74); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +return x_100; +} +} +else +{ +lean_free_object(x_95); +lean_dec_ref(x_97); +lean_dec_ref(x_94); +lean_free_object(x_85); +lean_dec(x_93); +lean_dec_ref(x_77); +lean_dec_ref(x_75); +lean_dec_ref(x_74); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_14 = x_78; +x_15 = x_79; +x_16 = x_80; +x_17 = x_81; +x_18 = x_82; +x_19 = x_83; +x_20 = x_84; +goto block_23; +} +} +else +{ +lean_object* x_157; +x_157 = lean_ctor_get(x_95, 1); +lean_inc(x_157); +lean_dec(x_95); +if (lean_obj_tag(x_157) == 0) +{ +lean_object* x_158; lean_object* x_159; +x_158 = lean_ctor_get(x_94, 0); +lean_inc(x_158); +lean_dec_ref(x_94); +lean_inc(x_83); +lean_inc_ref(x_82); +lean_inc(x_81); +lean_inc_ref(x_80); +lean_inc_ref(x_78); +x_159 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_75, x_78, x_79, x_80, x_81, x_82, x_83, x_84); +if (lean_obj_tag(x_159) == 0) +{ +lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_160 = lean_ctor_get(x_159, 0); +lean_inc(x_160); +x_161 = lean_ctor_get(x_159, 1); +lean_inc(x_161); +lean_dec_ref(x_159); +lean_inc(x_160); +x_162 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__3___boxed), 10, 2); +lean_closure_set(x_162, 0, x_160); +lean_closure_set(x_162, 1, x_93); +lean_inc(x_83); +lean_inc_ref(x_82); +lean_inc(x_81); +lean_inc_ref(x_80); +lean_inc_ref(x_78); +x_163 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_162, x_78, x_79, x_80, x_81, x_82, x_83, x_161); +if (lean_obj_tag(x_163) == 0) +{ +lean_object* x_164; lean_object* x_165; uint8_t x_166; lean_object* x_167; +x_164 = lean_ctor_get(x_163, 0); +lean_inc(x_164); +x_165 = lean_ctor_get(x_163, 1); +lean_inc(x_165); +lean_dec_ref(x_163); +lean_inc(x_164); +lean_ctor_set(x_85, 0, x_164); +x_166 = 0; +lean_inc(x_83); +lean_inc_ref(x_82); +lean_inc(x_81); +lean_inc_ref(x_80); +lean_inc(x_79); +lean_inc_ref(x_78); +lean_inc_ref(x_85); +lean_inc(x_160); +x_167 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(x_160, x_85, x_77, x_166, x_166, x_78, x_79, x_80, x_81, x_82, x_83, x_165); +if (lean_obj_tag(x_167) == 0) +{ +lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; +x_168 = lean_ctor_get(x_167, 0); +lean_inc(x_168); +x_169 = lean_ctor_get(x_167, 1); +lean_inc(x_169); +lean_dec_ref(x_167); +x_170 = lean_array_get_size(x_168); +x_171 = lean_unsigned_to_nat(0u); +x_172 = lean_mk_empty_array_with_capacity(x_170); +lean_inc(x_83); +lean_inc_ref(x_82); +lean_inc(x_81); +lean_inc_ref(x_80); +lean_inc_ref(x_78); +lean_inc(x_6); +x_173 = l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__2___redArg(x_6, x_168, x_170, x_171, x_172, x_78, x_79, x_80, x_81, x_82, x_83, x_169); +lean_dec(x_168); +if (lean_obj_tag(x_173) == 0) +{ +lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; +x_174 = lean_ctor_get(x_173, 0); +lean_inc(x_174); +x_175 = lean_ctor_get(x_173, 1); +lean_inc(x_175); +lean_dec_ref(x_173); +x_176 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__9; +lean_inc(x_158); +x_177 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_177, 0, x_158); +lean_ctor_set(x_177, 1, x_157); +lean_inc_ref(x_177); +x_178 = l_Lean_Expr_const___override(x_176, x_177); +lean_inc_ref(x_61); +x_179 = l_Lean_Expr_app___override(x_178, x_61); +x_180 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__4___boxed), 14, 13); +lean_closure_set(x_180, 0, x_65); +lean_closure_set(x_180, 1, x_64); +lean_closure_set(x_180, 2, x_61); +lean_closure_set(x_180, 3, x_58); +lean_closure_set(x_180, 4, x_55); +lean_closure_set(x_180, 5, x_47); +lean_closure_set(x_180, 6, x_48); +lean_closure_set(x_180, 7, x_171); +lean_closure_set(x_180, 8, x_66); +lean_closure_set(x_180, 9, x_67); +lean_closure_set(x_180, 10, x_177); +lean_closure_set(x_180, 11, x_158); +lean_closure_set(x_180, 12, x_179); +x_181 = lean_box(x_166); +x_182 = lean_box(x_69); +lean_inc(x_6); +lean_inc_ref(x_1); +lean_inc_ref(x_2); +lean_inc_ref(x_5); +lean_inc(x_174); +x_183 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__7___boxed), 20, 11); +lean_closure_set(x_183, 0, x_41); +lean_closure_set(x_183, 1, x_174); +lean_closure_set(x_183, 2, x_5); +lean_closure_set(x_183, 3, x_42); +lean_closure_set(x_183, 4, x_181); +lean_closure_set(x_183, 5, x_2); +lean_closure_set(x_183, 6, x_180); +lean_closure_set(x_183, 7, x_1); +lean_closure_set(x_183, 8, x_6); +lean_closure_set(x_183, 9, x_182); +lean_closure_set(x_183, 10, x_3); +lean_inc(x_83); +lean_inc_ref(x_82); +lean_inc(x_81); +lean_inc_ref(x_80); +lean_inc(x_79); +lean_inc_ref(x_78); +x_184 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(x_160, x_85, x_183, x_166, x_166, x_78, x_79, x_80, x_81, x_82, x_83, x_175); +if (lean_obj_tag(x_184) == 0) +{ +lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; +x_185 = lean_ctor_get(x_184, 0); +lean_inc(x_185); +x_186 = lean_ctor_get(x_184, 1); +lean_inc(x_186); +lean_dec_ref(x_184); +x_187 = lean_ctor_get(x_185, 0); +lean_inc(x_187); +x_188 = lean_ctor_get(x_185, 1); +lean_inc(x_188); +lean_dec(x_185); +x_189 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__6; +lean_inc(x_83); +lean_inc_ref(x_82); +lean_inc(x_81); +lean_inc_ref(x_80); +lean_inc_ref(x_78); +x_190 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_189, x_78, x_79, x_80, x_81, x_82, x_83, x_186); +if (lean_obj_tag(x_190) == 0) +{ +lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; uint8_t x_195; lean_object* x_196; +x_191 = lean_ctor_get(x_190, 0); +lean_inc(x_191); +x_192 = lean_ctor_get(x_190, 1); +lean_inc(x_192); +lean_dec_ref(x_190); +x_193 = lean_box(x_69); +x_194 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__11___boxed), 19, 11); +lean_closure_set(x_194, 0, x_74); +lean_closure_set(x_194, 1, x_41); +lean_closure_set(x_194, 2, x_174); +lean_closure_set(x_194, 3, x_164); +lean_closure_set(x_194, 4, x_2); +lean_closure_set(x_194, 5, x_1); +lean_closure_set(x_194, 6, x_4); +lean_closure_set(x_194, 7, x_5); +lean_closure_set(x_194, 8, x_6); +lean_closure_set(x_194, 9, x_45); +lean_closure_set(x_194, 10, x_193); +x_195 = 1; +x_196 = l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__0___redArg(x_191, x_188, x_187, x_194, x_166, x_195, x_78, x_79, x_80, x_81, x_82, x_83, x_192); +return x_196; +} +else +{ +lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; +lean_dec(x_188); +lean_dec(x_187); +lean_dec(x_174); +lean_dec(x_164); +lean_dec(x_83); +lean_dec_ref(x_82); +lean_dec(x_81); +lean_dec_ref(x_80); +lean_dec(x_79); +lean_dec_ref(x_78); +lean_dec_ref(x_74); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_197 = lean_ctor_get(x_190, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_190, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_190)) { + lean_ctor_release(x_190, 0); + lean_ctor_release(x_190, 1); + x_199 = x_190; +} else { + lean_dec_ref(x_190); + x_199 = lean_box(0); +} +if (lean_is_scalar(x_199)) { + x_200 = lean_alloc_ctor(1, 2, 0); +} else { + x_200 = x_199; +} +lean_ctor_set(x_200, 0, x_197); +lean_ctor_set(x_200, 1, x_198); +return x_200; +} +} +else +{ +lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; +lean_dec(x_174); +lean_dec(x_164); +lean_dec(x_83); +lean_dec_ref(x_82); +lean_dec(x_81); +lean_dec_ref(x_80); +lean_dec(x_79); +lean_dec_ref(x_78); +lean_dec_ref(x_74); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_201 = lean_ctor_get(x_184, 0); +lean_inc(x_201); +x_202 = lean_ctor_get(x_184, 1); +lean_inc(x_202); +if (lean_is_exclusive(x_184)) { + lean_ctor_release(x_184, 0); + lean_ctor_release(x_184, 1); + x_203 = x_184; +} else { + lean_dec_ref(x_184); + x_203 = lean_box(0); +} +if (lean_is_scalar(x_203)) { + x_204 = lean_alloc_ctor(1, 2, 0); +} else { + x_204 = x_203; +} +lean_ctor_set(x_204, 0, x_201); +lean_ctor_set(x_204, 1, x_202); +return x_204; +} +} +else +{ +lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; +lean_dec_ref(x_85); +lean_dec(x_164); +lean_dec(x_160); +lean_dec(x_158); +lean_dec(x_83); +lean_dec_ref(x_82); +lean_dec(x_81); +lean_dec_ref(x_80); +lean_dec(x_79); +lean_dec_ref(x_78); +lean_dec_ref(x_74); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_205 = lean_ctor_get(x_173, 0); +lean_inc(x_205); +x_206 = lean_ctor_get(x_173, 1); +lean_inc(x_206); +if (lean_is_exclusive(x_173)) { + lean_ctor_release(x_173, 0); + lean_ctor_release(x_173, 1); + x_207 = x_173; +} else { + lean_dec_ref(x_173); + x_207 = lean_box(0); +} +if (lean_is_scalar(x_207)) { + x_208 = lean_alloc_ctor(1, 2, 0); +} else { + x_208 = x_207; +} +lean_ctor_set(x_208, 0, x_205); +lean_ctor_set(x_208, 1, x_206); +return x_208; +} +} +else +{ +lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; +lean_dec_ref(x_85); +lean_dec(x_164); +lean_dec(x_160); +lean_dec(x_158); +lean_dec(x_83); +lean_dec_ref(x_82); +lean_dec(x_81); +lean_dec_ref(x_80); +lean_dec(x_79); +lean_dec_ref(x_78); +lean_dec_ref(x_74); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_209 = lean_ctor_get(x_167, 0); +lean_inc(x_209); +x_210 = lean_ctor_get(x_167, 1); +lean_inc(x_210); +if (lean_is_exclusive(x_167)) { + lean_ctor_release(x_167, 0); + lean_ctor_release(x_167, 1); + x_211 = x_167; +} else { + lean_dec_ref(x_167); + x_211 = lean_box(0); +} +if (lean_is_scalar(x_211)) { + x_212 = lean_alloc_ctor(1, 2, 0); +} else { + x_212 = x_211; +} +lean_ctor_set(x_212, 0, x_209); +lean_ctor_set(x_212, 1, x_210); +return x_212; +} +} +else +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; +lean_dec(x_160); +lean_dec(x_158); +lean_free_object(x_85); +lean_dec(x_83); +lean_dec_ref(x_82); +lean_dec(x_81); +lean_dec_ref(x_80); +lean_dec(x_79); +lean_dec_ref(x_78); +lean_dec_ref(x_77); +lean_dec_ref(x_74); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_213 = lean_ctor_get(x_163, 0); +lean_inc(x_213); +x_214 = lean_ctor_get(x_163, 1); +lean_inc(x_214); +if (lean_is_exclusive(x_163)) { + lean_ctor_release(x_163, 0); + lean_ctor_release(x_163, 1); + x_215 = x_163; +} else { + lean_dec_ref(x_163); + x_215 = lean_box(0); +} +if (lean_is_scalar(x_215)) { + x_216 = lean_alloc_ctor(1, 2, 0); +} else { + x_216 = x_215; +} +lean_ctor_set(x_216, 0, x_213); +lean_ctor_set(x_216, 1, x_214); +return x_216; +} +} +else +{ +lean_dec(x_158); +lean_free_object(x_85); +lean_dec(x_93); +lean_dec(x_83); +lean_dec_ref(x_82); +lean_dec(x_81); +lean_dec_ref(x_80); +lean_dec(x_79); +lean_dec_ref(x_78); +lean_dec_ref(x_77); +lean_dec_ref(x_74); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +return x_159; +} +} +else +{ +lean_dec_ref(x_157); +lean_dec_ref(x_94); +lean_free_object(x_85); +lean_dec(x_93); +lean_dec_ref(x_77); +lean_dec_ref(x_75); +lean_dec_ref(x_74); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_14 = x_78; +x_15 = x_79; +x_16 = x_80; +x_17 = x_81; +x_18 = x_82; +x_19 = x_83; +x_20 = x_84; +goto block_23; +} +} +} +} +} +else +{ +lean_object* x_217; lean_object* x_218; +x_217 = lean_ctor_get(x_85, 0); +lean_inc(x_217); +lean_dec(x_85); +x_218 = l_Lean_Expr_constLevels_x21(x_65); +if (lean_obj_tag(x_218) == 0) +{ +lean_dec(x_217); +lean_dec_ref(x_77); +lean_dec_ref(x_75); +lean_dec_ref(x_74); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_14 = x_78; +x_15 = x_79; +x_16 = x_80; +x_17 = x_81; +x_18 = x_82; +x_19 = x_83; +x_20 = x_84; +goto block_23; +} +else +{ +lean_object* x_219; +x_219 = lean_ctor_get(x_218, 1); +lean_inc(x_219); +if (lean_obj_tag(x_219) == 0) +{ +lean_dec_ref(x_218); +lean_dec(x_217); +lean_dec_ref(x_77); +lean_dec_ref(x_75); +lean_dec_ref(x_74); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_14 = x_78; +x_15 = x_79; +x_16 = x_80; +x_17 = x_81; +x_18 = x_82; +x_19 = x_83; +x_20 = x_84; +goto block_23; +} +else +{ +lean_object* x_220; lean_object* x_221; +x_220 = lean_ctor_get(x_219, 1); +lean_inc(x_220); +if (lean_is_exclusive(x_219)) { + lean_ctor_release(x_219, 0); + lean_ctor_release(x_219, 1); + x_221 = x_219; +} else { + lean_dec_ref(x_219); + x_221 = lean_box(0); +} +if (lean_obj_tag(x_220) == 0) +{ +lean_object* x_222; lean_object* x_223; +x_222 = lean_ctor_get(x_218, 0); +lean_inc(x_222); +lean_dec_ref(x_218); +lean_inc(x_83); +lean_inc_ref(x_82); +lean_inc(x_81); +lean_inc_ref(x_80); +lean_inc_ref(x_78); +x_223 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_75, x_78, x_79, x_80, x_81, x_82, x_83, x_84); +if (lean_obj_tag(x_223) == 0) +{ +lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; +x_224 = lean_ctor_get(x_223, 0); +lean_inc(x_224); +x_225 = lean_ctor_get(x_223, 1); +lean_inc(x_225); +lean_dec_ref(x_223); +lean_inc(x_224); +x_226 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__3___boxed), 10, 2); +lean_closure_set(x_226, 0, x_224); +lean_closure_set(x_226, 1, x_217); +lean_inc(x_83); +lean_inc_ref(x_82); +lean_inc(x_81); +lean_inc_ref(x_80); +lean_inc_ref(x_78); +x_227 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_226, x_78, x_79, x_80, x_81, x_82, x_83, x_225); +if (lean_obj_tag(x_227) == 0) +{ +lean_object* x_228; lean_object* x_229; lean_object* x_230; uint8_t x_231; lean_object* x_232; +x_228 = lean_ctor_get(x_227, 0); +lean_inc(x_228); +x_229 = lean_ctor_get(x_227, 1); +lean_inc(x_229); +lean_dec_ref(x_227); +lean_inc(x_228); +x_230 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_230, 0, x_228); +x_231 = 0; +lean_inc(x_83); +lean_inc_ref(x_82); +lean_inc(x_81); +lean_inc_ref(x_80); +lean_inc(x_79); +lean_inc_ref(x_78); +lean_inc_ref(x_230); +lean_inc(x_224); +x_232 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(x_224, x_230, x_77, x_231, x_231, x_78, x_79, x_80, x_81, x_82, x_83, x_229); +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; +x_233 = lean_ctor_get(x_232, 0); +lean_inc(x_233); +x_234 = lean_ctor_get(x_232, 1); +lean_inc(x_234); +lean_dec_ref(x_232); +x_235 = lean_array_get_size(x_233); +x_236 = lean_unsigned_to_nat(0u); +x_237 = lean_mk_empty_array_with_capacity(x_235); +lean_inc(x_83); +lean_inc_ref(x_82); +lean_inc(x_81); +lean_inc_ref(x_80); +lean_inc_ref(x_78); +lean_inc(x_6); +x_238 = l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__2___redArg(x_6, x_233, x_235, x_236, x_237, x_78, x_79, x_80, x_81, x_82, x_83, x_234); +lean_dec(x_233); +if (lean_obj_tag(x_238) == 0) +{ +lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; +x_239 = lean_ctor_get(x_238, 0); +lean_inc(x_239); +x_240 = lean_ctor_get(x_238, 1); +lean_inc(x_240); +lean_dec_ref(x_238); +x_241 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__9; +lean_inc(x_222); +if (lean_is_scalar(x_221)) { + x_242 = lean_alloc_ctor(1, 2, 0); +} else { + x_242 = x_221; +} +lean_ctor_set(x_242, 0, x_222); +lean_ctor_set(x_242, 1, x_220); +lean_inc_ref(x_242); +x_243 = l_Lean_Expr_const___override(x_241, x_242); +lean_inc_ref(x_61); +x_244 = l_Lean_Expr_app___override(x_243, x_61); +x_245 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__4___boxed), 14, 13); +lean_closure_set(x_245, 0, x_65); +lean_closure_set(x_245, 1, x_64); +lean_closure_set(x_245, 2, x_61); +lean_closure_set(x_245, 3, x_58); +lean_closure_set(x_245, 4, x_55); +lean_closure_set(x_245, 5, x_47); +lean_closure_set(x_245, 6, x_48); +lean_closure_set(x_245, 7, x_236); +lean_closure_set(x_245, 8, x_66); +lean_closure_set(x_245, 9, x_67); +lean_closure_set(x_245, 10, x_242); +lean_closure_set(x_245, 11, x_222); +lean_closure_set(x_245, 12, x_244); +x_246 = lean_box(x_231); +x_247 = lean_box(x_69); +lean_inc(x_6); +lean_inc_ref(x_1); +lean_inc_ref(x_2); +lean_inc_ref(x_5); +lean_inc(x_239); +x_248 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__7___boxed), 20, 11); +lean_closure_set(x_248, 0, x_41); +lean_closure_set(x_248, 1, x_239); +lean_closure_set(x_248, 2, x_5); +lean_closure_set(x_248, 3, x_42); +lean_closure_set(x_248, 4, x_246); +lean_closure_set(x_248, 5, x_2); +lean_closure_set(x_248, 6, x_245); +lean_closure_set(x_248, 7, x_1); +lean_closure_set(x_248, 8, x_6); +lean_closure_set(x_248, 9, x_247); +lean_closure_set(x_248, 10, x_3); +lean_inc(x_83); +lean_inc_ref(x_82); +lean_inc(x_81); +lean_inc_ref(x_80); +lean_inc(x_79); +lean_inc_ref(x_78); +x_249 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___redArg(x_224, x_230, x_248, x_231, x_231, x_78, x_79, x_80, x_81, x_82, x_83, x_240); +if (lean_obj_tag(x_249) == 0) +{ +lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; +x_250 = lean_ctor_get(x_249, 0); +lean_inc(x_250); +x_251 = lean_ctor_get(x_249, 1); +lean_inc(x_251); +lean_dec_ref(x_249); +x_252 = lean_ctor_get(x_250, 0); +lean_inc(x_252); +x_253 = lean_ctor_get(x_250, 1); +lean_inc(x_253); +lean_dec(x_250); +x_254 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__6; +lean_inc(x_83); +lean_inc_ref(x_82); +lean_inc(x_81); +lean_inc_ref(x_80); +lean_inc_ref(x_78); +x_255 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_254, x_78, x_79, x_80, x_81, x_82, x_83, x_251); +if (lean_obj_tag(x_255) == 0) +{ +lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; uint8_t x_260; lean_object* x_261; +x_256 = lean_ctor_get(x_255, 0); +lean_inc(x_256); +x_257 = lean_ctor_get(x_255, 1); +lean_inc(x_257); +lean_dec_ref(x_255); +x_258 = lean_box(x_69); +x_259 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__11___boxed), 19, 11); +lean_closure_set(x_259, 0, x_74); +lean_closure_set(x_259, 1, x_41); +lean_closure_set(x_259, 2, x_239); +lean_closure_set(x_259, 3, x_228); +lean_closure_set(x_259, 4, x_2); +lean_closure_set(x_259, 5, x_1); +lean_closure_set(x_259, 6, x_4); +lean_closure_set(x_259, 7, x_5); +lean_closure_set(x_259, 8, x_6); +lean_closure_set(x_259, 9, x_45); +lean_closure_set(x_259, 10, x_258); +x_260 = 1; +x_261 = l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__0___redArg(x_256, x_253, x_252, x_259, x_231, x_260, x_78, x_79, x_80, x_81, x_82, x_83, x_257); +return x_261; +} +else +{ +lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; +lean_dec(x_253); +lean_dec(x_252); +lean_dec(x_239); +lean_dec(x_228); +lean_dec(x_83); +lean_dec_ref(x_82); +lean_dec(x_81); +lean_dec_ref(x_80); +lean_dec(x_79); +lean_dec_ref(x_78); +lean_dec_ref(x_74); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_262 = lean_ctor_get(x_255, 0); +lean_inc(x_262); +x_263 = lean_ctor_get(x_255, 1); +lean_inc(x_263); +if (lean_is_exclusive(x_255)) { + lean_ctor_release(x_255, 0); + lean_ctor_release(x_255, 1); + x_264 = x_255; +} else { + lean_dec_ref(x_255); + x_264 = lean_box(0); +} +if (lean_is_scalar(x_264)) { + x_265 = lean_alloc_ctor(1, 2, 0); +} else { + x_265 = x_264; +} +lean_ctor_set(x_265, 0, x_262); +lean_ctor_set(x_265, 1, x_263); +return x_265; +} +} +else +{ +lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; +lean_dec(x_239); +lean_dec(x_228); +lean_dec(x_83); +lean_dec_ref(x_82); +lean_dec(x_81); +lean_dec_ref(x_80); +lean_dec(x_79); +lean_dec_ref(x_78); +lean_dec_ref(x_74); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_266 = lean_ctor_get(x_249, 0); +lean_inc(x_266); +x_267 = lean_ctor_get(x_249, 1); +lean_inc(x_267); +if (lean_is_exclusive(x_249)) { + lean_ctor_release(x_249, 0); + lean_ctor_release(x_249, 1); + x_268 = x_249; +} else { + lean_dec_ref(x_249); + x_268 = lean_box(0); +} +if (lean_is_scalar(x_268)) { + x_269 = lean_alloc_ctor(1, 2, 0); +} else { + x_269 = x_268; +} +lean_ctor_set(x_269, 0, x_266); +lean_ctor_set(x_269, 1, x_267); +return x_269; +} +} +else +{ +lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; +lean_dec_ref(x_230); +lean_dec(x_228); +lean_dec(x_224); +lean_dec(x_222); +lean_dec(x_221); +lean_dec(x_83); +lean_dec_ref(x_82); +lean_dec(x_81); +lean_dec_ref(x_80); +lean_dec(x_79); +lean_dec_ref(x_78); +lean_dec_ref(x_74); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_270 = lean_ctor_get(x_238, 0); +lean_inc(x_270); +x_271 = lean_ctor_get(x_238, 1); +lean_inc(x_271); +if (lean_is_exclusive(x_238)) { + lean_ctor_release(x_238, 0); + lean_ctor_release(x_238, 1); + x_272 = x_238; +} else { + lean_dec_ref(x_238); + x_272 = lean_box(0); +} +if (lean_is_scalar(x_272)) { + x_273 = lean_alloc_ctor(1, 2, 0); +} else { + x_273 = x_272; +} +lean_ctor_set(x_273, 0, x_270); +lean_ctor_set(x_273, 1, x_271); +return x_273; +} +} +else +{ +lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; +lean_dec_ref(x_230); +lean_dec(x_228); +lean_dec(x_224); +lean_dec(x_222); +lean_dec(x_221); +lean_dec(x_83); +lean_dec_ref(x_82); +lean_dec(x_81); +lean_dec_ref(x_80); +lean_dec(x_79); +lean_dec_ref(x_78); +lean_dec_ref(x_74); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_274 = lean_ctor_get(x_232, 0); +lean_inc(x_274); +x_275 = lean_ctor_get(x_232, 1); +lean_inc(x_275); +if (lean_is_exclusive(x_232)) { + lean_ctor_release(x_232, 0); + lean_ctor_release(x_232, 1); + x_276 = x_232; +} else { + lean_dec_ref(x_232); + x_276 = lean_box(0); +} +if (lean_is_scalar(x_276)) { + x_277 = lean_alloc_ctor(1, 2, 0); +} else { + x_277 = x_276; +} +lean_ctor_set(x_277, 0, x_274); +lean_ctor_set(x_277, 1, x_275); +return x_277; +} +} +else +{ +lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; +lean_dec(x_224); +lean_dec(x_222); +lean_dec(x_221); +lean_dec(x_83); +lean_dec_ref(x_82); +lean_dec(x_81); +lean_dec_ref(x_80); +lean_dec(x_79); +lean_dec_ref(x_78); +lean_dec_ref(x_77); +lean_dec_ref(x_74); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_278 = lean_ctor_get(x_227, 0); +lean_inc(x_278); +x_279 = lean_ctor_get(x_227, 1); +lean_inc(x_279); +if (lean_is_exclusive(x_227)) { + lean_ctor_release(x_227, 0); + lean_ctor_release(x_227, 1); + x_280 = x_227; +} else { + lean_dec_ref(x_227); + x_280 = lean_box(0); +} +if (lean_is_scalar(x_280)) { + x_281 = lean_alloc_ctor(1, 2, 0); +} else { + x_281 = x_280; +} +lean_ctor_set(x_281, 0, x_278); +lean_ctor_set(x_281, 1, x_279); +return x_281; +} +} +else +{ +lean_dec(x_222); +lean_dec(x_221); +lean_dec(x_217); +lean_dec(x_83); +lean_dec_ref(x_82); +lean_dec(x_81); +lean_dec_ref(x_80); +lean_dec(x_79); +lean_dec_ref(x_78); +lean_dec_ref(x_77); +lean_dec_ref(x_74); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +return x_223; +} +} +else +{ +lean_dec(x_221); +lean_dec_ref(x_220); +lean_dec_ref(x_218); +lean_dec(x_217); +lean_dec_ref(x_77); +lean_dec_ref(x_75); +lean_dec_ref(x_74); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_47); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_14 = x_78; +x_15 = x_79; +x_16 = x_80; +x_17 = x_81; +x_18 = x_82; +x_19 = x_83; +x_20 = x_84; +goto block_23; +} +} +} +} +} +} +} +else +{ +uint8_t x_300; +lean_dec_ref(x_65); +lean_dec_ref(x_64); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_47); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_300 = !lean_is_exclusive(x_71); +if (x_300 == 0) +{ +return x_71; +} +else +{ +lean_object* x_301; lean_object* x_302; lean_object* x_303; +x_301 = lean_ctor_get(x_71, 0); +x_302 = lean_ctor_get(x_71, 1); +lean_inc(x_302); +lean_inc(x_301); +lean_dec(x_71); +x_303 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_303, 0, x_301); +lean_ctor_set(x_303, 1, x_302); +return x_303; +} +} +} +} +} +} +} +} +block_40: +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_34 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__3; +x_35 = l_Lean_MessageData_ofExpr(x_26); +x_36 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +x_37 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_38 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_37); +x_39 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_38, x_27, x_28, x_29, x_30, x_31, x_32, x_33); +lean_dec(x_28); +return x_39; +} +} +else +{ +uint8_t x_304; +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_304 = !lean_is_exclusive(x_24); +if (x_304 == 0) +{ +return x_24; +} +else +{ +lean_object* x_305; lean_object* x_306; lean_object* x_307; +x_305 = lean_ctor_get(x_24, 0); +x_306 = lean_ctor_get(x_24, 1); +lean_inc(x_306); +lean_inc(x_305); +lean_dec(x_24); +x_307 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_307, 0, x_305); +lean_ctor_set(x_307, 1, x_306); +return x_307; +} +} +block_23: +{ +lean_object* x_21; lean_object* x_22; +x_21 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__1; +x_22 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_21, x_14, x_15, x_16, x_17, x_18, x_19, x_20); +lean_dec(x_15); +return x_22; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x_11, x_12, x_13); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__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, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t 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; +x_12 = lean_mk_empty_array_with_capacity(x_1); +lean_inc_ref(x_4); +x_13 = lean_array_push(x_12, x_4); +x_14 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_2, x_4); +x_15 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_14); +x_16 = 0; +x_17 = 1; +x_18 = lean_box(x_16); +x_19 = lean_box(x_3); +x_20 = lean_box(x_17); +x_21 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__0___boxed), 13, 5); +lean_closure_set(x_21, 0, x_13); +lean_closure_set(x_21, 1, x_15); +lean_closure_set(x_21, 2, x_18); +lean_closure_set(x_21, 3, x_19); +lean_closure_set(x_21, 4, x_20); +x_22 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_21, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_22; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_rwIfOrMatcher(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_Simp_mkCongrArg(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_Simp_Result_mkEqMPR(x_1, x_2, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +_start: +{ +lean_object* x_17; lean_object* x_18; +lean_inc(x_8); +x_17 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__2___boxed), 10, 2); +lean_closure_set(x_17, 0, x_8); +lean_closure_set(x_17, 1, x_1); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc_ref(x_10); +x_18 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_17, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec_ref(x_18); +x_21 = lean_ctor_get(x_19, 0); +lean_inc_ref(x_21); +x_22 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_2, x_21); +x_23 = l_Lean_Name_append(x_3, x_7); +x_24 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp), 10, 3); +lean_closure_set(x_24, 0, x_4); +lean_closure_set(x_24, 1, x_22); +lean_closure_set(x_24, 2, x_23); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_25 = lean_apply_10(x_5, x_8, x_9, x_24, x_10, x_11, x_12, x_13, x_14, x_15, x_20); +if (lean_obj_tag(x_25) == 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_inc(x_27); +lean_dec_ref(x_25); +x_28 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__3___boxed), 10, 2); +lean_closure_set(x_28, 0, x_6); +lean_closure_set(x_28, 1, x_19); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc_ref(x_10); +x_29 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_28, x_10, x_11, x_12, x_13, x_14, x_15, x_27); +if (lean_obj_tag(x_29) == 0) +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_30 = lean_ctor_get(x_29, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_29, 1); +lean_inc(x_31); +lean_dec_ref(x_29); +x_32 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__4___boxed), 10, 2); +lean_closure_set(x_32, 0, x_30); +lean_closure_set(x_32, 1, x_26); +x_33 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_32, x_10, x_11, x_12, x_13, x_14, x_15, x_31); +lean_dec(x_11); +return x_33; +} +else +{ +uint8_t x_34; +lean_dec(x_26); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +x_34 = !lean_is_exclusive(x_29); +if (x_34 == 0) +{ +return x_29; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_29, 0); +x_36 = lean_ctor_get(x_29, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_29); +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_dec(x_19); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_6); +return x_25; +} +} +else +{ +uint8_t x_38; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_38 = !lean_is_exclusive(x_18); +if (x_38 == 0) +{ +return x_18; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_18, 0); +x_40 = lean_ctor_get(x_18, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_18); +x_41 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__6(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_10; +x_10 = l_Lean_Meta_reduceMatcher_x3f(x_1, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("split match: ", 13, 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__0; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___closed__0; +x_2 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__2; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_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; uint8_t x_39; x_13 = lean_ctor_get(x_2, 2); lean_inc_ref(x_13); x_14 = lean_ctor_get(x_2, 3); lean_inc_ref(x_14); -x_15 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__0___boxed), 8, 0); -x_16 = l_Lean_instInhabitedExpr; -lean_inc(x_3); +x_29 = l_Lean_instInhabitedExpr; +x_30 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg___closed__0; +x_31 = l_Lean_Expr_getAppNumArgs(x_14); +lean_inc(x_31); +x_32 = lean_mk_array(x_31, x_30); +x_33 = lean_unsigned_to_nat(1u); +x_34 = lean_nat_sub(x_31, x_33); +lean_dec(x_31); +lean_inc_ref(x_14); +x_35 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_14, x_32, x_34); +x_36 = lean_unsigned_to_nat(2u); +x_37 = lean_array_get(x_29, x_35, x_36); +x_38 = l_Lean_Expr_cleanupAnnotations(x_37); +x_39 = l_Lean_Expr_isApp(x_38); +if (x_39 == 0) +{ +lean_dec_ref(x_38); +lean_dec_ref(x_35); +lean_dec_ref(x_13); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_15 = x_6; +x_16 = x_7; +x_17 = x_8; +x_18 = x_9; +x_19 = x_10; +x_20 = x_11; +x_21 = x_12; +goto block_28; +} +else +{ +lean_object* x_40; lean_object* x_41; uint8_t x_42; +x_40 = lean_ctor_get(x_38, 1); +lean_inc_ref(x_40); +x_41 = l_Lean_Expr_appFnCleanup___redArg(x_38); +x_42 = l_Lean_Expr_isApp(x_41); +if (x_42 == 0) +{ +lean_dec_ref(x_41); +lean_dec_ref(x_40); +lean_dec_ref(x_35); +lean_dec_ref(x_13); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_15 = x_6; +x_16 = x_7; +x_17 = x_8; +x_18 = x_9; +x_19 = x_10; +x_20 = x_11; +x_21 = x_12; +goto block_28; +} +else +{ +lean_object* x_43; lean_object* x_44; uint8_t x_45; +x_43 = lean_ctor_get(x_41, 1); +lean_inc_ref(x_43); +x_44 = l_Lean_Expr_appFnCleanup___redArg(x_41); +x_45 = l_Lean_Expr_isApp(x_44); +if (x_45 == 0) +{ +lean_dec_ref(x_44); +lean_dec_ref(x_43); +lean_dec_ref(x_40); +lean_dec_ref(x_35); +lean_dec_ref(x_13); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_15 = x_6; +x_16 = x_7; +x_17 = x_8; +x_18 = x_9; +x_19 = x_10; +x_20 = x_11; +x_21 = x_12; +goto block_28; +} +else +{ +lean_object* x_46; lean_object* x_47; uint8_t x_48; +x_46 = lean_ctor_get(x_44, 1); +lean_inc_ref(x_46); +x_47 = l_Lean_Expr_appFnCleanup___redArg(x_44); +x_48 = l_Lean_Expr_isApp(x_47); +if (x_48 == 0) +{ +lean_dec_ref(x_47); +lean_dec_ref(x_46); +lean_dec_ref(x_43); +lean_dec_ref(x_40); +lean_dec_ref(x_35); +lean_dec_ref(x_13); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_15 = x_6; +x_16 = x_7; +x_17 = x_8; +x_18 = x_9; +x_19 = x_10; +x_20 = x_11; +x_21 = x_12; +goto block_28; +} +else +{ +lean_object* x_49; lean_object* x_50; uint8_t x_51; +x_49 = lean_ctor_get(x_47, 1); +lean_inc_ref(x_49); +x_50 = l_Lean_Expr_appFnCleanup___redArg(x_47); +x_51 = l_Lean_Expr_isApp(x_50); +if (x_51 == 0) +{ +lean_dec_ref(x_50); +lean_dec_ref(x_49); +lean_dec_ref(x_46); +lean_dec_ref(x_43); +lean_dec_ref(x_40); +lean_dec_ref(x_35); +lean_dec_ref(x_13); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_15 = x_6; +x_16 = x_7; +x_17 = x_8; +x_18 = x_9; +x_19 = x_10; +x_20 = x_11; +x_21 = x_12; +goto block_28; +} +else +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55; +x_52 = lean_ctor_get(x_50, 1); +lean_inc_ref(x_52); +x_53 = l_Lean_Expr_appFnCleanup___redArg(x_50); +x_54 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__6; +x_55 = l_Lean_Expr_isConstOf(x_53, x_54); +if (x_55 == 0) +{ +lean_dec_ref(x_53); +lean_dec_ref(x_52); +lean_dec_ref(x_49); +lean_dec_ref(x_46); +lean_dec_ref(x_43); +lean_dec_ref(x_40); +lean_dec_ref(x_35); +lean_dec_ref(x_13); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_15 = x_6; +x_16 = x_7; +x_17 = x_8; +x_18 = x_9; +x_19 = x_10; +x_20 = x_11; +x_21 = x_12; +goto block_28; +} +else +{ +lean_object* x_56; lean_object* x_57; +lean_dec_ref(x_14); +lean_inc_ref(x_40); +lean_inc_ref(x_3); +x_56 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_simpDiscrs_x3f___boxed), 10, 2); +lean_closure_set(x_56, 0, x_3); +lean_closure_set(x_56, 1, x_40); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_57 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_56, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_57) == 0) +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_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_58 = lean_ctor_get(x_57, 0); +lean_inc(x_58); +x_59 = lean_ctor_get(x_57, 1); +lean_inc(x_59); +lean_dec_ref(x_57); +x_60 = lean_box(x_55); lean_inc_ref(x_2); -x_17 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onFail___boxed), 9, 2); -lean_closure_set(x_17, 0, x_2); -lean_closure_set(x_17, 1, x_3); -x_18 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__0; -x_19 = l_Lean_Expr_getAppNumArgs(x_14); -lean_inc(x_19); -x_20 = lean_mk_array(x_19, x_18); -x_21 = lean_unsigned_to_nat(1u); -x_22 = lean_nat_sub(x_19, x_21); -lean_dec(x_19); -x_23 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_14, x_20, x_22); -x_24 = lean_unsigned_to_nat(2u); -x_25 = lean_array_get(x_16, x_23, x_24); -x_26 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__1___boxed), 9, 1); -lean_closure_set(x_26, 0, x_25); -x_27 = lean_unsigned_to_nat(3u); -x_28 = lean_array_get(x_16, x_23, x_27); -x_29 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___boxed), 18, 11); -lean_closure_set(x_29, 0, x_26); -lean_closure_set(x_29, 1, x_2); -lean_closure_set(x_29, 2, x_3); -lean_closure_set(x_29, 3, x_1); -lean_closure_set(x_29, 4, x_23); -lean_closure_set(x_29, 5, x_24); -lean_closure_set(x_29, 6, x_11); -lean_closure_set(x_29, 7, x_12); -lean_closure_set(x_29, 8, x_13); -lean_closure_set(x_29, 9, x_28); -lean_closure_set(x_29, 10, x_15); -x_30 = l_Lean_Elab_Tactic_Do_ifOutOfFuel___redArg(x_17, x_29, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_30; +x_61 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__1___boxed), 11, 3); +lean_closure_set(x_61, 0, x_33); +lean_closure_set(x_61, 1, x_2); +lean_closure_set(x_61, 2, x_60); +if (lean_obj_tag(x_58) == 0) +{ +lean_dec_ref(x_53); +lean_dec_ref(x_49); +lean_dec_ref(x_46); +lean_dec_ref(x_35); +lean_dec_ref(x_13); +x_117 = x_40; +x_118 = x_6; +x_119 = x_7; +x_120 = x_8; +x_121 = x_9; +x_122 = x_10; +x_123 = x_11; +x_124 = x_59; +goto block_144; +} +else +{ +lean_object* x_145; lean_object* x_146; +x_145 = lean_ctor_get(x_58, 0); +lean_inc(x_145); +lean_dec_ref(x_58); +x_146 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_7, x_59); +if (lean_obj_tag(x_146) == 0) +{ +lean_object* x_147; +x_147 = lean_ctor_get(x_145, 1); +lean_inc(x_147); +if (lean_obj_tag(x_147) == 0) +{ +lean_object* x_148; lean_object* x_149; +lean_dec_ref(x_53); +lean_dec_ref(x_49); +lean_dec_ref(x_46); +lean_dec_ref(x_40); +lean_dec_ref(x_35); +lean_dec_ref(x_13); +x_148 = lean_ctor_get(x_146, 1); +lean_inc(x_148); +lean_dec_ref(x_146); +x_149 = lean_ctor_get(x_145, 0); +lean_inc_ref(x_149); +lean_dec(x_145); +x_117 = x_149; +x_118 = x_6; +x_119 = x_7; +x_120 = x_8; +x_121 = x_9; +x_122 = x_10; +x_123 = x_11; +x_124 = x_148; +goto block_144; +} +else +{ +lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; +lean_dec_ref(x_61); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +x_150 = lean_ctor_get(x_146, 1); +lean_inc(x_150); +lean_dec_ref(x_146); +x_151 = lean_ctor_get(x_145, 0); +lean_inc_ref(x_151); +lean_dec(x_145); +x_152 = lean_ctor_get(x_147, 0); +lean_inc(x_152); +lean_dec_ref(x_147); +lean_inc_ref(x_151); +x_153 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_2, x_151); +x_154 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_1, x_153, x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_150); +if (lean_obj_tag(x_154) == 0) +{ +uint8_t x_155; +x_155 = !lean_is_exclusive(x_154); +if (x_155 == 0) +{ +lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; +x_156 = lean_ctor_get(x_154, 0); +x_157 = lean_unsigned_to_nat(3u); +x_158 = lean_array_get(x_29, x_35, x_157); +lean_dec_ref(x_35); +x_159 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__2; +x_160 = l_Lean_Expr_constLevels_x21(x_53); +lean_dec_ref(x_53); +x_161 = l_Lean_Expr_const___override(x_159, x_160); +x_162 = l_Lean_mkApp10(x_161, x_52, x_49, x_43, x_13, x_158, x_46, x_40, x_151, x_152, x_156); +lean_ctor_set(x_154, 0, x_162); +return x_154; +} +else +{ +lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; +x_163 = lean_ctor_get(x_154, 0); +x_164 = lean_ctor_get(x_154, 1); +lean_inc(x_164); +lean_inc(x_163); +lean_dec(x_154); +x_165 = lean_unsigned_to_nat(3u); +x_166 = lean_array_get(x_29, x_35, x_165); +lean_dec_ref(x_35); +x_167 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__2; +x_168 = l_Lean_Expr_constLevels_x21(x_53); +lean_dec_ref(x_53); +x_169 = l_Lean_Expr_const___override(x_167, x_168); +x_170 = l_Lean_mkApp10(x_169, x_52, x_49, x_43, x_13, x_166, x_46, x_40, x_151, x_152, x_163); +x_171 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_171, 0, x_170); +lean_ctor_set(x_171, 1, x_164); +return x_171; } } -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +else +{ +lean_dec(x_152); +lean_dec_ref(x_151); +lean_dec_ref(x_53); +lean_dec_ref(x_52); +lean_dec_ref(x_49); +lean_dec_ref(x_46); +lean_dec_ref(x_43); +lean_dec_ref(x_40); +lean_dec_ref(x_35); +lean_dec_ref(x_13); +return x_154; +} +} +} +else +{ +uint8_t x_172; +lean_dec(x_145); +lean_dec_ref(x_61); +lean_dec_ref(x_53); +lean_dec_ref(x_52); +lean_dec_ref(x_49); +lean_dec_ref(x_46); +lean_dec_ref(x_43); +lean_dec_ref(x_40); +lean_dec_ref(x_35); +lean_dec_ref(x_13); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_172 = !lean_is_exclusive(x_146); +if (x_172 == 0) +{ +return x_146; +} +else +{ +lean_object* x_173; lean_object* x_174; lean_object* x_175; +x_173 = lean_ctor_get(x_146, 0); +x_174 = lean_ctor_get(x_146, 1); +lean_inc(x_174); +lean_inc(x_173); +lean_dec(x_146); +x_175 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_175, 0, x_173); +lean_ctor_set(x_175, 1, x_174); +return x_175; +} +} +} +block_86: +{ +lean_object* x_70; +x_70 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_64, x_69); +if (lean_obj_tag(x_70) == 0) +{ +lean_object* x_71; lean_object* x_72; uint8_t x_73; lean_object* x_74; uint8_t x_75; lean_object* x_76; +x_71 = lean_ctor_get(x_70, 1); +lean_inc(x_71); +lean_dec_ref(x_70); +x_72 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__13; +x_73 = 0; +x_74 = l_Lean_Expr_app___override(x_52, x_43); +x_75 = 0; +lean_inc(x_68); +lean_inc_ref(x_67); +lean_inc(x_66); +lean_inc_ref(x_65); +lean_inc(x_64); +lean_inc_ref(x_63); +x_76 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30_spec__30___redArg(x_72, x_73, x_74, x_61, x_75, x_63, x_64, x_65, x_66, x_67, x_68, x_71); +if (lean_obj_tag(x_76) == 0) +{ +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_77 = lean_ctor_get(x_76, 0); +lean_inc(x_77); +x_78 = lean_ctor_get(x_76, 1); +lean_inc(x_78); +lean_dec_ref(x_76); +lean_inc_ref(x_2); +x_79 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__5), 16, 6); +lean_closure_set(x_79, 0, x_62); +lean_closure_set(x_79, 1, x_2); +lean_closure_set(x_79, 2, x_4); +lean_closure_set(x_79, 3, x_1); +lean_closure_set(x_79, 4, x_5); +lean_closure_set(x_79, 5, x_77); +x_80 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_2); +x_81 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3(x_3, x_80, x_79, x_55, x_63, x_64, x_65, x_66, x_67, x_68, x_78); +return x_81; +} +else +{ +lean_dec(x_68); +lean_dec_ref(x_67); +lean_dec(x_66); +lean_dec_ref(x_65); +lean_dec(x_64); +lean_dec_ref(x_63); +lean_dec_ref(x_62); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +return x_76; +} +} +else +{ +uint8_t x_82; +lean_dec(x_68); +lean_dec_ref(x_67); +lean_dec(x_66); +lean_dec_ref(x_65); +lean_dec(x_64); +lean_dec_ref(x_63); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_52); +lean_dec_ref(x_43); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_82 = !lean_is_exclusive(x_70); +if (x_82 == 0) +{ +return x_70; +} +else +{ +lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_83 = lean_ctor_get(x_70, 0); +x_84 = lean_ctor_get(x_70, 1); +lean_inc(x_84); +lean_inc(x_83); +lean_dec(x_70); +x_85 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_85, 0, x_83); +lean_ctor_set(x_85, 1, x_84); +return x_85; +} +} +} +block_116: +{ +lean_object* x_95; lean_object* x_96; +x_95 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__0; +lean_inc(x_93); +lean_inc_ref(x_92); +lean_inc(x_91); +lean_inc_ref(x_90); +lean_inc_ref(x_88); +x_96 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__7(x_95, x_88, x_89, x_90, x_91, x_92, x_93, x_94); +if (lean_obj_tag(x_96) == 0) +{ +lean_object* x_97; uint8_t x_98; +x_97 = lean_ctor_get(x_96, 0); +lean_inc(x_97); +x_98 = lean_unbox(x_97); +lean_dec(x_97); +if (x_98 == 0) +{ +lean_object* x_99; +x_99 = lean_ctor_get(x_96, 1); +lean_inc(x_99); +lean_dec_ref(x_96); +x_62 = x_87; +x_63 = x_88; +x_64 = x_89; +x_65 = x_90; +x_66 = x_91; +x_67 = x_92; +x_68 = x_93; +x_69 = x_99; +goto block_86; +} +else +{ +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_100 = lean_ctor_get(x_96, 1); +lean_inc(x_100); +lean_dec_ref(x_96); +x_101 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__1; +lean_inc_ref(x_87); +x_102 = l_Lean_MessageData_ofExpr(x_87); +x_103 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_103, 0, x_101); +lean_ctor_set(x_103, 1, x_102); +x_104 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_105 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_105, 0, x_103); +lean_ctor_set(x_105, 1, x_104); +lean_inc(x_93); +lean_inc_ref(x_92); +lean_inc(x_91); +lean_inc_ref(x_90); +lean_inc_ref(x_88); +x_106 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14(x_95, x_105, x_88, x_89, x_90, x_91, x_92, x_93, x_100); +if (lean_obj_tag(x_106) == 0) +{ +lean_object* x_107; +x_107 = lean_ctor_get(x_106, 1); +lean_inc(x_107); +lean_dec_ref(x_106); +x_62 = x_87; +x_63 = x_88; +x_64 = x_89; +x_65 = x_90; +x_66 = x_91; +x_67 = x_92; +x_68 = x_93; +x_69 = x_107; +goto block_86; +} +else +{ +uint8_t x_108; +lean_dec(x_93); +lean_dec_ref(x_92); +lean_dec(x_91); +lean_dec_ref(x_90); +lean_dec(x_89); +lean_dec_ref(x_88); +lean_dec_ref(x_87); +lean_dec_ref(x_61); +lean_dec_ref(x_52); +lean_dec_ref(x_43); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_108 = !lean_is_exclusive(x_106); +if (x_108 == 0) +{ +return x_106; +} +else +{ +lean_object* x_109; lean_object* x_110; lean_object* x_111; +x_109 = lean_ctor_get(x_106, 0); +x_110 = lean_ctor_get(x_106, 1); +lean_inc(x_110); +lean_inc(x_109); +lean_dec(x_106); +x_111 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_111, 0, x_109); +lean_ctor_set(x_111, 1, x_110); +return x_111; +} +} +} +} +else +{ +uint8_t x_112; +lean_dec(x_93); +lean_dec_ref(x_92); +lean_dec(x_91); +lean_dec_ref(x_90); +lean_dec(x_89); +lean_dec_ref(x_88); +lean_dec_ref(x_87); +lean_dec_ref(x_61); +lean_dec_ref(x_52); +lean_dec_ref(x_43); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_112 = !lean_is_exclusive(x_96); +if (x_112 == 0) +{ +return x_96; +} +else +{ +lean_object* x_113; lean_object* x_114; lean_object* x_115; +x_113 = lean_ctor_get(x_96, 0); +x_114 = lean_ctor_get(x_96, 1); +lean_inc(x_114); +lean_inc(x_113); +lean_dec(x_96); +x_115 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_115, 0, x_113); +lean_ctor_set(x_115, 1, x_114); +return x_115; +} +} +} +block_144: +{ +lean_object* x_125; lean_object* x_126; +lean_inc_ref(x_117); +x_125 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__6___boxed), 9, 1); +lean_closure_set(x_125, 0, x_117); +lean_inc(x_123); +lean_inc_ref(x_122); +lean_inc(x_121); +lean_inc_ref(x_120); +lean_inc_ref(x_118); +x_126 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_125, x_118, x_119, x_120, x_121, x_122, x_123, x_124); +if (lean_obj_tag(x_126) == 0) +{ +lean_object* x_127; +x_127 = lean_ctor_get(x_126, 0); +lean_inc(x_127); +switch (lean_obj_tag(x_127)) { +case 0: +{ +lean_object* x_128; lean_object* x_129; lean_object* x_130; +lean_dec_ref(x_117); +lean_dec_ref(x_61); +lean_dec_ref(x_52); +lean_dec_ref(x_43); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +x_128 = lean_ctor_get(x_126, 1); +lean_inc(x_128); +lean_dec_ref(x_126); +x_129 = lean_ctor_get(x_127, 0); +lean_inc_ref(x_129); +lean_dec_ref(x_127); +x_130 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_119, x_128); +if (lean_obj_tag(x_130) == 0) +{ +lean_object* x_131; lean_object* x_132; lean_object* x_133; +x_131 = lean_ctor_get(x_130, 1); +lean_inc(x_131); +lean_dec_ref(x_130); +x_132 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_2, x_129); +x_133 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_1, x_132, x_4, x_118, x_119, x_120, x_121, x_122, x_123, x_131); +return x_133; +} +else +{ +uint8_t x_134; +lean_dec_ref(x_129); +lean_dec(x_123); +lean_dec_ref(x_122); +lean_dec(x_121); +lean_dec_ref(x_120); +lean_dec(x_119); +lean_dec_ref(x_118); +lean_dec(x_4); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_134 = !lean_is_exclusive(x_130); +if (x_134 == 0) +{ +return x_130; +} +else +{ +lean_object* x_135; lean_object* x_136; lean_object* x_137; +x_135 = lean_ctor_get(x_130, 0); +x_136 = lean_ctor_get(x_130, 1); +lean_inc(x_136); +lean_inc(x_135); +lean_dec(x_130); +x_137 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_137, 0, x_135); +lean_ctor_set(x_137, 1, x_136); +return x_137; +} +} +} +case 1: +{ +lean_object* x_138; +lean_dec_ref(x_127); +x_138 = lean_ctor_get(x_126, 1); +lean_inc(x_138); +lean_dec_ref(x_126); +x_87 = x_117; +x_88 = x_118; +x_89 = x_119; +x_90 = x_120; +x_91 = x_121; +x_92 = x_122; +x_93 = x_123; +x_94 = x_138; +goto block_116; +} +default: +{ +lean_object* x_139; +lean_dec(x_127); +x_139 = lean_ctor_get(x_126, 1); +lean_inc(x_139); +lean_dec_ref(x_126); +x_87 = x_117; +x_88 = x_118; +x_89 = x_119; +x_90 = x_120; +x_91 = x_121; +x_92 = x_122; +x_93 = x_123; +x_94 = x_139; +goto block_116; +} +} +} +else +{ +uint8_t x_140; +lean_dec(x_123); +lean_dec_ref(x_122); +lean_dec(x_121); +lean_dec_ref(x_120); +lean_dec(x_119); +lean_dec_ref(x_118); +lean_dec_ref(x_117); +lean_dec_ref(x_61); +lean_dec_ref(x_52); +lean_dec_ref(x_43); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_140 = !lean_is_exclusive(x_126); +if (x_140 == 0) +{ +return x_126; +} +else +{ +lean_object* x_141; lean_object* x_142; lean_object* x_143; +x_141 = lean_ctor_get(x_126, 0); +x_142 = lean_ctor_get(x_126, 1); +lean_inc(x_142); +lean_inc(x_141); +lean_dec(x_126); +x_143 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_143, 0, x_141); +lean_ctor_set(x_143, 1, x_142); +return x_143; +} +} +} +} +else +{ +uint8_t x_176; +lean_dec_ref(x_53); +lean_dec_ref(x_52); +lean_dec_ref(x_49); +lean_dec_ref(x_46); +lean_dec_ref(x_43); +lean_dec_ref(x_40); +lean_dec_ref(x_35); +lean_dec_ref(x_13); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_176 = !lean_is_exclusive(x_57); +if (x_176 == 0) +{ +return x_57; +} +else +{ +lean_object* x_177; lean_object* x_178; lean_object* x_179; +x_177 = lean_ctor_get(x_57, 0); +x_178 = lean_ctor_get(x_57, 1); +lean_inc(x_178); +lean_inc(x_177); +lean_dec(x_57); +x_179 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_179, 0, x_177); +lean_ctor_set(x_179, 1, x_178); +return x_179; +} +} +} +} +} +} +} +} +block_28: +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_22 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__3; +x_23 = l_Lean_MessageData_ofExpr(x_14); +x_24 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_23); +x_25 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7; +x_26 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +x_27 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_26, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +lean_dec(x_16); +return x_27; +} +} +} +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -28279,35 +44499,15 @@ return x_7; } } } -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0_spec__0(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_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0_spec__0(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: { uint8_t x_7; -x_7 = l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0_spec__0___redArg(x_2, x_5, x_6); +x_7 = l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0_spec__0___redArg(x_2, x_5, x_6); return x_7; } } -static size_t _init_l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0___redArg___closed__0() { -_start: -{ -size_t x_1; size_t x_2; size_t x_3; -x_1 = 5; -x_2 = 1; -x_3 = lean_usize_shift_left(x_2, x_1); -return x_3; -} -} -static size_t _init_l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0___redArg___closed__1() { -_start: -{ -size_t x_1; size_t x_2; size_t x_3; -x_1 = 1; -x_2 = l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0___redArg___closed__0; -x_3 = lean_usize_sub(x_2, x_1); -return x_3; -} -} -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0___redArg(lean_object* x_1, size_t x_2, lean_object* x_3) { +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0___redArg(lean_object* x_1, size_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -28318,7 +44518,7 @@ lean_inc_ref(x_4); lean_dec_ref(x_1); x_5 = lean_box(2); x_6 = 5; -x_7 = l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0___redArg___closed__1; +x_7 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg___closed__1; x_8 = lean_usize_land(x_2, x_7); x_9 = lean_usize_to_nat(x_8); x_10 = lean_array_get(x_5, x_4, x_9); @@ -28361,43 +44561,43 @@ x_17 = lean_ctor_get(x_1, 0); lean_inc_ref(x_17); lean_dec_ref(x_1); x_18 = lean_unsigned_to_nat(0u); -x_19 = l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0_spec__0___redArg(x_17, x_18, x_3); +x_19 = l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0_spec__0___redArg(x_17, x_18, x_3); lean_dec_ref(x_17); return x_19; } } } -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0(lean_object* x_1, lean_object* x_2, size_t x_3, lean_object* x_4) { +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0(lean_object* x_1, lean_object* x_2, size_t x_3, lean_object* x_4) { _start: { uint8_t x_5; -x_5 = l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0___redArg(x_2, x_3, x_4); +x_5 = l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0___redArg(x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0___redArg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0___redArg(lean_object* x_1, lean_object* x_2) { _start: { uint64_t x_3; size_t x_4; uint8_t x_5; x_3 = l_Lean_hashMVarId____x40_Lean_Expr___hyg_1869_(x_2); x_4 = lean_uint64_to_usize(x_3); -x_5 = l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0___redArg(x_1, x_4, x_2); +x_5 = l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0___redArg(x_1, x_4, x_2); return x_5; } } -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; -x_4 = l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0___redArg(x_2, x_3); +x_4 = l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0___redArg(x_2, x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0(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_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0(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; lean_object* x_10; -x_9 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__0___boxed), 8, 0); +x_9 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__0___boxed), 8, 0); x_10 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); if (lean_obj_tag(x_10) == 0) { @@ -28410,7 +44610,7 @@ x_12 = lean_ctor_get(x_10, 0); x_13 = lean_ctor_get(x_12, 7); lean_inc_ref(x_13); lean_dec(x_12); -x_14 = l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0___redArg(x_13, x_1); +x_14 = l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0___redArg(x_13, x_1); x_15 = lean_box(x_14); lean_ctor_set(x_10, 0, x_15); return x_10; @@ -28426,7 +44626,7 @@ lean_dec(x_10); x_18 = lean_ctor_get(x_16, 7); lean_inc_ref(x_18); lean_dec(x_16); -x_19 = l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0___redArg(x_18, x_1); +x_19 = l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0___redArg(x_18, x_1); x_20 = lean_box(x_19); x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); @@ -28458,677 +44658,7 @@ return x_25; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__4_spec__4___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -uint8_t x_5; -x_5 = !lean_is_exclusive(x_1); -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_6 = lean_ctor_get(x_1, 0); -x_7 = lean_ctor_get(x_1, 1); -x_8 = lean_array_get_size(x_6); -x_9 = lean_nat_dec_lt(x_2, x_8); -lean_dec(x_8); -if (x_9 == 0) -{ -lean_object* x_10; lean_object* x_11; -lean_dec(x_2); -x_10 = lean_array_push(x_6, x_3); -x_11 = lean_array_push(x_7, x_4); -lean_ctor_set(x_1, 1, x_11); -lean_ctor_set(x_1, 0, x_10); -return x_1; -} -else -{ -lean_object* x_12; uint8_t x_13; -x_12 = lean_array_fget(x_6, x_2); -x_13 = lean_name_eq(x_3, x_12); -lean_dec(x_12); -if (x_13 == 0) -{ -lean_object* x_14; lean_object* x_15; -x_14 = lean_unsigned_to_nat(1u); -x_15 = lean_nat_add(x_2, x_14); -lean_dec(x_2); -x_2 = x_15; -goto _start; -} -else -{ -lean_object* x_17; lean_object* x_18; -x_17 = lean_array_fset(x_6, x_2, x_3); -x_18 = lean_array_fset(x_7, x_2, x_4); -lean_dec(x_2); -lean_ctor_set(x_1, 1, x_18); -lean_ctor_set(x_1, 0, x_17); -return x_1; -} -} -} -else -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; -x_19 = lean_ctor_get(x_1, 0); -x_20 = lean_ctor_get(x_1, 1); -lean_inc(x_20); -lean_inc(x_19); -lean_dec(x_1); -x_21 = lean_array_get_size(x_19); -x_22 = lean_nat_dec_lt(x_2, x_21); -lean_dec(x_21); -if (x_22 == 0) -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_2); -x_23 = lean_array_push(x_19, x_3); -x_24 = lean_array_push(x_20, x_4); -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 -{ -lean_object* x_26; uint8_t x_27; -x_26 = lean_array_fget(x_19, x_2); -x_27 = lean_name_eq(x_3, x_26); -lean_dec(x_26); -if (x_27 == 0) -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_28, 0, x_19); -lean_ctor_set(x_28, 1, x_20); -x_29 = lean_unsigned_to_nat(1u); -x_30 = lean_nat_add(x_2, x_29); -lean_dec(x_2); -x_1 = x_28; -x_2 = x_30; -goto _start; -} -else -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_32 = lean_array_fset(x_19, x_2, x_3); -x_33 = lean_array_fset(x_20, x_2, x_4); -lean_dec(x_2); -x_34 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_34, 0, x_32); -lean_ctor_set(x_34, 1, x_33); -return x_34; -} -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__4_spec__4(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; -x_6 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__4_spec__4___redArg(x_2, x_3, x_4, x_5); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__4___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; lean_object* x_5; -x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__4_spec__4___redArg(x_1, x_4, x_2, x_3); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__4___redArg(x_2, x_3, x_4); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__6___redArg(size_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; uint8_t x_7; -x_6 = lean_array_get_size(x_2); -x_7 = lean_nat_dec_lt(x_4, x_6); -lean_dec(x_6); -if (x_7 == 0) -{ -lean_dec(x_4); -return x_5; -} -else -{ -lean_object* x_8; lean_object* x_9; uint64_t x_10; size_t x_11; size_t x_12; lean_object* x_13; size_t x_14; size_t x_15; size_t x_16; size_t x_17; lean_object* x_18; lean_object* x_19; -x_8 = lean_array_fget(x_2, x_4); -x_9 = lean_array_fget(x_3, x_4); -x_10 = l_Lean_hashMVarId____x40_Lean_Expr___hyg_1869_(x_8); -x_11 = lean_uint64_to_usize(x_10); -x_12 = 5; -x_13 = lean_unsigned_to_nat(1u); -x_14 = 1; -x_15 = lean_usize_sub(x_1, x_14); -x_16 = lean_usize_mul(x_12, x_15); -x_17 = lean_usize_shift_right(x_11, x_16); -x_18 = lean_nat_add(x_4, x_13); -lean_dec(x_4); -x_19 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4___redArg(x_5, x_17, x_1, x_8, x_9); -x_4 = x_18; -x_5 = x_19; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__6(lean_object* x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { -_start: -{ -lean_object* x_8; -x_8 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__6___redArg(x_2, x_3, x_4, x_6, x_7); -return x_8; -} -} -static lean_object* _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4___redArg___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_PersistentHashMap_mkEmptyEntries(lean_box(0), lean_box(0)); -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4___redArg(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_6; size_t x_7; size_t x_8; size_t x_9; size_t x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; -x_6 = lean_ctor_get(x_1, 0); -lean_inc_ref(x_6); -x_7 = 5; -x_8 = 1; -x_9 = l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0___redArg___closed__1; -x_10 = lean_usize_land(x_2, x_9); -x_11 = lean_usize_to_nat(x_10); -x_12 = lean_array_get_size(x_6); -x_13 = lean_nat_dec_lt(x_11, x_12); -lean_dec(x_12); -if (x_13 == 0) -{ -lean_dec(x_11); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec(x_4); -return x_1; -} -else -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -if (lean_is_exclusive(x_1)) { - lean_ctor_release(x_1, 0); - x_14 = x_1; -} else { - lean_dec_ref(x_1); - x_14 = lean_box(0); -} -x_15 = lean_array_fget(x_6, x_11); -x_16 = lean_box(0); -x_17 = lean_array_fset(x_6, x_11, x_16); -switch (lean_obj_tag(x_15)) { -case 0: -{ -uint8_t x_22; -x_22 = !lean_is_exclusive(x_15); -if (x_22 == 0) -{ -lean_object* x_23; lean_object* x_24; uint8_t x_25; -x_23 = lean_ctor_get(x_15, 0); -x_24 = lean_ctor_get(x_15, 1); -x_25 = lean_name_eq(x_4, x_23); -if (x_25 == 0) -{ -lean_object* x_26; lean_object* x_27; -lean_free_object(x_15); -x_26 = l_Lean_PersistentHashMap_mkCollisionNode___redArg(x_23, x_24, x_4, x_5); -x_27 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_27, 0, x_26); -x_18 = x_27; -goto block_21; -} -else -{ -lean_dec(x_24); -lean_dec(x_23); -lean_ctor_set(x_15, 1, x_5); -lean_ctor_set(x_15, 0, x_4); -x_18 = x_15; -goto block_21; -} -} -else -{ -lean_object* x_28; lean_object* x_29; uint8_t x_30; -x_28 = lean_ctor_get(x_15, 0); -x_29 = lean_ctor_get(x_15, 1); -lean_inc(x_29); -lean_inc(x_28); -lean_dec(x_15); -x_30 = lean_name_eq(x_4, x_28); -if (x_30 == 0) -{ -lean_object* x_31; lean_object* x_32; -x_31 = l_Lean_PersistentHashMap_mkCollisionNode___redArg(x_28, x_29, x_4, x_5); -x_32 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_32, 0, x_31); -x_18 = x_32; -goto block_21; -} -else -{ -lean_object* x_33; -lean_dec(x_29); -lean_dec(x_28); -x_33 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_33, 0, x_4); -lean_ctor_set(x_33, 1, x_5); -x_18 = x_33; -goto block_21; -} -} -} -case 1: -{ -uint8_t x_34; -x_34 = !lean_is_exclusive(x_15); -if (x_34 == 0) -{ -lean_object* x_35; size_t x_36; size_t x_37; lean_object* x_38; -x_35 = lean_ctor_get(x_15, 0); -x_36 = lean_usize_shift_right(x_2, x_7); -x_37 = lean_usize_add(x_3, x_8); -x_38 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4___redArg(x_35, x_36, x_37, x_4, x_5); -lean_ctor_set(x_15, 0, x_38); -x_18 = x_15; -goto block_21; -} -else -{ -lean_object* x_39; size_t x_40; size_t x_41; lean_object* x_42; lean_object* x_43; -x_39 = lean_ctor_get(x_15, 0); -lean_inc(x_39); -lean_dec(x_15); -x_40 = lean_usize_shift_right(x_2, x_7); -x_41 = lean_usize_add(x_3, x_8); -x_42 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4___redArg(x_39, x_40, x_41, x_4, x_5); -x_43 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_43, 0, x_42); -x_18 = x_43; -goto block_21; -} -} -default: -{ -lean_object* x_44; -x_44 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_44, 0, x_4); -lean_ctor_set(x_44, 1, x_5); -x_18 = x_44; -goto block_21; -} -} -block_21: -{ -lean_object* x_19; lean_object* x_20; -x_19 = lean_array_fset(x_17, x_11, x_18); -lean_dec(x_11); -if (lean_is_scalar(x_14)) { - x_20 = lean_alloc_ctor(0, 1, 0); -} else { - x_20 = x_14; -} -lean_ctor_set(x_20, 0, x_19); -return x_20; -} -} -} -else -{ -uint8_t x_45; -x_45 = !lean_is_exclusive(x_1); -if (x_45 == 0) -{ -lean_object* x_46; uint8_t x_47; size_t x_54; uint8_t x_55; -x_46 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__4___redArg(x_1, x_4, x_5); -x_54 = 7; -x_55 = lean_usize_dec_le(x_54, x_3); -if (x_55 == 0) -{ -lean_object* x_56; lean_object* x_57; uint8_t x_58; -x_56 = l_Lean_PersistentHashMap_getCollisionNodeSize___redArg(x_46); -x_57 = lean_unsigned_to_nat(4u); -x_58 = lean_nat_dec_lt(x_56, x_57); -lean_dec(x_56); -x_47 = x_58; -goto block_53; -} -else -{ -x_47 = x_55; -goto block_53; -} -block_53: -{ -if (x_47 == 0) -{ -lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_48 = lean_ctor_get(x_46, 0); -lean_inc_ref(x_48); -x_49 = lean_ctor_get(x_46, 1); -lean_inc_ref(x_49); -lean_dec_ref(x_46); -x_50 = lean_unsigned_to_nat(0u); -x_51 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4___redArg___closed__0; -x_52 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__6___redArg(x_3, x_48, x_49, x_50, x_51); -lean_dec_ref(x_49); -lean_dec_ref(x_48); -return x_52; -} -else -{ -return x_46; -} -} -} -else -{ -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; size_t x_70; uint8_t x_71; -x_59 = lean_ctor_get(x_1, 0); -x_60 = lean_ctor_get(x_1, 1); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_1); -x_61 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_61, 0, x_59); -lean_ctor_set(x_61, 1, x_60); -x_62 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__4___redArg(x_61, x_4, x_5); -x_70 = 7; -x_71 = lean_usize_dec_le(x_70, x_3); -if (x_71 == 0) -{ -lean_object* x_72; lean_object* x_73; uint8_t x_74; -x_72 = l_Lean_PersistentHashMap_getCollisionNodeSize___redArg(x_62); -x_73 = lean_unsigned_to_nat(4u); -x_74 = lean_nat_dec_lt(x_72, x_73); -lean_dec(x_72); -x_63 = x_74; -goto block_69; -} -else -{ -x_63 = x_71; -goto block_69; -} -block_69: -{ -if (x_63 == 0) -{ -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; -x_64 = lean_ctor_get(x_62, 0); -lean_inc_ref(x_64); -x_65 = lean_ctor_get(x_62, 1); -lean_inc_ref(x_65); -lean_dec_ref(x_62); -x_66 = lean_unsigned_to_nat(0u); -x_67 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4___redArg___closed__0; -x_68 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__6___redArg(x_3, x_64, x_65, x_66, x_67); -lean_dec_ref(x_65); -lean_dec_ref(x_64); -return x_68; -} -else -{ -return x_62; -} -} -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6) { -_start: -{ -lean_object* x_7; -x_7 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4___redArg(x_2, x_3, x_4, x_5, x_6); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -uint64_t x_4; size_t x_5; size_t x_6; lean_object* x_7; -x_4 = l_Lean_hashMVarId____x40_Lean_Expr___hyg_1869_(x_2); -x_5 = lean_uint64_to_usize(x_4); -x_6 = 1; -x_7 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4___redArg(x_1, x_5, x_6, x_2, x_3); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4___redArg(x_2, x_3, x_4); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; -x_11 = lean_st_ref_take(x_7, x_10); -x_12 = lean_ctor_get(x_11, 0); -lean_inc(x_12); -x_13 = lean_ctor_get(x_12, 0); -lean_inc_ref(x_13); -x_14 = lean_ctor_get(x_11, 1); -lean_inc(x_14); -lean_dec_ref(x_11); -x_15 = !lean_is_exclusive(x_12); -if (x_15 == 0) -{ -lean_object* x_16; uint8_t x_17; -x_16 = lean_ctor_get(x_12, 0); -lean_dec(x_16); -x_17 = !lean_is_exclusive(x_13); -if (x_17 == 0) -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; -x_18 = lean_ctor_get(x_13, 7); -x_19 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4___redArg(x_18, x_1, x_2); -lean_ctor_set(x_13, 7, x_19); -x_20 = lean_st_ref_set(x_7, x_12, x_14); -x_21 = !lean_is_exclusive(x_20); -if (x_21 == 0) -{ -lean_object* x_22; lean_object* x_23; -x_22 = lean_ctor_get(x_20, 0); -lean_dec(x_22); -x_23 = lean_box(0); -lean_ctor_set(x_20, 0, x_23); -return x_20; -} -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_24 = lean_ctor_get(x_20, 1); -lean_inc(x_24); -lean_dec(x_20); -x_25 = lean_box(0); -x_26 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_24); -return x_26; -} -} -else -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_27 = lean_ctor_get(x_13, 0); -x_28 = lean_ctor_get(x_13, 1); -x_29 = lean_ctor_get(x_13, 2); -x_30 = lean_ctor_get(x_13, 3); -x_31 = lean_ctor_get(x_13, 4); -x_32 = lean_ctor_get(x_13, 5); -x_33 = lean_ctor_get(x_13, 6); -x_34 = lean_ctor_get(x_13, 7); -x_35 = lean_ctor_get(x_13, 8); -lean_inc(x_35); -lean_inc(x_34); -lean_inc(x_33); -lean_inc(x_32); -lean_inc(x_31); -lean_inc(x_30); -lean_inc(x_29); -lean_inc(x_28); -lean_inc(x_27); -lean_dec(x_13); -x_36 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4___redArg(x_34, x_1, x_2); -x_37 = lean_alloc_ctor(0, 9, 0); -lean_ctor_set(x_37, 0, x_27); -lean_ctor_set(x_37, 1, x_28); -lean_ctor_set(x_37, 2, x_29); -lean_ctor_set(x_37, 3, x_30); -lean_ctor_set(x_37, 4, x_31); -lean_ctor_set(x_37, 5, x_32); -lean_ctor_set(x_37, 6, x_33); -lean_ctor_set(x_37, 7, x_36); -lean_ctor_set(x_37, 8, x_35); -lean_ctor_set(x_12, 0, x_37); -x_38 = lean_st_ref_set(x_7, x_12, x_14); -x_39 = lean_ctor_get(x_38, 1); -lean_inc(x_39); -if (lean_is_exclusive(x_38)) { - lean_ctor_release(x_38, 0); - lean_ctor_release(x_38, 1); - x_40 = x_38; -} else { - lean_dec_ref(x_38); - x_40 = lean_box(0); -} -x_41 = lean_box(0); -if (lean_is_scalar(x_40)) { - x_42 = lean_alloc_ctor(0, 2, 0); -} else { - x_42 = x_40; -} -lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_42, 1, x_39); -return x_42; -} -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; -x_43 = lean_ctor_get(x_12, 1); -x_44 = lean_ctor_get(x_12, 2); -x_45 = lean_ctor_get(x_12, 3); -x_46 = lean_ctor_get(x_12, 4); -lean_inc(x_46); -lean_inc(x_45); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_12); -x_47 = lean_ctor_get(x_13, 0); -lean_inc(x_47); -x_48 = lean_ctor_get(x_13, 1); -lean_inc(x_48); -x_49 = lean_ctor_get(x_13, 2); -lean_inc(x_49); -x_50 = lean_ctor_get(x_13, 3); -lean_inc_ref(x_50); -x_51 = lean_ctor_get(x_13, 4); -lean_inc_ref(x_51); -x_52 = lean_ctor_get(x_13, 5); -lean_inc_ref(x_52); -x_53 = lean_ctor_get(x_13, 6); -lean_inc_ref(x_53); -x_54 = lean_ctor_get(x_13, 7); -lean_inc_ref(x_54); -x_55 = lean_ctor_get(x_13, 8); -lean_inc_ref(x_55); -if (lean_is_exclusive(x_13)) { - lean_ctor_release(x_13, 0); - lean_ctor_release(x_13, 1); - lean_ctor_release(x_13, 2); - lean_ctor_release(x_13, 3); - lean_ctor_release(x_13, 4); - lean_ctor_release(x_13, 5); - lean_ctor_release(x_13, 6); - lean_ctor_release(x_13, 7); - lean_ctor_release(x_13, 8); - x_56 = x_13; -} else { - lean_dec_ref(x_13); - x_56 = lean_box(0); -} -x_57 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4___redArg(x_54, x_1, x_2); -if (lean_is_scalar(x_56)) { - x_58 = lean_alloc_ctor(0, 9, 0); -} else { - x_58 = x_56; -} -lean_ctor_set(x_58, 0, x_47); -lean_ctor_set(x_58, 1, x_48); -lean_ctor_set(x_58, 2, x_49); -lean_ctor_set(x_58, 3, x_50); -lean_ctor_set(x_58, 4, x_51); -lean_ctor_set(x_58, 5, x_52); -lean_ctor_set(x_58, 6, x_53); -lean_ctor_set(x_58, 7, x_57); -lean_ctor_set(x_58, 8, x_55); -x_59 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_59, 0, x_58); -lean_ctor_set(x_59, 1, x_43); -lean_ctor_set(x_59, 2, x_44); -lean_ctor_set(x_59, 3, x_45); -lean_ctor_set(x_59, 4, x_46); -x_60 = lean_st_ref_set(x_7, x_59, x_14); -x_61 = lean_ctor_get(x_60, 1); -lean_inc(x_61); -if (lean_is_exclusive(x_60)) { - lean_ctor_release(x_60, 0); - lean_ctor_release(x_60, 1); - x_62 = x_60; -} else { - lean_dec_ref(x_60); - x_62 = lean_box(0); -} -x_63 = lean_box(0); -if (lean_is_scalar(x_62)) { - x_64 = lean_alloc_ctor(0, 2, 0); -} else { - x_64 = x_62; -} -lean_ctor_set(x_64, 0, x_63); -lean_ctor_set(x_64, 1, x_61); -return x_64; -} -} -} -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4(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_10; lean_object* x_11; -x_10 = lean_alloc_closure((void*)(l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4___lam__0___boxed), 10, 2); -lean_closure_set(x_10, 0, x_1); -lean_closure_set(x_10, 1, x_2); -x_11 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__10___redArg___lam__0(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_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__4___redArg___lam__0(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; @@ -29136,11 +44666,11 @@ x_9 = lean_apply_7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__10___redArg(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_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__4___redArg(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_10; lean_object* x_11; -x_10 = lean_alloc_closure((void*)(l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__10___redArg___lam__0), 8, 3); +x_10 = lean_alloc_closure((void*)(l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__4___redArg___lam__0), 8, 3); lean_closure_set(x_10, 0, x_2); lean_closure_set(x_10, 1, x_3); lean_closure_set(x_10, 2, x_4); @@ -29173,15 +44703,15 @@ return x_15; } } } -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__10___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__4___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_11; } } -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__0(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_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__0(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_10; @@ -29189,7 +44719,7 @@ x_10 = l_Lean_MVarId_getType(x_1, x_5, x_6, x_7, x_8, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__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_10; @@ -29197,7 +44727,7 @@ x_10 = l_Lean_MVarId_getTag(x_1, x_5, x_6, x_7, x_8, x_9); return x_10; } } -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__2(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_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__2(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_10; @@ -29205,18 +44735,18 @@ x_10 = l_Lean_Meta_isProp(x_1, x_5, x_6, x_7, x_8, x_9); return x_10; } } -static lean_object* _init_l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__3___closed__0() { +static lean_object* _init_l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__3___closed__0() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__2; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__3; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0; x_4 = l_Lean_Name_mkStr3(x_3, x_2, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; @@ -29235,7 +44765,7 @@ x_14 = lean_ctor_get(x_12, 1); lean_inc(x_14); lean_dec_ref(x_12); lean_inc(x_13); -x_15 = lean_alloc_closure((void*)(l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__2___boxed), 9, 1); +x_15 = lean_alloc_closure((void*)(l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__2___boxed), 9, 1); lean_closure_set(x_15, 0, x_13); lean_inc(x_10); lean_inc_ref(x_9); @@ -29256,12 +44786,12 @@ lean_dec(x_17); if (x_35 == 0) { lean_object* x_36; uint8_t x_37; -x_36 = l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__3___closed__0; +x_36 = l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__3___closed__0; x_37 = l_Lean_Expr_isAppOf(x_13, x_36); if (x_37 == 0) { lean_object* x_38; uint8_t x_39; -x_38 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__2; +x_38 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__1; x_39 = l_Lean_Expr_isAppOf(x_13, x_38); if (x_39 == 0) { @@ -29315,7 +44845,7 @@ lean_inc(x_8); lean_inc_ref(x_7); lean_inc(x_6); lean_inc_ref(x_5); -x_22 = l_Lean_Elab_Tactic_Do_step_tryGoal(x_3, x_13, x_20, x_5, x_6, x_7, x_8, x_9, x_10, x_21); +x_22 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal(x_3, x_13, x_20, x_5, x_6, x_7, x_8, x_9, x_10, x_21); if (lean_obj_tag(x_22) == 0) { lean_object* x_23; lean_object* x_24; lean_object* x_25; @@ -29324,7 +44854,7 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_22, 1); lean_inc(x_24); lean_dec_ref(x_22); -x_25 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4(x_4, x_23, x_5, x_6, x_7, x_8, x_9, x_10, x_24); +x_25 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16(x_4, x_23, x_5, x_6, x_7, x_8, x_9, x_10, x_24); lean_dec(x_6); return x_25; } @@ -29457,7 +44987,7 @@ return x_48; } } } -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg(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: { if (lean_obj_tag(x_3) == 0) @@ -29488,7 +45018,7 @@ lean_inc_ref(x_9); lean_inc(x_8); lean_inc_ref(x_7); lean_inc_ref(x_5); -x_15 = l_Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0(x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_15 = l_Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0(x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11); if (lean_obj_tag(x_15) == 0) { lean_object* x_16; uint8_t x_17; @@ -29503,14 +45033,14 @@ x_18 = lean_ctor_get(x_15, 1); lean_inc(x_18); lean_dec_ref(x_15); lean_inc(x_13); -x_19 = lean_alloc_closure((void*)(l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__0___boxed), 9, 1); +x_19 = lean_alloc_closure((void*)(l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__0___boxed), 9, 1); lean_closure_set(x_19, 0, x_13); lean_inc(x_13); -x_20 = lean_alloc_closure((void*)(l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__1___boxed), 9, 1); +x_20 = lean_alloc_closure((void*)(l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__1___boxed), 9, 1); lean_closure_set(x_20, 0, x_13); lean_inc(x_13); lean_inc_ref(x_1); -x_21 = lean_alloc_closure((void*)(l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__3), 11, 4); +x_21 = lean_alloc_closure((void*)(l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__3), 11, 4); lean_closure_set(x_21, 0, x_19); lean_closure_set(x_21, 1, x_20); lean_closure_set(x_21, 2, x_1); @@ -29521,7 +45051,7 @@ lean_inc(x_8); lean_inc_ref(x_7); lean_inc(x_6); lean_inc_ref(x_5); -x_22 = l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__10___redArg(x_13, x_21, x_5, x_6, x_7, x_8, x_9, x_10, x_18); +x_22 = l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__4___redArg(x_13, x_21, x_5, x_6, x_7, x_8, x_9, x_10, x_18); if (lean_obj_tag(x_22) == 0) { lean_object* x_23; @@ -29603,20 +45133,20 @@ return x_30; } } } -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { lean_object* x_14; -x_14 = l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg(x_1, x_2, x_4, x_5, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_14 = l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg(x_1, x_2, x_4, x_5, x_7, x_8, x_9, x_10, x_11, x_12, x_13); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_assignMVars(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars(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_10; lean_object* x_11; x_10 = lean_box(0); -x_11 = l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg(x_1, x_10, x_2, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg(x_1, x_10, x_2, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_11) == 0) { uint8_t x_12; @@ -29647,62 +45177,43 @@ return x_11; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onImp(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -lean_inc(x_3); -x_11 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onLambda___lam__0), 10, 2); -lean_closure_set(x_11, 0, x_1); -lean_closure_set(x_11, 1, x_3); -lean_inc_ref(x_2); -x_12 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onLet___lam__1), 9, 2); -lean_closure_set(x_12, 0, x_2); -lean_closure_set(x_12, 1, x_11); -x_13 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_step_onFail___boxed), 9, 2); -lean_closure_set(x_13, 0, x_2); -lean_closure_set(x_13, 1, x_3); -x_14 = l_Lean_Elab_Tactic_Do_ifOutOfFuel___redArg(x_13, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_14; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_step_tryGoal_spec__0___redArg___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_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; lean_object* x_12; x_11 = lean_unbox(x_3); -x_12 = l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_step_tryGoal_spec__0___redArg(x_1, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg(x_1, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_step_tryGoal_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___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; lean_object* x_13; x_12 = lean_unbox(x_4); -x_13 = l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_step_tryGoal_spec__0(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Lean_Meta_forallTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_tryGoal___lam__0___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__0___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: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_step_tryGoal___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_tryGoal___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; x_14 = lean_unbox(x_3); x_15 = lean_unbox(x_4); x_16 = lean_unbox(x_5); -x_17 = l_Lean_Elab_Tactic_Do_step_tryGoal___lam__1(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_17 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__1(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_12); lean_dec_ref(x_11); lean_dec(x_10); @@ -29714,14 +45225,14 @@ lean_dec_ref(x_1); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_tryGoal___lam__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, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__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, lean_object* x_12, lean_object* x_13) { _start: { uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; x_14 = lean_unbox(x_3); x_15 = lean_unbox(x_4); x_16 = lean_unbox(x_5); -x_17 = l_Lean_Elab_Tactic_Do_step_tryGoal___lam__2(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_17 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__2(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_12); lean_dec_ref(x_11); lean_dec(x_10); @@ -29733,103 +45244,40 @@ lean_dec_ref(x_1); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onGoal___lam__0___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_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_step_onGoal___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; +uint8_t x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_unbox(x_5); +x_15 = lean_unbox(x_6); +x_16 = l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__0___redArg(x_1, x_2, x_3, x_4, x_14, x_15, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_16; } } -LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__0___redArg___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_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { -lean_object* x_7; -x_7 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__0___redArg(x_1, x_2, x_3, x_4, x_5, x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { -_start: -{ -lean_object* x_8; -x_8 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -return x_8; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1_spec__1___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -uint8_t x_11; uint8_t x_12; lean_object* x_13; -x_11 = lean_unbox(x_2); -x_12 = lean_unbox(x_5); -x_13 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1_spec__1___redArg(x_1, x_11, x_3, x_4, x_12, x_6, x_7, x_8, x_9, x_10); -return x_13; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -uint8_t x_12; uint8_t x_13; lean_object* x_14; -x_12 = lean_unbox(x_3); -x_13 = lean_unbox(x_6); -x_14 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0_spec__1_spec__1(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; -x_14 = lean_unbox(x_3); -x_15 = lean_unbox(x_4); -x_16 = lean_unbox(x_5); -x_17 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__0(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_1); +uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_15 = lean_unbox(x_6); +x_16 = lean_unbox(x_7); +x_17 = l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__0(x_1, x_2, x_3, x_4, x_5, x_15, x_16, x_8, x_9, x_10, x_11, x_12, x_13, x_14); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { -_start: -{ -uint8_t x_17; lean_object* x_18; -x_17 = lean_unbox(x_3); -x_18 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__1(x_1, x_2, x_17, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -return x_18; -} -} -LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__1___redArg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0_spec__0___redArg(x_1, x_2); +x_3 = l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__1___redArg(x_1, x_2); lean_dec(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__1___boxed(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; -x_6 = l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0_spec__0(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Lean_mkFreshId___at___Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0_spec__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); @@ -29837,13 +45285,13 @@ lean_dec_ref(x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { uint8_t x_13; uint8_t x_14; lean_object* x_15; x_13 = lean_unbox(x_3); x_14 = lean_unbox(x_4); -x_15 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__0(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_15 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__0(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -29855,29 +45303,29 @@ lean_dec_ref(x_1); return x_15; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { lean_object* x_14; -x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec_ref(x_1); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__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, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__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, lean_object* x_12) { _start: { uint8_t x_13; lean_object* x_14; x_13 = lean_unbox(x_4); -x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__2(x_1, x_2, x_3, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__2(x_1, x_2, x_3, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -29888,11 +45336,11 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__5___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__6___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: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -29903,26 +45351,11 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__4___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: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__6___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); @@ -29933,252 +45366,46 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { uint8_t x_13; lean_object* x_14; x_13 = lean_unbox(x_4); -x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___lam__7(x_1, x_2, x_3, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___lam__5(x_1, x_2, x_3, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1___lam__0___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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3_spec__3___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -lean_object* x_9; -x_9 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_9; +uint8_t x_11; uint8_t x_12; lean_object* x_13; +x_11 = lean_unbox(x_2); +x_12 = lean_unbox(x_5); +x_13 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3_spec__3___redArg(x_1, x_11, x_3, x_4, x_12, x_6, x_7, x_8, x_9, x_10); +return x_13; } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1___lam__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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3_spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_9; -x_9 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_9; +uint8_t x_12; uint8_t x_13; lean_object* x_14; +x_12 = lean_unbox(x_3); +x_13 = lean_unbox(x_6); +x_14 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3_spec__3(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_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -lean_object* x_9; -x_9 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_3); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__0___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: -{ -lean_object* x_10; -x_10 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_4); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3_spec__3___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -uint8_t x_13; uint8_t x_14; lean_object* x_15; -x_13 = lean_unbox(x_2); -x_14 = lean_unbox(x_5); -x_15 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3_spec__3___redArg(x_1, x_13, x_3, x_4, x_14, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -return x_15; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3_spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -uint8_t x_14; uint8_t x_15; lean_object* x_16; -x_14 = lean_unbox(x_3); -x_15 = lean_unbox(x_6); -x_16 = l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__3_spec__3(x_1, x_2, x_14, x_4, x_5, x_15, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_16; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__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) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__4___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: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__5___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: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__6___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: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -lean_object* x_9; -x_9 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__11(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; x_14 = lean_unbox(x_3); x_15 = lean_unbox(x_4); x_16 = lean_unbox(x_5); -x_17 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__9(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_17 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__0(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_12); lean_dec_ref(x_11); lean_dec(x_10); @@ -30190,7 +45417,174 @@ lean_dec_ref(x_1); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +_start: +{ +uint8_t x_17; lean_object* x_18; +x_17 = lean_unbox(x_3); +x_18 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1(x_1, x_2, x_17, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +return x_18; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__0___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: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__4___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: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__5___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: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_14 = lean_unbox(x_3); +x_15 = lean_unbox(x_4); +x_16 = lean_unbox(x_5); +x_17 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__8(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -30216,86 +45610,71 @@ _start: uint8_t x_21; uint8_t x_22; lean_object* x_23; x_21 = lean_unbox(x_4); x_22 = lean_unbox(x_12); -x_23 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10(x_1, x_2, x_3, x_21, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_22, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); +x_23 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9(x_1, x_2, x_3, x_21, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_22, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); lean_dec(x_15); return x_23; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__14___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__14(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__13(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__0___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__0___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: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__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) { _start: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__4___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: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); @@ -30306,11 +45685,11 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__8___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); @@ -30320,60 +45699,30 @@ lean_dec(x_3); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; -x_14 = lean_unbox(x_3); -x_15 = lean_unbox(x_4); -x_16 = lean_unbox(x_5); -x_17 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__5(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_1); -return x_17; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { uint8_t x_16; lean_object* x_17; x_16 = lean_unbox(x_4); -x_17 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7(x_1, x_2, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_17 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5(x_1, x_2, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec(x_10); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__11(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7_spec__7___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2_spec__2___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7_spec__7___redArg(x_1, x_2, x_3); +x_4 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2_spec__2___redArg(x_1, x_2, x_3); lean_dec_ref(x_2); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7_spec__7___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_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2_spec__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) { _start: { lean_object* x_7; -x_7 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7_spec__7(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Lean_isTracingEnabledFor___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2_spec__2(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); @@ -30381,11 +45730,11 @@ lean_dec_ref(x_2); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7_spec__8___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_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2_spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7_spec__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2_spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_6); lean_dec_ref(x_5); lean_dec(x_4); @@ -30393,11 +45742,11 @@ lean_dec_ref(x_3); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__0___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); @@ -30408,23 +45757,23 @@ lean_dec(x_3); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; lean_object* x_12; x_11 = lean_unbox(x_1); -x_12 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__1(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__1(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__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) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); @@ -30434,11 +45783,11 @@ lean_dec(x_3); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); @@ -30449,129 +45798,21 @@ lean_dec(x_3); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__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) { _start: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_4); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__0___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; lean_object* x_13; -x_12 = lean_unbox(x_2); -x_13 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__0(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -return x_13; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__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) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; -x_14 = lean_unbox(x_3); -x_15 = lean_unbox(x_4); -x_16 = lean_unbox(x_5); -x_17 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__5(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_1); -return x_17; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4___boxed(lean_object** _args) { -lean_object* x_1 = _args[0]; -lean_object* x_2 = _args[1]; -lean_object* x_3 = _args[2]; -lean_object* x_4 = _args[3]; -lean_object* x_5 = _args[4]; -lean_object* x_6 = _args[5]; -lean_object* x_7 = _args[6]; -lean_object* x_8 = _args[7]; -lean_object* x_9 = _args[8]; -lean_object* x_10 = _args[9]; -lean_object* x_11 = _args[10]; -lean_object* x_12 = _args[11]; -lean_object* x_13 = _args[12]; -lean_object* x_14 = _args[13]; -lean_object* x_15 = _args[14]; -lean_object* x_16 = _args[15]; -lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; -lean_object* x_19 = _args[18]; -lean_object* x_20 = _args[19]; -lean_object* x_21 = _args[20]; -lean_object* x_22 = _args[21]; -_start: -{ -uint8_t x_23; lean_object* x_24; -x_23 = lean_unbox(x_4); -x_24 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4(x_1, x_2, x_3, x_23, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22); -return x_24; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___redArg___lam__0___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__5___lam__0___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_10; lean_object* x_11; x_10 = lean_unbox(x_1); -x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___redArg___lam__0(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__5___lam__0(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -30582,58 +45823,49 @@ lean_dec(x_2); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___redArg___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__5___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__5___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_1); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___redArg___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_2); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__12(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_3); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__0___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__0___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__0(x_1); +x_2 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__0(x_1); lean_dec_ref(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__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: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -30644,33 +45876,33 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__4___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__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) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); @@ -30680,17 +45912,17 @@ lean_dec_ref(x_5); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__6___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; lean_object* x_13; x_12 = lean_unbox(x_6); -x_13 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__6(x_1, x_2, x_3, x_4, x_5, x_12, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__6(x_1, x_2, x_3, x_4, x_5, x_12, x_7, x_8, x_9, x_10, x_11); lean_dec_ref(x_5); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__7___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__7___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -30725,11 +45957,11 @@ x_28 = lean_unbox(x_3); x_29 = lean_unbox(x_4); x_30 = lean_unbox(x_14); x_31 = lean_unbox(x_17); -x_32 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__7(x_1, x_2, x_28, x_29, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_30, x_15, x_16, x_31, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27); +x_32 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__7(x_1, x_2, x_28, x_29, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_30, x_15, x_16, x_31, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27); return x_32; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__8___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__8___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -30759,16 +45991,16 @@ lean_object* x_26 = _args[25]; _start: { uint8_t x_27; lean_object* x_28; -x_27 = lean_unbox(x_3); -x_28 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__8(x_1, x_2, x_27, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26); +x_27 = lean_unbox(x_5); +x_28 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__8(x_1, x_2, x_3, x_4, x_27, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26); return x_28; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { lean_object* x_14; -x_14 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_14 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -30776,79 +46008,79 @@ lean_dec(x_1); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { lean_object* x_17; -x_17 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_17 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); lean_dec(x_2); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_16; -x_16 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__13(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_16 = l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__13(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec_ref(x_1); return x_16; } } -LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14_spec__14___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7_spec__7___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; -x_4 = l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14_spec__14___redArg___lam__0(x_1, x_2, x_3); +x_4 = l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7_spec__7___redArg___lam__0(x_1, x_2, x_3); lean_dec(x_3); lean_dec(x_2); x_5 = lean_box(x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14_spec__14___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7_spec__7___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14_spec__14___redArg(x_1, x_2, x_3, x_4); +x_5 = l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7_spec__7___redArg(x_1, x_2, x_3, x_4); lean_dec(x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14_spec__14___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_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7_spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14_spec__14(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Array_qsort_sort___at___Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7_spec__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_5); lean_dec(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14___redArg(x_1, x_2, x_3); +x_4 = l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7___redArg(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14___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_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7___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) { _start: { lean_object* x_7; -x_7 = l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14_spec__14(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7_spec__7(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); @@ -30856,11 +46088,11 @@ lean_dec_ref(x_2); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14___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_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7___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) { _start: { lean_object* x_7; -x_7 = l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14_spec__14(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__7(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); @@ -30868,11 +46100,11 @@ lean_dec_ref(x_2); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__0___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_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); @@ -30883,11 +46115,11 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__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: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__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_ref(x_7); lean_dec(x_6); @@ -30898,11 +46130,11 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__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) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); @@ -30915,11 +46147,11 @@ lean_dec_ref(x_1); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__14___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_Tactic_collectFreshMVars___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -30930,26 +46162,21 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__0___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -lean_object* x_9; -x_9 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec_ref(x_2); lean_dec(x_1); -return x_9; +return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__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: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__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_ref(x_7); lean_dec(x_6); @@ -30960,11 +46187,11 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__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) { _start: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -30975,82 +46202,65 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); +x_10 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__4___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +lean_object* x_22 = _args[21]; +_start: +{ +uint8_t x_23; lean_object* x_24; +x_23 = lean_unbox(x_4); +x_24 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4(x_1, x_2, x_3, x_23, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22); +lean_dec_ref(x_9); +return x_24; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); +x_11 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { -_start: -{ -lean_object* x_16; -x_16 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); -lean_dec(x_7); -return x_16; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__7___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__6___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: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__9___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: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -31061,42 +46271,19 @@ lean_dec_ref(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_13; -x_13 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -return x_13; +lean_object* x_12; +x_12 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { -_start: -{ -uint8_t x_16; lean_object* x_17; -x_16 = lean_unbox(x_3); -x_17 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__11(x_1, x_2, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); -lean_dec_ref(x_7); -lean_dec_ref(x_1); -return x_17; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__13___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; lean_object* x_13; -x_12 = lean_unbox(x_3); -x_13 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__13(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -return x_13; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__12___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__8___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: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__12(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -31107,12 +46294,39 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__14___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__10___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +_start: +{ +uint8_t x_18; lean_object* x_19; +x_18 = lean_unbox(x_8); +x_19 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_18, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec_ref(x_1); +return x_19; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; lean_object* x_12; x_11 = lean_unbox(x_2); -x_12 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__14(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__9(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); @@ -31122,7 +46336,578 @@ lean_dec(x_3); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__0___redArg___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; lean_object* x_13; +x_12 = lean_unbox(x_4); +x_13 = l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__0___redArg(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; lean_object* x_14; +x_13 = lean_unbox(x_5); +x_14 = l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__0(x_1, x_2, x_3, x_4, x_13, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__1___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_14 = lean_unbox(x_3); +x_15 = lean_unbox(x_4); +x_16 = lean_unbox(x_5); +x_17 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__1___lam__0(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__1___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +uint8_t x_12; lean_object* x_13; +x_12 = lean_unbox(x_2); +x_13 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__1___lam__1(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; size_t x_15; size_t x_16; lean_object* x_17; +x_14 = lean_unbox(x_2); +x_15 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_16 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_17 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__1(x_1, x_14, x_3, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec_ref(x_3); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__2___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__2___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_7); +lean_dec_ref(x_2); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__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, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; +x_14 = l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_8); +lean_dec_ref(x_2); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__3___lam__0___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: +{ +lean_object* x_10; +x_10 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__3___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +size_t x_11; size_t x_12; lean_object* x_13; +x_11 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_12 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_13 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__3(x_11, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__4___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: +{ +size_t x_12; size_t x_13; lean_object* x_14; +x_12 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__4(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__0___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: +{ +lean_object* x_10; +x_10 = l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__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) { +_start: +{ +lean_object* x_11; +x_11 = l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; size_t x_14; size_t x_15; lean_object* x_16; +x_13 = lean_unbox(x_1); +x_14 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_15 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_16 = l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__5(x_13, x_2, x_14, x_15, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_7); +lean_dec_ref(x_2); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__6___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_3); +x_12 = l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__6___redArg(x_1, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__6___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; lean_object* x_13; +x_12 = lean_unbox(x_4); +x_13 = l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__6(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__7___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_1); +x_12 = l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__7___lam__0(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__7___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: +{ +size_t x_12; size_t x_13; lean_object* x_14; +x_12 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__7(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +size_t x_5; size_t x_6; lean_object* x_7; +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_7 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__8(x_1, x_5, x_6, x_4); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__9___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__9___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__0___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: +{ +lean_object* x_10; +x_10 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec_ref(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__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, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_14 = lean_unbox(x_3); +x_15 = lean_unbox(x_4); +x_16 = lean_unbox(x_5); +x_17 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__2(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +uint8_t x_16; uint8_t x_17; lean_object* x_18; +x_16 = lean_unbox(x_7); +x_17 = lean_unbox(x_8); +x_18 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_16, x_17, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec_ref(x_6); +return x_18; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__4___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +_start: +{ +uint8_t x_18; uint8_t x_19; lean_object* x_20; +x_18 = lean_unbox(x_3); +x_19 = lean_unbox(x_8); +x_20 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__4(x_1, x_2, x_18, x_4, x_5, x_6, x_7, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +return x_20; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +_start: +{ +uint8_t x_17; uint8_t x_18; lean_object* x_19; +x_17 = lean_unbox(x_3); +x_18 = lean_unbox(x_6); +x_19 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___lam__5(x_1, x_2, x_17, x_4, x_5, x_18, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +return x_19; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_15 = lean_unbox(x_1); +x_16 = lean_unbox(x_3); +x_17 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___redArg(x_15, x_2, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_5); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +_start: +{ +uint8_t x_22; uint8_t x_23; uint8_t x_24; lean_object* x_25; +x_22 = lean_unbox(x_1); +x_23 = lean_unbox(x_3); +x_24 = lean_unbox(x_5); +x_25 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__10(x_22, x_2, x_23, x_4, x_24, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +lean_dec(x_10); +lean_dec(x_9); +return x_25; +} +} +LEAN_EXPORT lean_object* l_Lean_Option_get___at___Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11_spec__11___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Lean_Option_get___at___Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11_spec__11(x_1, x_2); +lean_dec_ref(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__4___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: +{ +lean_object* x_10; +x_10 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; uint8_t x_5; uint8_t x_6; lean_object* x_7; +x_4 = lean_unbox(x_1); +x_5 = lean_unbox(x_2); +x_6 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3(x_4, x_5, x_3); +lean_dec(x_3); +x_7 = lean_box(x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +_start: +{ +uint8_t x_17; uint8_t x_18; uint8_t x_19; lean_object* x_20; +x_17 = lean_unbox(x_5); +x_18 = lean_unbox(x_6); +x_19 = lean_unbox(x_7); +x_20 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__5(x_1, x_2, x_3, x_4, x_17, x_18, x_19, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +return x_20; +} +} +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___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); +x_13 = lean_unbox(x_4); +x_14 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11(x_1, x_2, x_12, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_1); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +uint8_t x_11; uint8_t x_12; lean_object* x_13; +x_11 = lean_unbox(x_2); +x_12 = lean_unbox(x_3); +x_13 = l_Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11(x_1, x_11, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_3); +return x_9; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__15___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__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, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_14 = lean_unbox(x_3); +x_15 = lean_unbox(x_4); +x_16 = lean_unbox(x_5); +x_17 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__2(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__3___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -31143,141 +46928,776 @@ lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; _start: { -lean_object* x_19; -x_19 = l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +uint8_t x_19; uint8_t x_20; lean_object* x_21; +x_19 = lean_unbox(x_8); +x_20 = lean_unbox(x_9); +x_21 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +lean_dec_ref(x_10); +lean_dec_ref(x_7); +lean_dec_ref(x_2); +return x_21; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__4___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +_start: +{ +uint8_t x_19; uint8_t x_20; lean_object* x_21; +x_19 = lean_unbox(x_7); +x_20 = lean_unbox(x_8); +x_21 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_19, x_20, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +return x_21; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__5___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +_start: +{ +uint8_t x_19; uint8_t x_20; lean_object* x_21; +x_19 = lean_unbox(x_6); +x_20 = lean_unbox(x_7); +x_21 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__5(x_1, x_2, x_3, x_4, x_5, x_19, x_20, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +return x_21; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__6___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +_start: +{ +uint8_t x_19; uint8_t x_20; lean_object* x_21; +x_19 = lean_unbox(x_5); +x_20 = lean_unbox(x_6); +x_21 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__6(x_1, x_2, x_3, x_4, x_19, x_20, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +lean_dec(x_9); +return x_21; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +_start: +{ +uint8_t x_17; uint8_t x_18; lean_object* x_19; +x_17 = lean_unbox(x_2); +x_18 = lean_unbox(x_3); +x_19 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg(x_1, x_17, x_18, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +lean_dec(x_7); return x_19; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +lean_object* x_22 = _args[21]; +lean_object* x_23 = _args[22]; _start: { -uint8_t x_4; lean_object* x_5; -x_4 = l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0_spec__0___redArg(x_1, x_2, x_3); -lean_dec(x_3); -lean_dec_ref(x_1); -x_5 = lean_box(x_4); -return x_5; +uint8_t x_24; uint8_t x_25; uint8_t x_26; lean_object* x_27; +x_24 = lean_unbox(x_2); +x_25 = lean_unbox(x_3); +x_26 = lean_unbox(x_7); +x_27 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16(x_1, x_24, x_25, x_4, x_5, x_6, x_26, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23); +lean_dec(x_12); +lean_dec(x_11); +return x_27; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0_spec__0___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) { -_start: -{ -uint8_t x_7; lean_object* x_8; -x_7 = l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0_spec__0(x_1, x_2, x_3, x_4, x_5, x_6); -lean_dec(x_6); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_8 = lean_box(x_7); -return x_8; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -size_t x_4; uint8_t x_5; lean_object* x_6; -x_4 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_5 = l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0___redArg(x_1, x_4, x_3); -lean_dec(x_3); -x_6 = lean_box(x_5); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -size_t x_5; uint8_t x_6; lean_object* x_7; -x_5 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_6 = l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0(x_1, x_2, x_5, x_4); -lean_dec(x_4); -x_7 = lean_box(x_6); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; lean_object* x_4; -x_3 = l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0___redArg(x_1, x_2); -lean_dec(x_2); -x_4 = lean_box(x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; lean_object* x_5; -x_4 = l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0(x_1, x_2, x_3); -lean_dec(x_3); -x_5 = lean_box(x_4); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0___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_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__17___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_3); -lean_dec(x_1); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__6___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -size_t x_6; lean_object* x_7; -x_6 = lean_unbox_usize(x_1); -lean_dec(x_1); -x_7 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__6___redArg(x_6, x_2, x_3, x_4, x_5); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__6___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: -{ -size_t x_8; lean_object* x_9; -x_8 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_9 = l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4_spec__6(x_1, x_8, x_3, x_4, x_5, x_6, x_7); +x_9 = l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__17___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); lean_dec_ref(x_4); -lean_dec_ref(x_3); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__17___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -size_t x_6; size_t x_7; lean_object* x_8; -x_6 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_7 = lean_unbox_usize(x_3); +lean_object* x_9; +x_9 = l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__17(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_3); -x_8 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4___redArg(x_1, x_6, x_7, x_4, x_5); -return x_8; +return x_9; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4___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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__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: { -size_t x_7; size_t x_8; lean_object* x_9; -x_7 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_8 = lean_unbox_usize(x_4); +lean_object* x_10; +x_10 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_4); -x_9 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4(x_1, x_2, x_7, x_8, x_5, x_6); -return x_9; +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; } } -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4___lam__0___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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_14 = lean_unbox(x_3); +x_15 = lean_unbox(x_4); +x_16 = lean_unbox(x_5); +x_17 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__0(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +uint8_t x_16; size_t x_17; lean_object* x_18; +x_16 = lean_unbox(x_6); +x_17 = lean_unbox_usize(x_7); +lean_dec(x_7); +x_18 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__3(x_1, x_2, x_3, x_4, x_5, x_16, x_17, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +return x_18; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +uint8_t x_16; size_t x_17; lean_object* x_18; +x_16 = lean_unbox(x_4); +x_17 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_18 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4(x_1, x_2, x_3, x_16, x_17, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec_ref(x_6); +return x_18; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__5___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: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__7___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +_start: +{ +size_t x_22; lean_object* x_23; +x_22 = lean_unbox_usize(x_6); +lean_dec(x_6); +x_23 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__7(x_1, x_2, x_3, x_4, x_5, x_22, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +lean_dec_ref(x_14); +lean_dec(x_5); +return x_23; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__8___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +lean_object* x_22 = _args[21]; +lean_object* x_23 = _args[22]; +lean_object* x_24 = _args[23]; +lean_object* x_25 = _args[24]; +lean_object* x_26 = _args[25]; +lean_object* x_27 = _args[26]; +lean_object* x_28 = _args[27]; +_start: +{ +size_t x_29; uint8_t x_30; uint8_t x_31; lean_object* x_32; +x_29 = lean_unbox_usize(x_7); +lean_dec(x_7); +x_30 = lean_unbox(x_17); +x_31 = lean_unbox(x_19); +x_32 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__8(x_1, x_2, x_3, x_4, x_5, x_6, x_29, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_30, x_18, x_31, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28); +return x_32; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__9___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: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__11(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__12___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: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__12(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__13(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__14___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +_start: +{ +size_t x_22; lean_object* x_23; +x_22 = lean_unbox_usize(x_6); +lean_dec(x_6); +x_23 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__14(x_1, x_2, x_3, x_4, x_5, x_22, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +lean_dec_ref(x_14); +lean_dec(x_5); +return x_23; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__15___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +lean_object* x_22 = _args[21]; +lean_object* x_23 = _args[22]; +lean_object* x_24 = _args[23]; +lean_object* x_25 = _args[24]; +lean_object* x_26 = _args[25]; +lean_object* x_27 = _args[26]; +lean_object* x_28 = _args[27]; +lean_object* x_29 = _args[28]; +lean_object* x_30 = _args[29]; +lean_object* x_31 = _args[30]; +lean_object* x_32 = _args[31]; +_start: +{ +size_t x_33; uint8_t x_34; uint8_t x_35; lean_object* x_36; +x_33 = lean_unbox_usize(x_6); +lean_dec(x_6); +x_34 = lean_unbox(x_21); +x_35 = lean_unbox(x_22); +x_36 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__15(x_1, x_2, x_3, x_4, x_5, x_33, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_34, x_35, x_23, x_24, x_25, x_26, x_27, x_28, x_29, x_30, x_31, x_32); +return x_36; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__16___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: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__16(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__17___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__17(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_3); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +lean_object* x_22 = _args[21]; +lean_object* x_23 = _args[22]; +lean_object* x_24 = _args[23]; +lean_object* x_25 = _args[24]; +lean_object* x_26 = _args[25]; +lean_object* x_27 = _args[26]; +lean_object* x_28 = _args[27]; +lean_object* x_29 = _args[28]; +lean_object* x_30 = _args[29]; +_start: +{ +size_t x_31; uint8_t x_32; uint8_t x_33; lean_object* x_34; +x_31 = lean_unbox_usize(x_11); +lean_dec(x_11); +x_32 = lean_unbox(x_19); +x_33 = lean_unbox(x_20); +x_34 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_31, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_32, x_33, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28, x_29, x_30); +return x_34; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__20___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: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__20(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +lean_object* x_22 = _args[21]; +lean_object* x_23 = _args[22]; +lean_object* x_24 = _args[23]; +lean_object* x_25 = _args[24]; +lean_object* x_26 = _args[25]; +_start: +{ +size_t x_27; uint8_t x_28; uint8_t x_29; uint8_t x_30; lean_object* x_31; +x_27 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_28 = lean_unbox(x_13); +x_29 = lean_unbox(x_15); +x_30 = lean_unbox(x_16); +x_31 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23(x_1, x_2, x_27, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_28, x_14, x_29, x_30, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26); +return x_31; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__21___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +lean_object* x_22 = _args[21]; +lean_object* x_23 = _args[22]; +lean_object* x_24 = _args[23]; +lean_object* x_25 = _args[24]; +lean_object* x_26 = _args[25]; +_start: +{ +uint8_t x_27; uint8_t x_28; uint8_t x_29; lean_object* x_30; +x_27 = lean_unbox(x_6); +x_28 = lean_unbox(x_15); +x_29 = lean_unbox(x_16); +x_30 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__21(x_1, x_2, x_3, x_4, x_5, x_27, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_28, x_29, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26); +return x_30; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_15 = lean_unbox(x_2); +x_16 = lean_unbox(x_3); +x_17 = l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3(x_1, x_15, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__0___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: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__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, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_14 = lean_unbox(x_3); +x_15 = lean_unbox(x_4); +x_16 = lean_unbox(x_5); +x_17 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__2(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +uint8_t x_12; lean_object* x_13; +x_12 = lean_unbox(x_3); +x_13 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__1(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_2); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4___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; lean_object* x_13; +x_12 = lean_unbox(x_3); +x_13 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +uint8_t x_12; lean_object* x_13; +x_12 = lean_unbox(x_4); +x_13 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__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: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__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; lean_object* x_13; +x_12 = lean_unbox(x_2); +x_13 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__2(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec_ref(x_4); +lean_dec_ref(x_1); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); @@ -31285,839 +47705,356 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); +lean_dec_ref(x_2); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { -lean_object* x_10; -x_10 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_4); -return x_10; +lean_object* x_15; +x_15 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_7); +return x_15; } } -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__0___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: -{ -lean_object* x_10; -x_10 = l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__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: -{ -lean_object* x_10; -x_10 = l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__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_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__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) { -_start: -{ -lean_object* x_10; -x_10 = l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { lean_object* x_14; -x_14 = l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_14 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_2); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_14 = lean_unbox(x_3); +x_15 = lean_unbox(x_4); +x_16 = lean_unbox(x_5); +x_17 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__8(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +_start: +{ +uint8_t x_17; uint8_t x_18; lean_object* x_19; +x_17 = lean_unbox(x_6); +x_18 = lean_unbox(x_7); +x_19 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__6(x_1, x_2, x_3, x_4, x_5, x_17, x_18, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +return x_19; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__7___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +_start: +{ +uint8_t x_21; uint8_t x_22; lean_object* x_23; +x_21 = lean_unbox(x_5); +x_22 = lean_unbox(x_10); +x_23 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__7(x_1, x_2, x_3, x_4, x_21, x_6, x_7, x_8, x_9, x_22, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); +lean_dec_ref(x_13); +return x_23; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +_start: +{ +lean_object* x_17; +x_17 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +lean_dec_ref(x_6); +lean_dec_ref(x_3); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; uint8_t x_14; lean_object* x_15; +x_13 = lean_unbox(x_3); +x_14 = lean_unbox(x_4); +x_15 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__9(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_1); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__11___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +_start: +{ +uint8_t x_20; lean_object* x_21; +x_20 = lean_unbox(x_11); +x_21 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__11(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_20, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +lean_dec(x_10); +return x_21; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_14 = lean_unbox(x_3); +x_15 = lean_unbox(x_4); +x_16 = lean_unbox(x_5); +x_17 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__0(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +uint8_t x_12; lean_object* x_13; +x_12 = lean_unbox(x_3); +x_13 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__1(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +lean_dec(x_1); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__6___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: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0_spec__0___redArg(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec_ref(x_1); +x_5 = lean_box(x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0_spec__0___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) { +_start: +{ +uint8_t x_7; lean_object* x_8; +x_7 = l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0_spec__0(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_6); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_8 = lean_box(x_7); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; uint8_t x_5; lean_object* x_6; +x_4 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_5 = l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0___redArg(x_1, x_4, x_3); +lean_dec(x_3); +x_6 = lean_box(x_5); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +size_t x_5; uint8_t x_6; lean_object* x_7; +x_5 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_6 = l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0_spec__0(x_1, x_2, x_5, x_4); +lean_dec(x_4); +x_7 = lean_box(x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0___redArg(x_1, x_2); +lean_dec(x_2); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0_spec__0(x_1, x_2, x_3); +lean_dec(x_3); +x_5 = lean_box(x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_3); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__0___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: +{ +lean_object* x_10; +x_10 = l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__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: +{ +lean_object* x_10; +x_10 = l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__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_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; +x_14 = l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_3); return x_14; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_step___closed__0() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(4u); -x_2 = lean_unsigned_to_nat(8u); -x_3 = lean_nat_mul(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(3u); -x_2 = l_Lean_Elab_Tactic_Do_step___closed__0; -x_3 = lean_nat_div(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_step___closed__1; -x_2 = l_Nat_nextPowerOfTwo(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_Do_step___closed__2; -x_3 = lean_mk_array(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Do_step___closed__3; -x_2 = lean_unsigned_to_nat(0u); -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_step___closed__5; -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_Elab_Tactic_Do_step___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_Do_step___closed__6; -x_2 = l_Lean_Elab_Tactic_Do_step___closed__4; -x_3 = 1; -x_4 = lean_alloc_ctor(0, 2, 1); -lean_ctor_set(x_4, 0, x_2); -lean_ctor_set(x_4, 1, x_1); -lean_ctor_set_uint8(x_4, sizeof(void*)*2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_step___closed__5; -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_Elab_Tactic_Do_step___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(0u); -x_2 = l_Lean_Elab_Tactic_Do_step___closed__8; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_step___closed__5; -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_Elab_Tactic_Do_step___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(32u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_step___closed__11; -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_Elab_Tactic_Do_step___closed__13() { -_start: -{ -size_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = 5; -x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Tactic_Do_step___closed__11; -x_4 = l_Lean_Elab_Tactic_Do_step___closed__12; -x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); -lean_ctor_set(x_5, 0, x_4); -lean_ctor_set(x_5, 1, x_3); -lean_ctor_set(x_5, 2, x_2); -lean_ctor_set(x_5, 3, x_2); -lean_ctor_set_usize(x_5, 4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step___closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_Do_step___closed__13; -x_2 = l_Lean_Elab_Tactic_Do_step___closed__10; -x_3 = l_Lean_Elab_Tactic_Do_step___closed__8; -x_4 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_4, 0, x_3); -lean_ctor_set(x_4, 1, x_3); -lean_ctor_set(x_4, 2, x_2); -lean_ctor_set(x_4, 3, x_1); -return x_4; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step___closed__15() { -_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_Tactic_Do_step___closed__14; -x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Tactic_Do_step___closed__9; -x_4 = l_Lean_Elab_Tactic_Do_step___closed__4; -x_5 = l_Lean_Elab_Tactic_Do_step___closed__7; -x_6 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_6, 0, x_5); -lean_ctor_set(x_6, 1, x_4); -lean_ctor_set(x_6, 2, x_4); -lean_ctor_set(x_6, 3, x_3); -lean_ctor_set(x_6, 4, x_2); -lean_ctor_set(x_6, 5, x_1); -return x_6; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_step___closed__16() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(0u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; -} -} -static uint64_t _init_l_Lean_Elab_Tactic_Do_step___closed__17() { -_start: -{ -uint8_t x_1; uint64_t x_2; -x_1 = 2; -x_2 = l_Lean_Meta_TransparencyMode_toUInt64(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_step(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_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; -x_10 = l_Lean_Elab_Tactic_Do_step___closed__15; -x_11 = l_Lean_Elab_Tactic_Do_step___closed__16; -x_12 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_12, 0, x_2); -lean_ctor_set(x_12, 1, x_10); -lean_ctor_set(x_12, 2, x_11); -x_13 = lean_st_mk_ref(x_12, x_9); -x_14 = !lean_is_exclusive(x_13); -if (x_14 == 0) -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_15 = lean_ctor_get(x_13, 0); -x_16 = lean_ctor_get(x_13, 1); -x_17 = l_Lean_Meta_Context_config(x_5); -x_18 = !lean_is_exclusive(x_17); -if (x_18 == 0) -{ -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; uint8_t x_26; uint8_t x_27; uint8_t x_28; uint64_t x_29; uint8_t x_30; -x_19 = lean_ctor_get_uint8(x_5, sizeof(void*)*7); -x_20 = lean_ctor_get(x_5, 1); -lean_inc(x_20); -x_21 = lean_ctor_get(x_5, 2); -lean_inc_ref(x_21); -x_22 = lean_ctor_get(x_5, 3); -lean_inc_ref(x_22); -x_23 = lean_ctor_get(x_5, 4); -lean_inc(x_23); -x_24 = lean_ctor_get(x_5, 5); -lean_inc(x_24); -x_25 = lean_ctor_get(x_5, 6); -lean_inc(x_25); -x_26 = lean_ctor_get_uint8(x_5, sizeof(void*)*7 + 1); -x_27 = lean_ctor_get_uint8(x_5, sizeof(void*)*7 + 2); -x_28 = 2; -lean_ctor_set_uint8(x_17, 9, x_28); -x_29 = l_Lean_Meta_Context_configKey(x_5); -x_30 = !lean_is_exclusive(x_5); -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; lean_object* x_37; uint64_t x_38; uint64_t x_39; uint64_t x_40; uint64_t x_41; uint64_t x_42; lean_object* x_43; lean_object* x_44; -x_31 = lean_ctor_get(x_5, 6); -lean_dec(x_31); -x_32 = lean_ctor_get(x_5, 5); -lean_dec(x_32); -x_33 = lean_ctor_get(x_5, 4); -lean_dec(x_33); -x_34 = lean_ctor_get(x_5, 3); -lean_dec(x_34); -x_35 = lean_ctor_get(x_5, 2); -lean_dec(x_35); -x_36 = lean_ctor_get(x_5, 1); -lean_dec(x_36); -x_37 = lean_ctor_get(x_5, 0); -lean_dec(x_37); -x_38 = 2; -x_39 = lean_uint64_shift_right(x_29, x_38); -x_40 = lean_uint64_shift_left(x_39, x_38); -x_41 = l_Lean_Elab_Tactic_Do_step___closed__17; -x_42 = lean_uint64_lor(x_40, x_41); -x_43 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_43, 0, x_17); -lean_ctor_set_uint64(x_43, sizeof(void*)*1, x_42); -lean_ctor_set(x_5, 0, x_43); -lean_inc(x_15); -lean_inc_ref(x_1); -x_44 = l_Lean_Elab_Tactic_Do_step_onGoal(x_1, x_3, x_4, x_1, x_15, x_5, x_6, x_7, x_8, x_16); -if (lean_obj_tag(x_44) == 0) -{ -lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; -x_45 = lean_ctor_get(x_44, 0); -lean_inc(x_45); -x_46 = lean_ctor_get(x_44, 1); -lean_inc(x_46); -lean_dec_ref(x_44); -x_47 = lean_st_ref_get(x_15, x_46); -lean_dec(x_15); -x_48 = !lean_is_exclusive(x_47); -if (x_48 == 0) -{ -lean_object* x_49; lean_object* x_50; -x_49 = lean_ctor_get(x_47, 0); -x_50 = lean_ctor_get(x_49, 2); -lean_inc_ref(x_50); -lean_dec(x_49); -lean_ctor_set(x_13, 1, x_50); -lean_ctor_set(x_13, 0, x_45); -lean_ctor_set(x_47, 0, x_13); -return x_47; -} -else -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_51 = lean_ctor_get(x_47, 0); -x_52 = lean_ctor_get(x_47, 1); -lean_inc(x_52); -lean_inc(x_51); -lean_dec(x_47); -x_53 = lean_ctor_get(x_51, 2); -lean_inc_ref(x_53); -lean_dec(x_51); -lean_ctor_set(x_13, 1, x_53); -lean_ctor_set(x_13, 0, x_45); -x_54 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_54, 0, x_13); -lean_ctor_set(x_54, 1, x_52); -return x_54; -} -} -else -{ -uint8_t x_55; -lean_free_object(x_13); -lean_dec(x_15); -x_55 = !lean_is_exclusive(x_44); -if (x_55 == 0) -{ -return x_44; -} -else -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_56 = lean_ctor_get(x_44, 0); -x_57 = lean_ctor_get(x_44, 1); -lean_inc(x_57); -lean_inc(x_56); -lean_dec(x_44); -x_58 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_58, 0, x_56); -lean_ctor_set(x_58, 1, x_57); -return x_58; -} -} -} -else -{ -uint64_t x_59; uint64_t x_60; uint64_t x_61; uint64_t x_62; uint64_t x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; -lean_dec(x_5); -x_59 = 2; -x_60 = lean_uint64_shift_right(x_29, x_59); -x_61 = lean_uint64_shift_left(x_60, x_59); -x_62 = l_Lean_Elab_Tactic_Do_step___closed__17; -x_63 = lean_uint64_lor(x_61, x_62); -x_64 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_64, 0, x_17); -lean_ctor_set_uint64(x_64, sizeof(void*)*1, x_63); -x_65 = lean_alloc_ctor(0, 7, 3); -lean_ctor_set(x_65, 0, x_64); -lean_ctor_set(x_65, 1, x_20); -lean_ctor_set(x_65, 2, x_21); -lean_ctor_set(x_65, 3, x_22); -lean_ctor_set(x_65, 4, x_23); -lean_ctor_set(x_65, 5, x_24); -lean_ctor_set(x_65, 6, x_25); -lean_ctor_set_uint8(x_65, sizeof(void*)*7, x_19); -lean_ctor_set_uint8(x_65, sizeof(void*)*7 + 1, x_26); -lean_ctor_set_uint8(x_65, sizeof(void*)*7 + 2, x_27); -lean_inc(x_15); -lean_inc_ref(x_1); -x_66 = l_Lean_Elab_Tactic_Do_step_onGoal(x_1, x_3, x_4, x_1, x_15, x_65, x_6, x_7, x_8, x_16); -if (lean_obj_tag(x_66) == 0) -{ -lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_67 = lean_ctor_get(x_66, 0); -lean_inc(x_67); -x_68 = lean_ctor_get(x_66, 1); -lean_inc(x_68); -lean_dec_ref(x_66); -x_69 = lean_st_ref_get(x_15, x_68); -lean_dec(x_15); -x_70 = lean_ctor_get(x_69, 0); -lean_inc(x_70); -x_71 = lean_ctor_get(x_69, 1); -lean_inc(x_71); -if (lean_is_exclusive(x_69)) { - lean_ctor_release(x_69, 0); - lean_ctor_release(x_69, 1); - x_72 = x_69; -} else { - lean_dec_ref(x_69); - x_72 = lean_box(0); -} -x_73 = lean_ctor_get(x_70, 2); -lean_inc_ref(x_73); -lean_dec(x_70); -lean_ctor_set(x_13, 1, x_73); -lean_ctor_set(x_13, 0, x_67); -if (lean_is_scalar(x_72)) { - x_74 = lean_alloc_ctor(0, 2, 0); -} else { - x_74 = x_72; -} -lean_ctor_set(x_74, 0, x_13); -lean_ctor_set(x_74, 1, x_71); -return x_74; -} -else -{ -lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; -lean_free_object(x_13); -lean_dec(x_15); -x_75 = lean_ctor_get(x_66, 0); -lean_inc(x_75); -x_76 = lean_ctor_get(x_66, 1); -lean_inc(x_76); -if (lean_is_exclusive(x_66)) { - lean_ctor_release(x_66, 0); - lean_ctor_release(x_66, 1); - x_77 = x_66; -} else { - lean_dec_ref(x_66); - x_77 = lean_box(0); -} -if (lean_is_scalar(x_77)) { - x_78 = lean_alloc_ctor(1, 2, 0); -} else { - x_78 = x_77; -} -lean_ctor_set(x_78, 0, x_75); -lean_ctor_set(x_78, 1, x_76); -return x_78; -} -} -} -else -{ -uint8_t x_79; uint8_t x_80; uint8_t x_81; uint8_t x_82; uint8_t x_83; uint8_t x_84; uint8_t x_85; uint8_t x_86; uint8_t x_87; uint8_t x_88; uint8_t x_89; uint8_t x_90; uint8_t x_91; uint8_t x_92; uint8_t x_93; uint8_t x_94; uint8_t x_95; uint8_t x_96; uint8_t 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; uint8_t x_104; uint8_t x_105; uint8_t x_106; lean_object* x_107; uint64_t x_108; lean_object* x_109; uint64_t x_110; uint64_t x_111; uint64_t x_112; uint64_t x_113; uint64_t x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; -x_79 = lean_ctor_get_uint8(x_17, 0); -x_80 = lean_ctor_get_uint8(x_17, 1); -x_81 = lean_ctor_get_uint8(x_17, 2); -x_82 = lean_ctor_get_uint8(x_17, 3); -x_83 = lean_ctor_get_uint8(x_17, 4); -x_84 = lean_ctor_get_uint8(x_17, 5); -x_85 = lean_ctor_get_uint8(x_17, 6); -x_86 = lean_ctor_get_uint8(x_17, 7); -x_87 = lean_ctor_get_uint8(x_17, 8); -x_88 = lean_ctor_get_uint8(x_17, 10); -x_89 = lean_ctor_get_uint8(x_17, 11); -x_90 = lean_ctor_get_uint8(x_17, 12); -x_91 = lean_ctor_get_uint8(x_17, 13); -x_92 = lean_ctor_get_uint8(x_17, 14); -x_93 = lean_ctor_get_uint8(x_17, 15); -x_94 = lean_ctor_get_uint8(x_17, 16); -x_95 = lean_ctor_get_uint8(x_17, 17); -x_96 = lean_ctor_get_uint8(x_17, 18); -lean_dec(x_17); -x_97 = lean_ctor_get_uint8(x_5, sizeof(void*)*7); -x_98 = lean_ctor_get(x_5, 1); -lean_inc(x_98); -x_99 = lean_ctor_get(x_5, 2); -lean_inc_ref(x_99); -x_100 = lean_ctor_get(x_5, 3); -lean_inc_ref(x_100); -x_101 = lean_ctor_get(x_5, 4); -lean_inc(x_101); -x_102 = lean_ctor_get(x_5, 5); -lean_inc(x_102); -x_103 = lean_ctor_get(x_5, 6); -lean_inc(x_103); -x_104 = lean_ctor_get_uint8(x_5, sizeof(void*)*7 + 1); -x_105 = lean_ctor_get_uint8(x_5, sizeof(void*)*7 + 2); -x_106 = 2; -x_107 = lean_alloc_ctor(0, 0, 19); -lean_ctor_set_uint8(x_107, 0, x_79); -lean_ctor_set_uint8(x_107, 1, x_80); -lean_ctor_set_uint8(x_107, 2, x_81); -lean_ctor_set_uint8(x_107, 3, x_82); -lean_ctor_set_uint8(x_107, 4, x_83); -lean_ctor_set_uint8(x_107, 5, x_84); -lean_ctor_set_uint8(x_107, 6, x_85); -lean_ctor_set_uint8(x_107, 7, x_86); -lean_ctor_set_uint8(x_107, 8, x_87); -lean_ctor_set_uint8(x_107, 9, x_106); -lean_ctor_set_uint8(x_107, 10, x_88); -lean_ctor_set_uint8(x_107, 11, x_89); -lean_ctor_set_uint8(x_107, 12, x_90); -lean_ctor_set_uint8(x_107, 13, x_91); -lean_ctor_set_uint8(x_107, 14, x_92); -lean_ctor_set_uint8(x_107, 15, x_93); -lean_ctor_set_uint8(x_107, 16, x_94); -lean_ctor_set_uint8(x_107, 17, x_95); -lean_ctor_set_uint8(x_107, 18, x_96); -x_108 = l_Lean_Meta_Context_configKey(x_5); -if (lean_is_exclusive(x_5)) { - lean_ctor_release(x_5, 0); - lean_ctor_release(x_5, 1); - lean_ctor_release(x_5, 2); - lean_ctor_release(x_5, 3); - lean_ctor_release(x_5, 4); - lean_ctor_release(x_5, 5); - lean_ctor_release(x_5, 6); - x_109 = x_5; -} else { - lean_dec_ref(x_5); - x_109 = lean_box(0); -} -x_110 = 2; -x_111 = lean_uint64_shift_right(x_108, x_110); -x_112 = lean_uint64_shift_left(x_111, x_110); -x_113 = l_Lean_Elab_Tactic_Do_step___closed__17; -x_114 = lean_uint64_lor(x_112, x_113); -x_115 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_115, 0, x_107); -lean_ctor_set_uint64(x_115, sizeof(void*)*1, x_114); -if (lean_is_scalar(x_109)) { - x_116 = lean_alloc_ctor(0, 7, 3); -} else { - x_116 = x_109; -} -lean_ctor_set(x_116, 0, x_115); -lean_ctor_set(x_116, 1, x_98); -lean_ctor_set(x_116, 2, x_99); -lean_ctor_set(x_116, 3, x_100); -lean_ctor_set(x_116, 4, x_101); -lean_ctor_set(x_116, 5, x_102); -lean_ctor_set(x_116, 6, x_103); -lean_ctor_set_uint8(x_116, sizeof(void*)*7, x_97); -lean_ctor_set_uint8(x_116, sizeof(void*)*7 + 1, x_104); -lean_ctor_set_uint8(x_116, sizeof(void*)*7 + 2, x_105); -lean_inc(x_15); -lean_inc_ref(x_1); -x_117 = l_Lean_Elab_Tactic_Do_step_onGoal(x_1, x_3, x_4, x_1, x_15, x_116, x_6, x_7, x_8, x_16); -if (lean_obj_tag(x_117) == 0) -{ -lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; -x_118 = lean_ctor_get(x_117, 0); -lean_inc(x_118); -x_119 = lean_ctor_get(x_117, 1); -lean_inc(x_119); -lean_dec_ref(x_117); -x_120 = lean_st_ref_get(x_15, x_119); -lean_dec(x_15); -x_121 = lean_ctor_get(x_120, 0); -lean_inc(x_121); -x_122 = lean_ctor_get(x_120, 1); -lean_inc(x_122); -if (lean_is_exclusive(x_120)) { - lean_ctor_release(x_120, 0); - lean_ctor_release(x_120, 1); - x_123 = x_120; -} else { - lean_dec_ref(x_120); - x_123 = lean_box(0); -} -x_124 = lean_ctor_get(x_121, 2); -lean_inc_ref(x_124); -lean_dec(x_121); -lean_ctor_set(x_13, 1, x_124); -lean_ctor_set(x_13, 0, x_118); -if (lean_is_scalar(x_123)) { - x_125 = lean_alloc_ctor(0, 2, 0); -} else { - x_125 = x_123; -} -lean_ctor_set(x_125, 0, x_13); -lean_ctor_set(x_125, 1, x_122); -return x_125; -} -else -{ -lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; -lean_free_object(x_13); -lean_dec(x_15); -x_126 = lean_ctor_get(x_117, 0); -lean_inc(x_126); -x_127 = lean_ctor_get(x_117, 1); -lean_inc(x_127); -if (lean_is_exclusive(x_117)) { - lean_ctor_release(x_117, 0); - lean_ctor_release(x_117, 1); - x_128 = x_117; -} else { - lean_dec_ref(x_117); - x_128 = lean_box(0); -} -if (lean_is_scalar(x_128)) { - x_129 = lean_alloc_ctor(1, 2, 0); -} else { - x_129 = x_128; -} -lean_ctor_set(x_129, 0, x_126); -lean_ctor_set(x_129, 1, x_127); -return x_129; -} -} -} -else -{ -lean_object* x_130; lean_object* x_131; lean_object* x_132; uint8_t x_133; uint8_t x_134; uint8_t x_135; uint8_t x_136; uint8_t x_137; uint8_t x_138; uint8_t x_139; uint8_t x_140; uint8_t x_141; uint8_t x_142; uint8_t x_143; uint8_t x_144; uint8_t x_145; uint8_t x_146; uint8_t x_147; uint8_t x_148; uint8_t x_149; uint8_t x_150; lean_object* x_151; uint8_t 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; uint8_t x_159; uint8_t x_160; uint8_t x_161; lean_object* x_162; uint64_t x_163; lean_object* x_164; uint64_t x_165; uint64_t x_166; uint64_t x_167; uint64_t x_168; uint64_t x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; -x_130 = lean_ctor_get(x_13, 0); -x_131 = lean_ctor_get(x_13, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_13); -x_132 = l_Lean_Meta_Context_config(x_5); -x_133 = lean_ctor_get_uint8(x_132, 0); -x_134 = lean_ctor_get_uint8(x_132, 1); -x_135 = lean_ctor_get_uint8(x_132, 2); -x_136 = lean_ctor_get_uint8(x_132, 3); -x_137 = lean_ctor_get_uint8(x_132, 4); -x_138 = lean_ctor_get_uint8(x_132, 5); -x_139 = lean_ctor_get_uint8(x_132, 6); -x_140 = lean_ctor_get_uint8(x_132, 7); -x_141 = lean_ctor_get_uint8(x_132, 8); -x_142 = lean_ctor_get_uint8(x_132, 10); -x_143 = lean_ctor_get_uint8(x_132, 11); -x_144 = lean_ctor_get_uint8(x_132, 12); -x_145 = lean_ctor_get_uint8(x_132, 13); -x_146 = lean_ctor_get_uint8(x_132, 14); -x_147 = lean_ctor_get_uint8(x_132, 15); -x_148 = lean_ctor_get_uint8(x_132, 16); -x_149 = lean_ctor_get_uint8(x_132, 17); -x_150 = lean_ctor_get_uint8(x_132, 18); -if (lean_is_exclusive(x_132)) { - x_151 = x_132; -} else { - lean_dec_ref(x_132); - x_151 = lean_box(0); -} -x_152 = lean_ctor_get_uint8(x_5, sizeof(void*)*7); -x_153 = lean_ctor_get(x_5, 1); -lean_inc(x_153); -x_154 = lean_ctor_get(x_5, 2); -lean_inc_ref(x_154); -x_155 = lean_ctor_get(x_5, 3); -lean_inc_ref(x_155); -x_156 = lean_ctor_get(x_5, 4); -lean_inc(x_156); -x_157 = lean_ctor_get(x_5, 5); -lean_inc(x_157); -x_158 = lean_ctor_get(x_5, 6); -lean_inc(x_158); -x_159 = lean_ctor_get_uint8(x_5, sizeof(void*)*7 + 1); -x_160 = lean_ctor_get_uint8(x_5, sizeof(void*)*7 + 2); -x_161 = 2; -if (lean_is_scalar(x_151)) { - x_162 = lean_alloc_ctor(0, 0, 19); -} else { - x_162 = x_151; -} -lean_ctor_set_uint8(x_162, 0, x_133); -lean_ctor_set_uint8(x_162, 1, x_134); -lean_ctor_set_uint8(x_162, 2, x_135); -lean_ctor_set_uint8(x_162, 3, x_136); -lean_ctor_set_uint8(x_162, 4, x_137); -lean_ctor_set_uint8(x_162, 5, x_138); -lean_ctor_set_uint8(x_162, 6, x_139); -lean_ctor_set_uint8(x_162, 7, x_140); -lean_ctor_set_uint8(x_162, 8, x_141); -lean_ctor_set_uint8(x_162, 9, x_161); -lean_ctor_set_uint8(x_162, 10, x_142); -lean_ctor_set_uint8(x_162, 11, x_143); -lean_ctor_set_uint8(x_162, 12, x_144); -lean_ctor_set_uint8(x_162, 13, x_145); -lean_ctor_set_uint8(x_162, 14, x_146); -lean_ctor_set_uint8(x_162, 15, x_147); -lean_ctor_set_uint8(x_162, 16, x_148); -lean_ctor_set_uint8(x_162, 17, x_149); -lean_ctor_set_uint8(x_162, 18, x_150); -x_163 = l_Lean_Meta_Context_configKey(x_5); -if (lean_is_exclusive(x_5)) { - lean_ctor_release(x_5, 0); - lean_ctor_release(x_5, 1); - lean_ctor_release(x_5, 2); - lean_ctor_release(x_5, 3); - lean_ctor_release(x_5, 4); - lean_ctor_release(x_5, 5); - lean_ctor_release(x_5, 6); - x_164 = x_5; -} else { - lean_dec_ref(x_5); - x_164 = lean_box(0); -} -x_165 = 2; -x_166 = lean_uint64_shift_right(x_163, x_165); -x_167 = lean_uint64_shift_left(x_166, x_165); -x_168 = l_Lean_Elab_Tactic_Do_step___closed__17; -x_169 = lean_uint64_lor(x_167, x_168); -x_170 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_170, 0, x_162); -lean_ctor_set_uint64(x_170, sizeof(void*)*1, x_169); -if (lean_is_scalar(x_164)) { - x_171 = lean_alloc_ctor(0, 7, 3); -} else { - x_171 = x_164; -} -lean_ctor_set(x_171, 0, x_170); -lean_ctor_set(x_171, 1, x_153); -lean_ctor_set(x_171, 2, x_154); -lean_ctor_set(x_171, 3, x_155); -lean_ctor_set(x_171, 4, x_156); -lean_ctor_set(x_171, 5, x_157); -lean_ctor_set(x_171, 6, x_158); -lean_ctor_set_uint8(x_171, sizeof(void*)*7, x_152); -lean_ctor_set_uint8(x_171, sizeof(void*)*7 + 1, x_159); -lean_ctor_set_uint8(x_171, sizeof(void*)*7 + 2, x_160); -lean_inc(x_130); -lean_inc_ref(x_1); -x_172 = l_Lean_Elab_Tactic_Do_step_onGoal(x_1, x_3, x_4, x_1, x_130, x_171, x_6, x_7, x_8, x_131); -if (lean_obj_tag(x_172) == 0) -{ -lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; -x_173 = lean_ctor_get(x_172, 0); -lean_inc(x_173); -x_174 = lean_ctor_get(x_172, 1); -lean_inc(x_174); -lean_dec_ref(x_172); -x_175 = lean_st_ref_get(x_130, x_174); -lean_dec(x_130); -x_176 = lean_ctor_get(x_175, 0); -lean_inc(x_176); -x_177 = lean_ctor_get(x_175, 1); -lean_inc(x_177); -if (lean_is_exclusive(x_175)) { - lean_ctor_release(x_175, 0); - lean_ctor_release(x_175, 1); - x_178 = x_175; -} else { - lean_dec_ref(x_175); - x_178 = lean_box(0); -} -x_179 = lean_ctor_get(x_176, 2); -lean_inc_ref(x_179); -lean_dec(x_176); -x_180 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_180, 0, x_173); -lean_ctor_set(x_180, 1, x_179); -if (lean_is_scalar(x_178)) { - x_181 = lean_alloc_ctor(0, 2, 0); -} else { - x_181 = x_178; -} -lean_ctor_set(x_181, 0, x_180); -lean_ctor_set(x_181, 1, x_177); -return x_181; -} -else -{ -lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; -lean_dec(x_130); -x_182 = lean_ctor_get(x_172, 0); -lean_inc(x_182); -x_183 = lean_ctor_get(x_172, 1); -lean_inc(x_183); -if (lean_is_exclusive(x_172)) { - lean_ctor_release(x_172, 0); - lean_ctor_release(x_172, 1); - x_184 = x_172; -} else { - lean_dec_ref(x_172); - x_184 = lean_box(0); -} -if (lean_is_scalar(x_184)) { - x_185 = lean_alloc_ctor(1, 2, 0); -} else { - x_185 = x_184; -} -lean_ctor_set(x_185, 0, x_182); -lean_ctor_set(x_185, 1, x_183); -return x_185; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_genVCs_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; @@ -32140,7 +48077,7 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; x_12 = lean_ctor_get(x_7, 7); -x_13 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4___redArg(x_12, x_1, x_2); +x_13 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16___redArg(x_12, x_1, x_2); lean_ctor_set(x_7, 7, x_13); x_14 = lean_st_ref_set(x_3, x_6, x_8); x_15 = !lean_is_exclusive(x_14); @@ -32188,7 +48125,7 @@ lean_inc(x_23); lean_inc(x_22); lean_inc(x_21); lean_dec(x_7); -x_30 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4___redArg(x_28, x_1, x_2); +x_30 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16___redArg(x_28, x_1, x_2); x_31 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_31, 0, x_21); lean_ctor_set(x_31, 1, x_22); @@ -32267,7 +48204,7 @@ if (lean_is_exclusive(x_7)) { lean_dec_ref(x_7); x_50 = lean_box(0); } -x_51 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4___redArg(x_48, x_1, x_2); +x_51 = l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16___redArg(x_48, x_1, x_2); if (lean_is_scalar(x_50)) { x_52 = lean_alloc_ctor(0, 9, 0); } else { @@ -32311,870 +48248,189 @@ return x_58; } } } -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_genVCs_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_spec__0(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_12; -x_12 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_genVCs_spec__0___redArg(x_1, x_2, x_8, x_11); -return x_12; +lean_object* x_8; +x_8 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_spec__0___redArg(x_1, x_2, x_4, x_7); +return x_8; } } -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_genVCs_spec__1___redArg___lam__0(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_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_VCGen_genVCs_spec__1___redArg(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_11; -x_11 = lean_apply_9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_genVCs_spec__1___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: +lean_object* x_8; +x_8 = l___private_Lean_Meta_Basic_0__Lean_Meta_withMVarContextImp(lean_box(0), x_1, x_2, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) { -lean_object* x_12; lean_object* x_13; -x_12 = lean_alloc_closure((void*)(l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_genVCs_spec__1___redArg___lam__0), 10, 5); -lean_closure_set(x_12, 0, x_2); -lean_closure_set(x_12, 1, x_3); -lean_closure_set(x_12, 2, x_4); -lean_closure_set(x_12, 3, x_5); -lean_closure_set(x_12, 4, x_6); -x_13 = l___private_Lean_Meta_Basic_0__Lean_Meta_withMVarContextImp(lean_box(0), x_1, x_12, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_13) == 0) +uint8_t x_9; +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) { -return x_13; +return x_8; } else { -uint8_t x_14; -x_14 = !lean_is_exclusive(x_13); -if (x_14 == 0) -{ -return x_13; -} -else -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_15 = lean_ctor_get(x_13, 0); -x_16 = lean_ctor_get(x_13, 1); -lean_inc(x_16); -lean_inc(x_15); -lean_dec(x_13); -x_17 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_17, 0, x_15); -lean_ctor_set(x_17, 1, x_16); -return x_17; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_genVCs_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; -x_13 = l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_genVCs_spec__1___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -return x_13; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_genVCs___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -lean_object* x_14; -lean_inc(x_1); -x_14 = l_Lean_MVarId_getTag(x_1, x_9, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_14) == 0) -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_15 = lean_ctor_get(x_14, 0); -lean_inc(x_15); -x_16 = lean_ctor_get(x_14, 1); -lean_inc(x_16); -lean_dec_ref(x_14); +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_8, 1); +lean_inc(x_11); lean_inc(x_10); -x_17 = l_Lean_Elab_Tactic_Do_step(x_2, x_3, x_4, x_15, x_9, x_10, x_11, x_12, x_16); -if (lean_obj_tag(x_17) == 0) -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; -x_18 = lean_ctor_get(x_17, 0); -lean_inc(x_18); -x_19 = lean_ctor_get(x_17, 1); -lean_inc(x_19); -lean_dec_ref(x_17); -x_20 = lean_ctor_get(x_18, 0); -lean_inc(x_20); -x_21 = lean_ctor_get(x_18, 1); -lean_inc(x_21); -lean_dec(x_18); -x_22 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_genVCs_spec__0___redArg(x_1, x_20, x_10, x_19); -lean_dec(x_10); -x_23 = !lean_is_exclusive(x_22); -if (x_23 == 0) -{ -lean_object* x_24; -x_24 = lean_ctor_get(x_22, 0); -lean_dec(x_24); -lean_ctor_set(x_22, 0, x_21); -return x_22; -} -else -{ -lean_object* x_25; lean_object* x_26; -x_25 = lean_ctor_get(x_22, 1); -lean_inc(x_25); -lean_dec(x_22); -x_26 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_26, 0, x_21); -lean_ctor_set(x_26, 1, x_25); -return x_26; -} -} -else -{ -uint8_t x_27; -lean_dec(x_10); -lean_dec(x_1); -x_27 = !lean_is_exclusive(x_17); -if (x_27 == 0) -{ -return x_17; -} -else -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = lean_ctor_get(x_17, 0); -x_29 = lean_ctor_get(x_17, 1); -lean_inc(x_29); -lean_inc(x_28); -lean_dec(x_17); -x_30 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_30, 0, x_28); -lean_ctor_set(x_30, 1, x_29); -return x_30; -} -} -} -else -{ -uint8_t x_31; -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -lean_dec(x_1); -x_31 = !lean_is_exclusive(x_14); -if (x_31 == 0) -{ -return x_14; -} -else -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_32 = lean_ctor_get(x_14, 0); -x_33 = lean_ctor_get(x_14, 1); -lean_inc(x_33); -lean_inc(x_32); -lean_dec(x_14); -x_34 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_34, 0, x_32); -lean_ctor_set(x_34, 1, x_33); -return x_34; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_genVCs(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_35; -x_35 = lean_ctor_get_uint8(x_2, sizeof(void*)*3); -if (x_35 == 0) -{ -uint8_t x_36; lean_object* x_37; -x_36 = 1; -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -x_37 = l_Lean_Elab_Tactic_Do_elimLets(x_1, x_36, x_8, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_37) == 0) -{ -lean_object* x_38; lean_object* x_39; -x_38 = lean_ctor_get(x_37, 0); -lean_inc(x_38); -x_39 = lean_ctor_get(x_37, 1); -lean_inc(x_39); -lean_dec_ref(x_37); -x_13 = x_38; -x_14 = x_4; -x_15 = x_5; -x_16 = x_6; -x_17 = x_7; -x_18 = x_8; -x_19 = x_9; -x_20 = x_10; -x_21 = x_11; -x_22 = x_39; -goto block_34; -} -else -{ -uint8_t x_40; -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_40 = !lean_is_exclusive(x_37); -if (x_40 == 0) -{ -return x_37; -} -else -{ -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_37, 0); -x_42 = lean_ctor_get(x_37, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_37); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; -} -} -} -else -{ -x_13 = x_1; -x_14 = x_4; -x_15 = x_5; -x_16 = x_6; -x_17 = x_7; -x_18 = x_8; -x_19 = x_9; -x_20 = x_10; -x_21 = x_11; -x_22 = x_12; -goto block_34; -} -block_34: -{ -lean_object* x_23; -lean_inc(x_21); -lean_inc_ref(x_20); -lean_inc(x_19); -lean_inc_ref(x_18); -x_23 = l_Lean_Elab_Tactic_Do_ProofMode_mStartMVar(x_13, x_18, x_19, x_20, x_21, x_22); -if (lean_obj_tag(x_23) == 0) -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_24 = lean_ctor_get(x_23, 0); -lean_inc(x_24); -x_25 = lean_ctor_get(x_23, 1); -lean_inc(x_25); -lean_dec_ref(x_23); -x_26 = lean_ctor_get(x_24, 0); -lean_inc(x_26); -x_27 = lean_ctor_get(x_24, 1); -lean_inc(x_27); -lean_dec(x_24); -lean_inc(x_26); -x_28 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_genVCs___lam__0___boxed), 13, 4); -lean_closure_set(x_28, 0, x_26); -lean_closure_set(x_28, 1, x_2); -lean_closure_set(x_28, 2, x_3); -lean_closure_set(x_28, 3, x_27); -x_29 = l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_genVCs_spec__1___redArg(x_26, x_28, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_25); -return x_29; -} -else -{ -uint8_t x_30; -lean_dec(x_21); -lean_dec_ref(x_20); -lean_dec(x_19); -lean_dec_ref(x_18); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_3); -lean_dec_ref(x_2); -x_30 = !lean_is_exclusive(x_23); -if (x_30 == 0) -{ -return x_23; -} -else -{ -lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_31 = lean_ctor_get(x_23, 0); -x_32 = lean_ctor_get(x_23, 1); -lean_inc(x_32); -lean_inc(x_31); -lean_dec(x_23); -x_33 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_33, 0, x_31); -lean_ctor_set(x_33, 1, x_32); -return x_33; -} -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_genVCs_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_genVCs_spec__0___redArg(x_1, x_2, x_3, x_4); -lean_dec(x_3); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_genVCs_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_genVCs_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_10); -lean_dec_ref(x_9); lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_10); +lean_ctor_set(x_12, 1, x_11); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_genVCs___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -lean_object* x_14; -x_14 = l_Lean_Elab_Tactic_Do_genVCs___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -return x_14; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenStep___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { -_start: -{ -lean_object* x_15; -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -x_15 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext(x_1, x_2, x_3, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_15) == 0) -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_37; lean_object* x_38; uint8_t x_39; -x_16 = lean_ctor_get(x_15, 0); -lean_inc(x_16); -x_17 = lean_ctor_get(x_15, 1); -lean_inc(x_17); -lean_dec_ref(x_15); -x_37 = lean_unsigned_to_nat(2u); -x_38 = l_Lean_Syntax_getArg(x_4, x_37); -x_39 = l_Lean_Syntax_isNone(x_38); -if (x_39 == 0) -{ -lean_object* x_40; lean_object* x_41; lean_object* x_42; -lean_dec(x_5); -x_40 = lean_unsigned_to_nat(0u); -x_41 = l_Lean_Syntax_getArg(x_38, x_40); -lean_dec(x_38); -x_42 = l_Lean_Syntax_toNat(x_41); -lean_dec(x_41); -x_18 = x_42; -goto block_36; -} else { -lean_dec(x_38); -x_18 = x_5; -goto block_36; -} -block_36: +uint8_t x_13; +x_13 = !lean_is_exclusive(x_8); +if (x_13 == 0) { -lean_object* x_19; -x_19 = l_Lean_Elab_Tactic_getMainGoal___redArg(x_7, x_10, x_11, x_12, x_13, x_17); -if (lean_obj_tag(x_19) == 0) -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_20 = lean_ctor_get(x_19, 0); -lean_inc(x_20); -x_21 = lean_ctor_get(x_19, 1); -lean_inc(x_21); -lean_dec_ref(x_19); -x_22 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_22, 0, x_18); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_7); -x_23 = l_Lean_Elab_Tactic_Do_genVCs(x_20, x_16, x_22, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_21); -if (lean_obj_tag(x_23) == 0) -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_24 = lean_ctor_get(x_23, 0); -lean_inc(x_24); -x_25 = lean_ctor_get(x_23, 1); -lean_inc(x_25); -lean_dec_ref(x_23); -x_26 = lean_array_to_list(x_24); -x_27 = l_Lean_Elab_Tactic_replaceMainGoal___redArg(x_26, x_7, x_10, x_11, x_12, x_13, x_25); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_7); -return x_27; +return x_8; } else { -uint8_t x_28; -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_7); -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; -} -} -} -else -{ -uint8_t x_32; -lean_dec(x_18); -lean_dec(x_16); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -x_32 = !lean_is_exclusive(x_19); -if (x_32 == 0) -{ -return x_19; -} -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_33 = lean_ctor_get(x_19, 0); -x_34 = lean_ctor_get(x_19, 1); -lean_inc(x_34); -lean_inc(x_33); -lean_dec(x_19); -x_35 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_35, 0, x_33); -lean_ctor_set(x_35, 1, x_34); -return x_35; -} -} -} -} -else -{ -uint8_t x_43; -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -x_43 = !lean_is_exclusive(x_15); -if (x_43 == 0) -{ -return x_15; -} -else -{ -lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_44 = lean_ctor_get(x_15, 0); -x_45 = lean_ctor_get(x_15, 1); -lean_inc(x_45); -lean_inc(x_44); -lean_dec(x_15); -x_46 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_46, 0, x_44); -lean_ctor_set(x_46, 1, x_45); -return x_46; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenStep(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_11 = lean_unsigned_to_nat(1u); -x_12 = l_Lean_Syntax_getArg(x_1, x_11); -x_13 = lean_unsigned_to_nat(3u); -x_14 = l_Lean_Syntax_getArg(x_1, x_13); -x_15 = 0; -x_16 = lean_box(x_15); -x_17 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_elabMVCGenStep___lam__0___boxed), 14, 5); -lean_closure_set(x_17, 0, x_12); -lean_closure_set(x_17, 1, x_14); -lean_closure_set(x_17, 2, x_16); -lean_closure_set(x_17, 3, x_1); -lean_closure_set(x_17, 4, x_11); -x_18 = l_Lean_Elab_Tactic_withMainContext___redArg(x_17, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_18; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenStep___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { -_start: -{ -uint8_t x_15; lean_object* x_16; -x_15 = lean_unbox(x_3); -x_16 = l_Lean_Elab_Tactic_Do_elabMVCGenStep___lam__0(x_1, x_2, x_15, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_4); -lean_dec(x_2); -return x_16; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Elab_Tactic_tacticElabAttribute; -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("mvcgenStep", 10, 10); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__1; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("elabMVCGenStep", 14, 14); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__4() { -_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_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__3; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_6 = l_Lean_Name_mkStr5(x_5, x_4, x_3, x_2, x_1); -return x_6; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1(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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__0; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__2; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__4; -x_5 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_elabMVCGenStep), 10, 0); -x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___redArg(x_2, x_3, x_4, x_5, x_1); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc(x_5); -lean_inc_ref(x_4); -x_13 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_13) == 0) -{ lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -x_15 = lean_ctor_get(x_13, 1); +x_14 = lean_ctor_get(x_8, 0); +x_15 = lean_ctor_get(x_8, 1); lean_inc(x_15); -lean_dec_ref(x_13); -x_16 = l_Lean_Elab_Tactic_getMainGoal___redArg(x_5, x_8, x_9, x_10, x_11, x_15); -if (lean_obj_tag(x_16) == 0) -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_17 = lean_ctor_get(x_16, 0); -lean_inc(x_17); -x_18 = lean_ctor_get(x_16, 1); -lean_inc(x_18); -lean_dec_ref(x_16); -x_19 = lean_box(1); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_5); -x_20 = l_Lean_Elab_Tactic_Do_genVCs(x_17, x_14, x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_18); -if (lean_obj_tag(x_20) == 0) -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_20, 0); -lean_inc(x_21); -x_22 = lean_ctor_get(x_20, 1); -lean_inc(x_22); -lean_dec_ref(x_20); -x_23 = lean_array_to_list(x_21); -x_24 = l_Lean_Elab_Tactic_replaceMainGoal___redArg(x_23, x_5, x_8, x_9, x_10, x_11, x_22); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_5); -return x_24; -} -else -{ -uint8_t x_25; -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_5); -x_25 = !lean_is_exclusive(x_20); -if (x_25 == 0) -{ -return x_20; -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_26 = lean_ctor_get(x_20, 0); -x_27 = lean_ctor_get(x_20, 1); -lean_inc(x_27); -lean_inc(x_26); -lean_dec(x_20); -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; -} -} -} -else -{ -uint8_t x_29; -lean_dec(x_14); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_29 = !lean_is_exclusive(x_16); -if (x_29 == 0) -{ +lean_inc(x_14); +lean_dec(x_8); +x_16 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_16, 0, x_14); +lean_ctor_set(x_16, 1, x_15); return x_16; } -else -{ -lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_30 = lean_ctor_get(x_16, 0); -x_31 = lean_ctor_get(x_16, 1); -lean_inc(x_31); -lean_inc(x_30); -lean_dec(x_16); -x_32 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_32, 0, x_30); -lean_ctor_set(x_32, 1, x_31); -return x_32; } } } -else -{ -uint8_t x_33; -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_33 = !lean_is_exclusive(x_13); -if (x_33 == 0) -{ -return x_13; -} -else -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_13, 0); -x_35 = lean_ctor_get(x_13, 1); -lean_inc(x_35); -lean_inc(x_34); -lean_dec(x_13); -x_36 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_36, 0, x_34); -lean_ctor_set(x_36, 1, x_35); -return x_36; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial(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_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_VCGen_genVCs_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_11 = lean_unsigned_to_nat(0u); -x_12 = l_Lean_Syntax_getArg(x_1, x_11); -x_13 = lean_unsigned_to_nat(1u); -x_14 = l_Lean_Syntax_getArg(x_1, x_13); -x_15 = 0; -x_16 = lean_box(x_15); -x_17 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___lam__0___boxed), 12, 3); -lean_closure_set(x_17, 0, x_12); -lean_closure_set(x_17, 1, x_14); -lean_closure_set(x_17, 2, x_16); -x_18 = l_Lean_Elab_Tactic_withMainContext___redArg(x_17, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_18; +lean_object* x_9; +x_9 = l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_VCGen_genVCs_spec__1___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__0() { _start: { -uint8_t x_13; lean_object* x_14; -x_13 = lean_unbox(x_3); -x_14 = l_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___lam__0(x_1, x_2, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_2); -return x_14; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(4u); +x_2 = lean_unsigned_to_nat(8u); +x_3 = lean_nat_mul(x_2, x_1); +return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___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) { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__1() { _start: { -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_1); -return x_11; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(3u); +x_2 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__0; +x_3 = lean_nat_div(x_2, x_1); +return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__1; +x_2 = l_Nat_nextPowerOfTwo(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__2; +x_3 = lean_mk_array(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__3; +x_2 = lean_unsigned_to_nat(0u); +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__5() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("mvcgenNoTrivial", 15, 15); +x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__6() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__0; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__5; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__7() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_unchecked("elabMVCGenNoTrivial", 19, 19); -return x_1; +lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__6; +x_2 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__4; +x_3 = 1; +x_4 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_4, 0, x_2); +lean_ctor_set(x_4, 1, x_1); +lean_ctor_set_uint8(x_4, sizeof(void*)*2, x_3); +return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__8() { _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_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__2; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_6 = l_Lean_Name_mkStr5(x_5, x_4, x_3, x_2, x_1); -return x_6; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__5; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1(lean_object* x_1) { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__9() { _start: { -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__0; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__1; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__3; -x_5 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___boxed), 10, 0); -x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___redArg(x_2, x_3, x_4, x_5, x_1); -return x_6; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(0u); +x_2 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__8; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; } } -LEAN_EXPORT uint8_t l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___lam__0(uint8_t x_1, lean_object* x_2) { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__10() { _start: { -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__5; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; } } -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__11() { _start: { lean_object* x_1; lean_object* x_2; @@ -33183,24 +48439,24 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___closed__0; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__11; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__13() { _start: { size_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = 5; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___closed__0; -x_4 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___closed__1; +x_3 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__11; +x_4 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__12; x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); lean_ctor_set(x_5, 0, x_4); lean_ctor_set(x_5, 1, x_3); @@ -33210,353 +48466,832 @@ lean_ctor_set_usize(x_5, 4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg(uint8_t x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t 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) { +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__14() { _start: { -uint8_t x_12; -x_12 = lean_usize_dec_lt(x_5, x_4); +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__13; +x_2 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__10; +x_3 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__8; +x_4 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_3); +lean_ctor_set(x_4, 2, x_2); +lean_ctor_set(x_4, 3, x_1); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__15() { +_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_Tactic_Do_VCGen_genVCs___lam__0___closed__14; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__9; +x_4 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__4; +x_5 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__7; +x_6 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_6, 0, x_5); +lean_ctor_set(x_6, 1, x_4); +lean_ctor_set(x_6, 2, x_4); +lean_ctor_set(x_6, 3, x_3); +lean_ctor_set(x_6, 4, x_2); +lean_ctor_set(x_6, 5, x_1); +return x_6; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0(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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; uint8_t x_12; +x_11 = l_Lean_Meta_Context_config(x_6); +x_12 = !lean_is_exclusive(x_11); if (x_12 == 0) { -lean_object* x_13; -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); +uint8_t 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; uint8_t x_20; uint8_t x_21; uint64_t x_22; uint8_t x_23; +x_13 = lean_ctor_get_uint8(x_6, sizeof(void*)*7); +x_14 = lean_ctor_get(x_6, 1); +lean_inc(x_14); +x_15 = lean_ctor_get(x_6, 2); +lean_inc_ref(x_15); +x_16 = lean_ctor_get(x_6, 3); +lean_inc_ref(x_16); +x_17 = lean_ctor_get(x_6, 4); +lean_inc(x_17); +x_18 = lean_ctor_get(x_6, 5); +lean_inc(x_18); +x_19 = lean_ctor_get(x_6, 6); +lean_inc(x_19); +x_20 = lean_ctor_get_uint8(x_6, sizeof(void*)*7 + 1); +x_21 = lean_ctor_get_uint8(x_6, sizeof(void*)*7 + 2); +lean_ctor_set_uint8(x_11, 9, x_1); +x_22 = l_Lean_Meta_Context_configKey(x_6); +x_23 = !lean_is_exclusive(x_6); +if (x_23 == 0) +{ +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; uint64_t x_31; uint64_t x_32; uint64_t x_33; uint64_t x_34; uint64_t x_35; lean_object* x_36; lean_object* x_37; +x_24 = lean_ctor_get(x_6, 6); +lean_dec(x_24); +x_25 = lean_ctor_get(x_6, 5); +lean_dec(x_25); +x_26 = lean_ctor_get(x_6, 4); +lean_dec(x_26); +x_27 = lean_ctor_get(x_6, 3); +lean_dec(x_27); +x_28 = lean_ctor_get(x_6, 2); +lean_dec(x_28); +x_29 = lean_ctor_get(x_6, 1); +lean_dec(x_29); +x_30 = lean_ctor_get(x_6, 0); +lean_dec(x_30); +x_31 = 2; +x_32 = lean_uint64_shift_right(x_22, x_31); +x_33 = lean_uint64_shift_left(x_32, x_31); +x_34 = l_Lean_Meta_TransparencyMode_toUInt64(x_1); +x_35 = lean_uint64_lor(x_33, x_34); +x_36 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_36, 0, x_11); +lean_ctor_set_uint64(x_36, sizeof(void*)*1, x_35); +lean_ctor_set(x_6, 0, x_36); +lean_inc(x_2); +x_37 = l_Lean_MVarId_getTag(x_2, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_37) == 0) +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_37, 1); +lean_inc(x_39); +lean_dec_ref(x_37); +x_40 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__15; +x_41 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__16; +x_42 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_42, 0, x_3); +lean_ctor_set(x_42, 1, x_40); +lean_ctor_set(x_42, 2, x_41); +x_43 = lean_st_mk_ref(x_42, x_39); +x_44 = lean_ctor_get(x_43, 0); +lean_inc(x_44); +x_45 = lean_ctor_get(x_43, 1); +lean_inc(x_45); +lean_dec_ref(x_43); +lean_inc(x_7); +lean_inc(x_44); +lean_inc_ref(x_4); +x_46 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(x_4, x_5, x_38, x_4, x_44, x_6, x_7, x_8, x_9, x_45); +if (lean_obj_tag(x_46) == 0) +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; +x_47 = lean_ctor_get(x_46, 0); +lean_inc(x_47); +x_48 = lean_ctor_get(x_46, 1); +lean_inc(x_48); +lean_dec_ref(x_46); +x_49 = lean_st_ref_get(x_44, x_48); +lean_dec(x_44); +x_50 = lean_ctor_get(x_49, 0); +lean_inc(x_50); +x_51 = lean_ctor_get(x_49, 1); +lean_inc(x_51); +lean_dec_ref(x_49); +x_52 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_spec__0___redArg(x_2, x_47, x_7, x_51); +lean_dec(x_7); +x_53 = !lean_is_exclusive(x_52); +if (x_53 == 0) +{ +lean_object* x_54; lean_object* x_55; +x_54 = lean_ctor_get(x_52, 0); +lean_dec(x_54); +x_55 = lean_ctor_get(x_50, 2); +lean_inc_ref(x_55); +lean_dec(x_50); +lean_ctor_set(x_52, 0, x_55); +return x_52; +} +else +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_56 = lean_ctor_get(x_52, 1); +lean_inc(x_56); +lean_dec(x_52); +x_57 = lean_ctor_get(x_50, 2); +lean_inc_ref(x_57); +lean_dec(x_50); +x_58 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set(x_58, 1, x_56); +return x_58; +} +} +else +{ +uint8_t x_59; +lean_dec(x_44); +lean_dec(x_7); lean_dec(x_2); -x_13 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_13, 0, x_6); -lean_ctor_set(x_13, 1, x_11); +x_59 = !lean_is_exclusive(x_46); +if (x_59 == 0) +{ +return x_46; +} +else +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = lean_ctor_get(x_46, 0); +x_61 = lean_ctor_get(x_46, 1); +lean_inc(x_61); +lean_inc(x_60); +lean_dec(x_46); +x_62 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_62, 0, x_60); +lean_ctor_set(x_62, 1, x_61); +return x_62; +} +} +} +else +{ +uint8_t x_63; +lean_dec_ref(x_6); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_63 = !lean_is_exclusive(x_37); +if (x_63 == 0) +{ +return x_37; +} +else +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_64 = lean_ctor_get(x_37, 0); +x_65 = lean_ctor_get(x_37, 1); +lean_inc(x_65); +lean_inc(x_64); +lean_dec(x_37); +x_66 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_66, 0, x_64); +lean_ctor_set(x_66, 1, x_65); +return x_66; +} +} +} +else +{ +uint64_t x_67; uint64_t x_68; uint64_t x_69; uint64_t x_70; uint64_t x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +lean_dec(x_6); +x_67 = 2; +x_68 = lean_uint64_shift_right(x_22, x_67); +x_69 = lean_uint64_shift_left(x_68, x_67); +x_70 = l_Lean_Meta_TransparencyMode_toUInt64(x_1); +x_71 = lean_uint64_lor(x_69, x_70); +x_72 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_72, 0, x_11); +lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_71); +x_73 = lean_alloc_ctor(0, 7, 3); +lean_ctor_set(x_73, 0, x_72); +lean_ctor_set(x_73, 1, x_14); +lean_ctor_set(x_73, 2, x_15); +lean_ctor_set(x_73, 3, x_16); +lean_ctor_set(x_73, 4, x_17); +lean_ctor_set(x_73, 5, x_18); +lean_ctor_set(x_73, 6, x_19); +lean_ctor_set_uint8(x_73, sizeof(void*)*7, x_13); +lean_ctor_set_uint8(x_73, sizeof(void*)*7 + 1, x_20); +lean_ctor_set_uint8(x_73, sizeof(void*)*7 + 2, x_21); +lean_inc(x_2); +x_74 = l_Lean_MVarId_getTag(x_2, x_73, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_74) == 0) +{ +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; +x_75 = lean_ctor_get(x_74, 0); +lean_inc(x_75); +x_76 = lean_ctor_get(x_74, 1); +lean_inc(x_76); +lean_dec_ref(x_74); +x_77 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__15; +x_78 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__16; +x_79 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_79, 0, x_3); +lean_ctor_set(x_79, 1, x_77); +lean_ctor_set(x_79, 2, x_78); +x_80 = lean_st_mk_ref(x_79, x_76); +x_81 = lean_ctor_get(x_80, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_80, 1); +lean_inc(x_82); +lean_dec_ref(x_80); +lean_inc(x_7); +lean_inc(x_81); +lean_inc_ref(x_4); +x_83 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(x_4, x_5, x_75, x_4, x_81, x_73, x_7, x_8, x_9, x_82); +if (lean_obj_tag(x_83) == 0) +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_84 = lean_ctor_get(x_83, 0); +lean_inc(x_84); +x_85 = lean_ctor_get(x_83, 1); +lean_inc(x_85); +lean_dec_ref(x_83); +x_86 = lean_st_ref_get(x_81, x_85); +lean_dec(x_81); +x_87 = lean_ctor_get(x_86, 0); +lean_inc(x_87); +x_88 = lean_ctor_get(x_86, 1); +lean_inc(x_88); +lean_dec_ref(x_86); +x_89 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_spec__0___redArg(x_2, x_84, x_7, x_88); +lean_dec(x_7); +x_90 = lean_ctor_get(x_89, 1); +lean_inc(x_90); +if (lean_is_exclusive(x_89)) { + lean_ctor_release(x_89, 0); + lean_ctor_release(x_89, 1); + x_91 = x_89; +} else { + lean_dec_ref(x_89); + x_91 = lean_box(0); +} +x_92 = lean_ctor_get(x_87, 2); +lean_inc_ref(x_92); +lean_dec(x_87); +if (lean_is_scalar(x_91)) { + x_93 = lean_alloc_ctor(0, 2, 0); +} else { + x_93 = x_91; +} +lean_ctor_set(x_93, 0, x_92); +lean_ctor_set(x_93, 1, x_90); +return x_93; +} +else +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; +lean_dec(x_81); +lean_dec(x_7); +lean_dec(x_2); +x_94 = lean_ctor_get(x_83, 0); +lean_inc(x_94); +x_95 = lean_ctor_get(x_83, 1); +lean_inc(x_95); +if (lean_is_exclusive(x_83)) { + lean_ctor_release(x_83, 0); + lean_ctor_release(x_83, 1); + x_96 = x_83; +} else { + lean_dec_ref(x_83); + x_96 = lean_box(0); +} +if (lean_is_scalar(x_96)) { + x_97 = lean_alloc_ctor(1, 2, 0); +} else { + x_97 = x_96; +} +lean_ctor_set(x_97, 0, x_94); +lean_ctor_set(x_97, 1, x_95); +return x_97; +} +} +else +{ +lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; +lean_dec_ref(x_73); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_98 = lean_ctor_get(x_74, 0); +lean_inc(x_98); +x_99 = lean_ctor_get(x_74, 1); +lean_inc(x_99); +if (lean_is_exclusive(x_74)) { + lean_ctor_release(x_74, 0); + lean_ctor_release(x_74, 1); + x_100 = x_74; +} else { + lean_dec_ref(x_74); + x_100 = lean_box(0); +} +if (lean_is_scalar(x_100)) { + x_101 = lean_alloc_ctor(1, 2, 0); +} else { + x_101 = x_100; +} +lean_ctor_set(x_101, 0, x_98); +lean_ctor_set(x_101, 1, x_99); +return x_101; +} +} +} +else +{ +uint8_t x_102; uint8_t x_103; uint8_t x_104; uint8_t x_105; uint8_t x_106; uint8_t x_107; uint8_t x_108; uint8_t x_109; uint8_t x_110; uint8_t x_111; uint8_t x_112; uint8_t x_113; uint8_t x_114; uint8_t x_115; uint8_t x_116; uint8_t x_117; uint8_t x_118; uint8_t x_119; uint8_t 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; uint8_t x_127; uint8_t x_128; lean_object* x_129; uint64_t x_130; lean_object* x_131; uint64_t x_132; uint64_t x_133; uint64_t x_134; uint64_t x_135; uint64_t x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; +x_102 = lean_ctor_get_uint8(x_11, 0); +x_103 = lean_ctor_get_uint8(x_11, 1); +x_104 = lean_ctor_get_uint8(x_11, 2); +x_105 = lean_ctor_get_uint8(x_11, 3); +x_106 = lean_ctor_get_uint8(x_11, 4); +x_107 = lean_ctor_get_uint8(x_11, 5); +x_108 = lean_ctor_get_uint8(x_11, 6); +x_109 = lean_ctor_get_uint8(x_11, 7); +x_110 = lean_ctor_get_uint8(x_11, 8); +x_111 = lean_ctor_get_uint8(x_11, 10); +x_112 = lean_ctor_get_uint8(x_11, 11); +x_113 = lean_ctor_get_uint8(x_11, 12); +x_114 = lean_ctor_get_uint8(x_11, 13); +x_115 = lean_ctor_get_uint8(x_11, 14); +x_116 = lean_ctor_get_uint8(x_11, 15); +x_117 = lean_ctor_get_uint8(x_11, 16); +x_118 = lean_ctor_get_uint8(x_11, 17); +x_119 = lean_ctor_get_uint8(x_11, 18); +lean_dec(x_11); +x_120 = lean_ctor_get_uint8(x_6, sizeof(void*)*7); +x_121 = lean_ctor_get(x_6, 1); +lean_inc(x_121); +x_122 = lean_ctor_get(x_6, 2); +lean_inc_ref(x_122); +x_123 = lean_ctor_get(x_6, 3); +lean_inc_ref(x_123); +x_124 = lean_ctor_get(x_6, 4); +lean_inc(x_124); +x_125 = lean_ctor_get(x_6, 5); +lean_inc(x_125); +x_126 = lean_ctor_get(x_6, 6); +lean_inc(x_126); +x_127 = lean_ctor_get_uint8(x_6, sizeof(void*)*7 + 1); +x_128 = lean_ctor_get_uint8(x_6, sizeof(void*)*7 + 2); +x_129 = lean_alloc_ctor(0, 0, 19); +lean_ctor_set_uint8(x_129, 0, x_102); +lean_ctor_set_uint8(x_129, 1, x_103); +lean_ctor_set_uint8(x_129, 2, x_104); +lean_ctor_set_uint8(x_129, 3, x_105); +lean_ctor_set_uint8(x_129, 4, x_106); +lean_ctor_set_uint8(x_129, 5, x_107); +lean_ctor_set_uint8(x_129, 6, x_108); +lean_ctor_set_uint8(x_129, 7, x_109); +lean_ctor_set_uint8(x_129, 8, x_110); +lean_ctor_set_uint8(x_129, 9, x_1); +lean_ctor_set_uint8(x_129, 10, x_111); +lean_ctor_set_uint8(x_129, 11, x_112); +lean_ctor_set_uint8(x_129, 12, x_113); +lean_ctor_set_uint8(x_129, 13, x_114); +lean_ctor_set_uint8(x_129, 14, x_115); +lean_ctor_set_uint8(x_129, 15, x_116); +lean_ctor_set_uint8(x_129, 16, x_117); +lean_ctor_set_uint8(x_129, 17, x_118); +lean_ctor_set_uint8(x_129, 18, x_119); +x_130 = l_Lean_Meta_Context_configKey(x_6); +if (lean_is_exclusive(x_6)) { + lean_ctor_release(x_6, 0); + lean_ctor_release(x_6, 1); + lean_ctor_release(x_6, 2); + lean_ctor_release(x_6, 3); + lean_ctor_release(x_6, 4); + lean_ctor_release(x_6, 5); + lean_ctor_release(x_6, 6); + x_131 = x_6; +} else { + lean_dec_ref(x_6); + x_131 = lean_box(0); +} +x_132 = 2; +x_133 = lean_uint64_shift_right(x_130, x_132); +x_134 = lean_uint64_shift_left(x_133, x_132); +x_135 = l_Lean_Meta_TransparencyMode_toUInt64(x_1); +x_136 = lean_uint64_lor(x_134, x_135); +x_137 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_137, 0, x_129); +lean_ctor_set_uint64(x_137, sizeof(void*)*1, x_136); +if (lean_is_scalar(x_131)) { + x_138 = lean_alloc_ctor(0, 7, 3); +} else { + x_138 = x_131; +} +lean_ctor_set(x_138, 0, x_137); +lean_ctor_set(x_138, 1, x_121); +lean_ctor_set(x_138, 2, x_122); +lean_ctor_set(x_138, 3, x_123); +lean_ctor_set(x_138, 4, x_124); +lean_ctor_set(x_138, 5, x_125); +lean_ctor_set(x_138, 6, x_126); +lean_ctor_set_uint8(x_138, sizeof(void*)*7, x_120); +lean_ctor_set_uint8(x_138, sizeof(void*)*7 + 1, x_127); +lean_ctor_set_uint8(x_138, sizeof(void*)*7 + 2, x_128); +lean_inc(x_2); +x_139 = l_Lean_MVarId_getTag(x_2, x_138, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_139) == 0) +{ +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; +x_140 = lean_ctor_get(x_139, 0); +lean_inc(x_140); +x_141 = lean_ctor_get(x_139, 1); +lean_inc(x_141); +lean_dec_ref(x_139); +x_142 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__15; +x_143 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__16; +x_144 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_144, 0, x_3); +lean_ctor_set(x_144, 1, x_142); +lean_ctor_set(x_144, 2, x_143); +x_145 = lean_st_mk_ref(x_144, x_141); +x_146 = lean_ctor_get(x_145, 0); +lean_inc(x_146); +x_147 = lean_ctor_get(x_145, 1); +lean_inc(x_147); +lean_dec_ref(x_145); +lean_inc(x_7); +lean_inc(x_146); +lean_inc_ref(x_4); +x_148 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(x_4, x_5, x_140, x_4, x_146, x_138, x_7, x_8, x_9, x_147); +if (lean_obj_tag(x_148) == 0) +{ +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_149 = lean_ctor_get(x_148, 0); +lean_inc(x_149); +x_150 = lean_ctor_get(x_148, 1); +lean_inc(x_150); +lean_dec_ref(x_148); +x_151 = lean_st_ref_get(x_146, x_150); +lean_dec(x_146); +x_152 = lean_ctor_get(x_151, 0); +lean_inc(x_152); +x_153 = lean_ctor_get(x_151, 1); +lean_inc(x_153); +lean_dec_ref(x_151); +x_154 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_spec__0___redArg(x_2, x_149, x_7, x_153); +lean_dec(x_7); +x_155 = lean_ctor_get(x_154, 1); +lean_inc(x_155); +if (lean_is_exclusive(x_154)) { + lean_ctor_release(x_154, 0); + lean_ctor_release(x_154, 1); + x_156 = x_154; +} else { + lean_dec_ref(x_154); + x_156 = lean_box(0); +} +x_157 = lean_ctor_get(x_152, 2); +lean_inc_ref(x_157); +lean_dec(x_152); +if (lean_is_scalar(x_156)) { + x_158 = lean_alloc_ctor(0, 2, 0); +} else { + x_158 = x_156; +} +lean_ctor_set(x_158, 0, x_157); +lean_ctor_set(x_158, 1, x_155); +return x_158; +} +else +{ +lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; +lean_dec(x_146); +lean_dec(x_7); +lean_dec(x_2); +x_159 = lean_ctor_get(x_148, 0); +lean_inc(x_159); +x_160 = lean_ctor_get(x_148, 1); +lean_inc(x_160); +if (lean_is_exclusive(x_148)) { + lean_ctor_release(x_148, 0); + lean_ctor_release(x_148, 1); + x_161 = x_148; +} else { + lean_dec_ref(x_148); + x_161 = lean_box(0); +} +if (lean_is_scalar(x_161)) { + x_162 = lean_alloc_ctor(1, 2, 0); +} else { + x_162 = x_161; +} +lean_ctor_set(x_162, 0, x_159); +lean_ctor_set(x_162, 1, x_160); +return x_162; +} +} +else +{ +lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; +lean_dec_ref(x_138); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_163 = lean_ctor_get(x_139, 0); +lean_inc(x_163); +x_164 = lean_ctor_get(x_139, 1); +lean_inc(x_164); +if (lean_is_exclusive(x_139)) { + lean_ctor_release(x_139, 0); + lean_ctor_release(x_139, 1); + x_165 = x_139; +} else { + lean_dec_ref(x_139); + x_165 = lean_box(0); +} +if (lean_is_scalar(x_165)) { + x_166 = lean_alloc_ctor(1, 2, 0); +} else { + x_166 = x_165; +} +lean_ctor_set(x_166, 0, x_163); +lean_ctor_set(x_166, 1, x_164); +return x_166; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs(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; +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +x_9 = l_Lean_Elab_Tactic_Do_ProofMode_mStartMVar(x_1, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec_ref(x_9); +x_12 = lean_ctor_get(x_10, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_10, 1); +lean_inc(x_13); +lean_dec(x_10); +x_14 = 2; +x_15 = lean_box(x_14); +lean_inc(x_12); +x_16 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___boxed), 10, 5); +lean_closure_set(x_16, 0, x_15); +lean_closure_set(x_16, 1, x_12); +lean_closure_set(x_16, 2, x_3); +lean_closure_set(x_16, 3, x_2); +lean_closure_set(x_16, 4, x_13); +x_17 = l_Lean_MVarId_withContext___at___Lean_Elab_Tactic_Do_VCGen_genVCs_spec__1___redArg(x_12, x_16, x_4, x_5, x_6, x_7, x_11); +return x_17; +} +else +{ +uint8_t x_18; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_18 = !lean_is_exclusive(x_9); +if (x_18 == 0) +{ +return x_9; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_9, 0); +x_20 = lean_ctor_get(x_9, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_9); +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; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_spec__0___redArg(x_1, x_2, x_3, x_4); +lean_dec(x_3); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_1); +x_12 = l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc(x_3); +lean_inc_ref(x_2); +x_11 = l_Lean_Elab_Tactic_evalTactic(x_1, x_2, x_3, x_4, x_5, 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; +x_12 = lean_ctor_get(x_11, 1); +lean_inc(x_12); +lean_dec_ref(x_11); +x_13 = l_Lean_Elab_Tactic_pruneSolvedGoals(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_12); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); return x_13; } else { -uint8_t x_14; -x_14 = !lean_is_exclusive(x_6); -if (x_14 == 0) +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_11; +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_15 = lean_ctor_get(x_6, 0); -x_16 = lean_ctor_get(x_6, 1); -x_17 = lean_box(x_1); -x_18 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___lam__0___boxed), 2, 1); -lean_closure_set(x_18, 0, x_17); -x_19 = lean_array_uget(x_3, x_5); -x_20 = lean_box(0); -x_21 = lean_box(0); -x_22 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___closed__2; -x_23 = lean_box(1); -x_24 = lean_box(0); -x_25 = lean_alloc_ctor(0, 7, 11); -lean_ctor_set(x_25, 0, x_20); -lean_ctor_set(x_25, 1, x_21); -lean_ctor_set(x_25, 2, x_22); -lean_ctor_set(x_25, 3, x_18); -lean_ctor_set(x_25, 4, x_23); -lean_ctor_set(x_25, 5, x_23); -lean_ctor_set(x_25, 6, x_24); -lean_ctor_set_uint8(x_25, sizeof(void*)*7, x_12); -lean_ctor_set_uint8(x_25, sizeof(void*)*7 + 1, x_12); -lean_ctor_set_uint8(x_25, sizeof(void*)*7 + 2, x_1); -lean_ctor_set_uint8(x_25, sizeof(void*)*7 + 3, x_12); -lean_ctor_set_uint8(x_25, sizeof(void*)*7 + 4, x_12); -lean_ctor_set_uint8(x_25, sizeof(void*)*7 + 5, x_1); -lean_ctor_set_uint8(x_25, sizeof(void*)*7 + 6, x_1); -lean_ctor_set_uint8(x_25, sizeof(void*)*7 + 7, x_1); -lean_ctor_set_uint8(x_25, sizeof(void*)*7 + 8, x_12); -lean_ctor_set_uint8(x_25, sizeof(void*)*7 + 9, x_1); -lean_ctor_set_uint8(x_25, sizeof(void*)*7 + 10, x_12); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc(x_2); -x_26 = l_Lean_Elab_runTactic(x_19, x_2, x_25, x_16, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_26) == 0) +uint8_t x_13; +x_13 = lean_usize_dec_eq(x_3, x_4); +if (x_13 == 0) { -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; size_t x_32; size_t x_33; -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_26, 1); +lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; lean_object* x_18; +lean_inc(x_1); +x_14 = lean_alloc_closure((void*)(l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___lam__0), 10, 1); +lean_closure_set(x_14, 0, x_1); +x_15 = lean_array_uget(x_2, x_3); +x_16 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_run), 9, 2); +lean_closure_set(x_16, 0, x_15); +lean_closure_set(x_16, 1, x_14); +x_17 = 1; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +x_18 = l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_withSynthesizeImp(lean_box(0), x_16, x_17, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; size_t x_23; size_t x_24; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec_ref(x_18); +x_21 = lean_array_mk(x_19); +x_22 = l_Array_append___redArg(x_5, x_21); +lean_dec_ref(x_21); +x_23 = 1; +x_24 = lean_usize_add(x_3, x_23); +x_3 = x_24; +x_5 = x_22; +x_12 = x_20; +goto _start; +} +else +{ +uint8_t x_26; +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec(x_1); +x_26 = !lean_is_exclusive(x_18); +if (x_26 == 0) +{ +return x_18; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_18, 0); +x_28 = lean_ctor_get(x_18, 1); lean_inc(x_28); -lean_dec_ref(x_26); -x_29 = lean_ctor_get(x_27, 0); -lean_inc(x_29); -x_30 = lean_ctor_get(x_27, 1); -lean_inc(x_30); -lean_dec(x_27); -x_31 = l_List_foldl___at___Array_appendList_spec__0(lean_box(0), x_15, x_29); -lean_ctor_set(x_6, 1, x_30); -lean_ctor_set(x_6, 0, x_31); -x_32 = 1; -x_33 = lean_usize_add(x_5, x_32); -x_5 = x_33; -x_11 = x_28; -goto _start; -} -else -{ -uint8_t x_35; -lean_free_object(x_6); -lean_dec(x_15); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_2); -x_35 = !lean_is_exclusive(x_26); -if (x_35 == 0) -{ -return x_26; -} -else -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_36 = lean_ctor_get(x_26, 0); -x_37 = lean_ctor_get(x_26, 1); -lean_inc(x_37); -lean_inc(x_36); -lean_dec(x_26); -x_38 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_38, 0, x_36); -lean_ctor_set(x_38, 1, x_37); -return x_38; +lean_inc(x_27); +lean_dec(x_18); +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_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_39 = lean_ctor_get(x_6, 0); -x_40 = lean_ctor_get(x_6, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_6); -x_41 = lean_box(x_1); -x_42 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___lam__0___boxed), 2, 1); -lean_closure_set(x_42, 0, x_41); -x_43 = lean_array_uget(x_3, x_5); -x_44 = lean_box(0); -x_45 = lean_box(0); -x_46 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___closed__2; -x_47 = lean_box(1); -x_48 = lean_box(0); -x_49 = lean_alloc_ctor(0, 7, 11); -lean_ctor_set(x_49, 0, x_44); -lean_ctor_set(x_49, 1, x_45); -lean_ctor_set(x_49, 2, x_46); -lean_ctor_set(x_49, 3, x_42); -lean_ctor_set(x_49, 4, x_47); -lean_ctor_set(x_49, 5, x_47); -lean_ctor_set(x_49, 6, x_48); -lean_ctor_set_uint8(x_49, sizeof(void*)*7, x_12); -lean_ctor_set_uint8(x_49, sizeof(void*)*7 + 1, x_12); -lean_ctor_set_uint8(x_49, sizeof(void*)*7 + 2, x_1); -lean_ctor_set_uint8(x_49, sizeof(void*)*7 + 3, x_12); -lean_ctor_set_uint8(x_49, sizeof(void*)*7 + 4, x_12); -lean_ctor_set_uint8(x_49, sizeof(void*)*7 + 5, x_1); -lean_ctor_set_uint8(x_49, sizeof(void*)*7 + 6, x_1); -lean_ctor_set_uint8(x_49, sizeof(void*)*7 + 7, x_1); -lean_ctor_set_uint8(x_49, sizeof(void*)*7 + 8, x_12); -lean_ctor_set_uint8(x_49, sizeof(void*)*7 + 9, x_1); -lean_ctor_set_uint8(x_49, sizeof(void*)*7 + 10, x_12); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc(x_2); -x_50 = l_Lean_Elab_runTactic(x_43, x_2, x_49, x_40, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_50) == 0) -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; size_t x_57; size_t x_58; -x_51 = lean_ctor_get(x_50, 0); -lean_inc(x_51); -x_52 = lean_ctor_get(x_50, 1); -lean_inc(x_52); -lean_dec_ref(x_50); -x_53 = lean_ctor_get(x_51, 0); -lean_inc(x_53); -x_54 = lean_ctor_get(x_51, 1); -lean_inc(x_54); -lean_dec(x_51); -x_55 = l_List_foldl___at___Array_appendList_spec__0(lean_box(0), x_39, x_53); -x_56 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_56, 0, x_55); -lean_ctor_set(x_56, 1, x_54); -x_57 = 1; -x_58 = lean_usize_add(x_5, x_57); -x_5 = x_58; -x_6 = x_56; -x_11 = x_52; -goto _start; +lean_object* x_30; +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_1); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_5); +lean_ctor_set(x_30, 1, x_12); +return x_30; } -else -{ -lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; -lean_dec(x_39); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_2); -x_60 = lean_ctor_get(x_50, 0); -lean_inc(x_60); -x_61 = lean_ctor_get(x_50, 1); -lean_inc(x_61); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_62 = x_50; -} else { - lean_dec_ref(x_50); - x_62 = lean_box(0); -} -if (lean_is_scalar(x_62)) { - x_63 = lean_alloc_ctor(1, 2, 0); -} else { - x_63 = x_62; -} -lean_ctor_set(x_63, 0, x_60); -lean_ctor_set(x_63, 1, x_61); -return x_63; -} -} -} -} -} -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0(uint8_t x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { -_start: -{ -lean_object* x_16; -x_16 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_11, x_12, x_13, x_14, x_15); -return x_16; -} -} -static lean_object* _init_l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("trace", 5, 5); -return x_1; -} -} -static lean_object* _init_l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("unsolvedGoals", 13, 13); -return x_1; -} -} -static lean_object* _init_l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("synthPlaceholder", 16, 16); -return x_1; -} -} -LEAN_EXPORT uint8_t l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0(uint8_t x_1, uint8_t x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_3) == 1) -{ -lean_object* x_4; -x_4 = lean_ctor_get(x_3, 0); -switch (lean_obj_tag(x_4)) { -case 0: -{ -lean_object* x_5; lean_object* x_6; uint8_t x_7; -x_5 = lean_ctor_get(x_3, 1); -x_6 = l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0___closed__0; -x_7 = lean_string_dec_eq(x_5, x_6); -if (x_7 == 0) -{ -return x_1; -} -else -{ -return x_2; -} -} -case 1: -{ -lean_object* x_8; -x_8 = lean_ctor_get(x_4, 0); -if (lean_obj_tag(x_8) == 0) -{ -lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_9 = lean_ctor_get(x_3, 1); -x_10 = lean_ctor_get(x_4, 1); -x_11 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_12 = lean_string_dec_eq(x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; uint8_t x_14; -x_13 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_14 = lean_string_dec_eq(x_10, x_13); -if (x_14 == 0) -{ -return x_1; -} -else -{ -lean_object* x_15; uint8_t x_16; -x_15 = l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0___closed__1; -x_16 = lean_string_dec_eq(x_9, x_15); -if (x_16 == 0) -{ -return x_1; -} -else -{ -return x_2; -} -} -} -else -{ -lean_object* x_17; uint8_t x_18; -x_17 = l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0___closed__2; -x_18 = lean_string_dec_eq(x_9, x_17); -if (x_18 == 0) -{ -return x_1; -} -else -{ -return x_2; -} -} -} -else -{ -return x_1; -} -} -default: -{ -return x_1; -} -} -} -else -{ -return x_1; -} -} -} -static lean_object* _init_l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_warningAsError; -return x_1; } } LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t 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_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_81; uint8_t x_82; lean_object* x_83; uint8_t x_84; lean_object* x_85; uint8_t x_86; lean_object* x_87; lean_object* x_88; lean_object* x_110; lean_object* x_111; uint8_t x_112; uint8_t x_113; lean_object* x_114; lean_object* x_115; uint8_t x_116; lean_object* x_117; lean_object* x_121; lean_object* x_122; uint8_t x_123; lean_object* x_124; lean_object* x_125; uint8_t x_126; uint8_t x_127; uint8_t x_133; lean_object* x_134; uint8_t x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; uint8_t x_139; uint8_t x_140; uint8_t x_142; uint8_t x_158; +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; lean_object* x_85; uint8_t x_86; uint8_t x_87; lean_object* x_88; lean_object* x_110; lean_object* x_111; lean_object* x_112; uint8_t x_113; lean_object* x_114; uint8_t x_115; uint8_t x_116; lean_object* x_117; lean_object* x_121; lean_object* x_122; uint8_t x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; uint8_t x_127; uint8_t x_133; lean_object* x_134; uint8_t x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; uint8_t x_139; uint8_t x_140; uint8_t x_142; uint8_t x_158; x_133 = 2; x_158 = l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(x_3, x_133); if (x_158 == 0) @@ -33596,15 +49331,15 @@ lean_ctor_set(x_20, 1, x_25); lean_ctor_set(x_20, 0, x_24); x_28 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_28, 0, x_20); -lean_ctor_set(x_28, 1, x_14); +lean_ctor_set(x_28, 1, x_13); x_29 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_29, 0, x_13); -lean_ctor_set(x_29, 1, x_10); -lean_ctor_set(x_29, 2, x_16); +lean_ctor_set(x_29, 0, x_10); +lean_ctor_set(x_29, 1, x_12); +lean_ctor_set(x_29, 2, x_14); lean_ctor_set(x_29, 3, x_11); lean_ctor_set(x_29, 4, x_28); lean_ctor_set_uint8(x_29, sizeof(void*)*5, x_15); -lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 1, x_12); +lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 1, x_16); lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 2, x_4); x_30 = l_Lean_MessageLog_add(x_29, x_27); lean_ctor_set(x_22, 6, x_30); @@ -33658,15 +49393,15 @@ lean_ctor_set(x_20, 1, x_25); lean_ctor_set(x_20, 0, x_24); x_47 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_47, 0, x_20); -lean_ctor_set(x_47, 1, x_14); +lean_ctor_set(x_47, 1, x_13); x_48 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_48, 0, x_13); -lean_ctor_set(x_48, 1, x_10); -lean_ctor_set(x_48, 2, x_16); +lean_ctor_set(x_48, 0, x_10); +lean_ctor_set(x_48, 1, x_12); +lean_ctor_set(x_48, 2, x_14); lean_ctor_set(x_48, 3, x_11); lean_ctor_set(x_48, 4, x_47); lean_ctor_set_uint8(x_48, sizeof(void*)*5, x_15); -lean_ctor_set_uint8(x_48, sizeof(void*)*5 + 1, x_12); +lean_ctor_set_uint8(x_48, sizeof(void*)*5 + 1, x_16); lean_ctor_set_uint8(x_48, sizeof(void*)*5 + 2, x_4); x_49 = l_Lean_MessageLog_add(x_48, x_44); x_50 = lean_alloc_ctor(0, 9, 0); @@ -33752,15 +49487,15 @@ lean_ctor_set(x_70, 0, x_58); lean_ctor_set(x_70, 1, x_59); x_71 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_71, 0, x_70); -lean_ctor_set(x_71, 1, x_14); +lean_ctor_set(x_71, 1, x_13); x_72 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_72, 0, x_13); -lean_ctor_set(x_72, 1, x_10); -lean_ctor_set(x_72, 2, x_16); +lean_ctor_set(x_72, 0, x_10); +lean_ctor_set(x_72, 1, x_12); +lean_ctor_set(x_72, 2, x_14); lean_ctor_set(x_72, 3, x_11); lean_ctor_set(x_72, 4, x_71); lean_ctor_set_uint8(x_72, sizeof(void*)*5, x_15); -lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 1, x_12); +lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 1, x_16); lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 2, x_4); x_73 = l_Lean_MessageLog_add(x_72, x_66); if (lean_is_scalar(x_69)) { @@ -33803,7 +49538,7 @@ block_109: { lean_object* x_89; lean_object* x_90; uint8_t x_91; x_89 = l___private_Lean_Log_0__Lean_MessageData_appendDescriptionWidgetIfNamed(x_2); -x_90 = l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0(x_89, x_5, x_6, x_7, x_8, x_9); +x_90 = l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0_spec__0(x_89, x_5, x_6, x_7, x_8, x_9); x_91 = !lean_is_exclusive(x_90); if (x_91 == 0) { @@ -33811,24 +49546,24 @@ lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean x_92 = lean_ctor_get(x_90, 0); x_93 = lean_ctor_get(x_90, 1); lean_inc_ref(x_85); -x_94 = l_Lean_FileMap_toPosition(x_85, x_87); -lean_dec(x_87); +x_94 = l_Lean_FileMap_toPosition(x_85, x_83); +lean_dec(x_83); x_95 = l_Lean_FileMap_toPosition(x_85, x_88); lean_dec(x_88); x_96 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_96, 0, x_95); -x_97 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4; -if (x_82 == 0) +x_97 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__1; +if (x_84 == 0) { lean_free_object(x_90); lean_dec_ref(x_81); -x_10 = x_94; +x_10 = x_82; x_11 = x_97; -x_12 = x_84; -x_13 = x_83; -x_14 = x_92; +x_12 = x_94; +x_13 = x_92; +x_14 = x_96; x_15 = x_86; -x_16 = x_96; +x_16 = x_87; x_17 = x_7; x_18 = x_8; x_19 = x_93; @@ -33845,7 +49580,7 @@ lean_object* x_99; lean_dec_ref(x_96); lean_dec_ref(x_94); lean_dec(x_92); -lean_dec_ref(x_83); +lean_dec_ref(x_82); lean_dec_ref(x_7); x_99 = lean_box(0); lean_ctor_set(x_90, 0, x_99); @@ -33854,13 +49589,13 @@ return x_90; else { lean_free_object(x_90); -x_10 = x_94; +x_10 = x_82; x_11 = x_97; -x_12 = x_84; -x_13 = x_83; -x_14 = x_92; +x_12 = x_94; +x_13 = x_92; +x_14 = x_96; x_15 = x_86; -x_16 = x_96; +x_16 = x_87; x_17 = x_7; x_18 = x_8; x_19 = x_93; @@ -33877,23 +49612,23 @@ lean_inc(x_101); lean_inc(x_100); lean_dec(x_90); lean_inc_ref(x_85); -x_102 = l_Lean_FileMap_toPosition(x_85, x_87); -lean_dec(x_87); +x_102 = l_Lean_FileMap_toPosition(x_85, x_83); +lean_dec(x_83); x_103 = l_Lean_FileMap_toPosition(x_85, x_88); lean_dec(x_88); x_104 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_104, 0, x_103); -x_105 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4; -if (x_82 == 0) +x_105 = l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__1; +if (x_84 == 0) { lean_dec_ref(x_81); -x_10 = x_102; +x_10 = x_82; x_11 = x_105; -x_12 = x_84; -x_13 = x_83; -x_14 = x_100; +x_12 = x_102; +x_13 = x_100; +x_14 = x_104; x_15 = x_86; -x_16 = x_104; +x_16 = x_87; x_17 = x_7; x_18 = x_8; x_19 = x_101; @@ -33910,7 +49645,7 @@ lean_object* x_107; lean_object* x_108; lean_dec_ref(x_104); lean_dec_ref(x_102); lean_dec(x_100); -lean_dec_ref(x_83); +lean_dec_ref(x_82); lean_dec_ref(x_7); x_107 = lean_box(0); x_108 = lean_alloc_ctor(0, 2, 0); @@ -33920,13 +49655,13 @@ return x_108; } else { -x_10 = x_102; +x_10 = x_82; x_11 = x_105; -x_12 = x_84; -x_13 = x_83; -x_14 = x_100; +x_12 = x_102; +x_13 = x_100; +x_14 = x_104; x_15 = x_86; -x_16 = x_104; +x_16 = x_87; x_17 = x_7; x_18 = x_8; x_19 = x_101; @@ -33938,18 +49673,18 @@ goto block_80; block_120: { lean_object* x_118; -x_118 = l_Lean_Syntax_getTailPos_x3f(x_111, x_116); -lean_dec(x_111); +x_118 = l_Lean_Syntax_getTailPos_x3f(x_112, x_115); +lean_dec(x_112); if (lean_obj_tag(x_118) == 0) { lean_inc(x_117); x_81 = x_110; -x_82 = x_112; -x_83 = x_114; +x_82 = x_111; +x_83 = x_117; x_84 = x_113; -x_85 = x_115; -x_86 = x_116; -x_87 = x_117; +x_85 = x_114; +x_86 = x_115; +x_87 = x_116; x_88 = x_117; goto block_109; } @@ -33960,12 +49695,12 @@ x_119 = lean_ctor_get(x_118, 0); lean_inc(x_119); lean_dec_ref(x_118); x_81 = x_110; -x_82 = x_112; -x_83 = x_114; +x_82 = x_111; +x_83 = x_117; x_84 = x_113; -x_85 = x_115; -x_86 = x_116; -x_87 = x_117; +x_85 = x_114; +x_86 = x_115; +x_87 = x_116; x_88 = x_119; goto block_109; } @@ -33973,20 +49708,20 @@ goto block_109; block_132: { lean_object* x_128; lean_object* x_129; -x_128 = l_Lean_replaceRef(x_1, x_122); -lean_dec(x_122); -x_129 = l_Lean_Syntax_getPos_x3f(x_128, x_126); +x_128 = l_Lean_replaceRef(x_1, x_126); +lean_dec(x_126); +x_129 = l_Lean_Syntax_getPos_x3f(x_128, x_125); if (lean_obj_tag(x_129) == 0) { lean_object* x_130; x_130 = lean_unsigned_to_nat(0u); x_110 = x_121; -x_111 = x_128; -x_112 = x_123; -x_113 = x_127; +x_111 = x_122; +x_112 = x_128; +x_113 = x_123; x_114 = x_124; x_115 = x_125; -x_116 = x_126; +x_116 = x_127; x_117 = x_130; goto block_120; } @@ -33997,12 +49732,12 @@ x_131 = lean_ctor_get(x_129, 0); lean_inc(x_131); lean_dec_ref(x_129); x_110 = x_121; -x_111 = x_128; -x_112 = x_123; -x_113 = x_127; +x_111 = x_122; +x_112 = x_128; +x_113 = x_123; x_114 = x_124; x_115 = x_125; -x_116 = x_126; +x_116 = x_127; x_117 = x_131; goto block_120; } @@ -34015,8 +49750,8 @@ x_121 = x_138; x_122 = x_134; x_123 = x_135; x_124 = x_136; -x_125 = x_137; -x_126 = x_139; +x_125 = x_139; +x_126 = x_137; x_127 = x_3; goto block_132; } @@ -34026,8 +49761,8 @@ x_121 = x_138; x_122 = x_134; x_123 = x_135; x_124 = x_136; -x_125 = x_137; -x_126 = x_139; +x_125 = x_139; +x_126 = x_137; x_127 = x_133; goto block_132; } @@ -34048,7 +49783,7 @@ lean_inc(x_146); x_147 = lean_ctor_get_uint8(x_7, sizeof(void*)*13 + 1); x_148 = lean_box(x_142); x_149 = lean_box(x_147); -x_150 = lean_alloc_closure((void*)(l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0___boxed), 3, 2); +x_150 = lean_alloc_closure((void*)(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___boxed), 3, 2); lean_closure_set(x_150, 0, x_148); lean_closure_set(x_150, 1, x_149); x_151 = 1; @@ -34056,10 +49791,10 @@ x_152 = l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(x_3, x_151); if (x_152 == 0) { lean_dec(x_145); -x_134 = x_146; +x_134 = x_143; x_135 = x_147; -x_136 = x_143; -x_137 = x_144; +x_136 = x_144; +x_137 = x_146; x_138 = x_150; x_139 = x_142; x_140 = x_152; @@ -34068,13 +49803,13 @@ goto block_141; else { lean_object* x_153; uint8_t x_154; -x_153 = l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___closed__0; -x_154 = l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__1(x_145, x_153); +x_153 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___closed__1; +x_154 = l_Lean_Option_get___at___Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11_spec__11(x_145, x_153); lean_dec(x_145); -x_134 = x_146; +x_134 = x_143; x_135 = x_147; -x_136 = x_143; -x_137 = x_144; +x_136 = x_144; +x_137 = x_146; x_138 = x_150; x_139 = x_142; x_140 = x_154; @@ -34117,71 +49852,73 @@ static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__0( _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("paren", 5, 5); +x_1 = l_Array_empty(lean_box(0)); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__1() { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0(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; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__0; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_10 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__0; +x_11 = lean_unsigned_to_nat(0u); +x_12 = lean_array_get_size(x_2); +x_13 = lean_nat_dec_lt(x_11, x_12); +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_12); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_10); +lean_ctor_set(x_14, 1, x_9); +return x_14; +} +else +{ +uint8_t x_15; +x_15 = lean_nat_dec_le(x_12, x_12); +if (x_15 == 0) +{ +lean_object* x_16; +lean_dec(x_12); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_10); +lean_ctor_set(x_16, 1, x_9); +return x_16; +} +else +{ +size_t x_17; size_t x_18; lean_object* x_19; +x_17 = 0; +x_18 = lean_usize_of_nat(x_12); +lean_dec(x_12); +x_19 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0(x_1, x_2, x_17, x_18, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_19; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__2() { +} +} +LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Do_elabMVCGen___lam__1(uint8_t x_1, lean_object* x_2) { _start: { -lean_object* x_1; -x_1 = lean_mk_string_unchecked("(", 1, 1); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("tacticSeq", 9, 9); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__3; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("tacticSeq1Indented", 18, 18); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__5; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__7() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__0() { _start: { lean_object* x_1; @@ -34189,19 +49926,19 @@ x_1 = lean_mk_string_unchecked("tacticTry_", 10, 10); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__8() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__7; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; +x_1 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__0; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3; +x_3 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__3; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__2; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__9() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__2() { _start: { lean_object* x_1; @@ -34209,94 +49946,394 @@ x_1 = lean_mk_string_unchecked("try", 3, 3); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__10() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("tacticSeq", 9, 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__5; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; +x_1 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__3; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3; +x_3 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__3; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__2; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__11() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__5() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("Pure", 4, 4); +x_1 = lean_mk_string_unchecked("tacticSeq1Indented", 18, 18); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__12() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__6() { _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; lean_object* x_7; -x_1 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__3; -x_2 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__11; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__1; -x_5 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_6 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__0; -x_7 = l_Lean_Name_mkStr6(x_6, x_5, x_4, x_3, x_2, x_1); -return x_7; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__5; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3; +x_3 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__3; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__2; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__13() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("null", 4, 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__12; -x_2 = lean_mk_syntax_ident(x_1); +x_1 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__7; +x_2 = l_Lean_Name_mkStr1(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__14() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__9() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked(")", 1, 1); +x_1 = lean_mk_string_unchecked("mleave", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__15() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked(";", 1, 1); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__16() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("tacticTrivial", 13, 13); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__17() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__16; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; +x_1 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__9; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3; +x_3 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__3; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__2; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__18() { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2(uint8_t 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, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +if (x_1 == 0) +{ +lean_object* x_12; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_4); +lean_ctor_set(x_12, 1, x_11); +return x_12; +} +else +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_st_ref_get(x_10, x_11); +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_15 = lean_ctor_get(x_13, 1); +x_16 = lean_ctor_get(x_13, 0); +lean_dec(x_16); +x_17 = lean_ctor_get(x_9, 5); +lean_inc(x_17); +x_18 = l_Lean_SourceInfo_fromRef(x_17, x_2); +lean_dec(x_17); +x_19 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__1; +x_20 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__2; +lean_inc(x_18); +lean_ctor_set_tag(x_13, 2); +lean_ctor_set(x_13, 1, x_20); +lean_ctor_set(x_13, 0, x_18); +x_21 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__4; +x_22 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__6; +x_23 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__8; +x_24 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__9; +x_25 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__10; +lean_inc(x_18); +x_26 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_26, 0, x_18); +lean_ctor_set(x_26, 1, x_24); +lean_inc(x_18); +x_27 = l_Lean_Syntax_node1(x_18, x_25, x_26); +lean_inc(x_18); +x_28 = l_Lean_Syntax_node1(x_18, x_23, x_27); +lean_inc(x_18); +x_29 = l_Lean_Syntax_node1(x_18, x_22, x_28); +lean_inc(x_18); +x_30 = l_Lean_Syntax_node1(x_18, x_21, x_29); +x_31 = l_Lean_Syntax_node2(x_18, x_19, x_13, x_30); +x_32 = lean_apply_9(x_3, x_31, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_15); +return x_32; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_33 = lean_ctor_get(x_13, 1); +lean_inc(x_33); +lean_dec(x_13); +x_34 = lean_ctor_get(x_9, 5); +lean_inc(x_34); +x_35 = l_Lean_SourceInfo_fromRef(x_34, x_2); +lean_dec(x_34); +x_36 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__1; +x_37 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__2; +lean_inc(x_35); +x_38 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_38, 0, x_35); +lean_ctor_set(x_38, 1, x_37); +x_39 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__4; +x_40 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__6; +x_41 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__8; +x_42 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__9; +x_43 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__10; +lean_inc(x_35); +x_44 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_44, 0, x_35); +lean_ctor_set(x_44, 1, x_42); +lean_inc(x_35); +x_45 = l_Lean_Syntax_node1(x_35, x_43, x_44); +lean_inc(x_35); +x_46 = l_Lean_Syntax_node1(x_35, x_41, x_45); +lean_inc(x_35); +x_47 = l_Lean_Syntax_node1(x_35, x_40, x_46); +lean_inc(x_35); +x_48 = l_Lean_Syntax_node1(x_35, x_39, x_47); +x_49 = l_Lean_Syntax_node2(x_35, x_36, x_38, x_48); +x_50 = lean_apply_9(x_3, x_49, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_33); +return x_50; +} +} +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___closed__0() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("trivial", 7, 7); +x_1 = lean_mk_string_unchecked("tacticMvcgen_trivial", 20, 20); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__19() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___closed__0; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3; +x_3 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__3; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__2; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("mvcgen_trivial", 14, 14); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3(uint8_t x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +if (x_1 == 0) +{ +lean_object* x_13; +lean_dec_ref(x_5); +x_13 = lean_apply_8(x_2, x_3, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_13; +} +else +{ +lean_object* x_14; uint8_t x_15; +x_14 = lean_st_ref_get(x_11, x_12); +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; 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; +x_16 = lean_ctor_get(x_14, 1); +x_17 = lean_ctor_get(x_14, 0); +lean_dec(x_17); +x_18 = lean_ctor_get(x_10, 5); +lean_inc(x_18); +x_19 = l_Lean_SourceInfo_fromRef(x_18, x_4); +lean_dec(x_18); +x_20 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__1; +x_21 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__2; +lean_inc(x_19); +lean_ctor_set_tag(x_14, 2); +lean_ctor_set(x_14, 1, x_21); +lean_ctor_set(x_14, 0, x_19); +x_22 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__4; +x_23 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__6; +x_24 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__8; +x_25 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___closed__1; +x_26 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___closed__2; +lean_inc(x_19); +x_27 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_27, 0, x_19); +lean_ctor_set(x_27, 1, x_26); +lean_inc(x_19); +x_28 = l_Lean_Syntax_node1(x_19, x_25, x_27); +lean_inc(x_19); +x_29 = l_Lean_Syntax_node1(x_19, x_24, x_28); +lean_inc(x_19); +x_30 = l_Lean_Syntax_node1(x_19, x_23, x_29); +lean_inc(x_19); +x_31 = l_Lean_Syntax_node1(x_19, x_22, x_30); +x_32 = l_Lean_Syntax_node2(x_19, x_20, x_14, x_31); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +x_33 = lean_apply_9(x_5, x_32, x_3, x_6, x_7, x_8, x_9, x_10, x_11, x_16); +if (lean_obj_tag(x_33) == 0) +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +x_35 = lean_ctor_get(x_33, 1); +lean_inc(x_35); +lean_dec_ref(x_33); +x_36 = lean_apply_8(x_2, x_34, x_6, x_7, x_8, x_9, x_10, x_11, x_35); +return x_36; +} +else +{ +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_2); +return x_33; +} +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_37 = lean_ctor_get(x_14, 1); +lean_inc(x_37); +lean_dec(x_14); +x_38 = lean_ctor_get(x_10, 5); +lean_inc(x_38); +x_39 = l_Lean_SourceInfo_fromRef(x_38, x_4); +lean_dec(x_38); +x_40 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__1; +x_41 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__2; +lean_inc(x_39); +x_42 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_42, 0, x_39); +lean_ctor_set(x_42, 1, x_41); +x_43 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__4; +x_44 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__6; +x_45 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__8; +x_46 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___closed__1; +x_47 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___closed__2; +lean_inc(x_39); +x_48 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_48, 0, x_39); +lean_ctor_set(x_48, 1, x_47); +lean_inc(x_39); +x_49 = l_Lean_Syntax_node1(x_39, x_46, x_48); +lean_inc(x_39); +x_50 = l_Lean_Syntax_node1(x_39, x_45, x_49); +lean_inc(x_39); +x_51 = l_Lean_Syntax_node1(x_39, x_44, x_50); +lean_inc(x_39); +x_52 = l_Lean_Syntax_node1(x_39, x_43, x_51); +x_53 = l_Lean_Syntax_node2(x_39, x_40, x_42, x_52); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +x_54 = lean_apply_9(x_5, x_53, x_3, x_6, x_7, x_8, x_9, x_10, x_11, x_37); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +lean_dec_ref(x_54); +x_57 = lean_apply_8(x_2, x_55, x_6, x_7, x_8, x_9, x_10, x_11, x_56); +return x_57; +} +else +{ +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_2); +return x_54; +} +} +} +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__0() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(32u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__0; +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_Elab_Tactic_Do_elabMVCGen___lam__4___closed__2() { +_start: +{ +size_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = 5; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__0; +x_4 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__1; +x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +lean_ctor_set(x_5, 2, x_2); +lean_ctor_set(x_5, 3, x_2); +lean_ctor_set_usize(x_5, 4, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__3() { _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; @@ -34316,19 +50353,7 @@ lean_ctor_set(x_6, 6, x_1); return x_6; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__20() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__19; -x_2 = l_Lean_Elab_Tactic_Do_step___closed__16; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__21() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__4() { _start: { lean_object* x_1; @@ -34336,7 +50361,7 @@ x_1 = l_Lean_Elab_Tactic_Do_mvcgen_warning; return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__22() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__5() { _start: { lean_object* x_1; @@ -34344,496 +50369,472 @@ x_1 = lean_mk_string_unchecked("The `mvcgen` tactic is experimental and still un return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__23() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__22; +x_1 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__5; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__24() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__23; +x_1 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__6; x_2 = l_Lean_MessageData_ofFormat(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_158; lean_object* x_159; uint8_t x_160; -x_158 = lean_ctor_get(x_8, 2); -lean_inc(x_158); -x_159 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__21; -x_160 = l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__1(x_158, x_159); -lean_dec(x_158); -if (x_160 == 0) +lean_object* x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_56; uint8_t x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; uint8_t x_67; lean_object* x_68; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_121; lean_object* x_122; uint8_t x_123; +x_121 = lean_ctor_get(x_9, 2); +lean_inc(x_121); +x_122 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__4; +x_123 = l_Lean_Option_get___at___Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11_spec__11(x_121, x_122); +lean_dec(x_121); +if (x_123 == 0) { -x_11 = x_2; -x_12 = x_3; -x_13 = x_4; -x_14 = x_5; -x_15 = x_6; -x_16 = x_7; -x_17 = x_8; -x_18 = x_9; -x_19 = x_10; -goto block_157; +x_87 = x_3; +x_88 = x_4; +x_89 = x_5; +x_90 = x_6; +x_91 = x_7; +x_92 = x_8; +x_93 = x_9; +x_94 = x_10; +x_95 = x_11; +goto block_120; } else { -lean_object* x_161; lean_object* x_162; lean_object* x_163; -x_161 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__24; -lean_inc_ref(x_8); -x_162 = l_Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1(x_1, x_161, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -x_163 = lean_ctor_get(x_162, 1); -lean_inc(x_163); -lean_dec_ref(x_162); -x_11 = x_2; -x_12 = x_3; -x_13 = x_4; -x_14 = x_5; -x_15 = x_6; -x_16 = x_7; -x_17 = x_8; -x_18 = x_9; -x_19 = x_163; -goto block_157; +lean_object* x_124; lean_object* x_125; lean_object* x_126; +x_124 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__7; +lean_inc_ref(x_9); +x_125 = l_Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1(x_1, x_124, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_126 = lean_ctor_get(x_125, 1); +lean_inc(x_126); +lean_dec_ref(x_125); +x_87 = x_3; +x_88 = x_4; +x_89 = x_5; +x_90 = x_6; +x_91 = x_7; +x_92 = x_8; +x_93 = x_9; +x_94 = x_10; +x_95 = x_126; +goto block_120; } -block_157: +block_55: { -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; lean_object* x_25; -x_20 = lean_unsigned_to_nat(1u); -x_21 = l_Lean_Syntax_getArg(x_1, x_20); -x_22 = lean_unsigned_to_nat(2u); -x_23 = l_Lean_Syntax_getArg(x_1, x_22); -x_24 = 0; -lean_inc(x_18); -lean_inc_ref(x_17); -lean_inc(x_16); -lean_inc_ref(x_15); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -x_25 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext(x_21, x_23, x_24, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); -lean_dec(x_23); -if (lean_obj_tag(x_25) == 0) +lean_object* x_26; +lean_inc(x_24); +lean_inc_ref(x_23); +lean_inc(x_22); +lean_inc_ref(x_21); +x_26 = l_Lean_Elab_Tactic_Do_VCGen_genVCs(x_19, x_16, x_14, x_21, x_22, x_23, x_24, x_25); +if (lean_obj_tag(x_26) == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; -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; uint8_t x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t 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_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); -lean_dec_ref(x_25); -x_28 = l_Lean_Elab_Tactic_getMainGoal___redArg(x_12, x_15, x_16, x_17, x_18, 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; -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -x_30 = lean_ctor_get(x_28, 1); -lean_inc(x_30); -lean_dec_ref(x_28); -x_31 = lean_box(1); -lean_inc(x_18); -lean_inc_ref(x_17); -lean_inc(x_16); -lean_inc_ref(x_15); -lean_inc(x_12); -x_32 = l_Lean_Elab_Tactic_Do_genVCs(x_29, x_26, x_31, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_30); -if (lean_obj_tag(x_32) == 0) -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; -x_33 = lean_ctor_get(x_32, 0); -lean_inc(x_33); -x_34 = lean_ctor_get(x_32, 1); -lean_inc(x_34); -lean_dec_ref(x_32); -x_35 = lean_st_ref_get(x_18, x_34); -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; size_t x_79; size_t x_80; lean_object* x_81; -x_37 = lean_ctor_get(x_35, 1); -x_38 = lean_ctor_get(x_35, 0); -lean_dec(x_38); -x_39 = lean_ctor_get(x_17, 5); -lean_inc(x_39); -x_40 = l_Lean_SourceInfo_fromRef(x_39, x_24); -lean_dec(x_39); -x_41 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__1; -x_42 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__2; -lean_inc(x_40); -lean_ctor_set_tag(x_35, 2); -lean_ctor_set(x_35, 1, x_42); -lean_ctor_set(x_35, 0, x_40); -x_43 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__4; -x_44 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__6; -x_45 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__6; -x_46 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__8; -x_47 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__9; -lean_inc(x_40); -x_48 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_48, 0, x_40); -lean_ctor_set(x_48, 1, x_47); -x_49 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__5; -x_50 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__10; -lean_inc(x_40); -x_51 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_51, 0, x_40); -lean_ctor_set(x_51, 1, x_49); -x_52 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__13; -lean_inc(x_40); -x_53 = l_Lean_Syntax_node2(x_40, x_50, x_51, x_52); -lean_inc(x_40); -x_54 = l_Lean_Syntax_node1(x_40, x_45, x_53); -lean_inc(x_40); -x_55 = l_Lean_Syntax_node1(x_40, x_44, x_54); -lean_inc(x_40); -x_56 = l_Lean_Syntax_node1(x_40, x_43, x_55); -lean_inc_ref(x_48); -lean_inc(x_40); -x_57 = l_Lean_Syntax_node2(x_40, x_46, x_48, x_56); -lean_inc(x_40); -x_58 = l_Lean_Syntax_node1(x_40, x_45, x_57); -lean_inc(x_40); -x_59 = l_Lean_Syntax_node1(x_40, x_44, x_58); -lean_inc(x_40); -x_60 = l_Lean_Syntax_node1(x_40, x_43, x_59); -x_61 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__14; -lean_inc(x_40); -x_62 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_62, 0, x_40); -lean_ctor_set(x_62, 1, x_61); -lean_inc_ref(x_62); -lean_inc_ref(x_35); -lean_inc(x_40); -x_63 = l_Lean_Syntax_node3(x_40, x_41, x_35, x_60, x_62); -x_64 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__15; -lean_inc(x_40); -x_65 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_65, 0, x_40); -lean_ctor_set(x_65, 1, x_64); -x_66 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__17; -x_67 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__18; -lean_inc(x_40); -x_68 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_68, 0, x_40); -lean_ctor_set(x_68, 1, x_67); -lean_inc(x_40); -x_69 = l_Lean_Syntax_node1(x_40, x_66, x_68); -lean_inc(x_40); -x_70 = l_Lean_Syntax_node3(x_40, x_45, x_63, x_65, x_69); -lean_inc(x_40); -x_71 = l_Lean_Syntax_node1(x_40, x_44, x_70); -lean_inc(x_40); -x_72 = l_Lean_Syntax_node1(x_40, x_43, x_71); -lean_inc(x_40); -x_73 = l_Lean_Syntax_node2(x_40, x_46, x_48, x_72); -lean_inc(x_40); -x_74 = l_Lean_Syntax_node1(x_40, x_45, x_73); -lean_inc(x_40); -x_75 = l_Lean_Syntax_node1(x_40, x_44, x_74); -lean_inc(x_40); -x_76 = l_Lean_Syntax_node1(x_40, x_43, x_75); -x_77 = l_Lean_Syntax_node3(x_40, x_41, x_35, x_76, x_62); -x_78 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__20; -x_79 = lean_array_size(x_33); -x_80 = 0; -lean_inc(x_18); -lean_inc_ref(x_17); -lean_inc(x_16); -lean_inc_ref(x_15); -x_81 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg(x_24, x_77, x_33, x_79, x_80, x_78, x_15, x_16, x_17, x_18, x_37); -lean_dec(x_33); -if (lean_obj_tag(x_81) == 0) -{ -lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; -x_82 = lean_ctor_get(x_81, 0); -lean_inc(x_82); -x_83 = lean_ctor_get(x_81, 1); -lean_inc(x_83); -lean_dec_ref(x_81); -x_84 = lean_ctor_get(x_82, 0); -lean_inc(x_84); -lean_dec(x_82); -x_85 = lean_array_to_list(x_84); -x_86 = l_Lean_Elab_Tactic_replaceMainGoal___redArg(x_85, x_12, x_15, x_16, x_17, x_18, x_83); -lean_dec(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec_ref(x_26); +x_29 = lean_ctor_get_uint8(x_15, sizeof(void*)*1); lean_dec_ref(x_15); -lean_dec(x_12); -return x_86; +x_30 = lean_box(x_29); +x_31 = lean_box(x_13); +x_32 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___boxed), 12, 5); +lean_closure_set(x_32, 0, x_30); +lean_closure_set(x_32, 1, x_12); +lean_closure_set(x_32, 2, x_27); +lean_closure_set(x_32, 3, x_31); +lean_closure_set(x_32, 4, x_2); +x_33 = 1; +x_34 = lean_box(0); +x_35 = lean_box(0); +x_36 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__2; +x_37 = lean_box(1); +x_38 = lean_box(0); +x_39 = lean_alloc_ctor(0, 7, 11); +lean_ctor_set(x_39, 0, x_34); +lean_ctor_set(x_39, 1, x_35); +lean_ctor_set(x_39, 2, x_36); +lean_ctor_set(x_39, 3, x_17); +lean_ctor_set(x_39, 4, x_37); +lean_ctor_set(x_39, 5, x_37); +lean_ctor_set(x_39, 6, x_38); +lean_ctor_set_uint8(x_39, sizeof(void*)*7, x_33); +lean_ctor_set_uint8(x_39, sizeof(void*)*7 + 1, x_33); +lean_ctor_set_uint8(x_39, sizeof(void*)*7 + 2, x_18); +lean_ctor_set_uint8(x_39, sizeof(void*)*7 + 3, x_33); +lean_ctor_set_uint8(x_39, sizeof(void*)*7 + 4, x_33); +lean_ctor_set_uint8(x_39, sizeof(void*)*7 + 5, x_18); +lean_ctor_set_uint8(x_39, sizeof(void*)*7 + 6, x_18); +lean_ctor_set_uint8(x_39, sizeof(void*)*7 + 7, x_18); +lean_ctor_set_uint8(x_39, sizeof(void*)*7 + 8, x_33); +lean_ctor_set_uint8(x_39, sizeof(void*)*7 + 9, x_18); +lean_ctor_set_uint8(x_39, sizeof(void*)*7 + 10, x_33); +x_40 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__3; +lean_inc(x_24); +lean_inc_ref(x_23); +lean_inc(x_22); +lean_inc_ref(x_21); +x_41 = l_Lean_Elab_Term_TermElabM_run___redArg(x_32, x_39, x_40, x_21, x_22, x_23, x_24, x_28); +if (lean_obj_tag(x_41) == 0) +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +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_ref(x_41); +x_44 = lean_ctor_get(x_42, 0); +lean_inc(x_44); +lean_dec(x_42); +x_45 = lean_array_to_list(x_44); +x_46 = l_Lean_Elab_Tactic_replaceMainGoal___redArg(x_45, x_20, x_21, x_22, x_23, x_24, x_43); +lean_dec(x_24); +lean_dec_ref(x_23); +lean_dec(x_22); +lean_dec_ref(x_21); +lean_dec(x_20); +return x_46; } else { -uint8_t x_87; -lean_dec(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_12); -x_87 = !lean_is_exclusive(x_81); -if (x_87 == 0) +uint8_t x_47; +lean_dec(x_24); +lean_dec_ref(x_23); +lean_dec(x_22); +lean_dec_ref(x_21); +lean_dec(x_20); +x_47 = !lean_is_exclusive(x_41); +if (x_47 == 0) { +return x_41; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_41, 0); +x_49 = lean_ctor_get(x_41, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_41); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +else +{ +uint8_t x_51; +lean_dec(x_24); +lean_dec_ref(x_23); +lean_dec(x_22); +lean_dec_ref(x_21); +lean_dec(x_20); +lean_dec_ref(x_17); +lean_dec_ref(x_15); +lean_dec_ref(x_12); +lean_dec_ref(x_2); +x_51 = !lean_is_exclusive(x_26); +if (x_51 == 0) +{ +return x_26; +} +else +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_52 = lean_ctor_get(x_26, 0); +x_53 = lean_ctor_get(x_26, 1); +lean_inc(x_53); +lean_inc(x_52); +lean_dec(x_26); +x_54 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_54, 0, x_52); +lean_ctor_set(x_54, 1, x_53); +return x_54; +} +} +} +block_86: +{ +lean_object* x_69; +x_69 = l_Lean_Elab_Tactic_getMainGoal___redArg(x_61, x_63, x_66, x_64, x_60, x_65); +if (lean_obj_tag(x_69) == 0) +{ +uint8_t x_70; +x_70 = lean_ctor_get_uint8(x_59, sizeof(void*)*1 + 2); +if (x_70 == 0) +{ +lean_object* x_71; lean_object* x_72; +x_71 = lean_ctor_get(x_69, 0); +lean_inc(x_71); +x_72 = lean_ctor_get(x_69, 1); +lean_inc(x_72); +lean_dec_ref(x_69); +x_12 = x_56; +x_13 = x_57; +x_14 = x_68; +x_15 = x_59; +x_16 = x_62; +x_17 = x_58; +x_18 = x_67; +x_19 = x_71; +x_20 = x_61; +x_21 = x_63; +x_22 = x_66; +x_23 = x_64; +x_24 = x_60; +x_25 = x_72; +goto block_55; +} +else +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_69, 0); +lean_inc(x_73); +x_74 = lean_ctor_get(x_69, 1); +lean_inc(x_74); +lean_dec_ref(x_69); +lean_inc(x_60); +lean_inc_ref(x_64); +lean_inc(x_66); +lean_inc_ref(x_63); +x_75 = l_Lean_Elab_Tactic_Do_elimLets(x_73, x_70, x_63, x_66, x_64, x_60, x_74); +if (lean_obj_tag(x_75) == 0) +{ +lean_object* x_76; lean_object* x_77; +x_76 = lean_ctor_get(x_75, 0); +lean_inc(x_76); +x_77 = lean_ctor_get(x_75, 1); +lean_inc(x_77); +lean_dec_ref(x_75); +x_12 = x_56; +x_13 = x_57; +x_14 = x_68; +x_15 = x_59; +x_16 = x_62; +x_17 = x_58; +x_18 = x_67; +x_19 = x_76; +x_20 = x_61; +x_21 = x_63; +x_22 = x_66; +x_23 = x_64; +x_24 = x_60; +x_25 = x_77; +goto block_55; +} +else +{ +uint8_t x_78; +lean_dec(x_68); +lean_dec(x_66); +lean_dec_ref(x_64); +lean_dec_ref(x_63); +lean_dec_ref(x_62); +lean_dec(x_61); +lean_dec(x_60); +lean_dec_ref(x_59); +lean_dec_ref(x_58); +lean_dec_ref(x_56); +lean_dec_ref(x_2); +x_78 = !lean_is_exclusive(x_75); +if (x_78 == 0) +{ +return x_75; +} +else +{ +lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_79 = lean_ctor_get(x_75, 0); +x_80 = lean_ctor_get(x_75, 1); +lean_inc(x_80); +lean_inc(x_79); +lean_dec(x_75); +x_81 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_81, 0, x_79); +lean_ctor_set(x_81, 1, x_80); return x_81; } -else -{ -lean_object* x_88; lean_object* x_89; lean_object* x_90; -x_88 = lean_ctor_get(x_81, 0); -x_89 = lean_ctor_get(x_81, 1); -lean_inc(x_89); -lean_inc(x_88); -lean_dec(x_81); -x_90 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_90, 0, x_88); -lean_ctor_set(x_90, 1, x_89); -return x_90; } } } else { -lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; size_t x_133; size_t x_134; lean_object* x_135; -x_91 = lean_ctor_get(x_35, 1); -lean_inc(x_91); -lean_dec(x_35); -x_92 = lean_ctor_get(x_17, 5); +uint8_t x_82; +lean_dec(x_68); +lean_dec(x_66); +lean_dec_ref(x_64); +lean_dec_ref(x_63); +lean_dec_ref(x_62); +lean_dec(x_61); +lean_dec(x_60); +lean_dec_ref(x_59); +lean_dec_ref(x_58); +lean_dec_ref(x_56); +lean_dec_ref(x_2); +x_82 = !lean_is_exclusive(x_69); +if (x_82 == 0) +{ +return x_69; +} +else +{ +lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_83 = lean_ctor_get(x_69, 0); +x_84 = lean_ctor_get(x_69, 1); +lean_inc(x_84); +lean_inc(x_83); +lean_dec(x_69); +x_85 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_85, 0, x_83); +lean_ctor_set(x_85, 1, x_84); +return x_85; +} +} +} +block_120: +{ +lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; lean_object* x_101; +x_96 = lean_unsigned_to_nat(1u); +x_97 = l_Lean_Syntax_getArg(x_1, x_96); +x_98 = lean_unsigned_to_nat(2u); +x_99 = l_Lean_Syntax_getArg(x_1, x_98); +x_100 = 0; +lean_inc(x_94); +lean_inc_ref(x_93); lean_inc(x_92); -x_93 = l_Lean_SourceInfo_fromRef(x_92, x_24); +lean_inc_ref(x_91); +lean_inc(x_88); +x_101 = l_Lean_Elab_Tactic_Do_mkSpecContext(x_97, x_99, x_100, x_87, x_88, x_89, x_90, x_91, x_92, x_93, x_94, x_95); +lean_dec(x_99); +if (lean_obj_tag(x_101) == 0) +{ +lean_object* x_102; lean_object* x_103; lean_object* x_104; uint8_t x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; +x_102 = lean_ctor_get(x_101, 0); +lean_inc(x_102); +x_103 = lean_ctor_get(x_102, 0); +lean_inc_ref(x_103); +x_104 = lean_ctor_get(x_101, 1); +lean_inc(x_104); +lean_dec_ref(x_101); +x_105 = lean_ctor_get_uint8(x_103, sizeof(void*)*1 + 1); +x_106 = lean_ctor_get(x_103, 0); +lean_inc(x_106); +x_107 = lean_box(x_100); +x_108 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__1___boxed), 2, 1); +lean_closure_set(x_108, 0, x_107); +x_109 = lean_box(x_105); +x_110 = lean_box(x_100); +lean_inc_ref(x_2); +x_111 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___boxed), 11, 3); +lean_closure_set(x_111, 0, x_109); +lean_closure_set(x_111, 1, x_110); +lean_closure_set(x_111, 2, x_2); +if (lean_obj_tag(x_106) == 0) +{ +lean_object* x_112; +x_112 = lean_box(1); +x_56 = x_111; +x_57 = x_100; +x_58 = x_108; +x_59 = x_103; +x_60 = x_94; +x_61 = x_88; +x_62 = x_102; +x_63 = x_91; +x_64 = x_93; +x_65 = x_104; +x_66 = x_92; +x_67 = x_100; +x_68 = x_112; +goto block_86; +} +else +{ +uint8_t x_113; +x_113 = !lean_is_exclusive(x_106); +if (x_113 == 0) +{ +lean_ctor_set_tag(x_106, 0); +x_56 = x_111; +x_57 = x_100; +x_58 = x_108; +x_59 = x_103; +x_60 = x_94; +x_61 = x_88; +x_62 = x_102; +x_63 = x_91; +x_64 = x_93; +x_65 = x_104; +x_66 = x_92; +x_67 = x_100; +x_68 = x_106; +goto block_86; +} +else +{ +lean_object* x_114; lean_object* x_115; +x_114 = lean_ctor_get(x_106, 0); +lean_inc(x_114); +lean_dec(x_106); +x_115 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_115, 0, x_114); +x_56 = x_111; +x_57 = x_100; +x_58 = x_108; +x_59 = x_103; +x_60 = x_94; +x_61 = x_88; +x_62 = x_102; +x_63 = x_91; +x_64 = x_93; +x_65 = x_104; +x_66 = x_92; +x_67 = x_100; +x_68 = x_115; +goto block_86; +} +} +} +else +{ +uint8_t x_116; +lean_dec(x_94); +lean_dec_ref(x_93); lean_dec(x_92); -x_94 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__1; -x_95 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__2; -lean_inc(x_93); -x_96 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_96, 0, x_93); -lean_ctor_set(x_96, 1, x_95); -x_97 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__4; -x_98 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__6; -x_99 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__6; -x_100 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__8; -x_101 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__9; -lean_inc(x_93); -x_102 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_102, 0, x_93); -lean_ctor_set(x_102, 1, x_101); -x_103 = l_Lean_Elab_Tactic_Do_step_onGoal___closed__5; -x_104 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__10; -lean_inc(x_93); -x_105 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_105, 0, x_93); -lean_ctor_set(x_105, 1, x_103); -x_106 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__13; -lean_inc(x_93); -x_107 = l_Lean_Syntax_node2(x_93, x_104, x_105, x_106); -lean_inc(x_93); -x_108 = l_Lean_Syntax_node1(x_93, x_99, x_107); -lean_inc(x_93); -x_109 = l_Lean_Syntax_node1(x_93, x_98, x_108); -lean_inc(x_93); -x_110 = l_Lean_Syntax_node1(x_93, x_97, x_109); -lean_inc_ref(x_102); -lean_inc(x_93); -x_111 = l_Lean_Syntax_node2(x_93, x_100, x_102, x_110); -lean_inc(x_93); -x_112 = l_Lean_Syntax_node1(x_93, x_99, x_111); -lean_inc(x_93); -x_113 = l_Lean_Syntax_node1(x_93, x_98, x_112); -lean_inc(x_93); -x_114 = l_Lean_Syntax_node1(x_93, x_97, x_113); -x_115 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__14; -lean_inc(x_93); -x_116 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_116, 0, x_93); -lean_ctor_set(x_116, 1, x_115); -lean_inc_ref(x_116); -lean_inc_ref(x_96); -lean_inc(x_93); -x_117 = l_Lean_Syntax_node3(x_93, x_94, x_96, x_114, x_116); -x_118 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__15; -lean_inc(x_93); -x_119 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_119, 0, x_93); +lean_dec_ref(x_91); +lean_dec(x_88); +lean_dec_ref(x_2); +x_116 = !lean_is_exclusive(x_101); +if (x_116 == 0) +{ +return x_101; +} +else +{ +lean_object* x_117; lean_object* x_118; lean_object* x_119; +x_117 = lean_ctor_get(x_101, 0); +x_118 = lean_ctor_get(x_101, 1); +lean_inc(x_118); +lean_inc(x_117); +lean_dec(x_101); +x_119 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_119, 0, x_117); lean_ctor_set(x_119, 1, x_118); -x_120 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__17; -x_121 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__18; -lean_inc(x_93); -x_122 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_122, 0, x_93); -lean_ctor_set(x_122, 1, x_121); -lean_inc(x_93); -x_123 = l_Lean_Syntax_node1(x_93, x_120, x_122); -lean_inc(x_93); -x_124 = l_Lean_Syntax_node3(x_93, x_99, x_117, x_119, x_123); -lean_inc(x_93); -x_125 = l_Lean_Syntax_node1(x_93, x_98, x_124); -lean_inc(x_93); -x_126 = l_Lean_Syntax_node1(x_93, x_97, x_125); -lean_inc(x_93); -x_127 = l_Lean_Syntax_node2(x_93, x_100, x_102, x_126); -lean_inc(x_93); -x_128 = l_Lean_Syntax_node1(x_93, x_99, x_127); -lean_inc(x_93); -x_129 = l_Lean_Syntax_node1(x_93, x_98, x_128); -lean_inc(x_93); -x_130 = l_Lean_Syntax_node1(x_93, x_97, x_129); -x_131 = l_Lean_Syntax_node3(x_93, x_94, x_96, x_130, x_116); -x_132 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__20; -x_133 = lean_array_size(x_33); -x_134 = 0; -lean_inc(x_18); -lean_inc_ref(x_17); -lean_inc(x_16); -lean_inc_ref(x_15); -x_135 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg(x_24, x_131, x_33, x_133, x_134, x_132, x_15, x_16, x_17, x_18, x_91); -lean_dec(x_33); -if (lean_obj_tag(x_135) == 0) -{ -lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; -x_136 = lean_ctor_get(x_135, 0); -lean_inc(x_136); -x_137 = lean_ctor_get(x_135, 1); -lean_inc(x_137); -lean_dec_ref(x_135); -x_138 = lean_ctor_get(x_136, 0); -lean_inc(x_138); -lean_dec(x_136); -x_139 = lean_array_to_list(x_138); -x_140 = l_Lean_Elab_Tactic_replaceMainGoal___redArg(x_139, x_12, x_15, x_16, x_17, x_18, x_137); -lean_dec(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_12); -return x_140; -} -else -{ -lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; -lean_dec(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_12); -x_141 = lean_ctor_get(x_135, 0); -lean_inc(x_141); -x_142 = lean_ctor_get(x_135, 1); -lean_inc(x_142); -if (lean_is_exclusive(x_135)) { - lean_ctor_release(x_135, 0); - lean_ctor_release(x_135, 1); - x_143 = x_135; -} else { - lean_dec_ref(x_135); - x_143 = lean_box(0); -} -if (lean_is_scalar(x_143)) { - x_144 = lean_alloc_ctor(1, 2, 0); -} else { - x_144 = x_143; -} -lean_ctor_set(x_144, 0, x_141); -lean_ctor_set(x_144, 1, x_142); -return x_144; -} -} -} -else -{ -uint8_t x_145; -lean_dec(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_12); -x_145 = !lean_is_exclusive(x_32); -if (x_145 == 0) -{ -return x_32; -} -else -{ -lean_object* x_146; lean_object* x_147; lean_object* x_148; -x_146 = lean_ctor_get(x_32, 0); -x_147 = lean_ctor_get(x_32, 1); -lean_inc(x_147); -lean_inc(x_146); -lean_dec(x_32); -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; -} -} -} -else -{ -uint8_t x_149; -lean_dec(x_26); -lean_dec(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -x_149 = !lean_is_exclusive(x_28); -if (x_149 == 0) -{ -return x_28; -} -else -{ -lean_object* x_150; lean_object* x_151; lean_object* x_152; -x_150 = lean_ctor_get(x_28, 0); -x_151 = lean_ctor_get(x_28, 1); -lean_inc(x_151); -lean_inc(x_150); -lean_dec(x_28); -x_152 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_152, 0, x_150); -lean_ctor_set(x_152, 1, x_151); -return x_152; -} -} -} -else -{ -uint8_t x_153; -lean_dec(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -x_153 = !lean_is_exclusive(x_25); -if (x_153 == 0) -{ -return x_25; -} -else -{ -lean_object* x_154; lean_object* x_155; lean_object* x_156; -x_154 = lean_ctor_get(x_25, 0); -x_155 = lean_ctor_get(x_25, 1); -lean_inc(x_155); -lean_inc(x_154); -lean_dec(x_25); -x_156 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_156, 0, x_154); -lean_ctor_set(x_156, 1, x_155); -return x_156; +return x_119; } } } @@ -34842,66 +50843,26 @@ return x_156; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -lean_object* x_11; lean_object* x_12; -x_11 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___boxed), 10, 1); -lean_closure_set(x_11, 0, x_1); -x_12 = l_Lean_Elab_Tactic_withMainContext___redArg(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_12; +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___boxed), 9, 0); +x_12 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___boxed), 11, 2); +lean_closure_set(x_12, 0, x_1); +lean_closure_set(x_12, 1, x_11); +x_13 = l_Lean_Elab_Tactic_withMainContext___redArg(x_12, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_13; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -uint8_t x_3; uint8_t x_4; lean_object* x_5; -x_3 = lean_unbox(x_1); -x_4 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___lam__0(x_3, x_2); -lean_dec(x_2); -x_5 = lean_box(x_4); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___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; size_t x_13; size_t x_14; lean_object* x_15; -x_12 = lean_unbox(x_1); -x_13 = lean_unbox_usize(x_4); -lean_dec(x_4); -x_14 = lean_unbox_usize(x_5); -lean_dec(x_5); -x_15 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg(x_12, x_2, x_3, x_13, x_14, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec_ref(x_3); -return x_15; -} -} -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { -_start: -{ -uint8_t x_16; size_t x_17; size_t x_18; lean_object* x_19; -x_16 = lean_unbox(x_1); -x_17 = lean_unbox_usize(x_4); -lean_dec(x_4); -x_18 = lean_unbox_usize(x_5); -lean_dec(x_5); -x_19 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0(x_16, x_2, x_3, x_17, x_18, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_3); -return x_19; -} -} -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; uint8_t x_5; uint8_t x_6; lean_object* x_7; -x_4 = lean_unbox(x_1); -x_5 = lean_unbox(x_2); -x_6 = l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0(x_4, x_5, x_3); +size_t x_13; size_t x_14; lean_object* x_15; +x_13 = lean_unbox_usize(x_3); lean_dec(x_3); -x_7 = lean_box(x_6); -return x_7; +x_14 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_15 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec_ref(x_2); +return x_15; } } LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___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) { @@ -34952,28 +50913,84 @@ lean_dec(x_1); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___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: { -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec_ref(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; uint8_t x_4; lean_object* x_5; +x_3 = lean_unbox(x_1); +x_4 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__1(x_3, x_2); +lean_dec(x_2); +x_5 = lean_box(x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__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_1); +x_13 = lean_unbox(x_2); +x_14 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2(x_12, x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; uint8_t x_14; lean_object* x_15; +x_13 = lean_unbox(x_1); +x_14 = lean_unbox(x_4); +x_15 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3(x_13, x_2, x_3, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_1); -return x_11; +return x_12; } } static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__0() { _start: { +lean_object* x_1; +x_1 = l_Lean_Elab_Tactic_tacticElabAttribute; +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("mvcgen", 6, 6); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__2() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__1; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3; +x_3 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__3; +x_4 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__2; x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__1() { +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__3() { _start: { lean_object* x_1; @@ -34981,15 +50998,15 @@ x_1 = lean_mk_string_unchecked("elabMVCGen", 10, 10); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__2() { +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__4() { _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_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__1; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; -x_5 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__3; +x_2 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1; +x_3 = l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3; +x_4 = l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__16; +x_5 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__2; x_6 = l_Lean_Name_mkStr5(x_5, x_4, x_3, x_2, x_1); return x_6; } @@ -34998,22 +51015,20 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tact _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__0; -x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__0; -x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__2; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__0; +x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__2; +x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__4; x_5 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_elabMVCGen), 10, 0); x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___redArg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -lean_object* initialize_Init_Guard(uint8_t builtin, lean_object*); lean_object* initialize_Std_Do_WP(uint8_t builtin, lean_object*); lean_object* initialize_Std_Do_Triple(uint8_t builtin, lean_object*); -lean_object* initialize_Lean_Meta_Tactic_Split(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Tactic_Simp(uint8_t builtin, lean_object*); -lean_object* initialize_Lean_Elab_Tactic_Meta(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Tactic_Do_ProofMode_Basic(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Tactic_Do_ProofMode_Intro(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Elab_Tactic_Do_ProofMode_Revert(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Tactic_Do_ProofMode_Cases(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Tactic_Do_ProofMode_Specialize(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Tactic_Do_ProofMode_Pure(uint8_t builtin, lean_object*); @@ -35021,36 +51036,31 @@ lean_object* initialize_Lean_Elab_Tactic_Do_LetElim(uint8_t builtin, lean_object lean_object* initialize_Lean_Elab_Tactic_Do_Spec(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Tactic_Do_Attr(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Elab_Tactic_Do_Syntax(uint8_t builtin, lean_object*); -lean_object* initialize_Lean_Meta_Tactic_SplitIf(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Elab_Tactic_Do_VCGen_Basic(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Elab_Tactic_Do_VCGen_Split(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Elab_Tactic_Do_VCGen(uint8_t builtin, lean_object* w) { lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; -res = initialize_Init_Guard(builtin, lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); res = initialize_Std_Do_WP(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); res = initialize_Std_Do_Triple(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Lean_Meta_Tactic_Split(builtin, lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); res = initialize_Lean_Elab_Tactic_Simp(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Lean_Elab_Tactic_Meta(builtin, lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); res = initialize_Lean_Elab_Tactic_Do_ProofMode_Basic(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); res = initialize_Lean_Elab_Tactic_Do_ProofMode_Intro(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Elab_Tactic_Do_ProofMode_Revert(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Lean_Elab_Tactic_Do_ProofMode_Cases(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); @@ -35072,670 +51082,596 @@ lean_dec_ref(res); res = initialize_Lean_Elab_Tactic_Do_Syntax(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Lean_Meta_Tactic_SplitIf(builtin, lean_io_mk_world()); +res = initialize_Lean_Elab_Tactic_Do_VCGen_Basic(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__8____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__8____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__8____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__9____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__9____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__9____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__10____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__10____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__10____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__11____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__11____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__11____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__12____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__12____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__12____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__13____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__13____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__13____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__14____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__14____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__14____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__15____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__15____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__15____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__16____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__16____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__16____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__17____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__17____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__17____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__18____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__18____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__18____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__19____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__19____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__19____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__20____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__20____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__20____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__21____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__21____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__21____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__22____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__22____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__22____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__23____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__23____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__23____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__24____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__24____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__24____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__25____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__25____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__25____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__26____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__26____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__26____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__27____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__27____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__27____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__28____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__28____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__28____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__29____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__29____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__29____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__30____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__30____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn___closed__30____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_); -if (builtin) {res = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen___hyg_6_(lean_io_mk_world()); +res = initialize_Lean_Elab_Tactic_Do_VCGen_Split(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l_Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_ = _init_l_Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_); -l_Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_ = _init_l_Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_); -l_Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_ = _init_l_Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_); -l_Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_ = _init_l_Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_); -l_Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_ = _init_l_Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_); -l_Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_ = _init_l_Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_); -l_Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_ = _init_l_Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_); -if (builtin) {res = l_Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen___hyg_67_(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -l_Lean_Elab_Tactic_Do_mvcgen_warning = lean_io_result_get_value(res); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mvcgen_warning); -lean_dec_ref(res); -}l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_ = _init_l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__0____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_); -l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_ = _init_l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__1____x40_Lean_Elab_Tactic_Do_VCGen___hyg_273_); -l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__0 = _init_l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__0(); -lean_mark_persistent(l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__0); -l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__1 = _init_l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__1(); -lean_mark_persistent(l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__1); -l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__2 = _init_l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__2(); -lean_mark_persistent(l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__2); -l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__0 = _init_l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__0(); -lean_mark_persistent(l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__0); -l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__1 = _init_l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__1(); -lean_mark_persistent(l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__1); -l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__2 = _init_l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__2(); -lean_mark_persistent(l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__2); -l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__3 = _init_l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__3(); -lean_mark_persistent(l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__3); -l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__4 = _init_l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__4(); -lean_mark_persistent(l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__4); -l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__0 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__0); -l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__1 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__1); -l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__2 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__2); -l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__3 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__3); -l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4); -l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5); -l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__6 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__6); -l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__7 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__7(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__7); -l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__8 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__8(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__8); -l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__9 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__9(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__9); -l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__10 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__10(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__10); -l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__11 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__11(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__11); -l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__12 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__12(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__12); -l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM = _init_l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM); -l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__0 = _init_l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__0(); -lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__0); -l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__1 = _init_l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__1(); -lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__1); -l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0___closed__0 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0___closed__0(); -lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0___closed__0); -l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0(); -lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0); -l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__1 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__1(); -lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__1); -l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__2 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__2(); -lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__2); -l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__3 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__3(); -lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__3); -l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__4 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__4(); -lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__4); -l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__5 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__5(); -lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__5); -l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__6 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__6(); -lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__6); -l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__7 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__7(); -lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__7); -l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__8 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__8(); -lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__8); -l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__9 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__9(); -lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__9); -l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__10 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__10(); -lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__10); -l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__11 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__11(); -lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__11); -l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__12 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__12(); -lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__12); -l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__13 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__13(); -lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__13); -l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__14 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__14(); -lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__14); -l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__15 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__15(); -lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__15); -l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__16 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__16(); -lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__16); -l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__0 = _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__0(); -lean_mark_persistent(l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__0); -l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__1 = _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__1(); -lean_mark_persistent(l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__1); -l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__2 = _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__2(); -lean_mark_persistent(l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__2); -l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__3 = _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__3(); -lean_mark_persistent(l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__3); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__1 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__1(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__1); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__2 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__2(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__2); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__3 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__3(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__3); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__4 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__4(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__4); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__5 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__5(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__5); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__6 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__6(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__6); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__7 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__7(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__7); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__8 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__8(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__8); -l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__9 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__9(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__9); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__0 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__0(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__0); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__1 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__1(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__1); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__2 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__2(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__2); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__3 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__3(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__3); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__4 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__4(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__4); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__5 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__5(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__5); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__6 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__6(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__6); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__7 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__7(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__7); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__8 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__8(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__8); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__9 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__9(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__9); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__10 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__10(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__10); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__11 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__11(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__11); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__12 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__12(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__12); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__13 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__13(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__13); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__14 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__14(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__14); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__15 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__15(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__15); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__16 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__16(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__16); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__17 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__17(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__17); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__18 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__18(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__18); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__19 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__19(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_mkSpecContext___closed__19); -l_Lean_Elab_Tactic_Do_isDuplicable___closed__0 = _init_l_Lean_Elab_Tactic_Do_isDuplicable___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_isDuplicable___closed__0); -l_Lean_Elab_Tactic_Do_isDuplicable___closed__1 = _init_l_Lean_Elab_Tactic_Do_isDuplicable___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_isDuplicable___closed__1); -l_Lean_Elab_Tactic_Do_isDuplicable___closed__2 = _init_l_Lean_Elab_Tactic_Do_isDuplicable___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_isDuplicable___closed__2); -l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__1___closed__0 = _init_l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__1___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_withSharing___redArg___lam__1___closed__0); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_reduceProjBeta_x3f_go___closed__0 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_reduceProjBeta_x3f_go___closed__0(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_reduceProjBeta_x3f_go___closed__0); -l_Lean_Elab_Tactic_Do_step_onGoal___closed__0 = _init_l_Lean_Elab_Tactic_Do_step_onGoal___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onGoal___closed__0); -l_Lean_Elab_Tactic_Do_step_onGoal___closed__1 = _init_l_Lean_Elab_Tactic_Do_step_onGoal___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onGoal___closed__1); -l_Lean_Elab_Tactic_Do_step_onGoal___closed__2 = _init_l_Lean_Elab_Tactic_Do_step_onGoal___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onGoal___closed__2); -l_Lean_Elab_Tactic_Do_step_onGoal___closed__3 = _init_l_Lean_Elab_Tactic_Do_step_onGoal___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onGoal___closed__3); -l_Lean_Elab_Tactic_Do_step_onGoal___closed__4 = _init_l_Lean_Elab_Tactic_Do_step_onGoal___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onGoal___closed__4); -l_Lean_Elab_Tactic_Do_step_onGoal___closed__5 = _init_l_Lean_Elab_Tactic_Do_step_onGoal___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onGoal___closed__5); -l_Lean_Elab_Tactic_Do_step_onGoal___closed__6 = _init_l_Lean_Elab_Tactic_Do_step_onGoal___closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onGoal___closed__6); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__1___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__1___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__1___closed__0); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__1___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__1___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___lam__1___closed__1); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__0); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__1); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__2 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__2); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__3 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__3); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__4 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__4); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__5 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__5); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__6 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__6); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__7 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__7(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__7); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__8 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__8(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__8); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__9 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__9(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__9); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__10 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__10(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_step_onLambda_spec__0___redArg___closed__10); -l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__0 = _init_l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__0); -l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__1 = _init_l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__1); -l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__2 = _init_l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__2); -l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__3 = _init_l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onLambda___lam__1___closed__3); -l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__0); -l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__1); -l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__2 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__2); -l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__3 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__3); -l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__4 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_step_onLet_spec__0___redArg___closed__4); -l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__0 = _init_l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__0(); -lean_mark_persistent(l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__0); -l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__1 = _init_l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__1(); -lean_mark_persistent(l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__1); -l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__2 = _init_l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__2(); -lean_mark_persistent(l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__2); -l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__3 = _init_l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__3(); -lean_mark_persistent(l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__3); -l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__4 = _init_l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__4(); -lean_mark_persistent(l_panic___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__0___closed__4); -l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__0 = _init_l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__0(); -l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__1 = _init_l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__1(); -lean_mark_persistent(l_Lean_addTrace___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__2___lam__1___closed__1); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__0 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__0); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__1 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__1); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__2 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__2); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__3 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__3); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__4 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__4); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__5 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___lam__10___closed__5); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__0 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__0); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__1 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__1); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__2 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__2); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__3 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__3); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__4 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__4); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__5 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__5); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__6 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__6); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__7 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__7(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__7); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__8 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__8(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__8); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__9 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__9(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__9); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__10 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__10(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__10); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__11 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__11(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__11); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__12 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__12(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__12); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__13 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__13(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__13); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__14 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__14(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__14); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__15 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__15(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__15); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__16 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__16(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__16); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__17 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__17(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__17); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__18 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__18(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__18); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__19 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__19(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__19); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__20 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__20(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__20); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__21 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__21(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__21); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__22 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__22(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__22); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__23 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__23(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__23); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__24 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__24(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__24); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__25 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__25(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__25); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__26 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__26(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__26); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__27 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__27(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__27); -l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__28 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__28(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3_spec__5___closed__28); -l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___closed__0 = _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___closed__0); -l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___closed__1 = _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___closed__1); -l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___closed__2 = _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___lam__7___closed__2); -l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__0 = _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__0); -l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__1 = _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__1); -l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__2 = _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__2); -l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__3 = _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__3); -l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__4 = _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__4); -l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__5 = _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__5); -l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__6 = _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__3___closed__6); -l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__0___closed__0 = _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__0___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__0___closed__0); -l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__0___closed__1 = _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__0___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__0___closed__1); -l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__3___closed__0 = _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__3___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__3___closed__0); -l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__3___closed__1 = _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__3___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___lam__3___closed__1); -l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___closed__0 = _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___closed__0); -l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___closed__1 = _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__7___closed__1); -l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4___closed__0); -l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___lam__4___closed__1); -l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__0); -l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__1); -l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__2 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__2); -l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__3 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__3); -l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__4 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__4); -l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__5 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__5); -l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__6 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3_spec__10_spec__10___redArg___closed__6); -l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__6___closed__0 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__6___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__6___closed__0); -l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__7___closed__0 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__7___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__7___closed__0); -l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__0 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__0); -l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__1 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__1); -l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__2 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__2); -l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__3 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__3); -l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__4 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__4); -l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__5 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__5); -l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__6 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__11___closed__6); -l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__15___closed__0 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__15___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__15___closed__0); -l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__15___closed__1 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__15___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_step_onWPApp_spec__3___lam__15___closed__1); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10___closed__0 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10___closed__0); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10___closed__1 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__10___closed__1(); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__0 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__0); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__1 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__1); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__2 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__2); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__3 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__3); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__4 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__4); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__5 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__5); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__6 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__6); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__7 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__7(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__7); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__8 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__8(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__8); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__9 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__9(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__9); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__10 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__10(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__10); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__11 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__11(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__11); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__12 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__12(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__12); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__13 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__13(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__13); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__14 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__14(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__14); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__15 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__15(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__15); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__16 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__16(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__16); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__17 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__17(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__17); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__18 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__18(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__18); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__19 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__19(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__19); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__20 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__20(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__20); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__21 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__21(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__21); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__22 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__22(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__22); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__23 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__23(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__23); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__24 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__24(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__24); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__25 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__25(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__25); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__26 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__26(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__26); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__27 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__27(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__27); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__28 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__28(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__28); -l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__29 = _init_l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__29(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step_onWPApp___lam__15___closed__29); -l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0___redArg___closed__0 = _init_l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0___redArg___closed__0(); -l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0___redArg___closed__1 = _init_l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__0_spec__0_spec__0___redArg___closed__1(); -l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4___redArg___closed__0 = _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4___redArg___closed__0(); -lean_mark_persistent(l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__4_spec__4_spec__4___redArg___closed__0); -l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__3___closed__0 = _init_l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__3___closed__0(); -lean_mark_persistent(l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_step_assignMVars_spec__11___redArg___lam__3___closed__0); -l_Lean_Elab_Tactic_Do_step___closed__0 = _init_l_Lean_Elab_Tactic_Do_step___closed__0(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step___closed__0); -l_Lean_Elab_Tactic_Do_step___closed__1 = _init_l_Lean_Elab_Tactic_Do_step___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step___closed__1); -l_Lean_Elab_Tactic_Do_step___closed__2 = _init_l_Lean_Elab_Tactic_Do_step___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step___closed__2); -l_Lean_Elab_Tactic_Do_step___closed__3 = _init_l_Lean_Elab_Tactic_Do_step___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step___closed__3); -l_Lean_Elab_Tactic_Do_step___closed__4 = _init_l_Lean_Elab_Tactic_Do_step___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step___closed__4); -l_Lean_Elab_Tactic_Do_step___closed__5 = _init_l_Lean_Elab_Tactic_Do_step___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step___closed__5); -l_Lean_Elab_Tactic_Do_step___closed__6 = _init_l_Lean_Elab_Tactic_Do_step___closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step___closed__6); -l_Lean_Elab_Tactic_Do_step___closed__7 = _init_l_Lean_Elab_Tactic_Do_step___closed__7(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step___closed__7); -l_Lean_Elab_Tactic_Do_step___closed__8 = _init_l_Lean_Elab_Tactic_Do_step___closed__8(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step___closed__8); -l_Lean_Elab_Tactic_Do_step___closed__9 = _init_l_Lean_Elab_Tactic_Do_step___closed__9(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step___closed__9); -l_Lean_Elab_Tactic_Do_step___closed__10 = _init_l_Lean_Elab_Tactic_Do_step___closed__10(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step___closed__10); -l_Lean_Elab_Tactic_Do_step___closed__11 = _init_l_Lean_Elab_Tactic_Do_step___closed__11(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step___closed__11); -l_Lean_Elab_Tactic_Do_step___closed__12 = _init_l_Lean_Elab_Tactic_Do_step___closed__12(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step___closed__12); -l_Lean_Elab_Tactic_Do_step___closed__13 = _init_l_Lean_Elab_Tactic_Do_step___closed__13(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step___closed__13); -l_Lean_Elab_Tactic_Do_step___closed__14 = _init_l_Lean_Elab_Tactic_Do_step___closed__14(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step___closed__14); -l_Lean_Elab_Tactic_Do_step___closed__15 = _init_l_Lean_Elab_Tactic_Do_step___closed__15(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step___closed__15); -l_Lean_Elab_Tactic_Do_step___closed__16 = _init_l_Lean_Elab_Tactic_Do_step___closed__16(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_step___closed__16); -l_Lean_Elab_Tactic_Do_step___closed__17 = _init_l_Lean_Elab_Tactic_Do_step___closed__17(); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__0 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__0(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__0); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__1 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__1(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__1); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__2 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__2(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__2); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__3 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__3(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__3); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__4 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__4(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1___closed__4); -if (builtin) {res = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenStep___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenStep__1(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__0 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__0(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__0); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__1 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__1(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__1); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__2 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__2(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__2); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__3 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__3(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1___closed__3); -if (builtin) {res = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGenNoTrivial___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenNoTrivial__1(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___closed__0 = _init_l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___closed__0(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___closed__0); -l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___closed__1 = _init_l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___closed__1(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___closed__1); -l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___closed__2 = _init_l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___closed__2(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__0___redArg___closed__2); -l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0___closed__0 = _init_l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0___closed__0(); -lean_mark_persistent(l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0___closed__0); -l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0___closed__1 = _init_l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0___closed__1(); -lean_mark_persistent(l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0___closed__1); -l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0___closed__2 = _init_l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0___closed__2(); -lean_mark_persistent(l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___lam__0___closed__2); -l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___closed__0 = _init_l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___closed__0(); -lean_mark_persistent(l_Lean_logAt___at___Lean_logWarningAt___at___Lean_Elab_Tactic_Do_elabMVCGen_spec__1_spec__1___redArg___closed__0); +l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg___closed__0 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg___closed__0(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg___closed__0); +l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2___closed__0 = _init_l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2___closed__0(); +lean_mark_persistent(l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2_spec__2___closed__0); +l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__0 = _init_l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__0(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__0); +l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__1 = _init_l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__1(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__1); +l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__2 = _init_l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__2(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__2); +l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__3 = _init_l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__3(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12___closed__3); +l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__0 = _init_l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__0(); +l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__1 = _init_l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__1(); +lean_mark_persistent(l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__1); +l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__2 = _init_l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__2(); +lean_mark_persistent(l_Lean_addTrace___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__14___lam__1___closed__2); +l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg___closed__0 = _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg___closed__0(); +l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg___closed__1 = _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg___closed__1(); +l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg___closed__2 = _init_l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg___closed__2(); +lean_mark_persistent(l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__16_spec__16___redArg___closed__2); +l_Array_filterMapM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__22___closed__0 = _init_l_Array_filterMapM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__22___closed__0(); +lean_mark_persistent(l_Array_filterMapM___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__22___closed__0); +l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___closed__0 = _init_l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___closed__0(); +lean_mark_persistent(l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___closed__0); +l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___closed__1 = _init_l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___closed__1(); +lean_mark_persistent(l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__27___redArg___closed__1); +l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__0 = _init_l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__0(); +lean_mark_persistent(l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__0); +l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__1 = _init_l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__1(); +lean_mark_persistent(l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__1); +l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__2 = _init_l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__2(); +lean_mark_persistent(l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__2); +l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__3 = _init_l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__3(); +lean_mark_persistent(l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__3); +l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__4 = _init_l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__4(); +lean_mark_persistent(l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__4); +l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__5 = _init_l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__5(); +lean_mark_persistent(l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30_spec__30___redArg___closed__5); +l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30___redArg___closed__0 = _init_l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30___redArg___closed__0(); +lean_mark_persistent(l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25_spec__28_spec__29_spec__30___redArg___closed__0); +l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__0); +l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__1); +l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__2 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__2); +l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__3); +l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__4 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__4); +l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__5 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__5); +l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__6 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___closed__6); +l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___boxed__const__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___boxed__const__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___lam__9___boxed__const__1); +l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__0); +l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__1); +l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__2 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__2); +l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__3 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__3); +l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__4 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__4); +l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__5 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__5); +l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__6 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__6); +l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__25___closed__7); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__0); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__1); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__2 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___lam__6___closed__2); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__0); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__1); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__2 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__2); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__3 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__3); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__4 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__4); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__5 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__5); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__6 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__6); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__7 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__7); +l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__8 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__38_spec__38___closed__8); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__0 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__0); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__1 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__1); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__2 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__2); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__3 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__3); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__4 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__4); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__5 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__5); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__6 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__6); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__7 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__13___closed__7); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__0 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__0); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__1 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__1); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__2 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__2); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__3 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__3); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__4 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__4); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__5 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__5); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__6 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__6); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__7 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__7); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__8 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__8); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__9 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__9); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__10 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__10(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__10); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__11 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__11(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__11); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__12 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__12(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__12); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__13 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__13(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__13); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__14 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__14(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__14); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__15 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__15(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__15); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__16 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__16(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__16); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__17 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__17(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__17); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__18 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__18(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__18); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__19 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__19(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__19); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__20 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__20(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__20); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__21 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__21(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___closed__21); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___boxed__const__1 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___boxed__const__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__12___boxed__const__1); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14___closed__0 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14___closed__0); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14___closed__1 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__14___closed__1); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__0 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__0); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__1 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__1); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__2 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__2); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__3 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__3); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__4 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__4); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__5 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__5); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__6 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__6); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__7 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__7); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__8 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__8); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__9 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__9); +l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__0); +l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__1); +l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__2 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__2); +l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__3 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__3); +l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__4 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__4); +l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__5 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__5); +l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__6 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__6); +l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__7 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__7); +l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__8 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__8); +l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__9 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__9); +l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__10 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__10(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__0___closed__10); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1___closed__0); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1___closed__1); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__0 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__0); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__1 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__1); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__3 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__3); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__4 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__4); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__0 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__0); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__1 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__1); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__2 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__2); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__3 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__3); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__4 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__4); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__5 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__5); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__6 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___closed__6); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__0 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__0); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__1 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__1); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__2 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__2); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__3 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__3); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__4 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___lam__9___closed__4); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__0 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__0); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__1 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__1); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__2 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__2); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__3 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__3); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__4 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__4); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__5 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__5); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__6 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__6); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__7 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__7); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__8 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__8); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__9 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__9); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__10 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__10(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__10); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__11 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__11(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__11); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__12 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__12(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__12); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__13 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__13(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__13); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__14 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__14(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__14); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__15 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__15(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__15); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__16 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__16(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__16); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__17 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__17(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__17); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__18 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__18(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__18); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__19 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__19(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__19); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__20 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__20(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__20); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__21 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__21(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__21); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__22 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__22(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__22); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__23 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__23(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__23); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__24 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__24(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__24); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__25 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__25(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__25); +l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__26 = _init_l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__26(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeFailEntails___at___Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0_spec__0___closed__26); +l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__0 = _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__0); +l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__1 = _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__1); +l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__2 = _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___lam__5___closed__2); +l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__0 = _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__0); +l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__1 = _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__1); +l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__2 = _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__2); +l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__3 = _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__3); +l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__4 = _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__4); +l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__5 = _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__5); +l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__6 = _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__6); +l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__7 = _init_l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargePostEntails___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__0___closed__7); +l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__0___closed__0 = _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__0___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__0___closed__0); +l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__0___closed__1 = _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__0___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__0___closed__1); +l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__3___closed__0 = _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__3___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__3___closed__0); +l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__3___closed__1 = _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__3___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___lam__3___closed__1); +l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___closed__0 = _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___closed__0); +l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___closed__1 = _init_l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_dischargeMGoal___at___Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0_spec__2___closed__1); +l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__7___closed__0 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__7___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__7___closed__0); +l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__0 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__0); +l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__1 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__1); +l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__2 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__2); +l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__3 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__11___closed__3); +l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__15___closed__0 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__15___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__15___closed__0); +l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__15___closed__1 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__15___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__0___lam__15___closed__1); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___closed__0 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___closed__0); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___closed__1 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___closed__1); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___closed__2 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___closed__2); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___closed__0 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___closed__0); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___closed__1 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___closed__1(); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__0 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__0); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__1 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__1); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__2 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__2); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__3 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__3); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__4 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__4); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__5 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__5); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__6 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__6); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__7 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__7); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__8 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__8); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__9 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__9); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__10 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__10(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__10); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__11 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__11(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__11); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__12 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__12(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__12); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__13 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__13(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__13); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__14 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__14(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__14); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__15 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__15(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__15); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__16 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__16(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__16); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__17 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__17(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__17); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__18 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__18(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__18); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__19 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__19(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__19); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__20 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__20(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__20); +l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___closed__0 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___closed__0(); +lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___closed__0); +l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___closed__1 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___closed__1(); +lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___closed__1); +l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___closed__2 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___closed__2(); +lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___lam__3___closed__2); +l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___closed__0 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___closed__0(); +lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___closed__0); +l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___closed__1 = _init_l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___closed__1(); +lean_mark_persistent(l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__11_spec__11_spec__11___closed__1); +l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__3___closed__0 = _init_l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__3___closed__0(); +lean_mark_persistent(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__3___closed__0); +l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__3___closed__1 = _init_l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__3___closed__1(); +lean_mark_persistent(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3_spec__16___redArg___lam__3___closed__1); +l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__3___closed__0 = _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__3___closed__0(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__3___closed__0); +l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__0 = _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__0(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__0); +l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__1 = _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__1(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__1); +l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__2 = _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__2(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__2); +l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__3 = _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__3(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__4___closed__3); +l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__0 = _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__0(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__0); +l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__1 = _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__1(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__1); +l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__2 = _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__2(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__2); +l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__3 = _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__3(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__19___closed__3); +l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__0 = _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__0(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__0); +l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__1 = _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__1(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__1); +l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__2 = _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__2(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__2); +l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__3 = _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__3(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__3); +l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__4 = _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__4(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__23___closed__4); +l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__21___boxed__const__1 = _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__21___boxed__const__1(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___lam__21___boxed__const__1); +l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__0 = _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__0(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__0); +l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__1 = _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__1(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__1); +l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__2 = _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__2(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__2); +l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__3 = _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__3(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3_spec__3___closed__3); +l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__1___closed__0 = _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__1___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__1___closed__0); +l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__1___closed__1 = _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__1___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__1___closed__1); +l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4___closed__0 = _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4___closed__0); +l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4___closed__1 = _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___lam__4___closed__1); +l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__0 = _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__0); +l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__1 = _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__1); +l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__2 = _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__2); +l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__3 = _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___at___Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__3___closed__3); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__0 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__0); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__1 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__1); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__2 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__2); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__3 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__3); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__4 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__4); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__5 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__5); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__6 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__6); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__7 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__7); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__8 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__8); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__9 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__9); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__10 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__10(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__10); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__0 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__0); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__1 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__1); +l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__2 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__2); +l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__3___closed__0 = _init_l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__3___closed__0(); +lean_mark_persistent(l_List_forIn_x27_loop___at___Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__5___redArg___lam__3___closed__0); +l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__0 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__0); +l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__1 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__1); +l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__2 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__2); +l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__3 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__3); +l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__4 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__4); +l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__5 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__5); +l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__6 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__6); +l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__7 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__7); +l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__8 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__8); +l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__9 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__9); +l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__10 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__10(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__10); +l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__11 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__11(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__11); +l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__12 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__12(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__12); +l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__13 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__13(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__13); +l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__14 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__14(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__14); +l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__15 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__15(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__15); +l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__16 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__16(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__16); l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__0 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__0(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__0); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__1 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__1); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__2 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__2); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__3 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__3); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__4 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__4); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__5 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__5); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__6 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__6); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__7 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__7(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__7); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__8 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__8(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__8); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__9 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__9(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__9); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__10 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__10(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__10); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__11 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__11(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__11); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__12 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__12(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__12); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__13 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__13(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__13); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__14 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__14(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__14); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__15 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__15(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__15); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__16 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__16(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__16); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__17 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__17(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__17); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__18 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__18(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__18); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__19 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__19(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__19); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__20 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__20(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__20); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__21 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__21(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__21); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__22 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__22(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__22); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__23 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__23(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__23); -l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__24 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__24(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__0___closed__24); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__0 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__0); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__1 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__1); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__2 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__2); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__3 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__3); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__4 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__4); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__5 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__5); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__6 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__6); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__7 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__7); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__8 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__8); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__9 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__9); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__10 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__10(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__2___closed__10); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___closed__0 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___closed__0); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___closed__1 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___closed__1); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___closed__2 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__3___closed__2); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__0 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__0); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__1 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__1); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__2 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__2); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__3 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__3); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__4 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__4); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__5 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__5); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__6 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__6); +l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__7 = _init_l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__4___closed__7); l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__0 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__0(); lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__0); l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__1 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__1); l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__2 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__2(); lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__2); +l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__3 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__3); +l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__4 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__4); if (builtin) {res = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen/Basic.c b/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen/Basic.c new file mode 100644 index 0000000000..6a439d4a52 --- /dev/null +++ b/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen/Basic.c @@ -0,0 +1,10895 @@ +// Lean compiler output +// Module: Lean.Elab.Tactic.Do.VCGen.Basic +// Imports: Lean.Elab.Tactic.Simp Lean.Elab.Tactic.Do.Attr +#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 +LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Do_decEqFuel____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_123_(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_knownJP_x3f___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_knownJP_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_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*); +static lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__0; +lean_object* l_Lean_Elab_Term_resolveId_x3f(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_liftSimpM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_reduceProjBeta_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_isJP___closed__1; +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_mkSpecContext_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_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_emitVC___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_liftSimpM___boxed(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_Do_elabConfig___redArg___closed__10; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_burnOne___redArg(lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__9____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_; +lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_addSubGoalAsVC(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_getNumJoinParams___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__0; +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__8; +lean_object* l_Lean_indentD(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg(lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___lam__0___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*); +uint8_t l_Array_isEmpty___redArg(lean_object*); +uint8_t l_Lean_Exception_isInterrupt(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_knownJP_x3f___redArg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__12; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__18____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_getNumJoinParams_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +lean_object* l_Lean_Elab_Tactic_mkConfigItemViews(lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__17; +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__7; +LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_getId(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_isLocalIdent_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_push(lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__25____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +static lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__8; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8___boxed(lean_object**); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__13; +static lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__1___closed__0; +static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__1; +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_reduceProjBeta_x3f_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_unknownIdentifierMessageTag; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__28____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +LEAN_EXPORT lean_object* l_Lean_Option_register___at___Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70__spec__0(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Name_isAnonymous(lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_replaceRef(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_getSpecTheorems___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8___redArg(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__13; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_evalUnsafe____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__33____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +lean_object* l_Lean_Elab_Term_elabCDotFunctionAlias_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__3; +lean_object* l_Lean_Expr_fvarId_x21(lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__26____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_burnOne(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Environment_find_x3f(lean_object*, lean_object*, uint8_t); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_burnOne___redArg___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_; +uint8_t l_Lean_Expr_isAppOf(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_instDecidableEqFuel___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__15; +lean_object* l_Lean_stringToMessageData(lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0___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_evalExpr_x27___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MessageData_note(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___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_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__10___redArg(lean_object*, size_t, size_t, 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_Do_mkSpecContext___closed__6; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ifOutOfFuel___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_string_dec_eq(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_getNumJoinParams(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__30____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +lean_object* l_Lean_Exception_toMessageData(lean_object*); +LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___Lean_Elab_Tactic_Do_knownJP_x3f_spec__0(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_getNumJoinParams_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mkArray0(lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__17____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_getNumJoinParams_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Expr_hasSyntheticSorry(lean_object*); +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__8; +lean_object* l_Lean_Parser_Tactic_getConfigItems(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__12; +static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__0; +static lean_object* l_Lean_Elab_Tactic_Do_reduceProjBeta_x3f_go___closed__0; +static lean_object* l_Lean_Elab_Tactic_Do_getNumJoinParams___closed__0; +static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_isJP___boxed(lean_object*); +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__3; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__14____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +static lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__11; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mvcgen_warning; +lean_object* l_Lean_mkAppRev(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_liftSimpM___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_getSpecSimpTheorems___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__10; +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__7; +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__1; +lean_object* lean_st_ref_take(lean_object*, lean_object*); +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__2; +uint8_t lean_expr_eqv(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_; +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__9; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__2(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); +lean_object* l_Lean_MessageData_ofSyntax(lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__12____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_getNumJoinParams_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_node6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__23____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__1; +LEAN_EXPORT lean_object* l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__1___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_getKind(lean_object*); +lean_object* l_Lean_MessageData_ofFormat(lean_object*); +lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2___redArg___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*); +static lean_object* l_Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__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_Do_elabConfig___redArg___closed__7; +lean_object* lean_st_ref_get(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_emitVC___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__22____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_evalUnsafe___redArg____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_st_mk_ref(lean_object*, lean_object*); +lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); +lean_object* l_Lean_Syntax_node3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__3; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___lam__0(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_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withLetDeclShared_spec__0___redArg___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___Lean_Elab_Tactic_Do_knownJP_x3f_spec__0___redArg___boxed(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_elabConfig(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__16; +lean_object* l_Lean_Elab_realizeGlobalConstNoOverloadWithInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__19____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Do_isDuplicable(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_burnOne___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_getPropHyps(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_getSepArgs(lean_object*); +lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__3; +static lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__2; +static lean_object* l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__2; +static lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__9; +lean_object* l_Lean_Meta_mkLetFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_name_eq(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Do_isJP(lean_object*); +lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_; +extern lean_object* l_Lean_Elab_pp_macroStack; +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___boxed(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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__11; +lean_object* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withJP___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4; +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__24; +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__29____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0; +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__19; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ifOutOfFuel(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_SavedState_restore___redArg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2___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_Do_mkSpecContext___closed__2; +lean_object* l_Lean_MessageData_ofConstName(lean_object*, uint8_t); +lean_object* lean_register_option(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_saveState___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_evalUnsafe____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261____boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___Lean_Elab_Tactic_Do_knownJP_x3f_spec__0___redArg(lean_object*, lean_object*); +uint8_t l_Lean_Environment_contains(lean_object*, lean_object*, uint8_t); +static lean_object* l_Lean_Elab_Tactic_Do_isJP___closed__0; +lean_object* l_Lean_MessageData_ofExpr(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_knownJP_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__1; +static lean_object* l_Lean_Elab_Tactic_Do_isDuplicable___closed__2; +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withLetDeclShared_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__3; +lean_object* l_Lean_Expr_getAppNumArgs(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Name_mkStr6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__1(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_Elab_Tactic_Do_mkSpecContext___closed__9; +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__25; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +LEAN_EXPORT uint8_t l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__1(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__0; +lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__10; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withLetDeclShared_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__12; +LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___Lean_Elab_Tactic_Do_knownJP_x3f_spec__0___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__4; +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__20; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabConfig(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_SepArray_ofElems(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_emitVC(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg(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___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +lean_object* l_Std_DTreeMap_Internal_Impl_insert___at___Lean_FVarIdSet_insert_spec__1___redArg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Environment_mainModule(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM___lam__0(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_Do_isDuplicable___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_isDuplicable___boxed(lean_object*); +static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__4; +lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_mkSimpContext(lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__4; +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__6; +lean_object* l_Lean_Meta_getFVarLocalDecl___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry(lean_object*, lean_object*); +lean_object* l_Lean_Syntax_node1(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_unfoldDefinition_x3f(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__14; +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__21; +static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_addSubGoalAsVC___redArg___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__1; +lean_object* l_Lean_Meta_SavedState_restore___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__0___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_Syntax_reprSyntax____x40_Init_Meta___hyg_2093_(lean_object*, lean_object*); +uint8_t l_Lean_Syntax_isNone(lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_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_Lean_Meta_saveState___redArg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_isDuplicable___closed__1; +lean_object* lean_nat_sub(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Do_instDecidableEqFuel(lean_object*, lean_object*); +lean_object* l_Lean_Expr_getAppFn(lean_object*); +lean_object* l_Array_append___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__5; +lean_object* l_Lean_Meta_Simp_mkDefaultMethodsCore(lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__24____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withJP(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_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__31____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__20____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +uint8_t l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased(lean_object*, lean_object*); +lean_object* lean_erase_macro_scopes(lean_object*); +lean_object* l_Lean_Environment_getProjectionStructureName_x3f(lean_object*, lean_object*); +uint8_t l_Lean_Expr_hasSorry(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__11; +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__23; +lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromConst(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__15____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2(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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__2; +uint8_t l_Lean_Name_quickCmp(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__8____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +size_t lean_usize_add(size_t, size_t); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__10____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +lean_object* l_Lean_Expr_betaRev(lean_object*, lean_object*, uint8_t, uint8_t); +LEAN_EXPORT lean_object* l_Lean_Option_register___at___Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70__spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_KVMap_findCore(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withLetDeclShared_spec__0___redArg___lam__0(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_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_; +lean_object* lean_array_uget(lean_object*, size_t); +size_t lean_array_size(lean_object*); +LEAN_EXPORT lean_object* l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__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_st_ref_set(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__22; +lean_object* l_Lean_Name_mkStr1(lean_object*); +static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__0; +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__1; +lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__16; +lean_object* l_Lean_Expr_bindingBody_x21(lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__21____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_liftSimpM___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2___redArg(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_emitVC___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__6; +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__18; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__13____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +lean_object* lean_array_get_size(lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__27____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__11____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +uint8_t l_Lean_Expr_isMData(lean_object*); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__4; +LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__7; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_decEqFuel____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_123____boxed(lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__8; +uint8_t lean_usize_dec_lt(size_t, size_t); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0___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_Do_getNumJoinParams___closed__1; +lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore(lean_object*, lean_object*); +lean_object* lean_nat_add(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_addSubGoalAsVC___redArg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__9; +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0(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___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__32____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +uint8_t l_Lean_Exception_isRuntime(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___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_Environment_setExporting(lean_object*, uint8_t); +static lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_addSubGoalAsVC___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Expr_isForall(lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +lean_object* l_Lean_Meta_reduceProj_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withLetDeclShared_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_mvarId_x21(lean_object*); +lean_object* l_Lean_Expr_consumeMData(lean_object*); +lean_object* l_String_toSubstring_x27(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___closed__13; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabConfig___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__10___redArg___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_MessageData_ofName(lean_object*); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0___closed__0; +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__6; +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__16____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_; +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__14; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___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*); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__15; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__10(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* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Elab", 4, 4); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Tactic", 6, 6); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Do", 2, 2); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("vcgen", 5, 5); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("_private", 8, 8); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_2 = lean_box(0); +x_3 = l_Lean_Name_str___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Lean", 4, 4); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__8____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Lean_Name_str___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__9____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__8____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Lean_Name_str___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__10____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__9____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Lean_Name_str___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__11____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__10____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Lean_Name_str___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__12____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("VCGen", 5, 5); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__13____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__12____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__11____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Lean_Name_str___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__14____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Basic", 5, 5); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__15____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__14____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__13____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Lean_Name_str___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__16____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(0u); +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__15____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Lean_Name_num___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__17____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__16____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Lean_Name_str___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__18____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__17____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Lean_Name_str___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__19____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__18____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Lean_Name_str___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__20____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__19____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Lean_Name_str___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__21____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("initFn", 6, 6); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__22____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__21____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__20____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Lean_Name_str___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__23____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("_@", 2, 2); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__24____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__23____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__22____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Lean_Name_str___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__25____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__24____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Lean_Name_str___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__26____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__25____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Lean_Name_str___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__27____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__26____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Lean_Name_str___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__28____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__27____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Lean_Name_str___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__29____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__12____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__28____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Lean_Name_str___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__30____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__14____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__29____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Lean_Name_str___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__31____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("_hyg", 4, 4); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__32____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__31____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__30____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Lean_Name_str___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__33____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_unsigned_to_nat(5u); +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__32____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Lean_Name_num___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(lean_object* x_1) { +_start: +{ +lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = 0; +x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__33____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_5 = l_Lean_registerTraceClass(x_2, x_3, x_4, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Option_register___at___Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70__spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; +x_5 = lean_ctor_get(x_2, 0); +x_6 = lean_ctor_get(x_2, 1); +x_7 = lean_ctor_get(x_2, 2); +x_8 = lean_alloc_ctor(1, 0, 1); +x_9 = lean_unbox(x_5); +lean_ctor_set_uint8(x_8, 0, x_9); +lean_inc_ref(x_7); +lean_inc_ref(x_6); +x_10 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_10, 0, x_3); +lean_ctor_set(x_10, 1, x_8); +lean_ctor_set(x_10, 2, x_6); +lean_ctor_set(x_10, 3, x_7); +lean_inc(x_1); +x_11 = lean_register_option(x_1, x_10, x_4); +if (lean_obj_tag(x_11) == 0) +{ +uint8_t x_12; +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_ctor_get(x_11, 0); +lean_dec(x_13); +lean_inc(x_5); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_1); +lean_ctor_set(x_14, 1, x_5); +lean_ctor_set(x_11, 0, x_14); +return x_11; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_ctor_get(x_11, 1); +lean_inc(x_15); +lean_dec(x_11); +lean_inc(x_5); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_1); +lean_ctor_set(x_16, 1, x_5); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_15); +return x_17; +} +} +else +{ +uint8_t x_18; +lean_dec(x_1); +x_18 = !lean_is_exclusive(x_11); +if (x_18 == 0) +{ +return x_11; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_11, 0); +x_20 = lean_ctor_get(x_11, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_11); +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; +} +} +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("mvcgen", 6, 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("warning", 7, 7); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_; +x_2 = l_Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_; +x_3 = l_Lean_Name_mkStr2(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("debug", 5, 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("disable `mvcgen` usage warning", 30, 30); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_() { +_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_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_; +x_2 = l_Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_; +x_3 = 1; +x_4 = lean_box(x_3); +x_5 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_() { +_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; lean_object* x_7; +x_1 = l_Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_; +x_2 = l_Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_; +x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_5 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_6 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_7 = l_Lean_Name_mkStr6(x_6, x_5, x_4, x_3, x_2, x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_; +x_3 = l_Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_; +x_4 = l_Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_; +x_5 = l_Lean_Option_register___at___Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70__spec__0(x_2, x_3, x_4, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Option_register___at___Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70__spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_Option_register___at___Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70__spec__0(x_1, x_2, x_3, x_4); +lean_dec_ref(x_2); +return x_5; +} +} +LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Do_decEqFuel____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_123_(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; uint8_t x_4; +x_3 = lean_ctor_get(x_1, 0); +x_4 = 0; +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_5; uint8_t x_6; +x_5 = lean_ctor_get(x_2, 0); +x_6 = lean_nat_dec_eq(x_3, x_5); +if (x_6 == 0) +{ +return x_4; +} +else +{ +return x_6; +} +} +else +{ +return x_4; +} +} +else +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_7; +x_7 = 0; +return x_7; +} +else +{ +uint8_t x_8; +x_8 = 1; +return x_8; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_decEqFuel____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_123____boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Lean_Elab_Tactic_Do_decEqFuel____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_123_(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Do_instDecidableEqFuel(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; +x_3 = l_Lean_Elab_Tactic_Do_decEqFuel____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_123_(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_instDecidableEqFuel___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Lean_Elab_Tactic_Do_instDecidableEqFuel(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Config", 6, 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_() { +_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; lean_object* x_7; +x_1 = l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__12____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_5 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_6 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_7 = l_Lean_Name_mkStr6(x_6, x_5, x_4, x_3, x_2, x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_evalUnsafe___redArg____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_(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; uint8_t x_8; lean_object* x_9; +x_7 = l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_; +x_8 = 0; +x_9 = l_Lean_Meta_evalExpr_x27___redArg(x_7, x_1, x_8, x_2, x_3, x_4, x_5, x_6); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_evalUnsafe____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_Do_evalUnsafe___redArg____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_(x_1, x_4, x_5, x_6, x_7, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_evalUnsafe____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_Do_evalUnsafe____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0(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; uint8_t x_8; +x_7 = lean_st_ref_get(x_5, x_6); +x_8 = !lean_is_exclusive(x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_9 = lean_ctor_get(x_7, 0); +x_10 = lean_ctor_get(x_7, 1); +x_11 = lean_ctor_get(x_9, 0); +lean_inc_ref(x_11); +lean_dec(x_9); +x_12 = lean_st_ref_get(x_3, x_10); +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_14 = lean_ctor_get(x_12, 0); +x_15 = lean_ctor_get(x_14, 0); +lean_inc_ref(x_15); +lean_dec(x_14); +x_16 = lean_ctor_get(x_2, 2); +x_17 = lean_ctor_get(x_4, 2); +lean_inc(x_17); +lean_inc_ref(x_16); +x_18 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_18, 0, x_11); +lean_ctor_set(x_18, 1, x_15); +lean_ctor_set(x_18, 2, x_16); +lean_ctor_set(x_18, 3, x_17); +lean_ctor_set_tag(x_7, 3); +lean_ctor_set(x_7, 1, x_1); +lean_ctor_set(x_7, 0, x_18); +lean_ctor_set(x_12, 0, x_7); +return x_12; +} +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; +x_19 = lean_ctor_get(x_12, 0); +x_20 = lean_ctor_get(x_12, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_12); +x_21 = lean_ctor_get(x_19, 0); +lean_inc_ref(x_21); +lean_dec(x_19); +x_22 = lean_ctor_get(x_2, 2); +x_23 = lean_ctor_get(x_4, 2); +lean_inc(x_23); +lean_inc_ref(x_22); +x_24 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_24, 0, x_11); +lean_ctor_set(x_24, 1, x_21); +lean_ctor_set(x_24, 2, x_22); +lean_ctor_set(x_24, 3, x_23); +lean_ctor_set_tag(x_7, 3); +lean_ctor_set(x_7, 1, x_1); +lean_ctor_set(x_7, 0, x_24); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_7); +lean_ctor_set(x_25, 1, x_20); +return x_25; +} +} +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; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_26 = lean_ctor_get(x_7, 0); +x_27 = lean_ctor_get(x_7, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_7); +x_28 = lean_ctor_get(x_26, 0); +lean_inc_ref(x_28); +lean_dec(x_26); +x_29 = lean_st_ref_get(x_3, x_27); +x_30 = lean_ctor_get(x_29, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_29, 1); +lean_inc(x_31); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + x_32 = x_29; +} else { + lean_dec_ref(x_29); + x_32 = lean_box(0); +} +x_33 = lean_ctor_get(x_30, 0); +lean_inc_ref(x_33); +lean_dec(x_30); +x_34 = lean_ctor_get(x_2, 2); +x_35 = lean_ctor_get(x_4, 2); +lean_inc(x_35); +lean_inc_ref(x_34); +x_36 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_36, 0, x_28); +lean_ctor_set(x_36, 1, x_33); +lean_ctor_set(x_36, 2, x_34); +lean_ctor_set(x_36, 3, x_35); +x_37 = lean_alloc_ctor(3, 2, 0); +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set(x_37, 1, x_1); +if (lean_is_scalar(x_32)) { + x_38 = lean_alloc_ctor(0, 2, 0); +} else { + x_38 = x_32; +} +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_31); +return x_38; +} +} +} +LEAN_EXPORT uint8_t l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = lean_ctor_get(x_2, 0); +x_4 = lean_ctor_get(x_2, 1); +x_5 = l_Lean_KVMap_findCore(x_1, x_3); +if (lean_obj_tag(x_5) == 0) +{ +uint8_t x_6; +x_6 = lean_unbox(x_4); +return x_6; +} +else +{ +lean_object* x_7; +x_7 = lean_ctor_get(x_5, 0); +lean_inc(x_7); +lean_dec_ref(x_5); +if (lean_obj_tag(x_7) == 1) +{ +uint8_t x_8; +x_8 = lean_ctor_get_uint8(x_7, 0); +lean_dec_ref(x_7); +return x_8; +} +else +{ +uint8_t x_9; +lean_dec(x_7); +x_9 = lean_unbox(x_4); +return x_9; +} +} +} +} +static lean_object* _init_l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("while expanding", 15, 15); +return x_1; +} +} +static lean_object* _init_l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__0; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__1; +x_2 = l_Lean_MessageData_ofFormat(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_dec_ref(x_1); +return x_2; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_3); +if (x_4 == 0) +{ +lean_object* x_5; uint8_t x_6; +x_5 = lean_ctor_get(x_3, 0); +x_6 = !lean_is_exclusive(x_5); +if (x_6 == 0) +{ +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; +x_7 = lean_ctor_get(x_3, 1); +x_8 = lean_ctor_get(x_5, 0); +x_9 = lean_ctor_get(x_5, 1); +lean_dec(x_9); +lean_inc_ref(x_1); +lean_ctor_set_tag(x_5, 7); +lean_ctor_set(x_5, 1, x_1); +lean_ctor_set(x_5, 0, x_2); +x_10 = l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__2; +lean_ctor_set_tag(x_3, 7); +lean_ctor_set(x_3, 1, x_10); +x_11 = l_Lean_MessageData_ofSyntax(x_8); +x_12 = l_Lean_indentD(x_11); +x_13 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_13, 0, x_3); +lean_ctor_set(x_13, 1, x_12); +x_2 = x_13; +x_3 = x_7; +goto _start; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_15 = lean_ctor_get(x_3, 1); +x_16 = lean_ctor_get(x_5, 0); +lean_inc(x_16); +lean_dec(x_5); +lean_inc_ref(x_1); +x_17 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_17, 0, x_2); +lean_ctor_set(x_17, 1, x_1); +x_18 = l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__2; +lean_ctor_set_tag(x_3, 7); +lean_ctor_set(x_3, 1, x_18); +lean_ctor_set(x_3, 0, x_17); +x_19 = l_Lean_MessageData_ofSyntax(x_16); +x_20 = l_Lean_indentD(x_19); +x_21 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_21, 0, x_3); +lean_ctor_set(x_21, 1, x_20); +x_2 = x_21; +x_3 = x_15; +goto _start; +} +} +else +{ +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; +x_23 = lean_ctor_get(x_3, 0); +x_24 = lean_ctor_get(x_3, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_3); +x_25 = lean_ctor_get(x_23, 0); +lean_inc(x_25); +if (lean_is_exclusive(x_23)) { + lean_ctor_release(x_23, 0); + lean_ctor_release(x_23, 1); + x_26 = x_23; +} else { + lean_dec_ref(x_23); + x_26 = lean_box(0); +} +lean_inc_ref(x_1); +if (lean_is_scalar(x_26)) { + x_27 = lean_alloc_ctor(7, 2, 0); +} else { + x_27 = x_26; + lean_ctor_set_tag(x_27, 7); +} +lean_ctor_set(x_27, 0, x_2); +lean_ctor_set(x_27, 1, x_1); +x_28 = l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__2; +x_29 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +x_30 = l_Lean_MessageData_ofSyntax(x_25); +x_31 = l_Lean_indentD(x_30); +x_32 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_32, 0, x_29); +lean_ctor_set(x_32, 1, x_31); +x_2 = x_32; +x_3 = x_24; +goto _start; +} +} +} +} +static lean_object* _init_l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Elab_pp_macroStack; +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_box(1); +x_2 = l_Lean_MessageData_ofFormat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("with resulting expansion", 24, 24); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__2; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__3; +x_2 = l_Lean_MessageData_ofFormat(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_5 = lean_ctor_get(x_3, 2); +x_6 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__0; +x_7 = l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__1(x_5, x_6); +if (x_7 == 0) +{ +lean_object* x_8; +lean_dec(x_2); +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_1); +lean_ctor_set(x_8, 1, x_4); +return x_8; +} +else +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_9; +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_1); +lean_ctor_set(x_9, 1, x_4); +return x_9; +} +else +{ +lean_object* x_10; uint8_t x_11; +x_10 = lean_ctor_get(x_2, 0); +lean_inc(x_10); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_12 = lean_ctor_get(x_10, 1); +x_13 = lean_ctor_get(x_10, 0); +lean_dec(x_13); +x_14 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__1; +lean_ctor_set_tag(x_10, 7); +lean_ctor_set(x_10, 1, x_14); +lean_ctor_set(x_10, 0, x_1); +x_15 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__4; +x_16 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_16, 0, x_10); +lean_ctor_set(x_16, 1, x_15); +x_17 = l_Lean_MessageData_ofSyntax(x_12); +x_18 = l_Lean_indentD(x_17); +x_19 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_19, 0, x_16); +lean_ctor_set(x_19, 1, x_18); +lean_inc_ref(x_2); +x_20 = l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2(x_14, x_19, x_2); +x_21 = !lean_is_exclusive(x_2); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_2, 1); +lean_dec(x_22); +x_23 = lean_ctor_get(x_2, 0); +lean_dec(x_23); +lean_ctor_set_tag(x_2, 0); +lean_ctor_set(x_2, 1, x_4); +lean_ctor_set(x_2, 0, x_20); +return x_2; +} +else +{ +lean_object* x_24; +lean_dec(x_2); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_20); +lean_ctor_set(x_24, 1, x_4); +return x_24; +} +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_25 = lean_ctor_get(x_10, 1); +lean_inc(x_25); +lean_dec(x_10); +x_26 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__1; +x_27 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_27, 0, x_1); +lean_ctor_set(x_27, 1, x_26); +x_28 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__4; +x_29 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +x_30 = l_Lean_MessageData_ofSyntax(x_25); +x_31 = l_Lean_indentD(x_30); +x_32 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_32, 0, x_29); +lean_ctor_set(x_32, 1, x_31); +lean_inc_ref(x_2); +x_33 = l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2(x_26, x_32, x_2); +if (lean_is_exclusive(x_2)) { + lean_ctor_release(x_2, 0); + lean_ctor_release(x_2, 1); + x_34 = x_2; +} else { + lean_dec_ref(x_2); + x_34 = lean_box(0); +} +if (lean_is_scalar(x_34)) { + x_35 = lean_alloc_ctor(0, 2, 0); +} else { + x_35 = x_34; + lean_ctor_set_tag(x_35, 0); +} +lean_ctor_set(x_35, 0, x_33); +lean_ctor_set(x_35, 1, x_4); +return x_35; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg(x_1, x_2, x_7, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg(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; lean_object* x_10; uint8_t x_11; +x_9 = lean_ctor_get(x_6, 5); +x_10 = l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0(x_1, x_4, x_5, x_6, x_7, x_8); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_12 = lean_ctor_get(x_10, 0); +x_13 = lean_ctor_get(x_10, 1); +x_14 = lean_ctor_get(x_2, 1); +lean_inc(x_14); +lean_dec_ref(x_2); +lean_inc(x_14); +x_15 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg(x_12, x_14, x_6, x_13); +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_15, 0); +x_18 = l_Lean_Elab_getBetterRef(x_9, x_14); +lean_ctor_set(x_10, 1, x_17); +lean_ctor_set(x_10, 0, x_18); +lean_ctor_set_tag(x_15, 1); +lean_ctor_set(x_15, 0, x_10); +return x_15; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_15, 0); +x_20 = lean_ctor_get(x_15, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_15); +x_21 = l_Lean_Elab_getBetterRef(x_9, x_14); +lean_ctor_set(x_10, 1, x_19); +lean_ctor_set(x_10, 0, x_21); +x_22 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_22, 0, x_10); +lean_ctor_set(x_22, 1, x_20); +return x_22; +} +} +else +{ +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; +x_23 = lean_ctor_get(x_10, 0); +x_24 = lean_ctor_get(x_10, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_10); +x_25 = lean_ctor_get(x_2, 1); +lean_inc(x_25); +lean_dec_ref(x_2); +lean_inc(x_25); +x_26 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg(x_23, x_25, x_6, x_24); +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + x_29 = x_26; +} else { + lean_dec_ref(x_26); + x_29 = lean_box(0); +} +x_30 = l_Lean_Elab_getBetterRef(x_9, x_25); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_27); +if (lean_is_scalar(x_29)) { + x_32 = lean_alloc_ctor(1, 2, 0); +} else { + x_32 = x_29; + lean_ctor_set_tag(x_32, 1); +} +lean_ctor_set(x_32, 0, x_31); +lean_ctor_set(x_32, 1, x_28); +return x_32; +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0(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_10; +x_10 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Error evaluating configuration\n", 31, 31); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__0; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("\n\nException: ", 13, 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__2; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("", 0, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Error evaluating configuration: Environment does not yet contain type ", 70, 70); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__6; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_; +x_2 = l_Lean_MessageData_ofName(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__8; +x_2 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__7; +x_3 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; +x_2 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__9; +x_3 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Configuration contains `sorry`", 30, 30); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__11; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__13() { +_start: +{ +lean_object* x_1; uint8_t x_2; uint8_t x_3; lean_object* x_4; +x_1 = lean_box(0); +x_2 = 0; +x_3 = 1; +x_4 = lean_alloc_ctor(0, 1, 4); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set_uint8(x_4, sizeof(void*)*1, x_3); +lean_ctor_set_uint8(x_4, sizeof(void*)*1 + 1, x_3); +lean_ctor_set_uint8(x_4, sizeof(void*)*1 + 2, x_3); +lean_ctor_set_uint8(x_4, sizeof(void*)*1 + 3, x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg(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_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; uint8_t x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; uint8_t x_37; +x_33 = lean_ctor_get_uint8(x_2, sizeof(void*)*1); +lean_inc(x_1); +x_34 = l_Lean_Parser_Tactic_getConfigItems(x_1); +x_35 = l_Lean_Elab_Tactic_mkConfigItemViews(x_34); +x_36 = l_Array_isEmpty___redArg(x_35); +x_37 = 1; +if (x_36 == 0) +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; uint8_t x_41; +x_38 = lean_st_ref_get(x_8, x_9); +x_39 = lean_ctor_get(x_38, 0); +lean_inc(x_39); +x_40 = lean_ctor_get(x_38, 1); +lean_inc(x_40); +lean_dec_ref(x_38); +x_41 = !lean_is_exclusive(x_7); +if (x_41 == 0) +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; +x_42 = lean_ctor_get(x_7, 5); +x_43 = lean_ctor_get(x_39, 0); +lean_inc_ref(x_43); +lean_dec(x_39); +x_44 = l_Lean_replaceRef(x_1, x_42); +lean_dec(x_42); +lean_dec(x_1); +lean_ctor_set(x_7, 5, x_44); +x_45 = l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_; +x_46 = l_Lean_Environment_contains(x_43, x_45, x_37); +if (x_46 == 0) +{ +lean_object* x_47; lean_object* x_48; uint8_t x_49; +lean_dec_ref(x_35); +x_47 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__10; +x_48 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg(x_47, x_3, x_4, x_5, x_6, x_7, x_8, x_40); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +x_49 = !lean_is_exclusive(x_48); +if (x_49 == 0) +{ +return x_48; +} +else +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_50 = lean_ctor_get(x_48, 0); +x_51 = lean_ctor_get(x_48, 1); +lean_inc(x_51); +lean_inc(x_50); +lean_dec(x_48); +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_50); +lean_ctor_set(x_52, 1, x_51); +return x_52; +} +} +else +{ +lean_object* x_53; +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +x_53 = l_Lean_Elab_Tactic_elabConfig(x_33, x_45, x_35, x_3, x_4, x_5, x_6, x_7, x_8, x_40); +if (lean_obj_tag(x_53) == 0) +{ +uint8_t x_54; +x_54 = !lean_is_exclusive(x_53); +if (x_54 == 0) +{ +lean_object* x_55; lean_object* x_56; uint8_t x_57; +x_55 = lean_ctor_get(x_53, 0); +x_56 = lean_ctor_get(x_53, 1); +x_57 = l_Lean_Expr_hasSyntheticSorry(x_55); +if (x_57 == 0) +{ +uint8_t x_58; +lean_free_object(x_53); +x_58 = l_Lean_Expr_hasSorry(x_55); +if (x_58 == 0) +{ +lean_object* x_59; +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_55); +x_59 = l_Lean_Elab_Tactic_Do_evalUnsafe___redArg____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_(x_55, x_5, x_6, x_7, x_8, x_56); +if (lean_obj_tag(x_59) == 0) +{ +lean_dec(x_55); +lean_dec_ref(x_7); +lean_dec(x_8); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_59; +} +else +{ +lean_object* x_60; lean_object* x_61; uint8_t x_62; +x_60 = lean_ctor_get(x_59, 0); +lean_inc(x_60); +x_61 = lean_ctor_get(x_59, 1); +lean_inc(x_61); +x_62 = l_Lean_Exception_isInterrupt(x_60); +if (x_62 == 0) +{ +uint8_t x_63; +x_63 = l_Lean_Exception_isRuntime(x_60); +x_10 = x_59; +x_11 = x_61; +x_12 = x_3; +x_13 = x_6; +x_14 = x_60; +x_15 = x_7; +x_16 = x_8; +x_17 = x_4; +x_18 = x_55; +x_19 = x_5; +x_20 = x_63; +goto block_32; +} +else +{ +x_10 = x_59; +x_11 = x_61; +x_12 = x_3; +x_13 = x_6; +x_14 = x_60; +x_15 = x_7; +x_16 = x_8; +x_17 = x_4; +x_18 = x_55; +x_19 = x_5; +x_20 = x_62; +goto block_32; +} +} +} +else +{ +lean_object* x_64; lean_object* x_65; uint8_t x_66; +lean_dec(x_55); +x_64 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__12; +x_65 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg(x_64, x_3, x_4, x_5, x_6, x_7, x_8, x_56); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +x_66 = !lean_is_exclusive(x_65); +if (x_66 == 0) +{ +return x_65; +} +else +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_67 = lean_ctor_get(x_65, 0); +x_68 = lean_ctor_get(x_65, 1); +lean_inc(x_68); +lean_inc(x_67); +lean_dec(x_65); +x_69 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_69, 0, x_67); +lean_ctor_set(x_69, 1, x_68); +return x_69; +} +} +} +else +{ +lean_object* x_70; lean_object* x_71; +lean_dec(x_55); +lean_dec_ref(x_7); +lean_dec(x_8); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_70 = lean_box(0); +x_71 = lean_alloc_ctor(0, 1, 4); +lean_ctor_set(x_71, 0, x_70); +lean_ctor_set_uint8(x_71, sizeof(void*)*1, x_57); +lean_ctor_set_uint8(x_71, sizeof(void*)*1 + 1, x_57); +lean_ctor_set_uint8(x_71, sizeof(void*)*1 + 2, x_57); +lean_ctor_set_uint8(x_71, sizeof(void*)*1 + 3, x_36); +lean_ctor_set(x_53, 0, x_71); +return x_53; +} +} +else +{ +lean_object* x_72; lean_object* x_73; uint8_t x_74; +x_72 = lean_ctor_get(x_53, 0); +x_73 = lean_ctor_get(x_53, 1); +lean_inc(x_73); +lean_inc(x_72); +lean_dec(x_53); +x_74 = l_Lean_Expr_hasSyntheticSorry(x_72); +if (x_74 == 0) +{ +uint8_t x_75; +x_75 = l_Lean_Expr_hasSorry(x_72); +if (x_75 == 0) +{ +lean_object* x_76; +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_72); +x_76 = l_Lean_Elab_Tactic_Do_evalUnsafe___redArg____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_(x_72, x_5, x_6, x_7, x_8, x_73); +if (lean_obj_tag(x_76) == 0) +{ +lean_dec(x_72); +lean_dec_ref(x_7); +lean_dec(x_8); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_76; +} +else +{ +lean_object* x_77; lean_object* x_78; uint8_t x_79; +x_77 = lean_ctor_get(x_76, 0); +lean_inc(x_77); +x_78 = lean_ctor_get(x_76, 1); +lean_inc(x_78); +x_79 = l_Lean_Exception_isInterrupt(x_77); +if (x_79 == 0) +{ +uint8_t x_80; +x_80 = l_Lean_Exception_isRuntime(x_77); +x_10 = x_76; +x_11 = x_78; +x_12 = x_3; +x_13 = x_6; +x_14 = x_77; +x_15 = x_7; +x_16 = x_8; +x_17 = x_4; +x_18 = x_72; +x_19 = x_5; +x_20 = x_80; +goto block_32; +} +else +{ +x_10 = x_76; +x_11 = x_78; +x_12 = x_3; +x_13 = x_6; +x_14 = x_77; +x_15 = x_7; +x_16 = x_8; +x_17 = x_4; +x_18 = x_72; +x_19 = x_5; +x_20 = x_79; +goto block_32; +} +} +} +else +{ +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +lean_dec(x_72); +x_81 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__12; +x_82 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg(x_81, x_3, x_4, x_5, x_6, x_7, x_8, x_73); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +x_83 = lean_ctor_get(x_82, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_82, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_82)) { + lean_ctor_release(x_82, 0); + lean_ctor_release(x_82, 1); + x_85 = x_82; +} else { + lean_dec_ref(x_82); + x_85 = lean_box(0); +} +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); +} else { + x_86 = x_85; +} +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; +} +} +else +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; +lean_dec(x_72); +lean_dec_ref(x_7); +lean_dec(x_8); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_87 = lean_box(0); +x_88 = lean_alloc_ctor(0, 1, 4); +lean_ctor_set(x_88, 0, x_87); +lean_ctor_set_uint8(x_88, sizeof(void*)*1, x_74); +lean_ctor_set_uint8(x_88, sizeof(void*)*1 + 1, x_74); +lean_ctor_set_uint8(x_88, sizeof(void*)*1 + 2, x_74); +lean_ctor_set_uint8(x_88, sizeof(void*)*1 + 3, x_36); +x_89 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_89, 0, x_88); +lean_ctor_set(x_89, 1, x_73); +return x_89; +} +} +} +else +{ +uint8_t x_90; +lean_dec_ref(x_7); +lean_dec(x_8); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_90 = !lean_is_exclusive(x_53); +if (x_90 == 0) +{ +return x_53; +} +else +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_91 = lean_ctor_get(x_53, 0); +x_92 = lean_ctor_get(x_53, 1); +lean_inc(x_92); +lean_inc(x_91); +lean_dec(x_53); +x_93 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_93, 0, x_91); +lean_ctor_set(x_93, 1, x_92); +return x_93; +} +} +} +} +else +{ +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; uint8_t x_105; lean_object* x_106; uint8_t x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; uint8_t x_113; +x_94 = lean_ctor_get(x_7, 0); +x_95 = lean_ctor_get(x_7, 1); +x_96 = lean_ctor_get(x_7, 2); +x_97 = lean_ctor_get(x_7, 3); +x_98 = lean_ctor_get(x_7, 4); +x_99 = lean_ctor_get(x_7, 5); +x_100 = lean_ctor_get(x_7, 6); +x_101 = lean_ctor_get(x_7, 7); +x_102 = lean_ctor_get(x_7, 8); +x_103 = lean_ctor_get(x_7, 9); +x_104 = lean_ctor_get(x_7, 10); +x_105 = lean_ctor_get_uint8(x_7, sizeof(void*)*13); +x_106 = lean_ctor_get(x_7, 11); +x_107 = lean_ctor_get_uint8(x_7, sizeof(void*)*13 + 1); +x_108 = lean_ctor_get(x_7, 12); +lean_inc(x_108); +lean_inc(x_106); +lean_inc(x_104); +lean_inc(x_103); +lean_inc(x_102); +lean_inc(x_101); +lean_inc(x_100); +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_7); +x_109 = lean_ctor_get(x_39, 0); +lean_inc_ref(x_109); +lean_dec(x_39); +x_110 = l_Lean_replaceRef(x_1, x_99); +lean_dec(x_99); +lean_dec(x_1); +x_111 = lean_alloc_ctor(0, 13, 2); +lean_ctor_set(x_111, 0, x_94); +lean_ctor_set(x_111, 1, x_95); +lean_ctor_set(x_111, 2, x_96); +lean_ctor_set(x_111, 3, x_97); +lean_ctor_set(x_111, 4, x_98); +lean_ctor_set(x_111, 5, x_110); +lean_ctor_set(x_111, 6, x_100); +lean_ctor_set(x_111, 7, x_101); +lean_ctor_set(x_111, 8, x_102); +lean_ctor_set(x_111, 9, x_103); +lean_ctor_set(x_111, 10, x_104); +lean_ctor_set(x_111, 11, x_106); +lean_ctor_set(x_111, 12, x_108); +lean_ctor_set_uint8(x_111, sizeof(void*)*13, x_105); +lean_ctor_set_uint8(x_111, sizeof(void*)*13 + 1, x_107); +x_112 = l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_; +x_113 = l_Lean_Environment_contains(x_109, x_112, x_37); +if (x_113 == 0) +{ +lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; +lean_dec_ref(x_35); +x_114 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__10; +x_115 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg(x_114, x_3, x_4, x_5, x_6, x_111, x_8, x_40); +lean_dec(x_8); +lean_dec_ref(x_111); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +x_116 = lean_ctor_get(x_115, 0); +lean_inc(x_116); +x_117 = lean_ctor_get(x_115, 1); +lean_inc(x_117); +if (lean_is_exclusive(x_115)) { + lean_ctor_release(x_115, 0); + lean_ctor_release(x_115, 1); + x_118 = x_115; +} else { + lean_dec_ref(x_115); + x_118 = lean_box(0); +} +if (lean_is_scalar(x_118)) { + x_119 = lean_alloc_ctor(1, 2, 0); +} else { + x_119 = x_118; +} +lean_ctor_set(x_119, 0, x_116); +lean_ctor_set(x_119, 1, x_117); +return x_119; +} +else +{ +lean_object* x_120; +lean_inc(x_8); +lean_inc_ref(x_111); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +x_120 = l_Lean_Elab_Tactic_elabConfig(x_33, x_112, x_35, x_3, x_4, x_5, x_6, x_111, x_8, x_40); +if (lean_obj_tag(x_120) == 0) +{ +lean_object* x_121; lean_object* x_122; lean_object* x_123; uint8_t x_124; +x_121 = lean_ctor_get(x_120, 0); +lean_inc(x_121); +x_122 = lean_ctor_get(x_120, 1); +lean_inc(x_122); +if (lean_is_exclusive(x_120)) { + lean_ctor_release(x_120, 0); + lean_ctor_release(x_120, 1); + x_123 = x_120; +} else { + lean_dec_ref(x_120); + x_123 = lean_box(0); +} +x_124 = l_Lean_Expr_hasSyntheticSorry(x_121); +if (x_124 == 0) +{ +uint8_t x_125; +lean_dec(x_123); +x_125 = l_Lean_Expr_hasSorry(x_121); +if (x_125 == 0) +{ +lean_object* x_126; +lean_inc(x_8); +lean_inc_ref(x_111); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_121); +x_126 = l_Lean_Elab_Tactic_Do_evalUnsafe___redArg____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_(x_121, x_5, x_6, x_111, x_8, x_122); +if (lean_obj_tag(x_126) == 0) +{ +lean_dec(x_121); +lean_dec_ref(x_111); +lean_dec(x_8); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_126; +} +else +{ +lean_object* x_127; lean_object* x_128; uint8_t x_129; +x_127 = lean_ctor_get(x_126, 0); +lean_inc(x_127); +x_128 = lean_ctor_get(x_126, 1); +lean_inc(x_128); +x_129 = l_Lean_Exception_isInterrupt(x_127); +if (x_129 == 0) +{ +uint8_t x_130; +x_130 = l_Lean_Exception_isRuntime(x_127); +x_10 = x_126; +x_11 = x_128; +x_12 = x_3; +x_13 = x_6; +x_14 = x_127; +x_15 = x_111; +x_16 = x_8; +x_17 = x_4; +x_18 = x_121; +x_19 = x_5; +x_20 = x_130; +goto block_32; +} +else +{ +x_10 = x_126; +x_11 = x_128; +x_12 = x_3; +x_13 = x_6; +x_14 = x_127; +x_15 = x_111; +x_16 = x_8; +x_17 = x_4; +x_18 = x_121; +x_19 = x_5; +x_20 = x_129; +goto block_32; +} +} +} +else +{ +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_dec(x_121); +x_131 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__12; +x_132 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg(x_131, x_3, x_4, x_5, x_6, x_111, x_8, x_122); +lean_dec(x_8); +lean_dec_ref(x_111); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +x_133 = lean_ctor_get(x_132, 0); +lean_inc(x_133); +x_134 = lean_ctor_get(x_132, 1); +lean_inc(x_134); +if (lean_is_exclusive(x_132)) { + lean_ctor_release(x_132, 0); + lean_ctor_release(x_132, 1); + x_135 = x_132; +} else { + lean_dec_ref(x_132); + x_135 = lean_box(0); +} +if (lean_is_scalar(x_135)) { + x_136 = lean_alloc_ctor(1, 2, 0); +} else { + x_136 = x_135; +} +lean_ctor_set(x_136, 0, x_133); +lean_ctor_set(x_136, 1, x_134); +return x_136; +} +} +else +{ +lean_object* x_137; lean_object* x_138; lean_object* x_139; +lean_dec(x_121); +lean_dec_ref(x_111); +lean_dec(x_8); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_137 = lean_box(0); +x_138 = lean_alloc_ctor(0, 1, 4); +lean_ctor_set(x_138, 0, x_137); +lean_ctor_set_uint8(x_138, sizeof(void*)*1, x_124); +lean_ctor_set_uint8(x_138, sizeof(void*)*1 + 1, x_124); +lean_ctor_set_uint8(x_138, sizeof(void*)*1 + 2, x_124); +lean_ctor_set_uint8(x_138, sizeof(void*)*1 + 3, x_36); +if (lean_is_scalar(x_123)) { + x_139 = lean_alloc_ctor(0, 2, 0); +} else { + x_139 = x_123; +} +lean_ctor_set(x_139, 0, x_138); +lean_ctor_set(x_139, 1, x_122); +return x_139; +} +} +else +{ +lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; +lean_dec_ref(x_111); +lean_dec(x_8); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_140 = lean_ctor_get(x_120, 0); +lean_inc(x_140); +x_141 = lean_ctor_get(x_120, 1); +lean_inc(x_141); +if (lean_is_exclusive(x_120)) { + lean_ctor_release(x_120, 0); + lean_ctor_release(x_120, 1); + x_142 = x_120; +} else { + lean_dec_ref(x_120); + x_142 = lean_box(0); +} +if (lean_is_scalar(x_142)) { + x_143 = lean_alloc_ctor(1, 2, 0); +} else { + x_143 = x_142; +} +lean_ctor_set(x_143, 0, x_140); +lean_ctor_set(x_143, 1, x_141); +return x_143; +} +} +} +} +else +{ +lean_object* x_144; lean_object* x_145; +lean_dec_ref(x_35); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +x_144 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__13; +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_144); +lean_ctor_set(x_145, 1, x_9); +return x_145; +} +block_32: +{ +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; lean_object* x_30; lean_object* x_31; +lean_dec_ref(x_10); +x_21 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__1; +x_22 = l_Lean_MessageData_ofExpr(x_18); +x_23 = l_Lean_indentD(x_22); +x_24 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_24, 0, x_21); +lean_ctor_set(x_24, 1, x_23); +x_25 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__3; +x_26 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +x_27 = l_Lean_Exception_toMessageData(x_14); +x_28 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +x_29 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; +x_30 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +x_31 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg(x_30, x_12, x_17, x_19, x_13, x_15, x_16, x_11); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_13); +lean_dec_ref(x_19); +lean_dec(x_17); +return x_31; +} +else +{ +lean_dec_ref(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +return x_10; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabConfig(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_elabConfig___redArg(x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Lean_Option_get___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__1(x_1, x_2); +lean_dec_ref(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg(x_1, x_2, x_3, x_4); +lean_dec_ref(x_3); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__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_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0___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: +{ +lean_object* x_10; +x_10 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabConfig___redArg___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: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_elabConfig___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec_ref(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabConfig___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_elabConfig(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_burnOne___redArg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_7 = lean_st_ref_get(x_1, x_2); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; uint8_t x_11; +x_10 = lean_ctor_get(x_7, 1); +lean_inc(x_10); +lean_dec_ref(x_7); +x_11 = !lean_is_exclusive(x_8); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_12 = lean_ctor_get(x_8, 1); +x_13 = lean_ctor_get(x_8, 2); +x_14 = lean_ctor_get(x_8, 0); +lean_dec(x_14); +x_15 = !lean_is_exclusive(x_9); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_16 = lean_ctor_get(x_9, 0); +x_17 = lean_unsigned_to_nat(0u); +x_18 = lean_nat_dec_eq(x_16, x_17); +if (x_18 == 1) +{ +lean_free_object(x_9); +lean_dec(x_16); +lean_free_object(x_8); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +x_3 = x_10; +goto block_6; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_19 = lean_unsigned_to_nat(1u); +x_20 = lean_nat_sub(x_16, x_19); +lean_dec(x_16); +lean_ctor_set(x_9, 0, x_20); +x_21 = lean_st_ref_set(x_1, x_8, x_10); +x_22 = !lean_is_exclusive(x_21); +if (x_22 == 0) +{ +return x_21; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_21, 0); +x_24 = lean_ctor_get(x_21, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_21); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +} +} +else +{ +lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_26 = lean_ctor_get(x_9, 0); +lean_inc(x_26); +lean_dec(x_9); +x_27 = lean_unsigned_to_nat(0u); +x_28 = lean_nat_dec_eq(x_26, x_27); +if (x_28 == 1) +{ +lean_dec(x_26); +lean_free_object(x_8); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +x_3 = x_10; +goto block_6; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_29 = lean_unsigned_to_nat(1u); +x_30 = lean_nat_sub(x_26, x_29); +lean_dec(x_26); +x_31 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_8, 0, x_31); +x_32 = lean_st_ref_set(x_1, x_8, x_10); +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +x_34 = lean_ctor_get(x_32, 1); +lean_inc(x_34); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + x_35 = x_32; +} else { + lean_dec_ref(x_32); + x_35 = lean_box(0); +} +if (lean_is_scalar(x_35)) { + x_36 = lean_alloc_ctor(0, 2, 0); +} else { + x_36 = x_35; +} +lean_ctor_set(x_36, 0, x_33); +lean_ctor_set(x_36, 1, x_34); +return x_36; +} +} +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; +x_37 = lean_ctor_get(x_8, 1); +x_38 = lean_ctor_get(x_8, 2); +lean_inc(x_38); +lean_inc(x_37); +lean_dec(x_8); +x_39 = lean_ctor_get(x_9, 0); +lean_inc(x_39); +if (lean_is_exclusive(x_9)) { + lean_ctor_release(x_9, 0); + x_40 = x_9; +} else { + lean_dec_ref(x_9); + x_40 = lean_box(0); +} +x_41 = lean_unsigned_to_nat(0u); +x_42 = lean_nat_dec_eq(x_39, x_41); +if (x_42 == 1) +{ +lean_dec(x_40); +lean_dec(x_39); +lean_dec_ref(x_38); +lean_dec_ref(x_37); +x_3 = x_10; +goto block_6; +} +else +{ +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_43 = lean_unsigned_to_nat(1u); +x_44 = lean_nat_sub(x_39, x_43); +lean_dec(x_39); +if (lean_is_scalar(x_40)) { + x_45 = lean_alloc_ctor(0, 1, 0); +} else { + x_45 = x_40; +} +lean_ctor_set(x_45, 0, x_44); +x_46 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_46, 1, x_37); +lean_ctor_set(x_46, 2, x_38); +x_47 = lean_st_ref_set(x_1, x_46, x_10); +x_48 = lean_ctor_get(x_47, 0); +lean_inc(x_48); +x_49 = lean_ctor_get(x_47, 1); +lean_inc(x_49); +if (lean_is_exclusive(x_47)) { + lean_ctor_release(x_47, 0); + lean_ctor_release(x_47, 1); + x_50 = x_47; +} else { + lean_dec_ref(x_47); + x_50 = lean_box(0); +} +if (lean_is_scalar(x_50)) { + x_51 = lean_alloc_ctor(0, 2, 0); +} else { + x_51 = x_50; +} +lean_ctor_set(x_51, 0, x_48); +lean_ctor_set(x_51, 1, x_49); +return x_51; +} +} +} +else +{ +lean_object* x_52; +lean_dec(x_8); +x_52 = lean_ctor_get(x_7, 1); +lean_inc(x_52); +lean_dec_ref(x_7); +x_3 = x_52; +goto block_6; +} +block_6: +{ +lean_object* x_4; lean_object* x_5; +x_4 = lean_box(0); +x_5 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +return x_5; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_burnOne(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_2, x_7); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_burnOne___redArg___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_1, x_2); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_burnOne___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Elab_Tactic_Do_burnOne(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ifOutOfFuel___redArg(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_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_st_ref_get(x_4, x_9); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +lean_dec(x_11); +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_13 = lean_ctor_get(x_10, 1); +lean_inc(x_13); +lean_dec_ref(x_10); +x_14 = lean_ctor_get(x_12, 0); +lean_inc(x_14); +lean_dec_ref(x_12); +x_15 = lean_unsigned_to_nat(0u); +x_16 = lean_nat_dec_eq(x_14, x_15); +lean_dec(x_14); +if (x_16 == 0) +{ +lean_object* x_17; +lean_dec_ref(x_1); +x_17 = lean_apply_7(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_13); +return x_17; +} +else +{ +lean_object* x_18; +lean_dec_ref(x_2); +x_18 = lean_apply_7(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_13); +return x_18; +} +} +else +{ +lean_object* x_19; lean_object* x_20; +lean_dec_ref(x_1); +x_19 = lean_ctor_get(x_10, 1); +lean_inc(x_19); +lean_dec_ref(x_10); +x_20 = lean_apply_7(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_19); +return x_20; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ifOutOfFuel(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_ifOutOfFuel___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_emitVC___redArg(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_mkFreshExprSyntheticOpaqueMVar(x_1, x_2, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec_ref(x_9); +x_12 = lean_st_ref_take(x_3, x_11); +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_ref(x_12); +x_15 = !lean_is_exclusive(x_13); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_16 = lean_ctor_get(x_13, 2); +x_17 = l_Lean_Expr_mvarId_x21(x_10); +x_18 = lean_array_push(x_16, x_17); +lean_ctor_set(x_13, 2, x_18); +x_19 = lean_st_ref_set(x_3, x_13, x_14); +x_20 = !lean_is_exclusive(x_19); +if (x_20 == 0) +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_19, 0); +lean_dec(x_21); +lean_ctor_set(x_19, 0, x_10); +return x_19; +} +else +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_19, 1); +lean_inc(x_22); +lean_dec(x_19); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_10); +lean_ctor_set(x_23, 1, x_22); +return x_23; +} +} +else +{ +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; +x_24 = lean_ctor_get(x_13, 0); +x_25 = lean_ctor_get(x_13, 1); +x_26 = lean_ctor_get(x_13, 2); +lean_inc(x_26); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_13); +x_27 = l_Lean_Expr_mvarId_x21(x_10); +x_28 = lean_array_push(x_26, x_27); +x_29 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_29, 0, x_24); +lean_ctor_set(x_29, 1, x_25); +lean_ctor_set(x_29, 2, x_28); +x_30 = lean_st_ref_set(x_3, x_29, x_14); +x_31 = lean_ctor_get(x_30, 1); +lean_inc(x_31); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + x_32 = x_30; +} else { + lean_dec_ref(x_30); + x_32 = lean_box(0); +} +if (lean_is_scalar(x_32)) { + x_33 = lean_alloc_ctor(0, 2, 0); +} else { + x_33 = x_32; +} +lean_ctor_set(x_33, 0, x_10); +lean_ctor_set(x_33, 1, x_31); +return x_33; +} +} +else +{ +return x_9; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_emitVC(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_10; +x_10 = l_Lean_Elab_Tactic_Do_emitVC___redArg(x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_emitVC___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_Do_emitVC___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_emitVC___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: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_emitVC(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_addSubGoalAsVC___redArg(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; uint8_t x_7; +x_4 = lean_st_ref_take(x_2, x_3); +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_4, 1); +lean_inc(x_6); +lean_dec_ref(x_4); +x_7 = !lean_is_exclusive(x_5); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_8 = lean_ctor_get(x_5, 2); +x_9 = lean_array_push(x_8, x_1); +lean_ctor_set(x_5, 2, x_9); +x_10 = lean_st_ref_set(x_2, x_5, x_6); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_10, 0); +lean_dec(x_12); +x_13 = lean_box(0); +lean_ctor_set(x_10, 0, x_13); +return x_10; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_10, 1); +lean_inc(x_14); +lean_dec(x_10); +x_15 = lean_box(0); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_14); +return x_16; +} +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_17 = lean_ctor_get(x_5, 0); +x_18 = lean_ctor_get(x_5, 1); +x_19 = lean_ctor_get(x_5, 2); +lean_inc(x_19); +lean_inc(x_18); +lean_inc(x_17); +lean_dec(x_5); +x_20 = lean_array_push(x_19, x_1); +x_21 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_21, 0, x_17); +lean_ctor_set(x_21, 1, x_18); +lean_ctor_set(x_21, 2, x_20); +x_22 = lean_st_ref_set(x_2, x_21, x_6); +x_23 = lean_ctor_get(x_22, 1); +lean_inc(x_23); +if (lean_is_exclusive(x_22)) { + lean_ctor_release(x_22, 0); + lean_ctor_release(x_22, 1); + x_24 = x_22; +} else { + lean_dec_ref(x_22); + x_24 = lean_box(0); +} +x_25 = lean_box(0); +if (lean_is_scalar(x_24)) { + x_26 = lean_alloc_ctor(0, 2, 0); +} else { + x_26 = x_24; +} +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_23); +return x_26; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_addSubGoalAsVC(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_Do_addSubGoalAsVC___redArg(x_1, x_3, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_addSubGoalAsVC___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Elab_Tactic_Do_addSubGoalAsVC___redArg(x_1, x_2, x_3); +lean_dec(x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_addSubGoalAsVC___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_Do_addSubGoalAsVC(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_liftSimpM___redArg(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; lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_9 = lean_st_ref_get(x_3, x_8); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec_ref(x_9); +x_12 = !lean_is_exclusive(x_10); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_13 = lean_ctor_get(x_10, 0); +x_14 = lean_ctor_get(x_10, 1); +x_15 = lean_ctor_get(x_10, 2); +x_16 = lean_st_mk_ref(x_14, x_11); +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec_ref(x_16); +x_19 = lean_ctor_get(x_2, 2); +lean_inc_ref(x_19); +x_20 = lean_ctor_get(x_2, 3); +lean_inc_ref(x_20); +lean_dec_ref(x_2); +x_21 = l_Lean_Meta_Simp_mkDefaultMethodsCore(x_20); +lean_inc(x_17); +x_22 = lean_apply_8(x_1, x_21, x_19, x_17, x_4, x_5, x_6, x_7, x_18); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec_ref(x_22); +x_25 = lean_st_ref_get(x_17, x_24); +lean_dec(x_17); +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_25, 1); +lean_inc(x_27); +lean_dec_ref(x_25); +lean_ctor_set(x_10, 1, x_26); +x_28 = lean_st_ref_set(x_3, x_10, x_27); +x_29 = !lean_is_exclusive(x_28); +if (x_29 == 0) +{ +lean_object* x_30; +x_30 = lean_ctor_get(x_28, 0); +lean_dec(x_30); +lean_ctor_set(x_28, 0, x_23); +return x_28; +} +else +{ +lean_object* x_31; lean_object* x_32; +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_23); +lean_ctor_set(x_32, 1, x_31); +return x_32; +} +} +else +{ +lean_dec(x_17); +lean_free_object(x_10); +lean_dec_ref(x_15); +lean_dec(x_13); +return x_22; +} +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_33 = lean_ctor_get(x_10, 0); +x_34 = lean_ctor_get(x_10, 1); +x_35 = lean_ctor_get(x_10, 2); +lean_inc(x_35); +lean_inc(x_34); +lean_inc(x_33); +lean_dec(x_10); +x_36 = lean_st_mk_ref(x_34, x_11); +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +x_38 = lean_ctor_get(x_36, 1); +lean_inc(x_38); +lean_dec_ref(x_36); +x_39 = lean_ctor_get(x_2, 2); +lean_inc_ref(x_39); +x_40 = lean_ctor_get(x_2, 3); +lean_inc_ref(x_40); +lean_dec_ref(x_2); +x_41 = l_Lean_Meta_Simp_mkDefaultMethodsCore(x_40); +lean_inc(x_37); +x_42 = lean_apply_8(x_1, x_41, x_39, x_37, x_4, x_5, x_6, x_7, x_38); +if (lean_obj_tag(x_42) == 0) +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_ctor_get(x_42, 1); +lean_inc(x_44); +lean_dec_ref(x_42); +x_45 = lean_st_ref_get(x_37, x_44); +lean_dec(x_37); +x_46 = lean_ctor_get(x_45, 0); +lean_inc(x_46); +x_47 = lean_ctor_get(x_45, 1); +lean_inc(x_47); +lean_dec_ref(x_45); +x_48 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_48, 0, x_33); +lean_ctor_set(x_48, 1, x_46); +lean_ctor_set(x_48, 2, x_35); +x_49 = lean_st_ref_set(x_3, x_48, x_47); +x_50 = lean_ctor_get(x_49, 1); +lean_inc(x_50); +if (lean_is_exclusive(x_49)) { + lean_ctor_release(x_49, 0); + lean_ctor_release(x_49, 1); + x_51 = x_49; +} else { + lean_dec_ref(x_49); + x_51 = lean_box(0); +} +if (lean_is_scalar(x_51)) { + x_52 = lean_alloc_ctor(0, 2, 0); +} else { + x_52 = x_51; +} +lean_ctor_set(x_52, 0, x_43); +lean_ctor_set(x_52, 1, x_50); +return x_52; +} +else +{ +lean_dec(x_37); +lean_dec_ref(x_35); +lean_dec(x_33); +return x_42; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_liftSimpM(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_10; +x_10 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_liftSimpM___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_3); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_liftSimpM___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: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_liftSimpM(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM___lam__0(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_10; +x_10 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM___lam__0___boxed), 9, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM___lam__0___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: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withJP___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_4); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_4, 4); +x_13 = l_Std_DTreeMap_Internal_Impl_insert___at___Lean_FVarIdSet_insert_spec__1___redArg(x_1, x_2, x_12); +lean_ctor_set(x_4, 4, x_13); +x_14 = lean_apply_7(x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_15 = lean_ctor_get(x_4, 0); +x_16 = lean_ctor_get(x_4, 1); +x_17 = lean_ctor_get(x_4, 2); +x_18 = lean_ctor_get(x_4, 3); +x_19 = lean_ctor_get(x_4, 4); +lean_inc(x_19); +lean_inc(x_18); +lean_inc(x_17); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_4); +x_20 = l_Std_DTreeMap_Internal_Impl_insert___at___Lean_FVarIdSet_insert_spec__1___redArg(x_1, x_2, x_19); +x_21 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_21, 0, x_15); +lean_ctor_set(x_21, 1, x_16); +lean_ctor_set(x_21, 2, x_17); +lean_ctor_set(x_21, 3, x_18); +lean_ctor_set(x_21, 4, x_20); +x_22 = lean_apply_7(x_3, x_21, x_5, x_6, x_7, x_8, x_9, x_10); +return x_22; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withJP(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_Elab_Tactic_Do_withJP___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___Lean_Elab_Tactic_Do_knownJP_x3f_spec__0___redArg(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_3 = lean_ctor_get(x_1, 1); +x_4 = lean_ctor_get(x_1, 2); +x_5 = lean_ctor_get(x_1, 3); +x_6 = lean_ctor_get(x_1, 4); +x_7 = l_Lean_Name_quickCmp(x_2, x_3); +switch (x_7) { +case 0: +{ +x_1 = x_5; +goto _start; +} +case 1: +{ +lean_object* x_9; +lean_inc(x_4); +x_9 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_9, 0, x_4); +return x_9; +} +default: +{ +x_1 = x_6; +goto _start; +} +} +} +else +{ +lean_object* x_11; +x_11 = lean_box(0); +return x_11; +} +} +} +LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___Lean_Elab_Tactic_Do_knownJP_x3f_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___Lean_Elab_Tactic_Do_knownJP_x3f_spec__0___redArg(x_2, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_knownJP_x3f___redArg(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_ctor_get(x_2, 4); +x_5 = l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___Lean_Elab_Tactic_Do_knownJP_x3f_spec__0___redArg(x_4, x_1); +x_6 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_6, 0, x_5); +lean_ctor_set(x_6, 1, x_3); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_knownJP_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_Do_knownJP_x3f___redArg(x_1, x_2, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___Lean_Elab_Tactic_Do_knownJP_x3f_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___Lean_Elab_Tactic_Do_knownJP_x3f_spec__0___redArg(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___Lean_Elab_Tactic_Do_knownJP_x3f_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___Lean_Elab_Tactic_Do_knownJP_x3f_spec__0(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec(x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_knownJP_x3f___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Elab_Tactic_Do_knownJP_x3f___redArg(x_1, x_2, x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_knownJP_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_Do_knownJP_x3f(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_9; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_isDuplicable___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("OfNat", 5, 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_isDuplicable___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("ofNat", 5, 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_isDuplicable___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Tactic_Do_isDuplicable___closed__1; +x_2 = l_Lean_Elab_Tactic_Do_isDuplicable___closed__0; +x_3 = l_Lean_Name_mkStr2(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Do_isDuplicable(lean_object* x_1) { +_start: +{ +switch (lean_obj_tag(x_1)) { +case 5: +{ +lean_object* x_2; uint8_t x_3; +x_2 = l_Lean_Elab_Tactic_Do_isDuplicable___closed__2; +x_3 = l_Lean_Expr_isAppOf(x_1, x_2); +return x_3; +} +case 6: +{ +uint8_t x_4; +x_4 = 0; +return x_4; +} +case 7: +{ +uint8_t x_5; +x_5 = 0; +return x_5; +} +case 8: +{ +uint8_t x_6; +x_6 = 0; +return x_6; +} +case 10: +{ +lean_object* x_7; +x_7 = lean_ctor_get(x_1, 1); +x_1 = x_7; +goto _start; +} +case 11: +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_1, 2); +x_1 = x_9; +goto _start; +} +default: +{ +uint8_t x_11; +x_11 = 1; +return x_11; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_isDuplicable___boxed(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; +x_2 = l_Lean_Elab_Tactic_Do_isDuplicable(x_1); +lean_dec_ref(x_1); +x_3 = lean_box(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withLetDeclShared_spec__0___redArg___lam__0(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_10; +x_10 = lean_apply_8(x_1, x_4, x_2, x_3, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withLetDeclShared_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_alloc_closure((void*)(l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withLetDeclShared_spec__0___redArg___lam__0), 9, 3); +lean_closure_set(x_14, 0, x_4); +lean_closure_set(x_14, 1, x_7); +lean_closure_set(x_14, 2, x_8); +x_15 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp(lean_box(0), x_1, x_2, x_3, x_14, x_5, x_6, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_15) == 0) +{ +return x_15; +} +else +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +return x_15; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_15, 0); +x_18 = lean_ctor_get(x_15, 1); +lean_inc(x_18); +lean_inc(x_17); +lean_dec(x_15); +x_19 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +return x_19; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withLetDeclShared_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t 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) { +_start: +{ +lean_object* x_15; +x_15 = l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withLetDeclShared_spec__0___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Lean_Meta_mkLetFVars(x_1, x_2, x_3, x_3, x_4, x_8, x_9, x_10, x_11, x_12); +return x_13; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__1___closed__0() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(1u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__1(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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_11 = l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__1___closed__0; +x_12 = lean_array_push(x_11, x_1); +x_13 = 1; +x_14 = lean_box(x_2); +x_15 = lean_box(x_13); +x_16 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__0___boxed), 12, 4); +lean_closure_set(x_16, 0, x_12); +lean_closure_set(x_16, 1, x_3); +lean_closure_set(x_16, 2, x_14); +lean_closure_set(x_16, 3, x_15); +x_17 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__2(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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_box(x_1); +lean_inc_ref(x_3); +x_12 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__1___boxed), 10, 2); +lean_closure_set(x_12, 0, x_3); +lean_closure_set(x_12, 1, x_11); +x_13 = lean_box(x_1); +x_14 = lean_apply_10(x_2, x_13, x_3, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_1); +lean_ctor_set(x_9, 1, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; +x_13 = l_Lean_Elab_Tactic_Do_isDuplicable(x_3); +if (x_13 == 0) +{ +uint8_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = 1; +x_15 = lean_box(x_14); +x_16 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__2___boxed), 10, 2); +lean_closure_set(x_16, 0, x_15); +lean_closure_set(x_16, 1, x_4); +x_17 = l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withLetDeclShared_spec__0___redArg(x_1, x_2, x_3, x_16, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_17; +} +else +{ +lean_object* x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; +lean_dec_ref(x_2); +lean_dec(x_1); +x_18 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__3___boxed), 8, 0); +x_19 = 0; +x_20 = lean_box(x_19); +x_21 = lean_apply_10(x_4, x_20, x_3, x_18, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_21; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared(lean_object* x_1, lean_object* x_2, lean_object* 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, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withLetDeclShared_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_unbox(x_5); +x_15 = lean_unbox(x_6); +x_16 = l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withLetDeclShared_spec__0___redArg(x_1, x_2, x_3, x_4, x_14, x_15, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withLetDeclShared_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_15 = lean_unbox(x_6); +x_16 = lean_unbox(x_7); +x_17 = l_Lean_Meta_withLetDecl___at___Lean_Elab_Tactic_Do_withLetDeclShared_spec__0(x_1, x_2, x_3, x_4, x_5, x_15, x_16, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; uint8_t x_14; lean_object* x_15; +x_13 = lean_unbox(x_3); +x_14 = lean_unbox(x_4); +x_15 = l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__0(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_1); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_2); +x_12 = l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__1(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__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) { +_start: +{ +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_1); +x_12 = l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__2(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; lean_object* x_14; +x_13 = lean_unbox(x_5); +x_14 = l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg(x_1, x_2, x_3, x_4, x_13, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; lean_object* x_15; +x_14 = lean_unbox(x_6); +x_15 = l_Lean_Elab_Tactic_Do_withLetDeclShared(x_1, x_2, x_3, x_4, x_5, x_14, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_15; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_isJP___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("__do_jp", 7, 7); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_isJP___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_isJP___closed__0; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Do_isJP(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; uint8_t x_4; +x_2 = lean_erase_macro_scopes(x_1); +x_3 = l_Lean_Elab_Tactic_Do_isJP___closed__1; +x_4 = lean_name_eq(x_2, x_3); +lean_dec(x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_isJP___boxed(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; +x_2 = l_Lean_Elab_Tactic_Do_isJP(x_1); +x_3 = lean_box(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_getNumJoinParams_spec__0___redArg(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; uint8_t x_9; +x_7 = lean_ctor_get(x_4, 5); +x_8 = l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0(x_1, x_2, x_3, x_4, x_5, x_6); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_8, 0); +lean_inc(x_7); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_7); +lean_ctor_set(x_11, 1, x_10); +lean_ctor_set_tag(x_8, 1); +lean_ctor_set(x_8, 0, x_11); +return x_8; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_8, 0); +x_13 = lean_ctor_get(x_8, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_8); +lean_inc(x_7); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_7); +lean_ctor_set(x_14, 1, x_12); +x_15 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +return x_15; +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_getNumJoinParams_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_getNumJoinParams_spec__0___redArg(x_2, x_3, x_4, x_5, x_6, x_7); +return x_8; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_getNumJoinParams___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("getNumJoinParams: residual joinTy not a forall: ", 48, 48); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_getNumJoinParams___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_getNumJoinParams___closed__0; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_getNumJoinParams(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; +x_8 = l_Lean_Expr_isMData(x_1); +if (x_8 == 0) +{ +uint8_t x_9; +x_9 = lean_expr_eqv(x_1, x_2); +if (x_9 == 0) +{ +uint8_t x_10; +x_10 = l_Lean_Expr_isForall(x_1); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_11 = l_Lean_Elab_Tactic_Do_getNumJoinParams___closed__1; +x_12 = l_Lean_MessageData_ofExpr(x_1); +x_13 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_13, 0, x_11); +lean_ctor_set(x_13, 1, x_12); +x_14 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; +x_15 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_15, 0, x_13); +lean_ctor_set(x_15, 1, x_14); +x_16 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_getNumJoinParams_spec__0___redArg(x_15, x_3, x_4, x_5, x_6, x_7); +return x_16; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = l_Lean_Expr_consumeMData(x_1); +lean_dec_ref(x_1); +x_18 = l_Lean_Expr_bindingBody_x21(x_17); +lean_dec_ref(x_17); +x_19 = l_Lean_Elab_Tactic_Do_getNumJoinParams(x_18, x_2, x_3, x_4, x_5, x_6, x_7); +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; +x_21 = lean_ctor_get(x_19, 0); +x_22 = lean_unsigned_to_nat(1u); +x_23 = lean_nat_add(x_22, x_21); +lean_dec(x_21); +lean_ctor_set(x_19, 0, x_23); +return x_19; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_24 = lean_ctor_get(x_19, 0); +x_25 = lean_ctor_get(x_19, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_19); +x_26 = lean_unsigned_to_nat(1u); +x_27 = lean_nat_add(x_26, x_24); +lean_dec(x_24); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_25); +return x_28; +} +} +else +{ +return x_19; +} +} +} +else +{ +lean_object* x_29; lean_object* x_30; +lean_dec_ref(x_1); +x_29 = lean_unsigned_to_nat(0u); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_7); +return x_30; +} +} +else +{ +lean_object* x_31; +x_31 = l_Lean_Expr_consumeMData(x_1); +lean_dec_ref(x_1); +x_1 = x_31; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_getNumJoinParams_spec__0___redArg___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_getNumJoinParams_spec__0___redArg(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_getNumJoinParams_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_getNumJoinParams_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_getNumJoinParams___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Elab_Tactic_Do_getNumJoinParams(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +return x_8; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_reduceProjBeta_x3f_go___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Prod", 4, 4); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_reduceProjBeta_x3f_go(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: +{ +switch (lean_obj_tag(x_2)) { +case 4: +{ +lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_9 = lean_ctor_get(x_2, 0); +lean_inc(x_9); +x_10 = lean_st_ref_get(x_7, x_8); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +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_ref(x_14); +lean_dec(x_12); +x_15 = l_Lean_Environment_getProjectionStructureName_x3f(x_14, x_9); +if (lean_obj_tag(x_15) == 0) +{ +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_ctor_set(x_10, 0, x_1); +return x_10; +} +else +{ +lean_object* x_16; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +lean_dec_ref(x_15); +if (lean_obj_tag(x_16) == 1) +{ +lean_object* x_17; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_18 = lean_ctor_get(x_16, 1); +lean_inc_ref(x_18); +lean_dec_ref(x_16); +x_19 = l_Lean_Elab_Tactic_Do_reduceProjBeta_x3f_go___closed__0; +x_20 = lean_string_dec_eq(x_18, x_19); +lean_dec_ref(x_18); +if (x_20 == 0) +{ +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_ctor_set(x_10, 0, x_1); +return x_10; +} +else +{ +lean_object* x_21; uint8_t x_22; lean_object* x_23; +lean_free_object(x_10); +x_21 = l_Lean_mkAppRev(x_2, x_3); +lean_dec_ref(x_3); +x_22 = 0; +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +x_23 = l_Lean_Meta_unfoldDefinition_x3f(x_21, x_22, x_4, x_5, x_6, x_7, x_13); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +if (lean_obj_tag(x_24) == 0) +{ +uint8_t x_25; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_25 = !lean_is_exclusive(x_23); +if (x_25 == 0) +{ +lean_object* x_26; +x_26 = lean_ctor_get(x_23, 0); +lean_dec(x_26); +lean_ctor_set(x_23, 0, x_1); +return x_23; +} +else +{ +lean_object* x_27; lean_object* x_28; +x_27 = lean_ctor_get(x_23, 1); +lean_inc(x_27); +lean_dec(x_23); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_1); +lean_ctor_set(x_28, 1, x_27); +return x_28; +} +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_29 = lean_ctor_get(x_23, 1); +lean_inc(x_29); +lean_dec_ref(x_23); +x_30 = lean_ctor_get(x_24, 0); +lean_inc(x_30); +lean_dec_ref(x_24); +x_31 = l_Lean_Expr_getAppFn(x_30); +x_32 = l_Lean_Expr_getAppNumArgs(x_30); +x_33 = lean_mk_empty_array_with_capacity(x_32); +lean_dec(x_32); +x_34 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_30, x_33); +x_2 = x_31; +x_3 = x_34; +x_8 = x_29; +goto _start; +} +} +else +{ +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_1); +return x_23; +} +} +} +else +{ +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_ctor_set(x_10, 0, x_1); +return x_10; +} +} +else +{ +lean_dec(x_16); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_ctor_set(x_10, 0, x_1); +return x_10; +} +} +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_36 = lean_ctor_get(x_10, 0); +x_37 = lean_ctor_get(x_10, 1); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_10); +x_38 = lean_ctor_get(x_36, 0); +lean_inc_ref(x_38); +lean_dec(x_36); +x_39 = l_Lean_Environment_getProjectionStructureName_x3f(x_38, x_9); +if (lean_obj_tag(x_39) == 0) +{ +lean_object* x_40; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_1); +lean_ctor_set(x_40, 1, x_37); +return x_40; +} +else +{ +lean_object* x_41; +x_41 = lean_ctor_get(x_39, 0); +lean_inc(x_41); +lean_dec_ref(x_39); +if (lean_obj_tag(x_41) == 1) +{ +lean_object* x_42; +x_42 = lean_ctor_get(x_41, 0); +lean_inc(x_42); +if (lean_obj_tag(x_42) == 0) +{ +lean_object* x_43; lean_object* x_44; uint8_t x_45; +x_43 = lean_ctor_get(x_41, 1); +lean_inc_ref(x_43); +lean_dec_ref(x_41); +x_44 = l_Lean_Elab_Tactic_Do_reduceProjBeta_x3f_go___closed__0; +x_45 = lean_string_dec_eq(x_43, x_44); +lean_dec_ref(x_43); +if (x_45 == 0) +{ +lean_object* x_46; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_1); +lean_ctor_set(x_46, 1, x_37); +return x_46; +} +else +{ +lean_object* x_47; uint8_t x_48; lean_object* x_49; +x_47 = l_Lean_mkAppRev(x_2, x_3); +lean_dec_ref(x_3); +x_48 = 0; +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +x_49 = l_Lean_Meta_unfoldDefinition_x3f(x_47, x_48, x_4, x_5, x_6, x_7, x_37); +if (lean_obj_tag(x_49) == 0) +{ +lean_object* x_50; +x_50 = lean_ctor_get(x_49, 0); +lean_inc(x_50); +if (lean_obj_tag(x_50) == 0) +{ +lean_object* x_51; lean_object* x_52; lean_object* x_53; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_51 = lean_ctor_get(x_49, 1); +lean_inc(x_51); +if (lean_is_exclusive(x_49)) { + lean_ctor_release(x_49, 0); + lean_ctor_release(x_49, 1); + x_52 = x_49; +} else { + lean_dec_ref(x_49); + x_52 = lean_box(0); +} +if (lean_is_scalar(x_52)) { + x_53 = lean_alloc_ctor(0, 2, 0); +} else { + x_53 = x_52; +} +lean_ctor_set(x_53, 0, x_1); +lean_ctor_set(x_53, 1, x_51); +return x_53; +} +else +{ +lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_54 = lean_ctor_get(x_49, 1); +lean_inc(x_54); +lean_dec_ref(x_49); +x_55 = lean_ctor_get(x_50, 0); +lean_inc(x_55); +lean_dec_ref(x_50); +x_56 = l_Lean_Expr_getAppFn(x_55); +x_57 = l_Lean_Expr_getAppNumArgs(x_55); +x_58 = lean_mk_empty_array_with_capacity(x_57); +lean_dec(x_57); +x_59 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_55, x_58); +x_2 = x_56; +x_3 = x_59; +x_8 = x_54; +goto _start; +} +} +else +{ +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_1); +return x_49; +} +} +} +else +{ +lean_object* x_61; +lean_dec(x_42); +lean_dec_ref(x_41); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_1); +lean_ctor_set(x_61, 1, x_37); +return x_61; +} +} +else +{ +lean_object* x_62; +lean_dec(x_41); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_62 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_62, 0, x_1); +lean_ctor_set(x_62, 1, x_37); +return x_62; +} +} +} +} +case 5: +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_2, 0); +lean_inc_ref(x_63); +x_64 = lean_ctor_get(x_2, 1); +lean_inc_ref(x_64); +lean_dec_ref(x_2); +x_65 = lean_array_push(x_3, x_64); +x_2 = x_63; +x_3 = x_65; +goto _start; +} +case 6: +{ +lean_object* x_67; lean_object* x_68; uint8_t x_69; +x_67 = lean_array_get_size(x_3); +x_68 = lean_unsigned_to_nat(0u); +x_69 = lean_nat_dec_eq(x_67, x_68); +lean_dec(x_67); +if (x_69 == 0) +{ +lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; +lean_dec(x_1); +x_70 = l_Lean_Expr_betaRev(x_2, x_3, x_69, x_69); +lean_dec_ref(x_3); +lean_inc_ref(x_70); +x_71 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_71, 0, x_70); +x_72 = l_Lean_Expr_getAppFn(x_70); +x_73 = l_Lean_Expr_getAppNumArgs(x_70); +x_74 = lean_mk_empty_array_with_capacity(x_73); +lean_dec(x_73); +x_75 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_70, x_74); +x_1 = x_71; +x_2 = x_72; +x_3 = x_75; +goto _start; +} +else +{ +lean_object* x_77; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_77 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_77, 0, x_1); +lean_ctor_set(x_77, 1, x_8); +return x_77; +} +} +case 10: +{ +lean_object* x_78; +x_78 = lean_ctor_get(x_2, 1); +lean_inc_ref(x_78); +lean_dec_ref(x_2); +x_2 = x_78; +goto _start; +} +case 11: +{ +lean_object* x_80; +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +x_80 = l_Lean_Meta_reduceProj_x3f(x_2, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_80) == 0) +{ +lean_object* x_81; +x_81 = lean_ctor_get(x_80, 0); +lean_inc(x_81); +if (lean_obj_tag(x_81) == 0) +{ +uint8_t x_82; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_82 = !lean_is_exclusive(x_80); +if (x_82 == 0) +{ +lean_object* x_83; +x_83 = lean_ctor_get(x_80, 0); +lean_dec(x_83); +lean_ctor_set(x_80, 0, x_1); +return x_80; +} +else +{ +lean_object* x_84; lean_object* x_85; +x_84 = lean_ctor_get(x_80, 1); +lean_inc(x_84); +lean_dec(x_80); +x_85 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_85, 0, x_1); +lean_ctor_set(x_85, 1, x_84); +return x_85; +} +} +else +{ +lean_object* x_86; uint8_t x_87; +lean_dec(x_1); +x_86 = lean_ctor_get(x_80, 1); +lean_inc(x_86); +lean_dec_ref(x_80); +x_87 = !lean_is_exclusive(x_81); +if (x_87 == 0) +{ +lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_88 = lean_ctor_get(x_81, 0); +x_89 = l_Lean_mkAppRev(x_88, x_3); +lean_dec_ref(x_3); +lean_inc_ref(x_89); +lean_ctor_set(x_81, 0, x_89); +x_90 = l_Lean_Expr_getAppFn(x_89); +x_91 = l_Lean_Expr_getAppNumArgs(x_89); +x_92 = lean_mk_empty_array_with_capacity(x_91); +lean_dec(x_91); +x_93 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_89, x_92); +x_1 = x_81; +x_2 = x_90; +x_3 = x_93; +x_8 = x_86; +goto _start; +} +else +{ +lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; +x_95 = lean_ctor_get(x_81, 0); +lean_inc(x_95); +lean_dec(x_81); +x_96 = l_Lean_mkAppRev(x_95, x_3); +lean_dec_ref(x_3); +lean_inc_ref(x_96); +x_97 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_97, 0, x_96); +x_98 = l_Lean_Expr_getAppFn(x_96); +x_99 = l_Lean_Expr_getAppNumArgs(x_96); +x_100 = lean_mk_empty_array_with_capacity(x_99); +lean_dec(x_99); +x_101 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_96, x_100); +x_1 = x_97; +x_2 = x_98; +x_3 = x_101; +x_8 = x_86; +goto _start; +} +} +} +else +{ +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +return x_80; +} +} +default: +{ +lean_object* x_103; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_103 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_103, 0, x_1); +lean_ctor_set(x_103, 1, x_8); +return x_103; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_reduceProjBeta_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_7 = lean_box(0); +x_8 = l_Lean_Expr_getAppFn(x_1); +x_9 = l_Lean_Expr_getAppNumArgs(x_1); +x_10 = lean_mk_empty_array_with_capacity(x_9); +lean_dec(x_9); +x_11 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_1, x_10); +x_12 = l_Lean_Elab_Tactic_Do_reduceProjBeta_x3f_go(x_7, x_8, x_11, x_2, x_3, x_4, x_5, x_6); +return x_12; +} +} +static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Elab_unsupportedSyntaxExceptionId; +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__0; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__1; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg(x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg(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; uint8_t x_9; +x_7 = lean_ctor_get(x_4, 5); +x_8 = l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0(x_1, x_2, x_3, x_4, x_5, x_6); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_8, 0); +lean_inc(x_7); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_7); +lean_ctor_set(x_11, 1, x_10); +lean_ctor_set_tag(x_8, 1); +lean_ctor_set(x_8, 0, x_11); +return x_8; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_8, 0); +x_13 = lean_ctor_get(x_8, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_8); +lean_inc(x_7); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_7); +lean_ctor_set(x_14, 1, x_12); +x_15 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +return x_15; +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg(x_2, x_7, x_8, x_9, x_10, x_11); +return x_12; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_unknownIdentifierMessageTag; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0___closed__0; +x_13 = lean_alloc_ctor(8, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_11); +return x_14; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0; +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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0; +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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0; +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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0; +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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0; +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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0; +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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__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; lean_object* x_7; lean_object* x_8; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__6; +x_2 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__5; +x_3 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__4; +x_4 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__3; +x_5 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__2; +x_6 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__1; +x_7 = lean_unsigned_to_nat(0u); +x_8 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_8, 0, x_7); +lean_ctor_set(x_8, 1, x_7); +lean_ctor_set(x_8, 2, x_7); +lean_ctor_set(x_8, 3, x_6); +lean_ctor_set(x_8, 4, x_5); +lean_ctor_set(x_8, 5, x_4); +lean_ctor_set(x_8, 6, x_3); +lean_ctor_set(x_8, 7, x_2); +lean_ctor_set(x_8, 8, x_1); +return x_8; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0; +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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(32u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__9; +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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__11() { +_start: +{ +size_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = 5; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__9; +x_4 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__10; +x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +lean_ctor_set(x_5, 2, x_2); +lean_ctor_set(x_5, 3, x_2); +lean_ctor_set_usize(x_5, 4, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = lean_box(1); +x_2 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__11; +x_3 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__8; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_1); +return x_4; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__13() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("A private declaration `", 23, 23); +return x_1; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__13; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__15() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("` exists but is not accessible in the current context.", 54, 54); +return x_1; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__15; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_st_ref_get(x_10, x_11); +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_20; +x_14 = lean_ctor_get(x_12, 0); +x_15 = lean_ctor_get(x_12, 1); +x_16 = lean_ctor_get(x_14, 0); +lean_inc_ref(x_16); +lean_dec(x_14); +x_20 = l_Lean_Name_isAnonymous(x_2); +if (x_20 == 0) +{ +uint8_t x_21; +x_21 = lean_ctor_get_uint8(x_16, sizeof(void*)*8); +if (x_21 == 0) +{ +lean_dec_ref(x_16); +lean_free_object(x_12); +lean_dec(x_2); +goto block_19; +} +else +{ +lean_object* x_22; uint8_t x_23; +x_22 = l_Lean_Environment_setExporting(x_16, x_20); +lean_inc(x_2); +lean_inc_ref(x_22); +x_23 = l_Lean_Environment_contains(x_22, x_2, x_21); +if (x_23 == 0) +{ +lean_dec_ref(x_22); +lean_free_object(x_12); +lean_dec(x_2); +goto block_19; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_24 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__7; +x_25 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__12; +x_26 = lean_box(0); +x_27 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_27, 0, x_22); +lean_ctor_set(x_27, 1, x_24); +lean_ctor_set(x_27, 2, x_25); +lean_ctor_set(x_27, 3, x_26); +x_28 = l_Lean_MessageData_ofConstName(x_2, x_20); +lean_ctor_set_tag(x_12, 3); +lean_ctor_set(x_12, 1, x_28); +lean_ctor_set(x_12, 0, x_27); +x_29 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__14; +x_30 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_12); +x_31 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__16; +x_32 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +x_33 = l_Lean_MessageData_note(x_32); +x_34 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_34, 0, x_1); +lean_ctor_set(x_34, 1, x_33); +x_35 = lean_box(0); +x_36 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0(x_34, x_35, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_15); +return x_36; +} +} +} +else +{ +lean_dec_ref(x_16); +lean_free_object(x_12); +lean_dec(x_2); +goto block_19; +} +block_19: +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_box(0); +x_18 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_15); +return x_18; +} +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_43; +x_37 = lean_ctor_get(x_12, 0); +x_38 = lean_ctor_get(x_12, 1); +lean_inc(x_38); +lean_inc(x_37); +lean_dec(x_12); +x_39 = lean_ctor_get(x_37, 0); +lean_inc_ref(x_39); +lean_dec(x_37); +x_43 = l_Lean_Name_isAnonymous(x_2); +if (x_43 == 0) +{ +uint8_t x_44; +x_44 = lean_ctor_get_uint8(x_39, sizeof(void*)*8); +if (x_44 == 0) +{ +lean_dec_ref(x_39); +lean_dec(x_2); +goto block_42; +} +else +{ +lean_object* x_45; uint8_t x_46; +x_45 = l_Lean_Environment_setExporting(x_39, x_43); +lean_inc(x_2); +lean_inc_ref(x_45); +x_46 = l_Lean_Environment_contains(x_45, x_2, x_44); +if (x_46 == 0) +{ +lean_dec_ref(x_45); +lean_dec(x_2); +goto block_42; +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_47 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__7; +x_48 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__12; +x_49 = lean_box(0); +x_50 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_50, 0, x_45); +lean_ctor_set(x_50, 1, x_47); +lean_ctor_set(x_50, 2, x_48); +lean_ctor_set(x_50, 3, x_49); +x_51 = l_Lean_MessageData_ofConstName(x_2, x_43); +x_52 = lean_alloc_ctor(3, 2, 0); +lean_ctor_set(x_52, 0, x_50); +lean_ctor_set(x_52, 1, x_51); +x_53 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__14; +x_54 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_54, 0, x_53); +lean_ctor_set(x_54, 1, x_52); +x_55 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__16; +x_56 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set(x_56, 1, x_55); +x_57 = l_Lean_MessageData_note(x_56); +x_58 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_58, 0, x_1); +lean_ctor_set(x_58, 1, x_57); +x_59 = lean_box(0); +x_60 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0(x_58, x_59, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_38); +return x_60; +} +} +} +else +{ +lean_dec_ref(x_39); +lean_dec(x_2); +goto block_42; +} +block_42: +{ +lean_object* x_40; lean_object* x_41; +x_40 = lean_box(0); +x_41 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0(x_1, x_40, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_38); +return x_41; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3___redArg(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; +x_12 = !lean_is_exclusive(x_9); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_9, 5); +x_14 = l_Lean_replaceRef(x_1, x_13); +lean_dec(x_13); +lean_ctor_set(x_9, 5, x_14); +x_15 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg(x_2, x_7, x_8, x_9, x_10, x_11); +lean_dec_ref(x_9); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t 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; +x_16 = lean_ctor_get(x_9, 0); +x_17 = lean_ctor_get(x_9, 1); +x_18 = lean_ctor_get(x_9, 2); +x_19 = lean_ctor_get(x_9, 3); +x_20 = lean_ctor_get(x_9, 4); +x_21 = lean_ctor_get(x_9, 5); +x_22 = lean_ctor_get(x_9, 6); +x_23 = lean_ctor_get(x_9, 7); +x_24 = lean_ctor_get(x_9, 8); +x_25 = lean_ctor_get(x_9, 9); +x_26 = lean_ctor_get(x_9, 10); +x_27 = lean_ctor_get_uint8(x_9, sizeof(void*)*13); +x_28 = lean_ctor_get(x_9, 11); +x_29 = lean_ctor_get_uint8(x_9, sizeof(void*)*13 + 1); +x_30 = lean_ctor_get(x_9, 12); +lean_inc(x_30); +lean_inc(x_28); +lean_inc(x_26); +lean_inc(x_25); +lean_inc(x_24); +lean_inc(x_23); +lean_inc(x_22); +lean_inc(x_21); +lean_inc(x_20); +lean_inc(x_19); +lean_inc(x_18); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_9); +x_31 = l_Lean_replaceRef(x_1, x_21); +lean_dec(x_21); +x_32 = lean_alloc_ctor(0, 13, 2); +lean_ctor_set(x_32, 0, x_16); +lean_ctor_set(x_32, 1, x_17); +lean_ctor_set(x_32, 2, x_18); +lean_ctor_set(x_32, 3, x_19); +lean_ctor_set(x_32, 4, x_20); +lean_ctor_set(x_32, 5, x_31); +lean_ctor_set(x_32, 6, x_22); +lean_ctor_set(x_32, 7, x_23); +lean_ctor_set(x_32, 8, x_24); +lean_ctor_set(x_32, 9, x_25); +lean_ctor_set(x_32, 10, x_26); +lean_ctor_set(x_32, 11, x_28); +lean_ctor_set(x_32, 12, x_30); +lean_ctor_set_uint8(x_32, sizeof(void*)*13, x_27); +lean_ctor_set_uint8(x_32, sizeof(void*)*13 + 1, x_29); +x_33 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg(x_2, x_7, x_8, x_32, x_10, x_11); +lean_dec_ref(x_32); +return x_33; +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_13 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_13, 1); +lean_inc(x_15); +lean_dec_ref(x_13); +x_16 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3___redArg(x_1, x_14, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_15); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_14; +} +} +static lean_object* _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Unknown constant `", 18, 18); +return x_1; +} +} +static lean_object* _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__0; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("`", 1, 1); +return x_1; +} +} +static lean_object* _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__2; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_12 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__1; +x_13 = 0; +lean_inc(x_2); +x_14 = l_Lean_MessageData_ofConstName(x_2, x_13); +x_15 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_15, 0, x_12); +lean_ctor_set(x_15, 1, x_14); +x_16 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__3; +x_17 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +x_18 = l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2___redArg(x_1, x_17, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_18; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_8, 5); +lean_inc(x_11); +x_12 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg(x_11, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_11); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; uint8_t x_12; +x_11 = lean_st_ref_get(x_9, x_10); +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; +x_13 = lean_ctor_get(x_11, 0); +x_14 = lean_ctor_get(x_11, 1); +x_15 = lean_ctor_get(x_13, 0); +lean_inc_ref(x_15); +lean_dec(x_13); +x_16 = 0; +lean_inc(x_1); +x_17 = l_Lean_Environment_find_x3f(x_15, x_1, x_16); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; +lean_free_object(x_11); +x_18 = l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_14); +return x_18; +} +else +{ +lean_object* x_19; +lean_dec_ref(x_8); +lean_dec(x_1); +x_19 = lean_ctor_get(x_17, 0); +lean_inc(x_19); +lean_dec_ref(x_17); +lean_ctor_set(x_11, 0, x_19); +return x_11; +} +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_24; +x_20 = lean_ctor_get(x_11, 0); +x_21 = lean_ctor_get(x_11, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_11); +x_22 = lean_ctor_get(x_20, 0); +lean_inc_ref(x_22); +lean_dec(x_20); +x_23 = 0; +lean_inc(x_1); +x_24 = l_Lean_Environment_find_x3f(x_22, x_1, x_23); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; +x_25 = l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_21); +return x_25; +} +else +{ +lean_object* x_26; lean_object* x_27; +lean_dec_ref(x_8); +lean_dec(x_1); +x_26 = lean_ctor_get(x_24, 0); +lean_inc(x_26); +lean_dec_ref(x_24); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_21); +return x_27; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_13 = lean_ctor_get(x_3, 2); +lean_inc_ref(x_13); +lean_dec_ref(x_3); +x_14 = l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore(x_2, x_13); +x_15 = lean_box(0); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_1); +lean_ctor_set(x_16, 1, x_14); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_12); +return x_18; +} +} +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Parser", 6, 6); +return x_1; +} +} +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("simpErase", 9, 9); +return x_1; +} +} +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__1; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; +x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("simpLemma", 9, 9); +return x_1; +} +} +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__3; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; +x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("simpStar", 8, 8); +return x_1; +} +} +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__5; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; +x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Could not resolve ", 18, 18); +return x_1; +} +} +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__7; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("term", 4, 4); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8(lean_object* x_1, lean_object* x_2, size_t x_3, size_t 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) { +_start: +{ +lean_object* x_15; lean_object* x_16; uint8_t x_21; +x_21 = lean_usize_dec_lt(x_4, x_3); +if (x_21 == 0) +{ +lean_object* x_22; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_5); +lean_ctor_set(x_22, 1, x_14); +return x_22; +} +else +{ +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_35; lean_object* x_36; lean_object* x_37; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_47; lean_object* x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; lean_object* x_78; lean_object* x_79; uint8_t x_80; +x_23 = lean_ctor_get(x_5, 1); +lean_inc(x_23); +x_24 = lean_ctor_get(x_5, 0); +lean_inc(x_24); +if (lean_is_exclusive(x_5)) { + lean_ctor_release(x_5, 0); + lean_ctor_release(x_5, 1); + x_25 = x_5; +} else { + lean_dec_ref(x_5); + x_25 = lean_box(0); +} +x_26 = lean_ctor_get(x_23, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_23, 1); +lean_inc(x_27); +if (lean_is_exclusive(x_23)) { + lean_ctor_release(x_23, 0); + lean_ctor_release(x_23, 1); + x_28 = x_23; +} else { + lean_dec_ref(x_23); + x_28 = lean_box(0); +} +x_47 = lean_array_uget(x_2, x_4); +lean_inc(x_47); +x_78 = l_Lean_Syntax_getKind(x_47); +x_79 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__2; +x_80 = lean_name_eq(x_78, x_79); +if (x_80 == 0) +{ +lean_object* x_81; uint8_t x_82; +x_81 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__4; +x_82 = lean_name_eq(x_78, x_81); +if (x_82 == 0) +{ +lean_object* x_83; uint8_t x_84; +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_25); +x_83 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__6; +x_84 = lean_name_eq(x_78, x_83); +lean_dec(x_78); +if (x_84 == 0) +{ +lean_object* x_85; uint8_t x_86; +lean_dec(x_47); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_85 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg(x_14); +x_86 = !lean_is_exclusive(x_85); +if (x_86 == 0) +{ +return x_85; +} +else +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_87 = lean_ctor_get(x_85, 0); +x_88 = lean_ctor_get(x_85, 1); +lean_inc(x_88); +lean_inc(x_87); +lean_dec(x_85); +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_87); +lean_ctor_set(x_89, 1, x_88); +return x_89; +} +} +else +{ +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_90 = lean_array_push(x_24, x_47); +x_91 = lean_box(x_21); +x_92 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_92, 0, x_26); +lean_ctor_set(x_92, 1, x_91); +x_93 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_93, 0, x_90); +lean_ctor_set(x_93, 1, x_92); +x_15 = x_93; +x_16 = x_14; +goto block_20; +} +} +else +{ +lean_object* x_94; lean_object* x_95; uint8_t x_96; +lean_dec(x_78); +x_94 = lean_unsigned_to_nat(0u); +x_95 = l_Lean_Syntax_getArg(x_47, x_94); +x_96 = l_Lean_Syntax_isNone(x_95); +lean_dec(x_95); +if (x_96 == 0) +{ +lean_dec(x_28); +lean_dec(x_25); +goto block_51; +} +else +{ +lean_object* x_97; uint8_t x_98; +x_97 = l_Lean_Syntax_getArg(x_47, x_1); +x_98 = l_Lean_Syntax_isNone(x_97); +lean_dec(x_97); +if (x_98 == 0) +{ +lean_dec(x_28); +lean_dec(x_25); +goto block_51; +} +else +{ +lean_object* x_99; +x_99 = l_Lean_Meta_saveState___redArg(x_11, x_13, x_14); +if (lean_obj_tag(x_99) == 0) +{ +lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_152; lean_object* x_210; lean_object* x_211; +x_100 = lean_ctor_get(x_99, 0); +lean_inc(x_100); +x_101 = lean_ctor_get(x_99, 1); +lean_inc(x_101); +lean_dec_ref(x_99); +x_102 = lean_unsigned_to_nat(2u); +x_103 = l_Lean_Syntax_getArg(x_47, x_102); +x_210 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__9; +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_103); +x_211 = l_Lean_Elab_Term_resolveId_x3f(x_103, x_210, x_21, x_8, x_9, x_10, x_11, x_12, x_13, x_101); +if (lean_obj_tag(x_211) == 0) +{ +lean_dec(x_100); +x_152 = x_211; +goto block_209; +} +else +{ +lean_object* x_212; lean_object* x_213; uint8_t x_214; uint8_t x_223; +x_212 = lean_ctor_get(x_211, 0); +lean_inc(x_212); +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_223 = l_Lean_Exception_isInterrupt(x_212); +if (x_223 == 0) +{ +uint8_t x_224; +x_224 = l_Lean_Exception_isRuntime(x_212); +lean_dec(x_212); +x_214 = x_224; +goto block_222; +} +else +{ +lean_dec(x_212); +x_214 = x_223; +goto block_222; +} +block_222: +{ +if (x_214 == 0) +{ +lean_object* x_215; +lean_dec_ref(x_211); +x_215 = l_Lean_Meta_SavedState_restore___redArg(x_100, x_11, x_13, x_213); +lean_dec(x_100); +if (lean_obj_tag(x_215) == 0) +{ +lean_object* x_216; lean_object* x_217; +x_216 = lean_ctor_get(x_215, 1); +lean_inc(x_216); +lean_dec_ref(x_215); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_103); +x_217 = l_Lean_Elab_Term_elabCDotFunctionAlias_x3f(x_103, x_8, x_9, x_10, x_11, x_12, x_13, x_216); +x_152 = x_217; +goto block_209; +} +else +{ +uint8_t x_218; +lean_dec(x_103); +lean_dec(x_47); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_218 = !lean_is_exclusive(x_215); +if (x_218 == 0) +{ +return x_215; +} +else +{ +lean_object* x_219; lean_object* x_220; lean_object* x_221; +x_219 = lean_ctor_get(x_215, 0); +x_220 = lean_ctor_get(x_215, 1); +lean_inc(x_220); +lean_inc(x_219); +lean_dec(x_215); +x_221 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_221, 0, x_219); +lean_ctor_set(x_221, 1, x_220); +return x_221; +} +} +} +else +{ +lean_dec(x_213); +lean_dec(x_100); +x_152 = x_211; +goto block_209; +} +} +} +block_151: +{ +uint8_t x_109; +x_109 = !lean_is_exclusive(x_106); +if (x_109 == 0) +{ +lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; uint8_t x_119; +x_110 = lean_ctor_get(x_106, 5); +x_111 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__8; +lean_inc(x_103); +x_112 = l_Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2093_(x_103, x_94); +x_113 = l_Lean_MessageData_ofFormat(x_112); +x_114 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_114, 0, x_111); +lean_ctor_set(x_114, 1, x_113); +x_115 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; +x_116 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_116, 0, x_114); +lean_ctor_set(x_116, 1, x_115); +x_117 = l_Lean_replaceRef(x_103, x_110); +lean_dec(x_110); +lean_dec(x_103); +lean_ctor_set(x_106, 5, x_117); +x_118 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg(x_116, x_104, x_105, x_106, x_107, x_108); +lean_dec(x_107); +lean_dec_ref(x_106); +lean_dec(x_105); +lean_dec_ref(x_104); +x_119 = !lean_is_exclusive(x_118); +if (x_119 == 0) +{ +return x_118; +} +else +{ +lean_object* x_120; lean_object* x_121; lean_object* x_122; +x_120 = lean_ctor_get(x_118, 0); +x_121 = lean_ctor_get(x_118, 1); +lean_inc(x_121); +lean_inc(x_120); +lean_dec(x_118); +x_122 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_122, 0, x_120); +lean_ctor_set(x_122, 1, x_121); +return x_122; +} +} +else +{ +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; uint8_t x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; +x_123 = lean_ctor_get(x_106, 0); +x_124 = lean_ctor_get(x_106, 1); +x_125 = lean_ctor_get(x_106, 2); +x_126 = lean_ctor_get(x_106, 3); +x_127 = lean_ctor_get(x_106, 4); +x_128 = lean_ctor_get(x_106, 5); +x_129 = lean_ctor_get(x_106, 6); +x_130 = lean_ctor_get(x_106, 7); +x_131 = lean_ctor_get(x_106, 8); +x_132 = lean_ctor_get(x_106, 9); +x_133 = lean_ctor_get(x_106, 10); +x_134 = lean_ctor_get_uint8(x_106, sizeof(void*)*13); +x_135 = lean_ctor_get(x_106, 11); +x_136 = lean_ctor_get_uint8(x_106, sizeof(void*)*13 + 1); +x_137 = lean_ctor_get(x_106, 12); +lean_inc(x_137); +lean_inc(x_135); +lean_inc(x_133); +lean_inc(x_132); +lean_inc(x_131); +lean_inc(x_130); +lean_inc(x_129); +lean_inc(x_128); +lean_inc(x_127); +lean_inc(x_126); +lean_inc(x_125); +lean_inc(x_124); +lean_inc(x_123); +lean_dec(x_106); +x_138 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__8; +lean_inc(x_103); +x_139 = l_Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2093_(x_103, x_94); +x_140 = l_Lean_MessageData_ofFormat(x_139); +x_141 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_141, 0, x_138); +lean_ctor_set(x_141, 1, x_140); +x_142 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; +x_143 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_143, 0, x_141); +lean_ctor_set(x_143, 1, x_142); +x_144 = l_Lean_replaceRef(x_103, x_128); +lean_dec(x_128); +lean_dec(x_103); +x_145 = lean_alloc_ctor(0, 13, 2); +lean_ctor_set(x_145, 0, x_123); +lean_ctor_set(x_145, 1, x_124); +lean_ctor_set(x_145, 2, x_125); +lean_ctor_set(x_145, 3, x_126); +lean_ctor_set(x_145, 4, x_127); +lean_ctor_set(x_145, 5, x_144); +lean_ctor_set(x_145, 6, x_129); +lean_ctor_set(x_145, 7, x_130); +lean_ctor_set(x_145, 8, x_131); +lean_ctor_set(x_145, 9, x_132); +lean_ctor_set(x_145, 10, x_133); +lean_ctor_set(x_145, 11, x_135); +lean_ctor_set(x_145, 12, x_137); +lean_ctor_set_uint8(x_145, sizeof(void*)*13, x_134); +lean_ctor_set_uint8(x_145, sizeof(void*)*13 + 1, x_136); +x_146 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg(x_143, x_104, x_105, x_145, x_107, x_108); +lean_dec(x_107); +lean_dec_ref(x_145); +lean_dec(x_105); +lean_dec_ref(x_104); +x_147 = lean_ctor_get(x_146, 0); +lean_inc(x_147); +x_148 = lean_ctor_get(x_146, 1); +lean_inc(x_148); +if (lean_is_exclusive(x_146)) { + lean_ctor_release(x_146, 0); + lean_ctor_release(x_146, 1); + x_149 = x_146; +} else { + lean_dec_ref(x_146); + x_149 = lean_box(0); +} +if (lean_is_scalar(x_149)) { + x_150 = lean_alloc_ctor(1, 2, 0); +} else { + x_150 = x_149; +} +lean_ctor_set(x_150, 0, x_147); +lean_ctor_set(x_150, 1, x_148); +return x_150; +} +} +block_209: +{ +if (lean_obj_tag(x_152) == 0) +{ +lean_object* x_153; +x_153 = lean_ctor_get(x_152, 0); +lean_inc(x_153); +if (lean_obj_tag(x_153) == 0) +{ +lean_object* x_154; +lean_dec(x_47); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_9); +lean_dec_ref(x_8); +x_154 = lean_ctor_get(x_152, 1); +lean_inc(x_154); +lean_dec_ref(x_152); +x_104 = x_10; +x_105 = x_11; +x_106 = x_12; +x_107 = x_13; +x_108 = x_154; +goto block_151; +} +else +{ +lean_object* x_155; +x_155 = lean_ctor_get(x_153, 0); +lean_inc(x_155); +lean_dec_ref(x_153); +switch (lean_obj_tag(x_155)) { +case 1: +{ +lean_object* x_156; lean_object* x_157; lean_object* x_158; +lean_dec(x_103); +lean_dec(x_28); +lean_dec(x_25); +x_156 = lean_ctor_get(x_152, 1); +lean_inc(x_156); +lean_dec_ref(x_152); +x_157 = lean_ctor_get(x_155, 0); +lean_inc(x_157); +lean_inc_ref(x_10); +x_158 = l_Lean_Meta_getFVarLocalDecl___redArg(x_155, x_10, x_12, x_13, x_156); +lean_dec_ref(x_155); +if (lean_obj_tag(x_158) == 0) +{ +lean_object* x_159; lean_object* x_160; +x_159 = lean_ctor_get(x_158, 1); +lean_inc(x_159); +lean_dec_ref(x_158); +x_160 = l_Lean_Elab_Tactic_saveState___redArg(x_7, x_9, x_11, x_13, x_159); +if (lean_obj_tag(x_160) == 0) +{ +lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; +x_161 = lean_ctor_get(x_160, 0); +lean_inc(x_161); +x_162 = lean_ctor_get(x_160, 1); +lean_inc(x_162); +lean_dec_ref(x_160); +x_163 = lean_unsigned_to_nat(1000u); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_164 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal(x_157, x_163, x_10, x_11, x_12, x_13, x_162); +if (lean_obj_tag(x_164) == 0) +{ +lean_object* x_165; lean_object* x_166; lean_object* x_167; +lean_dec(x_161); +lean_dec(x_47); +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_ref(x_164); +x_167 = l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry(x_26, x_165); +x_35 = x_24; +x_36 = x_167; +x_37 = x_166; +goto block_40; +} +else +{ +lean_object* x_168; lean_object* x_169; uint8_t x_170; +x_168 = lean_ctor_get(x_164, 0); +lean_inc(x_168); +x_169 = lean_ctor_get(x_164, 1); +lean_inc(x_169); +lean_dec_ref(x_164); +x_170 = l_Lean_Exception_isInterrupt(x_168); +if (x_170 == 0) +{ +uint8_t x_171; +x_171 = l_Lean_Exception_isRuntime(x_168); +x_52 = x_161; +x_53 = x_169; +x_54 = x_168; +x_55 = x_171; +goto block_64; +} +else +{ +x_52 = x_161; +x_53 = x_169; +x_54 = x_168; +x_55 = x_170; +goto block_64; +} +} +} +else +{ +uint8_t x_172; +lean_dec(x_157); +lean_dec(x_47); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_172 = !lean_is_exclusive(x_160); +if (x_172 == 0) +{ +return x_160; +} +else +{ +lean_object* x_173; lean_object* x_174; lean_object* x_175; +x_173 = lean_ctor_get(x_160, 0); +x_174 = lean_ctor_get(x_160, 1); +lean_inc(x_174); +lean_inc(x_173); +lean_dec(x_160); +x_175 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_175, 0, x_173); +lean_ctor_set(x_175, 1, x_174); +return x_175; +} +} +} +else +{ +uint8_t x_176; +lean_dec(x_157); +lean_dec(x_47); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_176 = !lean_is_exclusive(x_158); +if (x_176 == 0) +{ +return x_158; +} +else +{ +lean_object* x_177; lean_object* x_178; lean_object* x_179; +x_177 = lean_ctor_get(x_158, 0); +x_178 = lean_ctor_get(x_158, 1); +lean_inc(x_178); +lean_inc(x_177); +lean_dec(x_158); +x_179 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_179, 0, x_177); +lean_ctor_set(x_179, 1, x_178); +return x_179; +} +} +} +case 4: +{ +lean_object* x_180; lean_object* x_181; lean_object* x_182; +lean_dec(x_103); +x_180 = lean_ctor_get(x_152, 1); +lean_inc(x_180); +lean_dec_ref(x_152); +x_181 = lean_ctor_get(x_155, 0); +lean_inc(x_181); +lean_dec_ref(x_155); +lean_inc_ref(x_12); +lean_inc(x_181); +x_182 = l_Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2(x_181, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_180); +if (lean_obj_tag(x_182) == 0) +{ +lean_object* x_183; lean_object* x_184; +x_183 = lean_ctor_get(x_182, 1); +lean_inc(x_183); +lean_dec_ref(x_182); +x_184 = l_Lean_Elab_Tactic_saveState___redArg(x_7, x_9, x_11, x_13, x_183); +if (lean_obj_tag(x_184) == 0) +{ +lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; +x_185 = lean_ctor_get(x_184, 0); +lean_inc(x_185); +x_186 = lean_ctor_get(x_184, 1); +lean_inc(x_186); +lean_dec_ref(x_184); +x_187 = lean_unsigned_to_nat(1000u); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_188 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromConst(x_181, x_187, x_10, x_11, x_12, x_13, x_186); +if (lean_obj_tag(x_188) == 0) +{ +lean_object* x_189; lean_object* x_190; lean_object* x_191; +lean_dec(x_185); +lean_dec(x_47); +x_189 = lean_ctor_get(x_188, 0); +lean_inc(x_189); +x_190 = lean_ctor_get(x_188, 1); +lean_inc(x_190); +lean_dec_ref(x_188); +x_191 = l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry(x_26, x_189); +x_29 = x_24; +x_30 = x_191; +x_31 = x_190; +goto block_34; +} +else +{ +lean_object* x_192; lean_object* x_193; uint8_t x_194; +x_192 = lean_ctor_get(x_188, 0); +lean_inc(x_192); +x_193 = lean_ctor_get(x_188, 1); +lean_inc(x_193); +lean_dec_ref(x_188); +x_194 = l_Lean_Exception_isInterrupt(x_192); +if (x_194 == 0) +{ +uint8_t x_195; +x_195 = l_Lean_Exception_isRuntime(x_192); +x_65 = x_193; +x_66 = x_185; +x_67 = x_192; +x_68 = x_195; +goto block_77; +} +else +{ +x_65 = x_193; +x_66 = x_185; +x_67 = x_192; +x_68 = x_194; +goto block_77; +} +} +} +else +{ +uint8_t x_196; +lean_dec(x_181); +lean_dec(x_47); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_196 = !lean_is_exclusive(x_184); +if (x_196 == 0) +{ +return x_184; +} +else +{ +lean_object* x_197; lean_object* x_198; lean_object* x_199; +x_197 = lean_ctor_get(x_184, 0); +x_198 = lean_ctor_get(x_184, 1); +lean_inc(x_198); +lean_inc(x_197); +lean_dec(x_184); +x_199 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_199, 0, x_197); +lean_ctor_set(x_199, 1, x_198); +return x_199; +} +} +} +else +{ +uint8_t x_200; +lean_dec(x_181); +lean_dec(x_47); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_200 = !lean_is_exclusive(x_182); +if (x_200 == 0) +{ +return x_182; +} +else +{ +lean_object* x_201; lean_object* x_202; lean_object* x_203; +x_201 = lean_ctor_get(x_182, 0); +x_202 = lean_ctor_get(x_182, 1); +lean_inc(x_202); +lean_inc(x_201); +lean_dec(x_182); +x_203 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_203, 0, x_201); +lean_ctor_set(x_203, 1, x_202); +return x_203; +} +} +} +default: +{ +lean_object* x_204; +lean_dec(x_155); +lean_dec(x_47); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_9); +lean_dec_ref(x_8); +x_204 = lean_ctor_get(x_152, 1); +lean_inc(x_204); +lean_dec_ref(x_152); +x_104 = x_10; +x_105 = x_11; +x_106 = x_12; +x_107 = x_13; +x_108 = x_204; +goto block_151; +} +} +} +} +else +{ +uint8_t x_205; +lean_dec(x_103); +lean_dec(x_47); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_205 = !lean_is_exclusive(x_152); +if (x_205 == 0) +{ +return x_152; +} +else +{ +lean_object* x_206; lean_object* x_207; lean_object* x_208; +x_206 = lean_ctor_get(x_152, 0); +x_207 = lean_ctor_get(x_152, 1); +lean_inc(x_207); +lean_inc(x_206); +lean_dec(x_152); +x_208 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_208, 0, x_206); +lean_ctor_set(x_208, 1, x_207); +return x_208; +} +} +} +} +else +{ +uint8_t x_225; +lean_dec(x_47); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_225 = !lean_is_exclusive(x_99); +if (x_225 == 0) +{ +return x_99; +} +else +{ +lean_object* x_226; lean_object* x_227; lean_object* x_228; +x_226 = lean_ctor_get(x_99, 0); +x_227 = lean_ctor_get(x_99, 1); +lean_inc(x_227); +lean_inc(x_226); +lean_dec(x_99); +x_228 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_228, 0, x_226); +lean_ctor_set(x_228, 1, x_227); +return x_228; +} +} +} +} +} +} +else +{ +lean_object* x_229; +lean_dec(x_78); +lean_dec(x_28); +lean_dec(x_25); +x_229 = l_Lean_Elab_Tactic_saveState___redArg(x_7, x_9, x_11, x_13, x_14); +if (lean_obj_tag(x_229) == 0) +{ +lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; uint8_t x_235; lean_object* x_245; lean_object* x_246; lean_object* x_250; lean_object* x_257; lean_object* x_258; +x_230 = lean_ctor_get(x_229, 0); +lean_inc(x_230); +x_231 = lean_ctor_get(x_229, 1); +lean_inc(x_231); +if (lean_is_exclusive(x_229)) { + lean_ctor_release(x_229, 0); + lean_ctor_release(x_229, 1); + x_232 = x_229; +} else { + lean_dec_ref(x_229); + x_232 = lean_box(0); +} +x_257 = l_Lean_Syntax_getArg(x_47, x_1); +lean_inc_ref(x_12); +lean_inc_ref(x_10); +lean_inc(x_257); +x_258 = l_Lean_Elab_Term_isLocalIdent_x3f(x_257, x_8, x_9, x_10, x_11, x_12, x_13, x_231); +if (lean_obj_tag(x_258) == 0) +{ +lean_object* x_259; +x_259 = lean_ctor_get(x_258, 0); +lean_inc(x_259); +if (lean_obj_tag(x_259) == 0) +{ +lean_object* x_260; lean_object* x_261; +x_260 = lean_ctor_get(x_258, 1); +lean_inc(x_260); +lean_dec_ref(x_258); +x_261 = l_Lean_Elab_Tactic_saveState___redArg(x_7, x_9, x_11, x_13, x_260); +if (lean_obj_tag(x_261) == 0) +{ +lean_object* x_262; lean_object* x_263; lean_object* x_264; +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_ref(x_261); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_257); +x_264 = l_Lean_Elab_realizeGlobalConstNoOverloadWithInfo(x_257, x_259, x_12, x_13, x_263); +if (lean_obj_tag(x_264) == 0) +{ +lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; +lean_dec(x_262); +lean_dec(x_257); +x_265 = lean_ctor_get(x_264, 0); +lean_inc(x_265); +x_266 = lean_ctor_get(x_264, 1); +lean_inc(x_266); +lean_dec_ref(x_264); +x_267 = lean_unsigned_to_nat(1000u); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_268 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromConst(x_265, x_267, x_10, x_11, x_12, x_13, x_266); +if (lean_obj_tag(x_268) == 0) +{ +lean_object* x_269; lean_object* x_270; lean_object* x_271; +lean_dec(x_232); +lean_dec(x_230); +lean_dec(x_47); +x_269 = lean_ctor_get(x_268, 0); +lean_inc(x_269); +x_270 = lean_ctor_get(x_268, 1); +lean_inc(x_270); +lean_dec_ref(x_268); +x_271 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___lam__0(x_24, x_26, x_269, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_270); +x_250 = x_271; +goto block_256; +} +else +{ +lean_object* x_272; lean_object* x_273; +x_272 = lean_ctor_get(x_268, 0); +lean_inc(x_272); +x_273 = lean_ctor_get(x_268, 1); +lean_inc(x_273); +lean_dec_ref(x_268); +x_245 = x_272; +x_246 = x_273; +goto block_249; +} +} +else +{ +lean_object* x_274; lean_object* x_275; uint8_t x_276; uint8_t x_304; +x_274 = lean_ctor_get(x_264, 0); +lean_inc(x_274); +x_275 = lean_ctor_get(x_264, 1); +lean_inc(x_275); +lean_dec_ref(x_264); +x_304 = l_Lean_Exception_isInterrupt(x_274); +if (x_304 == 0) +{ +uint8_t x_305; +x_305 = l_Lean_Exception_isRuntime(x_274); +x_276 = x_305; +goto block_303; +} +else +{ +x_276 = x_304; +goto block_303; +} +block_303: +{ +if (x_276 == 0) +{ +lean_object* x_277; +lean_dec(x_274); +x_277 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_262, x_276, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_275); +if (lean_obj_tag(x_277) == 0) +{ +lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; uint8_t x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; +x_278 = lean_ctor_get(x_277, 1); +lean_inc(x_278); +lean_dec_ref(x_277); +x_279 = lean_ctor_get(x_12, 0); +lean_inc_ref(x_279); +x_280 = lean_ctor_get(x_12, 1); +lean_inc_ref(x_280); +x_281 = lean_ctor_get(x_12, 2); +lean_inc(x_281); +x_282 = lean_ctor_get(x_12, 3); +lean_inc(x_282); +x_283 = lean_ctor_get(x_12, 4); +lean_inc(x_283); +x_284 = lean_ctor_get(x_12, 5); +lean_inc(x_284); +x_285 = lean_ctor_get(x_12, 6); +lean_inc(x_285); +x_286 = lean_ctor_get(x_12, 7); +lean_inc(x_286); +x_287 = lean_ctor_get(x_12, 8); +lean_inc(x_287); +x_288 = lean_ctor_get(x_12, 9); +lean_inc(x_288); +x_289 = lean_ctor_get(x_12, 10); +lean_inc(x_289); +x_290 = lean_ctor_get_uint8(x_12, sizeof(void*)*13); +x_291 = lean_ctor_get(x_12, 11); +lean_inc(x_291); +x_292 = lean_ctor_get_uint8(x_12, sizeof(void*)*13 + 1); +x_293 = lean_ctor_get(x_12, 12); +lean_inc_ref(x_293); +x_294 = l_Lean_Syntax_getId(x_257); +x_295 = lean_erase_macro_scopes(x_294); +x_296 = l_Lean_replaceRef(x_257, x_284); +lean_dec(x_284); +lean_dec(x_257); +x_297 = lean_alloc_ctor(0, 13, 2); +lean_ctor_set(x_297, 0, x_279); +lean_ctor_set(x_297, 1, x_280); +lean_ctor_set(x_297, 2, x_281); +lean_ctor_set(x_297, 3, x_282); +lean_ctor_set(x_297, 4, x_283); +lean_ctor_set(x_297, 5, x_296); +lean_ctor_set(x_297, 6, x_285); +lean_ctor_set(x_297, 7, x_286); +lean_ctor_set(x_297, 8, x_287); +lean_ctor_set(x_297, 9, x_288); +lean_ctor_set(x_297, 10, x_289); +lean_ctor_set(x_297, 11, x_291); +lean_ctor_set(x_297, 12, x_293); +lean_ctor_set_uint8(x_297, sizeof(void*)*13, x_290); +lean_ctor_set_uint8(x_297, sizeof(void*)*13 + 1, x_292); +x_298 = l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___redArg(x_295, x_6, x_7, x_8, x_9, x_10, x_11, x_297, x_13, x_278); +x_299 = lean_ctor_get(x_298, 0); +lean_inc(x_299); +x_300 = lean_ctor_get(x_298, 1); +lean_inc(x_300); +lean_dec_ref(x_298); +x_245 = x_299; +x_246 = x_300; +goto block_249; +} +else +{ +lean_object* x_301; lean_object* x_302; +lean_dec(x_257); +x_301 = lean_ctor_get(x_277, 0); +lean_inc(x_301); +x_302 = lean_ctor_get(x_277, 1); +lean_inc(x_302); +lean_dec_ref(x_277); +x_245 = x_301; +x_246 = x_302; +goto block_249; +} +} +else +{ +lean_dec(x_262); +lean_dec(x_257); +x_245 = x_274; +x_246 = x_275; +goto block_249; +} +} +} +} +else +{ +lean_object* x_306; lean_object* x_307; +lean_dec(x_257); +x_306 = lean_ctor_get(x_261, 0); +lean_inc(x_306); +x_307 = lean_ctor_get(x_261, 1); +lean_inc(x_307); +lean_dec_ref(x_261); +x_245 = x_306; +x_246 = x_307; +goto block_249; +} +} +else +{ +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; +lean_dec(x_257); +x_308 = lean_ctor_get(x_258, 1); +lean_inc(x_308); +lean_dec_ref(x_258); +x_309 = lean_ctor_get(x_259, 0); +lean_inc(x_309); +lean_dec_ref(x_259); +x_310 = l_Lean_Expr_fvarId_x21(x_309); +lean_dec(x_309); +x_311 = lean_unsigned_to_nat(1000u); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_312 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal(x_310, x_311, x_10, x_11, x_12, x_13, x_308); +if (lean_obj_tag(x_312) == 0) +{ +lean_object* x_313; lean_object* x_314; lean_object* x_315; +lean_dec(x_232); +lean_dec(x_230); +lean_dec(x_47); +x_313 = lean_ctor_get(x_312, 0); +lean_inc(x_313); +x_314 = lean_ctor_get(x_312, 1); +lean_inc(x_314); +lean_dec_ref(x_312); +x_315 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___lam__0(x_24, x_26, x_313, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_314); +x_250 = x_315; +goto block_256; +} +else +{ +lean_object* x_316; lean_object* x_317; +x_316 = lean_ctor_get(x_312, 0); +lean_inc(x_316); +x_317 = lean_ctor_get(x_312, 1); +lean_inc(x_317); +lean_dec_ref(x_312); +x_245 = x_316; +x_246 = x_317; +goto block_249; +} +} +} +else +{ +lean_object* x_318; lean_object* x_319; +lean_dec(x_257); +x_318 = lean_ctor_get(x_258, 0); +lean_inc(x_318); +x_319 = lean_ctor_get(x_258, 1); +lean_inc(x_319); +lean_dec_ref(x_258); +x_245 = x_318; +x_246 = x_319; +goto block_249; +} +block_244: +{ +if (x_235 == 0) +{ +lean_object* x_236; +lean_dec_ref(x_234); +lean_dec(x_232); +x_236 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_230, x_235, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_233); +if (lean_obj_tag(x_236) == 0) +{ +lean_object* x_237; lean_object* x_238; +x_237 = lean_ctor_get(x_236, 1); +lean_inc(x_237); +lean_dec_ref(x_236); +x_238 = lean_array_push(x_24, x_47); +x_41 = x_238; +x_42 = x_26; +x_43 = x_237; +goto block_46; +} +else +{ +uint8_t x_239; +lean_dec(x_47); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_239 = !lean_is_exclusive(x_236); +if (x_239 == 0) +{ +return x_236; +} +else +{ +lean_object* x_240; lean_object* x_241; lean_object* x_242; +x_240 = lean_ctor_get(x_236, 0); +x_241 = lean_ctor_get(x_236, 1); +lean_inc(x_241); +lean_inc(x_240); +lean_dec(x_236); +x_242 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_242, 0, x_240); +lean_ctor_set(x_242, 1, x_241); +return x_242; +} +} +} +else +{ +lean_object* x_243; +lean_dec(x_230); +lean_dec(x_47); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +if (lean_is_scalar(x_232)) { + x_243 = lean_alloc_ctor(1, 2, 0); +} else { + x_243 = x_232; + lean_ctor_set_tag(x_243, 1); +} +lean_ctor_set(x_243, 0, x_234); +lean_ctor_set(x_243, 1, x_233); +return x_243; +} +} +block_249: +{ +uint8_t x_247; +x_247 = l_Lean_Exception_isInterrupt(x_245); +if (x_247 == 0) +{ +uint8_t x_248; +x_248 = l_Lean_Exception_isRuntime(x_245); +x_233 = x_246; +x_234 = x_245; +x_235 = x_248; +goto block_244; +} +else +{ +x_233 = x_246; +x_234 = x_245; +x_235 = x_247; +goto block_244; +} +} +block_256: +{ +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; +x_251 = lean_ctor_get(x_250, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_251, 1); +lean_inc(x_252); +lean_dec(x_251); +x_253 = lean_ctor_get(x_250, 1); +lean_inc(x_253); +lean_dec_ref(x_250); +x_254 = lean_ctor_get(x_252, 0); +lean_inc(x_254); +x_255 = lean_ctor_get(x_252, 1); +lean_inc(x_255); +lean_dec(x_252); +x_41 = x_254; +x_42 = x_255; +x_43 = x_253; +goto block_46; +} +} +else +{ +uint8_t x_320; +lean_dec(x_47); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_320 = !lean_is_exclusive(x_229); +if (x_320 == 0) +{ +return x_229; +} +else +{ +lean_object* x_321; lean_object* x_322; lean_object* x_323; +x_321 = lean_ctor_get(x_229, 0); +x_322 = lean_ctor_get(x_229, 1); +lean_inc(x_322); +lean_inc(x_321); +lean_dec(x_229); +x_323 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_323, 0, x_321); +lean_ctor_set(x_323, 1, x_322); +return x_323; +} +} +} +block_34: +{ +lean_object* x_32; lean_object* x_33; +if (lean_is_scalar(x_28)) { + x_32 = lean_alloc_ctor(0, 2, 0); +} else { + x_32 = x_28; +} +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_27); +if (lean_is_scalar(x_25)) { + x_33 = lean_alloc_ctor(0, 2, 0); +} else { + x_33 = x_25; +} +lean_ctor_set(x_33, 0, x_29); +lean_ctor_set(x_33, 1, x_32); +x_15 = x_33; +x_16 = x_31; +goto block_20; +} +block_40: +{ +lean_object* x_38; lean_object* x_39; +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_27); +x_39 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_39, 0, x_35); +lean_ctor_set(x_39, 1, x_38); +x_15 = x_39; +x_16 = x_37; +goto block_20; +} +block_46: +{ +lean_object* x_44; lean_object* x_45; +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_42); +lean_ctor_set(x_44, 1, x_27); +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_41); +lean_ctor_set(x_45, 1, x_44); +x_15 = x_45; +x_16 = x_43; +goto block_20; +} +block_51: +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_array_push(x_24, x_47); +x_49 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_49, 0, x_26); +lean_ctor_set(x_49, 1, x_27); +x_50 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +x_15 = x_50; +x_16 = x_14; +goto block_20; +} +block_64: +{ +if (x_55 == 0) +{ +lean_object* x_56; +lean_dec_ref(x_54); +x_56 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_52, x_55, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_53); +if (lean_obj_tag(x_56) == 0) +{ +lean_object* x_57; lean_object* x_58; +x_57 = lean_ctor_get(x_56, 1); +lean_inc(x_57); +lean_dec_ref(x_56); +x_58 = lean_array_push(x_24, x_47); +x_35 = x_58; +x_36 = x_26; +x_37 = x_57; +goto block_40; +} +else +{ +uint8_t x_59; +lean_dec(x_47); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_59 = !lean_is_exclusive(x_56); +if (x_59 == 0) +{ +return x_56; +} +else +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = lean_ctor_get(x_56, 0); +x_61 = lean_ctor_get(x_56, 1); +lean_inc(x_61); +lean_inc(x_60); +lean_dec(x_56); +x_62 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_62, 0, x_60); +lean_ctor_set(x_62, 1, x_61); +return x_62; +} +} +} +else +{ +lean_object* x_63; +lean_dec_ref(x_52); +lean_dec(x_47); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_54); +lean_ctor_set(x_63, 1, x_53); +return x_63; +} +} +block_77: +{ +if (x_68 == 0) +{ +lean_object* x_69; +lean_dec_ref(x_67); +x_69 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_66, x_68, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_65); +if (lean_obj_tag(x_69) == 0) +{ +lean_object* x_70; lean_object* x_71; +x_70 = lean_ctor_get(x_69, 1); +lean_inc(x_70); +lean_dec_ref(x_69); +x_71 = lean_array_push(x_24, x_47); +x_29 = x_71; +x_30 = x_26; +x_31 = x_70; +goto block_34; +} +else +{ +uint8_t x_72; +lean_dec(x_47); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_72 = !lean_is_exclusive(x_69); +if (x_72 == 0) +{ +return x_69; +} +else +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_69, 0); +x_74 = lean_ctor_get(x_69, 1); +lean_inc(x_74); +lean_inc(x_73); +lean_dec(x_69); +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 +{ +lean_object* x_76; +lean_dec_ref(x_66); +lean_dec(x_47); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_76 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_76, 0, x_67); +lean_ctor_set(x_76, 1, x_65); +return x_76; +} +} +} +block_20: +{ +size_t x_17; size_t x_18; +x_17 = 1; +x_18 = lean_usize_add(x_4, x_17); +x_4 = x_18; +x_5 = x_15; +x_14 = x_16; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8___redArg(lean_object* x_1, lean_object* x_2, size_t x_3, size_t 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) { +_start: +{ +lean_object* x_15; lean_object* x_16; uint8_t x_21; +x_21 = lean_usize_dec_lt(x_4, x_3); +if (x_21 == 0) +{ +lean_object* x_22; +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_5); +lean_ctor_set(x_22, 1, x_14); +return x_22; +} +else +{ +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_35; lean_object* x_36; lean_object* x_37; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_47; lean_object* x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; lean_object* x_78; lean_object* x_79; uint8_t x_80; +x_23 = lean_ctor_get(x_5, 1); +lean_inc(x_23); +x_24 = lean_ctor_get(x_5, 0); +lean_inc(x_24); +if (lean_is_exclusive(x_5)) { + lean_ctor_release(x_5, 0); + lean_ctor_release(x_5, 1); + x_25 = x_5; +} else { + lean_dec_ref(x_5); + x_25 = lean_box(0); +} +x_26 = lean_ctor_get(x_23, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_23, 1); +lean_inc(x_27); +if (lean_is_exclusive(x_23)) { + lean_ctor_release(x_23, 0); + lean_ctor_release(x_23, 1); + x_28 = x_23; +} else { + lean_dec_ref(x_23); + x_28 = lean_box(0); +} +x_47 = lean_array_uget(x_2, x_4); +lean_inc(x_47); +x_78 = l_Lean_Syntax_getKind(x_47); +x_79 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__2; +x_80 = lean_name_eq(x_78, x_79); +if (x_80 == 0) +{ +lean_object* x_81; uint8_t x_82; +x_81 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__4; +x_82 = lean_name_eq(x_78, x_81); +if (x_82 == 0) +{ +lean_object* x_83; uint8_t x_84; +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_25); +x_83 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__6; +x_84 = lean_name_eq(x_78, x_83); +lean_dec(x_78); +if (x_84 == 0) +{ +lean_object* x_85; uint8_t x_86; +lean_dec(x_47); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_85 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg(x_14); +x_86 = !lean_is_exclusive(x_85); +if (x_86 == 0) +{ +return x_85; +} +else +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_87 = lean_ctor_get(x_85, 0); +x_88 = lean_ctor_get(x_85, 1); +lean_inc(x_88); +lean_inc(x_87); +lean_dec(x_85); +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_87); +lean_ctor_set(x_89, 1, x_88); +return x_89; +} +} +else +{ +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_90 = lean_array_push(x_24, x_47); +x_91 = lean_box(x_21); +x_92 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_92, 0, x_26); +lean_ctor_set(x_92, 1, x_91); +x_93 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_93, 0, x_90); +lean_ctor_set(x_93, 1, x_92); +x_15 = x_93; +x_16 = x_14; +goto block_20; +} +} +else +{ +lean_object* x_94; lean_object* x_95; uint8_t x_96; +lean_dec(x_78); +x_94 = lean_unsigned_to_nat(0u); +x_95 = l_Lean_Syntax_getArg(x_47, x_94); +x_96 = l_Lean_Syntax_isNone(x_95); +lean_dec(x_95); +if (x_96 == 0) +{ +lean_dec(x_28); +lean_dec(x_25); +goto block_51; +} +else +{ +lean_object* x_97; uint8_t x_98; +x_97 = l_Lean_Syntax_getArg(x_47, x_1); +x_98 = l_Lean_Syntax_isNone(x_97); +lean_dec(x_97); +if (x_98 == 0) +{ +lean_dec(x_28); +lean_dec(x_25); +goto block_51; +} +else +{ +lean_object* x_99; +x_99 = l_Lean_Meta_saveState___redArg(x_11, x_13, x_14); +if (lean_obj_tag(x_99) == 0) +{ +lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_152; lean_object* x_210; lean_object* x_211; +x_100 = lean_ctor_get(x_99, 0); +lean_inc(x_100); +x_101 = lean_ctor_get(x_99, 1); +lean_inc(x_101); +lean_dec_ref(x_99); +x_102 = lean_unsigned_to_nat(2u); +x_103 = l_Lean_Syntax_getArg(x_47, x_102); +x_210 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__9; +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_103); +x_211 = l_Lean_Elab_Term_resolveId_x3f(x_103, x_210, x_21, x_8, x_9, x_10, x_11, x_12, x_13, x_101); +if (lean_obj_tag(x_211) == 0) +{ +lean_dec(x_100); +x_152 = x_211; +goto block_209; +} +else +{ +lean_object* x_212; lean_object* x_213; uint8_t x_214; uint8_t x_223; +x_212 = lean_ctor_get(x_211, 0); +lean_inc(x_212); +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_223 = l_Lean_Exception_isInterrupt(x_212); +if (x_223 == 0) +{ +uint8_t x_224; +x_224 = l_Lean_Exception_isRuntime(x_212); +lean_dec(x_212); +x_214 = x_224; +goto block_222; +} +else +{ +lean_dec(x_212); +x_214 = x_223; +goto block_222; +} +block_222: +{ +if (x_214 == 0) +{ +lean_object* x_215; +lean_dec_ref(x_211); +x_215 = l_Lean_Meta_SavedState_restore___redArg(x_100, x_11, x_13, x_213); +lean_dec(x_100); +if (lean_obj_tag(x_215) == 0) +{ +lean_object* x_216; lean_object* x_217; +x_216 = lean_ctor_get(x_215, 1); +lean_inc(x_216); +lean_dec_ref(x_215); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_103); +x_217 = l_Lean_Elab_Term_elabCDotFunctionAlias_x3f(x_103, x_8, x_9, x_10, x_11, x_12, x_13, x_216); +x_152 = x_217; +goto block_209; +} +else +{ +uint8_t x_218; +lean_dec(x_103); +lean_dec(x_47); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_218 = !lean_is_exclusive(x_215); +if (x_218 == 0) +{ +return x_215; +} +else +{ +lean_object* x_219; lean_object* x_220; lean_object* x_221; +x_219 = lean_ctor_get(x_215, 0); +x_220 = lean_ctor_get(x_215, 1); +lean_inc(x_220); +lean_inc(x_219); +lean_dec(x_215); +x_221 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_221, 0, x_219); +lean_ctor_set(x_221, 1, x_220); +return x_221; +} +} +} +else +{ +lean_dec(x_213); +lean_dec(x_100); +x_152 = x_211; +goto block_209; +} +} +} +block_151: +{ +uint8_t x_109; +x_109 = !lean_is_exclusive(x_106); +if (x_109 == 0) +{ +lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; uint8_t x_119; +x_110 = lean_ctor_get(x_106, 5); +x_111 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__8; +lean_inc(x_103); +x_112 = l_Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2093_(x_103, x_94); +x_113 = l_Lean_MessageData_ofFormat(x_112); +x_114 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_114, 0, x_111); +lean_ctor_set(x_114, 1, x_113); +x_115 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; +x_116 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_116, 0, x_114); +lean_ctor_set(x_116, 1, x_115); +x_117 = l_Lean_replaceRef(x_103, x_110); +lean_dec(x_110); +lean_dec(x_103); +lean_ctor_set(x_106, 5, x_117); +x_118 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg(x_116, x_104, x_105, x_106, x_107, x_108); +lean_dec(x_107); +lean_dec_ref(x_106); +lean_dec(x_105); +lean_dec_ref(x_104); +x_119 = !lean_is_exclusive(x_118); +if (x_119 == 0) +{ +return x_118; +} +else +{ +lean_object* x_120; lean_object* x_121; lean_object* x_122; +x_120 = lean_ctor_get(x_118, 0); +x_121 = lean_ctor_get(x_118, 1); +lean_inc(x_121); +lean_inc(x_120); +lean_dec(x_118); +x_122 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_122, 0, x_120); +lean_ctor_set(x_122, 1, x_121); +return x_122; +} +} +else +{ +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; uint8_t x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; +x_123 = lean_ctor_get(x_106, 0); +x_124 = lean_ctor_get(x_106, 1); +x_125 = lean_ctor_get(x_106, 2); +x_126 = lean_ctor_get(x_106, 3); +x_127 = lean_ctor_get(x_106, 4); +x_128 = lean_ctor_get(x_106, 5); +x_129 = lean_ctor_get(x_106, 6); +x_130 = lean_ctor_get(x_106, 7); +x_131 = lean_ctor_get(x_106, 8); +x_132 = lean_ctor_get(x_106, 9); +x_133 = lean_ctor_get(x_106, 10); +x_134 = lean_ctor_get_uint8(x_106, sizeof(void*)*13); +x_135 = lean_ctor_get(x_106, 11); +x_136 = lean_ctor_get_uint8(x_106, sizeof(void*)*13 + 1); +x_137 = lean_ctor_get(x_106, 12); +lean_inc(x_137); +lean_inc(x_135); +lean_inc(x_133); +lean_inc(x_132); +lean_inc(x_131); +lean_inc(x_130); +lean_inc(x_129); +lean_inc(x_128); +lean_inc(x_127); +lean_inc(x_126); +lean_inc(x_125); +lean_inc(x_124); +lean_inc(x_123); +lean_dec(x_106); +x_138 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__8; +lean_inc(x_103); +x_139 = l_Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2093_(x_103, x_94); +x_140 = l_Lean_MessageData_ofFormat(x_139); +x_141 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_141, 0, x_138); +lean_ctor_set(x_141, 1, x_140); +x_142 = l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5; +x_143 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_143, 0, x_141); +lean_ctor_set(x_143, 1, x_142); +x_144 = l_Lean_replaceRef(x_103, x_128); +lean_dec(x_128); +lean_dec(x_103); +x_145 = lean_alloc_ctor(0, 13, 2); +lean_ctor_set(x_145, 0, x_123); +lean_ctor_set(x_145, 1, x_124); +lean_ctor_set(x_145, 2, x_125); +lean_ctor_set(x_145, 3, x_126); +lean_ctor_set(x_145, 4, x_127); +lean_ctor_set(x_145, 5, x_144); +lean_ctor_set(x_145, 6, x_129); +lean_ctor_set(x_145, 7, x_130); +lean_ctor_set(x_145, 8, x_131); +lean_ctor_set(x_145, 9, x_132); +lean_ctor_set(x_145, 10, x_133); +lean_ctor_set(x_145, 11, x_135); +lean_ctor_set(x_145, 12, x_137); +lean_ctor_set_uint8(x_145, sizeof(void*)*13, x_134); +lean_ctor_set_uint8(x_145, sizeof(void*)*13 + 1, x_136); +x_146 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg(x_143, x_104, x_105, x_145, x_107, x_108); +lean_dec(x_107); +lean_dec_ref(x_145); +lean_dec(x_105); +lean_dec_ref(x_104); +x_147 = lean_ctor_get(x_146, 0); +lean_inc(x_147); +x_148 = lean_ctor_get(x_146, 1); +lean_inc(x_148); +if (lean_is_exclusive(x_146)) { + lean_ctor_release(x_146, 0); + lean_ctor_release(x_146, 1); + x_149 = x_146; +} else { + lean_dec_ref(x_146); + x_149 = lean_box(0); +} +if (lean_is_scalar(x_149)) { + x_150 = lean_alloc_ctor(1, 2, 0); +} else { + x_150 = x_149; +} +lean_ctor_set(x_150, 0, x_147); +lean_ctor_set(x_150, 1, x_148); +return x_150; +} +} +block_209: +{ +if (lean_obj_tag(x_152) == 0) +{ +lean_object* x_153; +x_153 = lean_ctor_get(x_152, 0); +lean_inc(x_153); +if (lean_obj_tag(x_153) == 0) +{ +lean_object* x_154; +lean_dec(x_47); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_9); +lean_dec_ref(x_8); +x_154 = lean_ctor_get(x_152, 1); +lean_inc(x_154); +lean_dec_ref(x_152); +x_104 = x_10; +x_105 = x_11; +x_106 = x_12; +x_107 = x_13; +x_108 = x_154; +goto block_151; +} +else +{ +lean_object* x_155; +x_155 = lean_ctor_get(x_153, 0); +lean_inc(x_155); +lean_dec_ref(x_153); +switch (lean_obj_tag(x_155)) { +case 1: +{ +lean_object* x_156; lean_object* x_157; lean_object* x_158; +lean_dec(x_103); +lean_dec(x_28); +lean_dec(x_25); +x_156 = lean_ctor_get(x_152, 1); +lean_inc(x_156); +lean_dec_ref(x_152); +x_157 = lean_ctor_get(x_155, 0); +lean_inc(x_157); +lean_inc_ref(x_10); +x_158 = l_Lean_Meta_getFVarLocalDecl___redArg(x_155, x_10, x_12, x_13, x_156); +lean_dec_ref(x_155); +if (lean_obj_tag(x_158) == 0) +{ +lean_object* x_159; lean_object* x_160; +x_159 = lean_ctor_get(x_158, 1); +lean_inc(x_159); +lean_dec_ref(x_158); +x_160 = l_Lean_Elab_Tactic_saveState___redArg(x_7, x_9, x_11, x_13, x_159); +if (lean_obj_tag(x_160) == 0) +{ +lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; +x_161 = lean_ctor_get(x_160, 0); +lean_inc(x_161); +x_162 = lean_ctor_get(x_160, 1); +lean_inc(x_162); +lean_dec_ref(x_160); +x_163 = lean_unsigned_to_nat(1000u); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_164 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal(x_157, x_163, x_10, x_11, x_12, x_13, x_162); +if (lean_obj_tag(x_164) == 0) +{ +lean_object* x_165; lean_object* x_166; lean_object* x_167; +lean_dec(x_161); +lean_dec(x_47); +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_ref(x_164); +x_167 = l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry(x_26, x_165); +x_35 = x_24; +x_36 = x_167; +x_37 = x_166; +goto block_40; +} +else +{ +lean_object* x_168; lean_object* x_169; uint8_t x_170; +x_168 = lean_ctor_get(x_164, 0); +lean_inc(x_168); +x_169 = lean_ctor_get(x_164, 1); +lean_inc(x_169); +lean_dec_ref(x_164); +x_170 = l_Lean_Exception_isInterrupt(x_168); +if (x_170 == 0) +{ +uint8_t x_171; +x_171 = l_Lean_Exception_isRuntime(x_168); +x_52 = x_161; +x_53 = x_168; +x_54 = x_169; +x_55 = x_171; +goto block_64; +} +else +{ +x_52 = x_161; +x_53 = x_168; +x_54 = x_169; +x_55 = x_170; +goto block_64; +} +} +} +else +{ +uint8_t x_172; +lean_dec(x_157); +lean_dec(x_47); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_172 = !lean_is_exclusive(x_160); +if (x_172 == 0) +{ +return x_160; +} +else +{ +lean_object* x_173; lean_object* x_174; lean_object* x_175; +x_173 = lean_ctor_get(x_160, 0); +x_174 = lean_ctor_get(x_160, 1); +lean_inc(x_174); +lean_inc(x_173); +lean_dec(x_160); +x_175 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_175, 0, x_173); +lean_ctor_set(x_175, 1, x_174); +return x_175; +} +} +} +else +{ +uint8_t x_176; +lean_dec(x_157); +lean_dec(x_47); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_176 = !lean_is_exclusive(x_158); +if (x_176 == 0) +{ +return x_158; +} +else +{ +lean_object* x_177; lean_object* x_178; lean_object* x_179; +x_177 = lean_ctor_get(x_158, 0); +x_178 = lean_ctor_get(x_158, 1); +lean_inc(x_178); +lean_inc(x_177); +lean_dec(x_158); +x_179 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_179, 0, x_177); +lean_ctor_set(x_179, 1, x_178); +return x_179; +} +} +} +case 4: +{ +lean_object* x_180; lean_object* x_181; lean_object* x_182; +lean_dec(x_103); +x_180 = lean_ctor_get(x_152, 1); +lean_inc(x_180); +lean_dec_ref(x_152); +x_181 = lean_ctor_get(x_155, 0); +lean_inc(x_181); +lean_dec_ref(x_155); +lean_inc_ref(x_12); +lean_inc(x_181); +x_182 = l_Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2(x_181, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_180); +if (lean_obj_tag(x_182) == 0) +{ +lean_object* x_183; lean_object* x_184; +x_183 = lean_ctor_get(x_182, 1); +lean_inc(x_183); +lean_dec_ref(x_182); +x_184 = l_Lean_Elab_Tactic_saveState___redArg(x_7, x_9, x_11, x_13, x_183); +if (lean_obj_tag(x_184) == 0) +{ +lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; +x_185 = lean_ctor_get(x_184, 0); +lean_inc(x_185); +x_186 = lean_ctor_get(x_184, 1); +lean_inc(x_186); +lean_dec_ref(x_184); +x_187 = lean_unsigned_to_nat(1000u); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_188 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromConst(x_181, x_187, x_10, x_11, x_12, x_13, x_186); +if (lean_obj_tag(x_188) == 0) +{ +lean_object* x_189; lean_object* x_190; lean_object* x_191; +lean_dec(x_185); +lean_dec(x_47); +x_189 = lean_ctor_get(x_188, 0); +lean_inc(x_189); +x_190 = lean_ctor_get(x_188, 1); +lean_inc(x_190); +lean_dec_ref(x_188); +x_191 = l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry(x_26, x_189); +x_29 = x_24; +x_30 = x_191; +x_31 = x_190; +goto block_34; +} +else +{ +lean_object* x_192; lean_object* x_193; uint8_t x_194; +x_192 = lean_ctor_get(x_188, 0); +lean_inc(x_192); +x_193 = lean_ctor_get(x_188, 1); +lean_inc(x_193); +lean_dec_ref(x_188); +x_194 = l_Lean_Exception_isInterrupt(x_192); +if (x_194 == 0) +{ +uint8_t x_195; +x_195 = l_Lean_Exception_isRuntime(x_192); +x_65 = x_192; +x_66 = x_185; +x_67 = x_193; +x_68 = x_195; +goto block_77; +} +else +{ +x_65 = x_192; +x_66 = x_185; +x_67 = x_193; +x_68 = x_194; +goto block_77; +} +} +} +else +{ +uint8_t x_196; +lean_dec(x_181); +lean_dec(x_47); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_196 = !lean_is_exclusive(x_184); +if (x_196 == 0) +{ +return x_184; +} +else +{ +lean_object* x_197; lean_object* x_198; lean_object* x_199; +x_197 = lean_ctor_get(x_184, 0); +x_198 = lean_ctor_get(x_184, 1); +lean_inc(x_198); +lean_inc(x_197); +lean_dec(x_184); +x_199 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_199, 0, x_197); +lean_ctor_set(x_199, 1, x_198); +return x_199; +} +} +} +else +{ +uint8_t x_200; +lean_dec(x_181); +lean_dec(x_47); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_200 = !lean_is_exclusive(x_182); +if (x_200 == 0) +{ +return x_182; +} +else +{ +lean_object* x_201; lean_object* x_202; lean_object* x_203; +x_201 = lean_ctor_get(x_182, 0); +x_202 = lean_ctor_get(x_182, 1); +lean_inc(x_202); +lean_inc(x_201); +lean_dec(x_182); +x_203 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_203, 0, x_201); +lean_ctor_set(x_203, 1, x_202); +return x_203; +} +} +} +default: +{ +lean_object* x_204; +lean_dec(x_155); +lean_dec(x_47); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_9); +lean_dec_ref(x_8); +x_204 = lean_ctor_get(x_152, 1); +lean_inc(x_204); +lean_dec_ref(x_152); +x_104 = x_10; +x_105 = x_11; +x_106 = x_12; +x_107 = x_13; +x_108 = x_204; +goto block_151; +} +} +} +} +else +{ +uint8_t x_205; +lean_dec(x_103); +lean_dec(x_47); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_205 = !lean_is_exclusive(x_152); +if (x_205 == 0) +{ +return x_152; +} +else +{ +lean_object* x_206; lean_object* x_207; lean_object* x_208; +x_206 = lean_ctor_get(x_152, 0); +x_207 = lean_ctor_get(x_152, 1); +lean_inc(x_207); +lean_inc(x_206); +lean_dec(x_152); +x_208 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_208, 0, x_206); +lean_ctor_set(x_208, 1, x_207); +return x_208; +} +} +} +} +else +{ +uint8_t x_225; +lean_dec(x_47); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_225 = !lean_is_exclusive(x_99); +if (x_225 == 0) +{ +return x_99; +} +else +{ +lean_object* x_226; lean_object* x_227; lean_object* x_228; +x_226 = lean_ctor_get(x_99, 0); +x_227 = lean_ctor_get(x_99, 1); +lean_inc(x_227); +lean_inc(x_226); +lean_dec(x_99); +x_228 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_228, 0, x_226); +lean_ctor_set(x_228, 1, x_227); +return x_228; +} +} +} +} +} +} +else +{ +lean_object* x_229; +lean_dec(x_78); +lean_dec(x_28); +lean_dec(x_25); +x_229 = l_Lean_Elab_Tactic_saveState___redArg(x_7, x_9, x_11, x_13, x_14); +if (lean_obj_tag(x_229) == 0) +{ +lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; uint8_t x_235; lean_object* x_245; lean_object* x_246; lean_object* x_250; lean_object* x_257; lean_object* x_258; +x_230 = lean_ctor_get(x_229, 0); +lean_inc(x_230); +x_231 = lean_ctor_get(x_229, 1); +lean_inc(x_231); +if (lean_is_exclusive(x_229)) { + lean_ctor_release(x_229, 0); + lean_ctor_release(x_229, 1); + x_232 = x_229; +} else { + lean_dec_ref(x_229); + x_232 = lean_box(0); +} +x_257 = l_Lean_Syntax_getArg(x_47, x_1); +lean_inc_ref(x_12); +lean_inc_ref(x_10); +lean_inc(x_257); +x_258 = l_Lean_Elab_Term_isLocalIdent_x3f(x_257, x_8, x_9, x_10, x_11, x_12, x_13, x_231); +if (lean_obj_tag(x_258) == 0) +{ +lean_object* x_259; +x_259 = lean_ctor_get(x_258, 0); +lean_inc(x_259); +if (lean_obj_tag(x_259) == 0) +{ +lean_object* x_260; lean_object* x_261; +x_260 = lean_ctor_get(x_258, 1); +lean_inc(x_260); +lean_dec_ref(x_258); +x_261 = l_Lean_Elab_Tactic_saveState___redArg(x_7, x_9, x_11, x_13, x_260); +if (lean_obj_tag(x_261) == 0) +{ +lean_object* x_262; lean_object* x_263; lean_object* x_264; +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_ref(x_261); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_257); +x_264 = l_Lean_Elab_realizeGlobalConstNoOverloadWithInfo(x_257, x_259, x_12, x_13, x_263); +if (lean_obj_tag(x_264) == 0) +{ +lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; +lean_dec(x_262); +lean_dec(x_257); +x_265 = lean_ctor_get(x_264, 0); +lean_inc(x_265); +x_266 = lean_ctor_get(x_264, 1); +lean_inc(x_266); +lean_dec_ref(x_264); +x_267 = lean_unsigned_to_nat(1000u); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_268 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromConst(x_265, x_267, x_10, x_11, x_12, x_13, x_266); +if (lean_obj_tag(x_268) == 0) +{ +lean_object* x_269; lean_object* x_270; lean_object* x_271; +lean_dec(x_232); +lean_dec(x_230); +lean_dec(x_47); +x_269 = lean_ctor_get(x_268, 0); +lean_inc(x_269); +x_270 = lean_ctor_get(x_268, 1); +lean_inc(x_270); +lean_dec_ref(x_268); +x_271 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___lam__0(x_24, x_26, x_269, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_270); +x_250 = x_271; +goto block_256; +} +else +{ +lean_object* x_272; lean_object* x_273; +x_272 = lean_ctor_get(x_268, 0); +lean_inc(x_272); +x_273 = lean_ctor_get(x_268, 1); +lean_inc(x_273); +lean_dec_ref(x_268); +x_245 = x_272; +x_246 = x_273; +goto block_249; +} +} +else +{ +lean_object* x_274; lean_object* x_275; uint8_t x_276; uint8_t x_304; +x_274 = lean_ctor_get(x_264, 0); +lean_inc(x_274); +x_275 = lean_ctor_get(x_264, 1); +lean_inc(x_275); +lean_dec_ref(x_264); +x_304 = l_Lean_Exception_isInterrupt(x_274); +if (x_304 == 0) +{ +uint8_t x_305; +x_305 = l_Lean_Exception_isRuntime(x_274); +x_276 = x_305; +goto block_303; +} +else +{ +x_276 = x_304; +goto block_303; +} +block_303: +{ +if (x_276 == 0) +{ +lean_object* x_277; +lean_dec(x_274); +x_277 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_262, x_276, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_275); +if (lean_obj_tag(x_277) == 0) +{ +lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; uint8_t x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; +x_278 = lean_ctor_get(x_277, 1); +lean_inc(x_278); +lean_dec_ref(x_277); +x_279 = lean_ctor_get(x_12, 0); +lean_inc_ref(x_279); +x_280 = lean_ctor_get(x_12, 1); +lean_inc_ref(x_280); +x_281 = lean_ctor_get(x_12, 2); +lean_inc(x_281); +x_282 = lean_ctor_get(x_12, 3); +lean_inc(x_282); +x_283 = lean_ctor_get(x_12, 4); +lean_inc(x_283); +x_284 = lean_ctor_get(x_12, 5); +lean_inc(x_284); +x_285 = lean_ctor_get(x_12, 6); +lean_inc(x_285); +x_286 = lean_ctor_get(x_12, 7); +lean_inc(x_286); +x_287 = lean_ctor_get(x_12, 8); +lean_inc(x_287); +x_288 = lean_ctor_get(x_12, 9); +lean_inc(x_288); +x_289 = lean_ctor_get(x_12, 10); +lean_inc(x_289); +x_290 = lean_ctor_get_uint8(x_12, sizeof(void*)*13); +x_291 = lean_ctor_get(x_12, 11); +lean_inc(x_291); +x_292 = lean_ctor_get_uint8(x_12, sizeof(void*)*13 + 1); +x_293 = lean_ctor_get(x_12, 12); +lean_inc_ref(x_293); +x_294 = l_Lean_Syntax_getId(x_257); +x_295 = lean_erase_macro_scopes(x_294); +x_296 = l_Lean_replaceRef(x_257, x_284); +lean_dec(x_284); +lean_dec(x_257); +x_297 = lean_alloc_ctor(0, 13, 2); +lean_ctor_set(x_297, 0, x_279); +lean_ctor_set(x_297, 1, x_280); +lean_ctor_set(x_297, 2, x_281); +lean_ctor_set(x_297, 3, x_282); +lean_ctor_set(x_297, 4, x_283); +lean_ctor_set(x_297, 5, x_296); +lean_ctor_set(x_297, 6, x_285); +lean_ctor_set(x_297, 7, x_286); +lean_ctor_set(x_297, 8, x_287); +lean_ctor_set(x_297, 9, x_288); +lean_ctor_set(x_297, 10, x_289); +lean_ctor_set(x_297, 11, x_291); +lean_ctor_set(x_297, 12, x_293); +lean_ctor_set_uint8(x_297, sizeof(void*)*13, x_290); +lean_ctor_set_uint8(x_297, sizeof(void*)*13 + 1, x_292); +x_298 = l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___redArg(x_295, x_6, x_7, x_8, x_9, x_10, x_11, x_297, x_13, x_278); +x_299 = lean_ctor_get(x_298, 0); +lean_inc(x_299); +x_300 = lean_ctor_get(x_298, 1); +lean_inc(x_300); +lean_dec_ref(x_298); +x_245 = x_299; +x_246 = x_300; +goto block_249; +} +else +{ +lean_object* x_301; lean_object* x_302; +lean_dec(x_257); +x_301 = lean_ctor_get(x_277, 0); +lean_inc(x_301); +x_302 = lean_ctor_get(x_277, 1); +lean_inc(x_302); +lean_dec_ref(x_277); +x_245 = x_301; +x_246 = x_302; +goto block_249; +} +} +else +{ +lean_dec(x_262); +lean_dec(x_257); +x_245 = x_274; +x_246 = x_275; +goto block_249; +} +} +} +} +else +{ +lean_object* x_306; lean_object* x_307; +lean_dec(x_257); +x_306 = lean_ctor_get(x_261, 0); +lean_inc(x_306); +x_307 = lean_ctor_get(x_261, 1); +lean_inc(x_307); +lean_dec_ref(x_261); +x_245 = x_306; +x_246 = x_307; +goto block_249; +} +} +else +{ +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; +lean_dec(x_257); +x_308 = lean_ctor_get(x_258, 1); +lean_inc(x_308); +lean_dec_ref(x_258); +x_309 = lean_ctor_get(x_259, 0); +lean_inc(x_309); +lean_dec_ref(x_259); +x_310 = l_Lean_Expr_fvarId_x21(x_309); +lean_dec(x_309); +x_311 = lean_unsigned_to_nat(1000u); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_312 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal(x_310, x_311, x_10, x_11, x_12, x_13, x_308); +if (lean_obj_tag(x_312) == 0) +{ +lean_object* x_313; lean_object* x_314; lean_object* x_315; +lean_dec(x_232); +lean_dec(x_230); +lean_dec(x_47); +x_313 = lean_ctor_get(x_312, 0); +lean_inc(x_313); +x_314 = lean_ctor_get(x_312, 1); +lean_inc(x_314); +lean_dec_ref(x_312); +x_315 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___lam__0(x_24, x_26, x_313, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_314); +x_250 = x_315; +goto block_256; +} +else +{ +lean_object* x_316; lean_object* x_317; +x_316 = lean_ctor_get(x_312, 0); +lean_inc(x_316); +x_317 = lean_ctor_get(x_312, 1); +lean_inc(x_317); +lean_dec_ref(x_312); +x_245 = x_316; +x_246 = x_317; +goto block_249; +} +} +} +else +{ +lean_object* x_318; lean_object* x_319; +lean_dec(x_257); +x_318 = lean_ctor_get(x_258, 0); +lean_inc(x_318); +x_319 = lean_ctor_get(x_258, 1); +lean_inc(x_319); +lean_dec_ref(x_258); +x_245 = x_318; +x_246 = x_319; +goto block_249; +} +block_244: +{ +if (x_235 == 0) +{ +lean_object* x_236; +lean_dec_ref(x_233); +lean_dec(x_232); +x_236 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_230, x_235, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_234); +if (lean_obj_tag(x_236) == 0) +{ +lean_object* x_237; lean_object* x_238; +x_237 = lean_ctor_get(x_236, 1); +lean_inc(x_237); +lean_dec_ref(x_236); +x_238 = lean_array_push(x_24, x_47); +x_41 = x_238; +x_42 = x_26; +x_43 = x_237; +goto block_46; +} +else +{ +uint8_t x_239; +lean_dec(x_47); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_239 = !lean_is_exclusive(x_236); +if (x_239 == 0) +{ +return x_236; +} +else +{ +lean_object* x_240; lean_object* x_241; lean_object* x_242; +x_240 = lean_ctor_get(x_236, 0); +x_241 = lean_ctor_get(x_236, 1); +lean_inc(x_241); +lean_inc(x_240); +lean_dec(x_236); +x_242 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_242, 0, x_240); +lean_ctor_set(x_242, 1, x_241); +return x_242; +} +} +} +else +{ +lean_object* x_243; +lean_dec(x_230); +lean_dec(x_47); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +if (lean_is_scalar(x_232)) { + x_243 = lean_alloc_ctor(1, 2, 0); +} else { + x_243 = x_232; + lean_ctor_set_tag(x_243, 1); +} +lean_ctor_set(x_243, 0, x_233); +lean_ctor_set(x_243, 1, x_234); +return x_243; +} +} +block_249: +{ +uint8_t x_247; +x_247 = l_Lean_Exception_isInterrupt(x_245); +if (x_247 == 0) +{ +uint8_t x_248; +x_248 = l_Lean_Exception_isRuntime(x_245); +x_233 = x_245; +x_234 = x_246; +x_235 = x_248; +goto block_244; +} +else +{ +x_233 = x_245; +x_234 = x_246; +x_235 = x_247; +goto block_244; +} +} +block_256: +{ +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; +x_251 = lean_ctor_get(x_250, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_251, 1); +lean_inc(x_252); +lean_dec(x_251); +x_253 = lean_ctor_get(x_250, 1); +lean_inc(x_253); +lean_dec_ref(x_250); +x_254 = lean_ctor_get(x_252, 0); +lean_inc(x_254); +x_255 = lean_ctor_get(x_252, 1); +lean_inc(x_255); +lean_dec(x_252); +x_41 = x_254; +x_42 = x_255; +x_43 = x_253; +goto block_46; +} +} +else +{ +uint8_t x_320; +lean_dec(x_47); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_320 = !lean_is_exclusive(x_229); +if (x_320 == 0) +{ +return x_229; +} +else +{ +lean_object* x_321; lean_object* x_322; lean_object* x_323; +x_321 = lean_ctor_get(x_229, 0); +x_322 = lean_ctor_get(x_229, 1); +lean_inc(x_322); +lean_inc(x_321); +lean_dec(x_229); +x_323 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_323, 0, x_321); +lean_ctor_set(x_323, 1, x_322); +return x_323; +} +} +} +block_34: +{ +lean_object* x_32; lean_object* x_33; +if (lean_is_scalar(x_28)) { + x_32 = lean_alloc_ctor(0, 2, 0); +} else { + x_32 = x_28; +} +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_27); +if (lean_is_scalar(x_25)) { + x_33 = lean_alloc_ctor(0, 2, 0); +} else { + x_33 = x_25; +} +lean_ctor_set(x_33, 0, x_29); +lean_ctor_set(x_33, 1, x_32); +x_15 = x_33; +x_16 = x_31; +goto block_20; +} +block_40: +{ +lean_object* x_38; lean_object* x_39; +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_27); +x_39 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_39, 0, x_35); +lean_ctor_set(x_39, 1, x_38); +x_15 = x_39; +x_16 = x_37; +goto block_20; +} +block_46: +{ +lean_object* x_44; lean_object* x_45; +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_42); +lean_ctor_set(x_44, 1, x_27); +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_41); +lean_ctor_set(x_45, 1, x_44); +x_15 = x_45; +x_16 = x_43; +goto block_20; +} +block_51: +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_array_push(x_24, x_47); +x_49 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_49, 0, x_26); +lean_ctor_set(x_49, 1, x_27); +x_50 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +x_15 = x_50; +x_16 = x_14; +goto block_20; +} +block_64: +{ +if (x_55 == 0) +{ +lean_object* x_56; +lean_dec_ref(x_53); +x_56 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_52, x_55, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_54); +if (lean_obj_tag(x_56) == 0) +{ +lean_object* x_57; lean_object* x_58; +x_57 = lean_ctor_get(x_56, 1); +lean_inc(x_57); +lean_dec_ref(x_56); +x_58 = lean_array_push(x_24, x_47); +x_35 = x_58; +x_36 = x_26; +x_37 = x_57; +goto block_40; +} +else +{ +uint8_t x_59; +lean_dec(x_47); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_59 = !lean_is_exclusive(x_56); +if (x_59 == 0) +{ +return x_56; +} +else +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = lean_ctor_get(x_56, 0); +x_61 = lean_ctor_get(x_56, 1); +lean_inc(x_61); +lean_inc(x_60); +lean_dec(x_56); +x_62 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_62, 0, x_60); +lean_ctor_set(x_62, 1, x_61); +return x_62; +} +} +} +else +{ +lean_object* x_63; +lean_dec_ref(x_52); +lean_dec(x_47); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_53); +lean_ctor_set(x_63, 1, x_54); +return x_63; +} +} +block_77: +{ +if (x_68 == 0) +{ +lean_object* x_69; +lean_dec_ref(x_65); +x_69 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_66, x_68, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_67); +if (lean_obj_tag(x_69) == 0) +{ +lean_object* x_70; lean_object* x_71; +x_70 = lean_ctor_get(x_69, 1); +lean_inc(x_70); +lean_dec_ref(x_69); +x_71 = lean_array_push(x_24, x_47); +x_29 = x_71; +x_30 = x_26; +x_31 = x_70; +goto block_34; +} +else +{ +uint8_t x_72; +lean_dec(x_47); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_72 = !lean_is_exclusive(x_69); +if (x_72 == 0) +{ +return x_69; +} +else +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_69, 0); +x_74 = lean_ctor_get(x_69, 1); +lean_inc(x_74); +lean_inc(x_73); +lean_dec(x_69); +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 +{ +lean_object* x_76; +lean_dec_ref(x_66); +lean_dec(x_47); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_76 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_76, 0, x_65); +lean_ctor_set(x_76, 1, x_67); +return x_76; +} +} +} +block_20: +{ +size_t x_17; size_t x_18; lean_object* x_19; +x_17 = 1; +x_18 = lean_usize_add(x_4, x_17); +x_19 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8(x_1, x_2, x_3, x_18, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_16); +return x_19; +} +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, size_t x_8, size_t x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { +_start: +{ +lean_object* x_20; +x_20 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8___redArg(x_1, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +return x_20; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__10___redArg(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; lean_object* x_14; uint8_t x_19; +x_19 = lean_usize_dec_lt(x_3, x_2); +if (x_19 == 0) +{ +lean_object* x_20; +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_4); +lean_ctor_set(x_20, 1, x_12); +return x_20; +} +else +{ +lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_21 = lean_array_uget(x_1, x_3); +lean_inc(x_21); +x_22 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_22, 0, x_21); +lean_inc_ref(x_4); +x_23 = l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased(x_4, x_22); +if (x_23 == 0) +{ +lean_object* x_24; +x_24 = l_Lean_Elab_Tactic_saveState___redArg(x_5, x_7, x_9, x_11, x_12); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +x_26 = lean_ctor_get(x_24, 1); +lean_inc(x_26); +lean_dec_ref(x_24); +x_27 = lean_unsigned_to_nat(1000u); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_28 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal(x_21, x_27, x_8, x_9, x_10, x_11, x_26); +if (lean_obj_tag(x_28) == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +lean_dec(x_25); +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +x_30 = lean_ctor_get(x_28, 1); +lean_inc(x_30); +lean_dec_ref(x_28); +x_31 = l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry(x_4, x_29); +x_13 = x_31; +x_14 = x_30; +goto block_18; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; uint8_t x_44; +x_32 = lean_ctor_get(x_28, 0); +lean_inc(x_32); +x_33 = lean_ctor_get(x_28, 1); +lean_inc(x_33); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + x_34 = x_28; +} else { + lean_dec_ref(x_28); + x_34 = lean_box(0); +} +x_44 = l_Lean_Exception_isInterrupt(x_32); +if (x_44 == 0) +{ +uint8_t x_45; +x_45 = l_Lean_Exception_isRuntime(x_32); +x_35 = x_45; +goto block_43; +} +else +{ +x_35 = x_44; +goto block_43; +} +block_43: +{ +if (x_35 == 0) +{ +lean_object* x_36; +lean_dec(x_34); +lean_dec(x_32); +x_36 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_25, x_35, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_33); +if (lean_obj_tag(x_36) == 0) +{ +lean_object* x_37; +x_37 = lean_ctor_get(x_36, 1); +lean_inc(x_37); +lean_dec_ref(x_36); +x_13 = x_4; +x_14 = x_37; +goto block_18; +} +else +{ +uint8_t x_38; +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_4); +x_38 = !lean_is_exclusive(x_36); +if (x_38 == 0) +{ +return x_36; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_36, 0); +x_40 = lean_ctor_get(x_36, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_36); +x_41 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; +} +} +} +else +{ +lean_object* x_42; +lean_dec(x_25); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_4); +if (lean_is_scalar(x_34)) { + x_42 = lean_alloc_ctor(1, 2, 0); +} else { + x_42 = x_34; +} +lean_ctor_set(x_42, 0, x_32); +lean_ctor_set(x_42, 1, x_33); +return x_42; +} +} +} +} +else +{ +uint8_t x_46; +lean_dec(x_21); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_4); +x_46 = !lean_is_exclusive(x_24); +if (x_46 == 0) +{ +return x_24; +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_24, 0); +x_48 = lean_ctor_get(x_24, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_24); +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +return x_49; +} +} +} +else +{ +lean_dec(x_21); +x_13 = x_4; +x_14 = x_12; +goto block_18; +} +} +block_18: +{ +size_t x_15; size_t x_16; +x_15 = 1; +x_16 = lean_usize_add(x_3, x_15); +x_3 = x_16; +x_4 = x_13; +x_12 = x_14; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__10(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; +x_14 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__10___redArg(x_1, x_2, x_3, x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_14; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__0() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("simp", 4, 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__1; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; +x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("optConfig", 9, 9); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__3; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; +x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("null", 4, 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__5; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("configItem", 10, 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__7; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; +x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("posConfigItem", 13, 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__9; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; +x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("+", 1, 1); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__12() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("unfoldPartialApp", 16, 16); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__12; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__12; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__15() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("negConfigItem", 13, 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__15; +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_3 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0; +x_4 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__17() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("-", 1, 1); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__18() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("zeta", 4, 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__18; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__18; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__21() { +_start: +{ +lean_object* x_1; +x_1 = l_Array_mkArray0(lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__22() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("[", 1, 1); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__23() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(",", 1, 1); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__24() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("]", 1, 1); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__25() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SpecAttr_getSpecSimpTheorems___boxed), 3, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +x_13 = l_Lean_Elab_Tactic_Do_elabConfig___redArg(x_1, x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_13, 1); +lean_inc(x_15); +lean_dec_ref(x_13); +x_16 = l_Lean_Elab_Tactic_Do_SpecAttr_getSpecTheorems___redArg(x_11, x_15); +if (lean_obj_tag(x_16) == 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; size_t x_27; size_t x_28; lean_object* x_29; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec_ref(x_16); +x_19 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__0; +x_20 = 0; +x_21 = lean_unsigned_to_nat(1u); +x_22 = l_Lean_Syntax_getArg(x_2, x_21); +x_23 = l_Lean_Syntax_getSepArgs(x_22); +lean_dec(x_22); +x_24 = lean_box(x_20); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_17); +lean_ctor_set(x_25, 1, x_24); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_19); +lean_ctor_set(x_26, 1, x_25); +x_27 = lean_array_size(x_23); +x_28 = 0; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +x_29 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8___redArg(x_21, x_23, x_27, x_28, x_26, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_18); +lean_dec_ref(x_23); +if (lean_obj_tag(x_29) == 0) +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; +x_30 = lean_ctor_get(x_29, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_30, 1); +lean_inc(x_31); +x_32 = lean_ctor_get(x_29, 1); +lean_inc(x_32); +lean_dec_ref(x_29); +x_33 = !lean_is_exclusive(x_30); +if (x_33 == 0) +{ +lean_object* x_34; lean_object* x_35; uint8_t x_36; +x_34 = lean_ctor_get(x_30, 0); +x_35 = lean_ctor_get(x_30, 1); +lean_dec(x_35); +x_36 = !lean_is_exclusive(x_31); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_40; +x_37 = lean_ctor_get(x_31, 0); +x_38 = lean_ctor_get(x_31, 1); +x_39 = lean_st_ref_get(x_11, x_32); +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; lean_object* x_85; lean_object* x_86; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +x_43 = lean_ctor_get(x_10, 5); +lean_inc(x_43); +x_44 = lean_ctor_get(x_10, 10); +lean_inc(x_44); +x_45 = lean_ctor_get(x_41, 0); +lean_inc_ref(x_45); +lean_dec(x_41); +x_46 = l_Lean_SourceInfo_fromRef(x_43, x_20); +lean_dec(x_43); +x_47 = l_Lean_Environment_mainModule(x_45); +lean_dec_ref(x_45); +x_48 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__1; +x_49 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__2; +lean_inc(x_46); +lean_ctor_set_tag(x_39, 2); +lean_ctor_set(x_39, 1, x_48); +lean_ctor_set(x_39, 0, x_46); +x_50 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__4; +x_51 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__6; +x_52 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__8; +x_53 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__10; +x_54 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__11; +lean_inc(x_46); +lean_ctor_set_tag(x_31, 2); +lean_ctor_set(x_31, 1, x_54); +lean_ctor_set(x_31, 0, x_46); +x_55 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__13; +x_56 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__14; +lean_inc(x_44); +lean_inc(x_47); +x_57 = l_Lean_addMacroScope(x_47, x_56, x_44); +x_58 = lean_box(0); +lean_inc(x_46); +x_59 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_59, 0, x_46); +lean_ctor_set(x_59, 1, x_55); +lean_ctor_set(x_59, 2, x_57); +lean_ctor_set(x_59, 3, x_58); +lean_inc(x_46); +x_60 = l_Lean_Syntax_node2(x_46, x_53, x_31, x_59); +lean_inc(x_46); +x_61 = l_Lean_Syntax_node1(x_46, x_52, x_60); +x_62 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__16; +x_63 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__17; +lean_inc(x_46); +lean_ctor_set_tag(x_30, 2); +lean_ctor_set(x_30, 1, x_63); +lean_ctor_set(x_30, 0, x_46); +x_64 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__19; +x_65 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__20; +x_66 = l_Lean_addMacroScope(x_47, x_65, x_44); +lean_inc(x_46); +x_67 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_67, 0, x_46); +lean_ctor_set(x_67, 1, x_64); +lean_ctor_set(x_67, 2, x_66); +lean_ctor_set(x_67, 3, x_58); +lean_inc(x_46); +x_68 = l_Lean_Syntax_node2(x_46, x_62, x_30, x_67); +lean_inc(x_46); +x_69 = l_Lean_Syntax_node1(x_46, x_52, x_68); +lean_inc(x_46); +x_70 = l_Lean_Syntax_node2(x_46, x_51, x_61, x_69); +lean_inc(x_46); +x_71 = l_Lean_Syntax_node1(x_46, x_50, x_70); +x_72 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__21; +lean_inc(x_46); +x_73 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_73, 0, x_46); +lean_ctor_set(x_73, 1, x_51); +lean_ctor_set(x_73, 2, x_72); +x_74 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__22; +lean_inc(x_46); +x_75 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_75, 0, x_46); +lean_ctor_set(x_75, 1, x_74); +x_76 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__23; +x_77 = l_Lean_Syntax_SepArray_ofElems(x_76, x_34); +lean_dec(x_34); +x_78 = l_Array_append___redArg(x_72, x_77); +lean_dec_ref(x_77); +lean_inc(x_46); +x_79 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_79, 0, x_46); +lean_ctor_set(x_79, 1, x_51); +lean_ctor_set(x_79, 2, x_78); +x_80 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__24; +lean_inc(x_46); +x_81 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_81, 0, x_46); +lean_ctor_set(x_81, 1, x_80); +lean_inc(x_46); +x_82 = l_Lean_Syntax_node3(x_46, x_51, x_75, x_79, x_81); +lean_inc_ref_n(x_73, 2); +x_83 = l_Lean_Syntax_node6(x_46, x_49, x_39, x_71, x_73, x_73, x_82, x_73); +x_84 = 0; +x_85 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__25; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +x_86 = l_Lean_Elab_Tactic_mkSimpContext(x_83, x_20, x_84, x_3, x_85, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_42); +lean_dec(x_83); +if (lean_obj_tag(x_86) == 0) +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; uint8_t x_98; +x_87 = lean_ctor_get(x_86, 0); +lean_inc(x_87); +x_88 = lean_ctor_get(x_86, 1); +lean_inc(x_88); +if (lean_is_exclusive(x_86)) { + lean_ctor_release(x_86, 0); + lean_ctor_release(x_86, 1); + x_89 = x_86; +} else { + lean_dec_ref(x_86); + x_89 = lean_box(0); +} +x_98 = lean_unbox(x_38); +lean_dec(x_38); +if (x_98 == 0) +{ +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +x_90 = x_37; +x_91 = x_88; +goto block_97; +} +else +{ +if (x_3 == 0) +{ +lean_object* x_99; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_99 = l_Lean_Meta_getPropHyps(x_8, x_9, x_10, x_11, x_88); +if (lean_obj_tag(x_99) == 0) +{ +lean_object* x_100; lean_object* x_101; size_t x_102; lean_object* x_103; +x_100 = lean_ctor_get(x_99, 0); +lean_inc(x_100); +x_101 = lean_ctor_get(x_99, 1); +lean_inc(x_101); +lean_dec_ref(x_99); +x_102 = lean_array_size(x_100); +x_103 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__10___redArg(x_100, x_102, x_28, x_37, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_101); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec(x_100); +if (lean_obj_tag(x_103) == 0) +{ +lean_object* x_104; lean_object* x_105; +x_104 = lean_ctor_get(x_103, 0); +lean_inc(x_104); +x_105 = lean_ctor_get(x_103, 1); +lean_inc(x_105); +lean_dec_ref(x_103); +x_90 = x_104; +x_91 = x_105; +goto block_97; +} +else +{ +uint8_t x_106; +lean_dec(x_89); +lean_dec(x_87); +lean_dec(x_14); +x_106 = !lean_is_exclusive(x_103); +if (x_106 == 0) +{ +return x_103; +} +else +{ +lean_object* x_107; lean_object* x_108; lean_object* x_109; +x_107 = lean_ctor_get(x_103, 0); +x_108 = lean_ctor_get(x_103, 1); +lean_inc(x_108); +lean_inc(x_107); +lean_dec(x_103); +x_109 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_108); +return x_109; +} +} +} +else +{ +uint8_t x_110; +lean_dec(x_89); +lean_dec(x_87); +lean_dec(x_37); +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +x_110 = !lean_is_exclusive(x_99); +if (x_110 == 0) +{ +return x_99; +} +else +{ +lean_object* x_111; lean_object* x_112; lean_object* x_113; +x_111 = lean_ctor_get(x_99, 0); +x_112 = lean_ctor_get(x_99, 1); +lean_inc(x_112); +lean_inc(x_111); +lean_dec(x_99); +x_113 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_113, 0, x_111); +lean_ctor_set(x_113, 1, x_112); +return x_113; +} +} +} +else +{ +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +x_90 = x_37; +x_91 = x_88; +goto block_97; +} +} +block_97: +{ +lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; +x_92 = lean_ctor_get(x_87, 0); +lean_inc_ref(x_92); +x_93 = lean_ctor_get(x_87, 1); +lean_inc_ref(x_93); +lean_dec(x_87); +x_94 = lean_box(1); +x_95 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_95, 0, x_14); +lean_ctor_set(x_95, 1, x_90); +lean_ctor_set(x_95, 2, x_92); +lean_ctor_set(x_95, 3, x_93); +lean_ctor_set(x_95, 4, x_94); +if (lean_is_scalar(x_89)) { + x_96 = lean_alloc_ctor(0, 2, 0); +} else { + x_96 = x_89; +} +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set(x_96, 1, x_91); +return x_96; +} +} +else +{ +uint8_t x_114; +lean_dec(x_38); +lean_dec(x_37); +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +x_114 = !lean_is_exclusive(x_86); +if (x_114 == 0) +{ +return x_86; +} +else +{ +lean_object* x_115; lean_object* x_116; lean_object* x_117; +x_115 = lean_ctor_get(x_86, 0); +x_116 = lean_ctor_get(x_86, 1); +lean_inc(x_116); +lean_inc(x_115); +lean_dec(x_86); +x_117 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_117, 0, x_115); +lean_ctor_set(x_117, 1, x_116); +return x_117; +} +} +} +else +{ +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; uint8_t x_162; lean_object* x_163; lean_object* x_164; +x_118 = lean_ctor_get(x_39, 0); +x_119 = lean_ctor_get(x_39, 1); +lean_inc(x_119); +lean_inc(x_118); +lean_dec(x_39); +x_120 = lean_ctor_get(x_10, 5); +lean_inc(x_120); +x_121 = lean_ctor_get(x_10, 10); +lean_inc(x_121); +x_122 = lean_ctor_get(x_118, 0); +lean_inc_ref(x_122); +lean_dec(x_118); +x_123 = l_Lean_SourceInfo_fromRef(x_120, x_20); +lean_dec(x_120); +x_124 = l_Lean_Environment_mainModule(x_122); +lean_dec_ref(x_122); +x_125 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__1; +x_126 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__2; +lean_inc(x_123); +x_127 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_127, 0, x_123); +lean_ctor_set(x_127, 1, x_125); +x_128 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__4; +x_129 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__6; +x_130 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__8; +x_131 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__10; +x_132 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__11; +lean_inc(x_123); +lean_ctor_set_tag(x_31, 2); +lean_ctor_set(x_31, 1, x_132); +lean_ctor_set(x_31, 0, x_123); +x_133 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__13; +x_134 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__14; +lean_inc(x_121); +lean_inc(x_124); +x_135 = l_Lean_addMacroScope(x_124, x_134, x_121); +x_136 = lean_box(0); +lean_inc(x_123); +x_137 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_137, 0, x_123); +lean_ctor_set(x_137, 1, x_133); +lean_ctor_set(x_137, 2, x_135); +lean_ctor_set(x_137, 3, x_136); +lean_inc(x_123); +x_138 = l_Lean_Syntax_node2(x_123, x_131, x_31, x_137); +lean_inc(x_123); +x_139 = l_Lean_Syntax_node1(x_123, x_130, x_138); +x_140 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__16; +x_141 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__17; +lean_inc(x_123); +lean_ctor_set_tag(x_30, 2); +lean_ctor_set(x_30, 1, x_141); +lean_ctor_set(x_30, 0, x_123); +x_142 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__19; +x_143 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__20; +x_144 = l_Lean_addMacroScope(x_124, x_143, x_121); +lean_inc(x_123); +x_145 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_145, 0, x_123); +lean_ctor_set(x_145, 1, x_142); +lean_ctor_set(x_145, 2, x_144); +lean_ctor_set(x_145, 3, x_136); +lean_inc(x_123); +x_146 = l_Lean_Syntax_node2(x_123, x_140, x_30, x_145); +lean_inc(x_123); +x_147 = l_Lean_Syntax_node1(x_123, x_130, x_146); +lean_inc(x_123); +x_148 = l_Lean_Syntax_node2(x_123, x_129, x_139, x_147); +lean_inc(x_123); +x_149 = l_Lean_Syntax_node1(x_123, x_128, x_148); +x_150 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__21; +lean_inc(x_123); +x_151 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_151, 0, x_123); +lean_ctor_set(x_151, 1, x_129); +lean_ctor_set(x_151, 2, x_150); +x_152 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__22; +lean_inc(x_123); +x_153 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_153, 0, x_123); +lean_ctor_set(x_153, 1, x_152); +x_154 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__23; +x_155 = l_Lean_Syntax_SepArray_ofElems(x_154, x_34); +lean_dec(x_34); +x_156 = l_Array_append___redArg(x_150, x_155); +lean_dec_ref(x_155); +lean_inc(x_123); +x_157 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_157, 0, x_123); +lean_ctor_set(x_157, 1, x_129); +lean_ctor_set(x_157, 2, x_156); +x_158 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__24; +lean_inc(x_123); +x_159 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_159, 0, x_123); +lean_ctor_set(x_159, 1, x_158); +lean_inc(x_123); +x_160 = l_Lean_Syntax_node3(x_123, x_129, x_153, x_157, x_159); +lean_inc_ref_n(x_151, 2); +x_161 = l_Lean_Syntax_node6(x_123, x_126, x_127, x_149, x_151, x_151, x_160, x_151); +x_162 = 0; +x_163 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__25; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +x_164 = l_Lean_Elab_Tactic_mkSimpContext(x_161, x_20, x_162, x_3, x_163, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_119); +lean_dec(x_161); +if (lean_obj_tag(x_164) == 0) +{ +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; uint8_t x_176; +x_165 = lean_ctor_get(x_164, 0); +lean_inc(x_165); +x_166 = lean_ctor_get(x_164, 1); +lean_inc(x_166); +if (lean_is_exclusive(x_164)) { + lean_ctor_release(x_164, 0); + lean_ctor_release(x_164, 1); + x_167 = x_164; +} else { + lean_dec_ref(x_164); + x_167 = lean_box(0); +} +x_176 = lean_unbox(x_38); +lean_dec(x_38); +if (x_176 == 0) +{ +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +x_168 = x_37; +x_169 = x_166; +goto block_175; +} +else +{ +if (x_3 == 0) +{ +lean_object* x_177; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_177 = l_Lean_Meta_getPropHyps(x_8, x_9, x_10, x_11, x_166); +if (lean_obj_tag(x_177) == 0) +{ +lean_object* x_178; lean_object* x_179; size_t x_180; lean_object* x_181; +x_178 = lean_ctor_get(x_177, 0); +lean_inc(x_178); +x_179 = lean_ctor_get(x_177, 1); +lean_inc(x_179); +lean_dec_ref(x_177); +x_180 = lean_array_size(x_178); +x_181 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__10___redArg(x_178, x_180, x_28, x_37, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_179); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec(x_178); +if (lean_obj_tag(x_181) == 0) +{ +lean_object* x_182; lean_object* x_183; +x_182 = lean_ctor_get(x_181, 0); +lean_inc(x_182); +x_183 = lean_ctor_get(x_181, 1); +lean_inc(x_183); +lean_dec_ref(x_181); +x_168 = x_182; +x_169 = x_183; +goto block_175; +} +else +{ +lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; +lean_dec(x_167); +lean_dec(x_165); +lean_dec(x_14); +x_184 = lean_ctor_get(x_181, 0); +lean_inc(x_184); +x_185 = lean_ctor_get(x_181, 1); +lean_inc(x_185); +if (lean_is_exclusive(x_181)) { + lean_ctor_release(x_181, 0); + lean_ctor_release(x_181, 1); + x_186 = x_181; +} else { + lean_dec_ref(x_181); + x_186 = lean_box(0); +} +if (lean_is_scalar(x_186)) { + x_187 = lean_alloc_ctor(1, 2, 0); +} else { + x_187 = x_186; +} +lean_ctor_set(x_187, 0, x_184); +lean_ctor_set(x_187, 1, x_185); +return x_187; +} +} +else +{ +lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; +lean_dec(x_167); +lean_dec(x_165); +lean_dec(x_37); +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +x_188 = lean_ctor_get(x_177, 0); +lean_inc(x_188); +x_189 = lean_ctor_get(x_177, 1); +lean_inc(x_189); +if (lean_is_exclusive(x_177)) { + lean_ctor_release(x_177, 0); + lean_ctor_release(x_177, 1); + x_190 = x_177; +} else { + lean_dec_ref(x_177); + x_190 = lean_box(0); +} +if (lean_is_scalar(x_190)) { + x_191 = lean_alloc_ctor(1, 2, 0); +} else { + x_191 = x_190; +} +lean_ctor_set(x_191, 0, x_188); +lean_ctor_set(x_191, 1, x_189); +return x_191; +} +} +else +{ +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +x_168 = x_37; +x_169 = x_166; +goto block_175; +} +} +block_175: +{ +lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; +x_170 = lean_ctor_get(x_165, 0); +lean_inc_ref(x_170); +x_171 = lean_ctor_get(x_165, 1); +lean_inc_ref(x_171); +lean_dec(x_165); +x_172 = lean_box(1); +x_173 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_173, 0, x_14); +lean_ctor_set(x_173, 1, x_168); +lean_ctor_set(x_173, 2, x_170); +lean_ctor_set(x_173, 3, x_171); +lean_ctor_set(x_173, 4, x_172); +if (lean_is_scalar(x_167)) { + x_174 = lean_alloc_ctor(0, 2, 0); +} else { + x_174 = x_167; +} +lean_ctor_set(x_174, 0, x_173); +lean_ctor_set(x_174, 1, x_169); +return x_174; +} +} +else +{ +lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; +lean_dec(x_38); +lean_dec(x_37); +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +x_192 = lean_ctor_get(x_164, 0); +lean_inc(x_192); +x_193 = lean_ctor_get(x_164, 1); +lean_inc(x_193); +if (lean_is_exclusive(x_164)) { + lean_ctor_release(x_164, 0); + lean_ctor_release(x_164, 1); + x_194 = x_164; +} else { + lean_dec_ref(x_164); + x_194 = lean_box(0); +} +if (lean_is_scalar(x_194)) { + x_195 = lean_alloc_ctor(1, 2, 0); +} else { + x_195 = x_194; +} +lean_ctor_set(x_195, 0, x_192); +lean_ctor_set(x_195, 1, x_193); +return x_195; +} +} +} +else +{ +lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; uint8_t x_245; lean_object* x_246; lean_object* x_247; +x_196 = lean_ctor_get(x_31, 0); +x_197 = lean_ctor_get(x_31, 1); +lean_inc(x_197); +lean_inc(x_196); +lean_dec(x_31); +x_198 = lean_st_ref_get(x_11, x_32); +x_199 = lean_ctor_get(x_198, 0); +lean_inc(x_199); +x_200 = lean_ctor_get(x_198, 1); +lean_inc(x_200); +if (lean_is_exclusive(x_198)) { + lean_ctor_release(x_198, 0); + lean_ctor_release(x_198, 1); + x_201 = x_198; +} else { + lean_dec_ref(x_198); + x_201 = lean_box(0); +} +x_202 = lean_ctor_get(x_10, 5); +lean_inc(x_202); +x_203 = lean_ctor_get(x_10, 10); +lean_inc(x_203); +x_204 = lean_ctor_get(x_199, 0); +lean_inc_ref(x_204); +lean_dec(x_199); +x_205 = l_Lean_SourceInfo_fromRef(x_202, x_20); +lean_dec(x_202); +x_206 = l_Lean_Environment_mainModule(x_204); +lean_dec_ref(x_204); +x_207 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__1; +x_208 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__2; +lean_inc(x_205); +if (lean_is_scalar(x_201)) { + x_209 = lean_alloc_ctor(2, 2, 0); +} else { + x_209 = x_201; + lean_ctor_set_tag(x_209, 2); +} +lean_ctor_set(x_209, 0, x_205); +lean_ctor_set(x_209, 1, x_207); +x_210 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__4; +x_211 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__6; +x_212 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__8; +x_213 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__10; +x_214 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__11; +lean_inc(x_205); +x_215 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_215, 0, x_205); +lean_ctor_set(x_215, 1, x_214); +x_216 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__13; +x_217 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__14; +lean_inc(x_203); +lean_inc(x_206); +x_218 = l_Lean_addMacroScope(x_206, x_217, x_203); +x_219 = lean_box(0); +lean_inc(x_205); +x_220 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_220, 0, x_205); +lean_ctor_set(x_220, 1, x_216); +lean_ctor_set(x_220, 2, x_218); +lean_ctor_set(x_220, 3, x_219); +lean_inc(x_205); +x_221 = l_Lean_Syntax_node2(x_205, x_213, x_215, x_220); +lean_inc(x_205); +x_222 = l_Lean_Syntax_node1(x_205, x_212, x_221); +x_223 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__16; +x_224 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__17; +lean_inc(x_205); +lean_ctor_set_tag(x_30, 2); +lean_ctor_set(x_30, 1, x_224); +lean_ctor_set(x_30, 0, x_205); +x_225 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__19; +x_226 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__20; +x_227 = l_Lean_addMacroScope(x_206, x_226, x_203); +lean_inc(x_205); +x_228 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_228, 0, x_205); +lean_ctor_set(x_228, 1, x_225); +lean_ctor_set(x_228, 2, x_227); +lean_ctor_set(x_228, 3, x_219); +lean_inc(x_205); +x_229 = l_Lean_Syntax_node2(x_205, x_223, x_30, x_228); +lean_inc(x_205); +x_230 = l_Lean_Syntax_node1(x_205, x_212, x_229); +lean_inc(x_205); +x_231 = l_Lean_Syntax_node2(x_205, x_211, x_222, x_230); +lean_inc(x_205); +x_232 = l_Lean_Syntax_node1(x_205, x_210, x_231); +x_233 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__21; +lean_inc(x_205); +x_234 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_234, 0, x_205); +lean_ctor_set(x_234, 1, x_211); +lean_ctor_set(x_234, 2, x_233); +x_235 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__22; +lean_inc(x_205); +x_236 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_236, 0, x_205); +lean_ctor_set(x_236, 1, x_235); +x_237 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__23; +x_238 = l_Lean_Syntax_SepArray_ofElems(x_237, x_34); +lean_dec(x_34); +x_239 = l_Array_append___redArg(x_233, x_238); +lean_dec_ref(x_238); +lean_inc(x_205); +x_240 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_240, 0, x_205); +lean_ctor_set(x_240, 1, x_211); +lean_ctor_set(x_240, 2, x_239); +x_241 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__24; +lean_inc(x_205); +x_242 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_242, 0, x_205); +lean_ctor_set(x_242, 1, x_241); +lean_inc(x_205); +x_243 = l_Lean_Syntax_node3(x_205, x_211, x_236, x_240, x_242); +lean_inc_ref_n(x_234, 2); +x_244 = l_Lean_Syntax_node6(x_205, x_208, x_209, x_232, x_234, x_234, x_243, x_234); +x_245 = 0; +x_246 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__25; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +x_247 = l_Lean_Elab_Tactic_mkSimpContext(x_244, x_20, x_245, x_3, x_246, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_200); +lean_dec(x_244); +if (lean_obj_tag(x_247) == 0) +{ +lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; uint8_t x_259; +x_248 = lean_ctor_get(x_247, 0); +lean_inc(x_248); +x_249 = lean_ctor_get(x_247, 1); +lean_inc(x_249); +if (lean_is_exclusive(x_247)) { + lean_ctor_release(x_247, 0); + lean_ctor_release(x_247, 1); + x_250 = x_247; +} else { + lean_dec_ref(x_247); + x_250 = lean_box(0); +} +x_259 = lean_unbox(x_197); +lean_dec(x_197); +if (x_259 == 0) +{ +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +x_251 = x_196; +x_252 = x_249; +goto block_258; +} +else +{ +if (x_3 == 0) +{ +lean_object* x_260; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_260 = l_Lean_Meta_getPropHyps(x_8, x_9, x_10, x_11, x_249); +if (lean_obj_tag(x_260) == 0) +{ +lean_object* x_261; lean_object* x_262; size_t x_263; lean_object* x_264; +x_261 = lean_ctor_get(x_260, 0); +lean_inc(x_261); +x_262 = lean_ctor_get(x_260, 1); +lean_inc(x_262); +lean_dec_ref(x_260); +x_263 = lean_array_size(x_261); +x_264 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__10___redArg(x_261, x_263, x_28, x_196, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_262); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec(x_261); +if (lean_obj_tag(x_264) == 0) +{ +lean_object* x_265; lean_object* x_266; +x_265 = lean_ctor_get(x_264, 0); +lean_inc(x_265); +x_266 = lean_ctor_get(x_264, 1); +lean_inc(x_266); +lean_dec_ref(x_264); +x_251 = x_265; +x_252 = x_266; +goto block_258; +} +else +{ +lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +lean_dec(x_250); +lean_dec(x_248); +lean_dec(x_14); +x_267 = lean_ctor_get(x_264, 0); +lean_inc(x_267); +x_268 = lean_ctor_get(x_264, 1); +lean_inc(x_268); +if (lean_is_exclusive(x_264)) { + lean_ctor_release(x_264, 0); + lean_ctor_release(x_264, 1); + x_269 = x_264; +} else { + lean_dec_ref(x_264); + x_269 = lean_box(0); +} +if (lean_is_scalar(x_269)) { + x_270 = lean_alloc_ctor(1, 2, 0); +} else { + x_270 = x_269; +} +lean_ctor_set(x_270, 0, x_267); +lean_ctor_set(x_270, 1, x_268); +return x_270; +} +} +else +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +lean_dec(x_250); +lean_dec(x_248); +lean_dec(x_196); +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +x_271 = lean_ctor_get(x_260, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_260, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_260)) { + lean_ctor_release(x_260, 0); + lean_ctor_release(x_260, 1); + x_273 = x_260; +} else { + lean_dec_ref(x_260); + x_273 = lean_box(0); +} +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(1, 2, 0); +} else { + x_274 = x_273; +} +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +} +else +{ +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +x_251 = x_196; +x_252 = x_249; +goto block_258; +} +} +block_258: +{ +lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; +x_253 = lean_ctor_get(x_248, 0); +lean_inc_ref(x_253); +x_254 = lean_ctor_get(x_248, 1); +lean_inc_ref(x_254); +lean_dec(x_248); +x_255 = lean_box(1); +x_256 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_256, 0, x_14); +lean_ctor_set(x_256, 1, x_251); +lean_ctor_set(x_256, 2, x_253); +lean_ctor_set(x_256, 3, x_254); +lean_ctor_set(x_256, 4, x_255); +if (lean_is_scalar(x_250)) { + x_257 = lean_alloc_ctor(0, 2, 0); +} else { + x_257 = x_250; +} +lean_ctor_set(x_257, 0, x_256); +lean_ctor_set(x_257, 1, x_252); +return x_257; +} +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +lean_dec(x_197); +lean_dec(x_196); +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +x_275 = lean_ctor_get(x_247, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_247, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_247)) { + lean_ctor_release(x_247, 0); + lean_ctor_release(x_247, 1); + x_277 = x_247; +} else { + lean_dec_ref(x_247); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; +} +} +} +else +{ +lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; uint8_t x_331; lean_object* x_332; lean_object* x_333; +x_279 = lean_ctor_get(x_30, 0); +lean_inc(x_279); +lean_dec(x_30); +x_280 = lean_ctor_get(x_31, 0); +lean_inc(x_280); +x_281 = lean_ctor_get(x_31, 1); +lean_inc(x_281); +if (lean_is_exclusive(x_31)) { + lean_ctor_release(x_31, 0); + lean_ctor_release(x_31, 1); + x_282 = x_31; +} else { + lean_dec_ref(x_31); + x_282 = lean_box(0); +} +x_283 = lean_st_ref_get(x_11, x_32); +x_284 = lean_ctor_get(x_283, 0); +lean_inc(x_284); +x_285 = lean_ctor_get(x_283, 1); +lean_inc(x_285); +if (lean_is_exclusive(x_283)) { + lean_ctor_release(x_283, 0); + lean_ctor_release(x_283, 1); + x_286 = x_283; +} else { + lean_dec_ref(x_283); + x_286 = lean_box(0); +} +x_287 = lean_ctor_get(x_10, 5); +lean_inc(x_287); +x_288 = lean_ctor_get(x_10, 10); +lean_inc(x_288); +x_289 = lean_ctor_get(x_284, 0); +lean_inc_ref(x_289); +lean_dec(x_284); +x_290 = l_Lean_SourceInfo_fromRef(x_287, x_20); +lean_dec(x_287); +x_291 = l_Lean_Environment_mainModule(x_289); +lean_dec_ref(x_289); +x_292 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__1; +x_293 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__2; +lean_inc(x_290); +if (lean_is_scalar(x_286)) { + x_294 = lean_alloc_ctor(2, 2, 0); +} else { + x_294 = x_286; + lean_ctor_set_tag(x_294, 2); +} +lean_ctor_set(x_294, 0, x_290); +lean_ctor_set(x_294, 1, x_292); +x_295 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__4; +x_296 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__6; +x_297 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__8; +x_298 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__10; +x_299 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__11; +lean_inc(x_290); +if (lean_is_scalar(x_282)) { + x_300 = lean_alloc_ctor(2, 2, 0); +} else { + x_300 = x_282; + lean_ctor_set_tag(x_300, 2); +} +lean_ctor_set(x_300, 0, x_290); +lean_ctor_set(x_300, 1, x_299); +x_301 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__13; +x_302 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__14; +lean_inc(x_288); +lean_inc(x_291); +x_303 = l_Lean_addMacroScope(x_291, x_302, x_288); +x_304 = lean_box(0); +lean_inc(x_290); +x_305 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_305, 0, x_290); +lean_ctor_set(x_305, 1, x_301); +lean_ctor_set(x_305, 2, x_303); +lean_ctor_set(x_305, 3, x_304); +lean_inc(x_290); +x_306 = l_Lean_Syntax_node2(x_290, x_298, x_300, x_305); +lean_inc(x_290); +x_307 = l_Lean_Syntax_node1(x_290, x_297, x_306); +x_308 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__16; +x_309 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__17; +lean_inc(x_290); +x_310 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_310, 0, x_290); +lean_ctor_set(x_310, 1, x_309); +x_311 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__19; +x_312 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__20; +x_313 = l_Lean_addMacroScope(x_291, x_312, x_288); +lean_inc(x_290); +x_314 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_314, 0, x_290); +lean_ctor_set(x_314, 1, x_311); +lean_ctor_set(x_314, 2, x_313); +lean_ctor_set(x_314, 3, x_304); +lean_inc(x_290); +x_315 = l_Lean_Syntax_node2(x_290, x_308, x_310, x_314); +lean_inc(x_290); +x_316 = l_Lean_Syntax_node1(x_290, x_297, x_315); +lean_inc(x_290); +x_317 = l_Lean_Syntax_node2(x_290, x_296, x_307, x_316); +lean_inc(x_290); +x_318 = l_Lean_Syntax_node1(x_290, x_295, x_317); +x_319 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__21; +lean_inc(x_290); +x_320 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_320, 0, x_290); +lean_ctor_set(x_320, 1, x_296); +lean_ctor_set(x_320, 2, x_319); +x_321 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__22; +lean_inc(x_290); +x_322 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_322, 0, x_290); +lean_ctor_set(x_322, 1, x_321); +x_323 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__23; +x_324 = l_Lean_Syntax_SepArray_ofElems(x_323, x_279); +lean_dec(x_279); +x_325 = l_Array_append___redArg(x_319, x_324); +lean_dec_ref(x_324); +lean_inc(x_290); +x_326 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_326, 0, x_290); +lean_ctor_set(x_326, 1, x_296); +lean_ctor_set(x_326, 2, x_325); +x_327 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__24; +lean_inc(x_290); +x_328 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_328, 0, x_290); +lean_ctor_set(x_328, 1, x_327); +lean_inc(x_290); +x_329 = l_Lean_Syntax_node3(x_290, x_296, x_322, x_326, x_328); +lean_inc_ref_n(x_320, 2); +x_330 = l_Lean_Syntax_node6(x_290, x_293, x_294, x_318, x_320, x_320, x_329, x_320); +x_331 = 0; +x_332 = l_Lean_Elab_Tactic_Do_mkSpecContext___closed__25; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +x_333 = l_Lean_Elab_Tactic_mkSimpContext(x_330, x_20, x_331, x_3, x_332, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_285); +lean_dec(x_330); +if (lean_obj_tag(x_333) == 0) +{ +lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; uint8_t x_345; +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_345 = lean_unbox(x_281); +lean_dec(x_281); +if (x_345 == 0) +{ +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +x_337 = x_280; +x_338 = x_335; +goto block_344; +} +else +{ +if (x_3 == 0) +{ +lean_object* x_346; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_346 = l_Lean_Meta_getPropHyps(x_8, x_9, x_10, x_11, x_335); +if (lean_obj_tag(x_346) == 0) +{ +lean_object* x_347; lean_object* x_348; size_t x_349; lean_object* x_350; +x_347 = lean_ctor_get(x_346, 0); +lean_inc(x_347); +x_348 = lean_ctor_get(x_346, 1); +lean_inc(x_348); +lean_dec_ref(x_346); +x_349 = lean_array_size(x_347); +x_350 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__10___redArg(x_347, x_349, x_28, x_280, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_348); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec(x_347); +if (lean_obj_tag(x_350) == 0) +{ +lean_object* x_351; lean_object* x_352; +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_ref(x_350); +x_337 = x_351; +x_338 = x_352; +goto block_344; +} +else +{ +lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; +lean_dec(x_336); +lean_dec(x_334); +lean_dec(x_14); +x_353 = lean_ctor_get(x_350, 0); +lean_inc(x_353); +x_354 = lean_ctor_get(x_350, 1); +lean_inc(x_354); +if (lean_is_exclusive(x_350)) { + lean_ctor_release(x_350, 0); + lean_ctor_release(x_350, 1); + x_355 = x_350; +} else { + lean_dec_ref(x_350); + x_355 = lean_box(0); +} +if (lean_is_scalar(x_355)) { + x_356 = lean_alloc_ctor(1, 2, 0); +} else { + x_356 = x_355; +} +lean_ctor_set(x_356, 0, x_353); +lean_ctor_set(x_356, 1, x_354); +return x_356; +} +} +else +{ +lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; +lean_dec(x_336); +lean_dec(x_334); +lean_dec(x_280); +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +x_357 = lean_ctor_get(x_346, 0); +lean_inc(x_357); +x_358 = lean_ctor_get(x_346, 1); +lean_inc(x_358); +if (lean_is_exclusive(x_346)) { + lean_ctor_release(x_346, 0); + lean_ctor_release(x_346, 1); + x_359 = x_346; +} else { + lean_dec_ref(x_346); + x_359 = lean_box(0); +} +if (lean_is_scalar(x_359)) { + x_360 = lean_alloc_ctor(1, 2, 0); +} else { + x_360 = x_359; +} +lean_ctor_set(x_360, 0, x_357); +lean_ctor_set(x_360, 1, x_358); +return x_360; +} +} +else +{ +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +x_337 = x_280; +x_338 = x_335; +goto block_344; +} +} +block_344: +{ +lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; +x_339 = lean_ctor_get(x_334, 0); +lean_inc_ref(x_339); +x_340 = lean_ctor_get(x_334, 1); +lean_inc_ref(x_340); +lean_dec(x_334); +x_341 = lean_box(1); +x_342 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_342, 0, x_14); +lean_ctor_set(x_342, 1, x_337); +lean_ctor_set(x_342, 2, x_339); +lean_ctor_set(x_342, 3, x_340); +lean_ctor_set(x_342, 4, x_341); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_342); +lean_ctor_set(x_343, 1, x_338); +return x_343; +} +} +else +{ +lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; +lean_dec(x_281); +lean_dec(x_280); +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +x_361 = lean_ctor_get(x_333, 0); +lean_inc(x_361); +x_362 = lean_ctor_get(x_333, 1); +lean_inc(x_362); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_363 = x_333; +} else { + lean_dec_ref(x_333); + x_363 = lean_box(0); +} +if (lean_is_scalar(x_363)) { + x_364 = lean_alloc_ctor(1, 2, 0); +} else { + x_364 = x_363; +} +lean_ctor_set(x_364, 0, x_361); +lean_ctor_set(x_364, 1, x_362); +return x_364; +} +} +} +else +{ +uint8_t x_365; +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_365 = !lean_is_exclusive(x_29); +if (x_365 == 0) +{ +return x_29; +} +else +{ +lean_object* x_366; lean_object* x_367; lean_object* x_368; +x_366 = lean_ctor_get(x_29, 0); +x_367 = lean_ctor_get(x_29, 1); +lean_inc(x_367); +lean_inc(x_366); +lean_dec(x_29); +x_368 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_368, 0, x_366); +lean_ctor_set(x_368, 1, x_367); +return x_368; +} +} +} +else +{ +uint8_t x_369; +lean_dec(x_14); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_369 = !lean_is_exclusive(x_16); +if (x_369 == 0) +{ +return x_16; +} +else +{ +lean_object* x_370; lean_object* x_371; lean_object* x_372; +x_370 = lean_ctor_get(x_16, 0); +x_371 = lean_ctor_get(x_16, 1); +lean_inc(x_371); +lean_inc(x_370); +lean_dec(x_16); +x_372 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_372, 0, x_370); +lean_ctor_set(x_372, 1, x_371); +return x_372; +} +} +} +else +{ +uint8_t x_373; +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_373 = !lean_is_exclusive(x_13); +if (x_373 == 0) +{ +return x_13; +} +else +{ +lean_object* x_374; lean_object* x_375; lean_object* x_376; +x_374 = lean_ctor_get(x_13, 0); +x_375 = lean_ctor_get(x_13, 1); +lean_inc(x_375); +lean_inc(x_374); +lean_dec(x_13); +x_376 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_376, 0, x_374); +lean_ctor_set(x_376, 1, x_375); +return x_376; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_throwError___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__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: +{ +lean_object* x_12; +x_12 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_11); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_2); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_11); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_1); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__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, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_12); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_2); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__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, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_11); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_2); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_9); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__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: +{ +lean_object* x_12; +x_12 = l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_9); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +size_t x_15; size_t x_16; lean_object* x_17; +x_15 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_16 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_17 = l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8(x_1, x_2, x_15, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +size_t x_15; size_t x_16; lean_object* x_17; +x_15 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_16 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_17 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8___redArg(x_1, x_2, x_15, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +_start: +{ +size_t x_20; size_t x_21; lean_object* x_22; +x_20 = lean_unbox_usize(x_8); +lean_dec(x_8); +x_21 = lean_unbox_usize(x_9); +lean_dec(x_9); +x_22 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_20, x_21, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_22; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__10___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +size_t x_13; size_t x_14; lean_object* x_15; +x_13 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_14 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_15 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__10___redArg(x_1, x_13, x_14, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_1); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +size_t x_14; size_t x_15; lean_object* x_16; +x_14 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_15 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_16 = l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__10(x_1, x_14, x_15, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_1); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mkSpecContext___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; lean_object* x_14; +x_13 = lean_unbox(x_3); +x_14 = l_Lean_Elab_Tactic_Do_mkSpecContext(x_1, x_2, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_2); +return x_14; +} +} +lean_object* initialize_Lean_Elab_Tactic_Simp(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Elab_Tactic_Do_Attr(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Elab_Tactic_Do_VCGen_Basic(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Elab_Tactic_Simp(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_Tactic_Do_Attr(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__7____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__8____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__8____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__8____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__9____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__9____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__9____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__10____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__10____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__10____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__11____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__11____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__11____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__12____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__12____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__12____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__13____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__13____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__13____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__14____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__14____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__14____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__15____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__15____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__15____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__16____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__16____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__16____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__17____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__17____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__17____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__18____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__18____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__18____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__19____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__19____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__19____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__20____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__20____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__20____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__21____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__21____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__21____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__22____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__22____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__22____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__23____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__23____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__23____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__24____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__24____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__24____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__25____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__25____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__25____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__26____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__26____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__26____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__27____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__27____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__27____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__28____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__28____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__28____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__29____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__29____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__29____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__30____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__30____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__30____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__31____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__31____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__31____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__32____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__32____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__32____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__33____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_ = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__33____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__33____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_); +if (builtin) {res = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_5_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l_Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_ = _init_l_Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_initFn___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_); +l_Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_ = _init_l_Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_initFn___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_); +l_Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_ = _init_l_Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_initFn___closed__2____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_); +l_Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_ = _init_l_Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_initFn___closed__3____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_); +l_Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_ = _init_l_Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_initFn___closed__4____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_); +l_Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_ = _init_l_Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_initFn___closed__5____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_); +l_Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_ = _init_l_Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_initFn___closed__6____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_); +if (builtin) {res = l_Lean_Elab_Tactic_Do_initFn____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_70_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +l_Lean_Elab_Tactic_Do_mvcgen_warning = lean_io_result_get_value(res); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mvcgen_warning); +lean_dec_ref(res); +}l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_ = _init_l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__0____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_); +l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_ = _init_l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_evalUnsafe___redArg___closed__1____x40_Lean_Elab_Tactic_Do_VCGen_Basic___hyg_261_); +l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__0 = _init_l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__0(); +lean_mark_persistent(l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__0); +l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__1 = _init_l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__1(); +lean_mark_persistent(l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__1); +l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__2 = _init_l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__2(); +lean_mark_persistent(l_List_foldl___at___Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1_spec__2___closed__2); +l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__0 = _init_l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__0(); +lean_mark_persistent(l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__0); +l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__1 = _init_l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__1(); +lean_mark_persistent(l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__1); +l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__2 = _init_l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__2(); +lean_mark_persistent(l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__2); +l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__3 = _init_l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__3(); +lean_mark_persistent(l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__3); +l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__4 = _init_l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__4(); +lean_mark_persistent(l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__1___redArg___closed__4); +l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__0 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__0); +l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__1 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__1); +l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__2 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__2); +l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__3 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__3); +l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__4); +l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__5); +l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__6 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__6); +l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__7 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__7); +l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__8 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__8); +l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__9 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__9); +l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__10 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__10(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__10); +l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__11 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__11(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__11); +l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__12 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__12(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__12); +l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__13 = _init_l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__13(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_elabConfig___redArg___closed__13); +l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM = _init_l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM); +l_Lean_Elab_Tactic_Do_isDuplicable___closed__0 = _init_l_Lean_Elab_Tactic_Do_isDuplicable___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_isDuplicable___closed__0); +l_Lean_Elab_Tactic_Do_isDuplicable___closed__1 = _init_l_Lean_Elab_Tactic_Do_isDuplicable___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_isDuplicable___closed__1); +l_Lean_Elab_Tactic_Do_isDuplicable___closed__2 = _init_l_Lean_Elab_Tactic_Do_isDuplicable___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_isDuplicable___closed__2); +l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__1___closed__0 = _init_l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__1___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg___lam__1___closed__0); +l_Lean_Elab_Tactic_Do_isJP___closed__0 = _init_l_Lean_Elab_Tactic_Do_isJP___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_isJP___closed__0); +l_Lean_Elab_Tactic_Do_isJP___closed__1 = _init_l_Lean_Elab_Tactic_Do_isJP___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_isJP___closed__1); +l_Lean_Elab_Tactic_Do_getNumJoinParams___closed__0 = _init_l_Lean_Elab_Tactic_Do_getNumJoinParams___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_getNumJoinParams___closed__0); +l_Lean_Elab_Tactic_Do_getNumJoinParams___closed__1 = _init_l_Lean_Elab_Tactic_Do_getNumJoinParams___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_getNumJoinParams___closed__1); +l_Lean_Elab_Tactic_Do_reduceProjBeta_x3f_go___closed__0 = _init_l_Lean_Elab_Tactic_Do_reduceProjBeta_x3f_go___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_reduceProjBeta_x3f_go___closed__0); +l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__0 = _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__0(); +lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__0); +l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__1 = _init_l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__1(); +lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__0___redArg___closed__1); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0___closed__0 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0___closed__0(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___lam__0___closed__0); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__0); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__1 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__1(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__1); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__2 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__2(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__2); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__3 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__3(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__3); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__4 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__4(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__4); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__5 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__5(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__5); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__6 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__6(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__6); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__7 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__7(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__7); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__8 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__8(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__8); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__9 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__9(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__9); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__10 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__10(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__10); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__11 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__11(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__11); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__12 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__12(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__12); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__13 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__13(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__13); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__14 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__14(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__14); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__15 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__15(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__15); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__16 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__16(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2_spec__2_spec__2___closed__16); +l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__0 = _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__0(); +lean_mark_persistent(l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__0); +l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__1 = _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__1(); +lean_mark_persistent(l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__1); +l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__2 = _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__2(); +lean_mark_persistent(l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__2); +l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__3 = _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__3(); +lean_mark_persistent(l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__2_spec__2_spec__2___redArg___closed__3); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__0); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__1 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__1(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__1); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__2 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__2(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__2); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__3 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__3(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__3); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__4 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__4(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__4); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__5 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__5(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__5); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__6 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__6(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__6); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__7 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__7(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__7); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__8 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__8(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__8); +l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__9 = _init_l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__9(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Elab_Tactic_Do_mkSpecContext_spec__8_spec__8___closed__9); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__0 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__0); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__1 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__1); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__2 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__2); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__3 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__3); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__4 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__4); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__5 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__5); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__6 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__6); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__7 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__7); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__8 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__8); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__9 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__9); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__10 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__10(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__10); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__11 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__11(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__11); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__12 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__12(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__12); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__13 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__13(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__13); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__14 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__14(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__14); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__15 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__15(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__15); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__16 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__16(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__16); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__17 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__17(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__17); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__18 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__18(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__18); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__19 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__19(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__19); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__20 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__20(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__20); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__21 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__21(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__21); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__22 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__22(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__22); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__23 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__23(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__23); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__24 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__24(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__24); +l_Lean_Elab_Tactic_Do_mkSpecContext___closed__25 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__25(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__25); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen/Split.c b/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen/Split.c new file mode 100644 index 0000000000..b750c6fcb7 --- /dev/null +++ b/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen/Split.c @@ -0,0 +1,4706 @@ +// Lean compiler output +// Module: Lean.Elab.Tactic.Do.VCGen.Split +// Imports: Lean.Meta.Tactic.FunInd +#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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__4; +lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_altInfos___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__16; +static lean_object* l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__3; +lean_object* l_Lean_Expr_looseBVarRange(lean_object*); +static lean_object* l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__3; +static lean_object* l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__4; +lean_object* l_List_lengthTR___redArg(lean_object*); +LEAN_EXPORT lean_object* l_Nat_repeatTR_loop___at___Lean_Elab_Tactic_Do_SplitInfo_resTy_spec__0(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Core_instMonadCoreM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___lam__0___closed__0; +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__3; +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_SplitInfo_altInfos_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo; +LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1___boxed(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_Do_SplitInfo_splitWithConstantMotive___redArg___lam__9___closed__0; +static lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__11___closed__0; +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__9; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___closed__2; +static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__0; +lean_object* l_Lean_Tactic_FunInd_rwMatcher(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_MatcherApp_transform___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Expr_isApp(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__4___closed__0; +lean_object* l_Lean_Expr_sort___override(lean_object*); +lean_object* l_Lean_Meta_mkLambdaFVars___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_array_push(lean_object*, lean_object*); +static lean_object* l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__1; +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__0; +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_unknownIdentifierMessageTag; +uint8_t l_Lean_Name_isAnonymous(lean_object*); +lean_object* l_ReaderT_instFunctorOfMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_replaceRef(lean_object*, lean_object*); +lean_object* lean_mk_array(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_Match_MatcherInfo_arity(lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__0; +lean_object* l_Lean_Environment_find_x3f(lean_object*, lean_object*, uint8_t); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_rwIfOrMatcher(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Expr_isAppOf(lean_object*, lean_object*); +lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_altInfos(lean_object*); +lean_object* l_Lean_stringToMessageData(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MessageData_note(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__9(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2_spec__2_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_ReaderT_instMonad___redArg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___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*); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__3; +static lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__0___closed__0; +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_SplitInfo_altInfos_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_findLocalDeclWithType_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_getRevArg_x21(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_Match_Extension_getMatcherInfo_x3f(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__1___closed__1; +static lean_object* l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__1; +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__13; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_resTy(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__2; +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_instMonadEIO(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__3; +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__2; +lean_object* l_Lean_Meta_Match_MatcherInfo_numAlts(lean_object*); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__10; +lean_object* l_Lean_Meta_getLevel(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__1; +lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_instInhabitedOfMonad___redArg(lean_object*, lean_object*); +lean_object* lean_st_ref_get(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__5(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); +static lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__0___closed__1; +static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__2; +static lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__1___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_ofSubarray___redArg(lean_object*); +static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__3; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__14(lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__1; +static lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__9___closed__1; +extern lean_object* l_Lean_instInhabitedExpr; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__2(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_MatcherApp_toMatcherInfo(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__6___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_EXPORT lean_object* l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__9___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_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___closed__1; +lean_object* l_Lean_mkNot(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_simpDiscrs_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_extract___redArg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__0; +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__7; +static lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___closed__0; +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__15; +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MessageData_ofConstName(lean_object*, uint8_t); +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Environment_contains(lean_object*, lean_object*, uint8_t); +lean_object* l_Lean_MessageData_ofExpr(lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_getAppNumArgs(lean_object*); +lean_object* lean_name_append_index_after(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__14; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_fget(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__11(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_instMonadMetaM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__0; +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__1; +lean_object* l_ReaderT_instFunctorOfMonad___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Tactic_FunInd_rwIfWith(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_MatcherApp_toExpr(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__2; +lean_object* l_Array_toSubarray___redArg(lean_object*, lean_object*, lean_object*); +lean_object* lean_panic_fn(lean_object*, lean_object*); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__11; +lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* l_Lean_Expr_getAppFn(lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__2; +lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__5; +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___boxed(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_Do_instInhabitedSplitInfo___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__10(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_Simp_simpMatchDiscrs_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_mk(lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_fvar___override(lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__6; +lean_object* l_Lean_Name_mkStr1(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__1; +lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Core_instMonadCoreM___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__0; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_get_size(lean_object*); +static lean_object* l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__2; +lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__8; +uint8_t lean_nat_dec_le(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_simpDiscrs_x3f___boxed(lean_object*, lean_object*, 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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_mkApp5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Environment_setExporting(lean_object*, uint8_t); +static lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__4___closed__1; +lean_object* l_Lean_InductiveVal_numCtors(lean_object*); +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_SplitInfo_altInfos_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_isCasesOnRecursor(lean_object*, lean_object*); +lean_object* l_Lean_Meta_instMonadMetaM___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_altInfos___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__12; +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_SplitInfo_altInfos_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_getSplitInfo_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__2; +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__15(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* _init_l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("_inhabitedExprDummy", 19, 19); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__0; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__1; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__2; +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_Elab_Tactic_Do_instInhabitedSplitInfo() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__3; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Nat_repeatTR_loop___at___Lean_Elab_Tactic_Do_SplitInfo_resTy_spec__0(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; uint8_t x_4; +x_3 = lean_unsigned_to_nat(0u); +x_4 = lean_nat_dec_eq(x_1, x_3); +if (x_4 == 1) +{ +lean_dec(x_1); +return x_2; +} +else +{ +lean_object* x_5; lean_object* x_6; +x_5 = lean_unsigned_to_nat(1u); +x_6 = lean_nat_sub(x_1, x_5); +lean_dec(x_1); +if (lean_obj_tag(x_2) == 0) +{ +x_1 = x_6; +goto _start; +} +else +{ +uint8_t x_8; +x_8 = !lean_is_exclusive(x_2); +if (x_8 == 0) +{ +lean_object* x_9; +x_9 = lean_ctor_get(x_2, 0); +if (lean_obj_tag(x_9) == 6) +{ +lean_object* x_10; +x_10 = lean_ctor_get(x_9, 2); +lean_inc_ref(x_10); +lean_dec_ref(x_9); +lean_ctor_set(x_2, 0, x_10); +x_1 = x_6; +goto _start; +} +else +{ +lean_object* x_12; +lean_free_object(x_2); +lean_dec(x_9); +x_12 = lean_box(0); +x_1 = x_6; +x_2 = x_12; +goto _start; +} +} +else +{ +lean_object* x_14; +x_14 = lean_ctor_get(x_2, 0); +lean_inc(x_14); +lean_dec(x_2); +if (lean_obj_tag(x_14) == 6) +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_ctor_get(x_14, 2); +lean_inc_ref(x_15); +lean_dec_ref(x_14); +x_16 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_16, 0, x_15); +x_1 = x_6; +x_2 = x_16; +goto _start; +} +else +{ +lean_object* x_18; +lean_dec(x_14); +x_18 = lean_box(0); +x_1 = x_6; +x_2 = x_18; +goto _start; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_resTy(lean_object* x_1) { +_start: +{ +lean_object* x_2; +if (lean_obj_tag(x_1) == 2) +{ +uint8_t x_9; +x_9 = !lean_is_exclusive(x_1); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = lean_ctor_get(x_1, 0); +x_11 = lean_ctor_get(x_10, 3); +lean_inc_ref(x_11); +x_12 = lean_ctor_get(x_10, 5); +lean_inc_ref(x_12); +lean_dec_ref(x_10); +x_13 = lean_array_get_size(x_11); +lean_dec_ref(x_11); +lean_inc_ref(x_12); +lean_ctor_set_tag(x_1, 1); +lean_ctor_set(x_1, 0, x_12); +x_14 = l_Nat_repeatTR_loop___at___Lean_Elab_Tactic_Do_SplitInfo_resTy_spec__0(x_13, x_1); +if (lean_obj_tag(x_14) == 0) +{ +lean_dec_ref(x_12); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = l_Lean_Expr_looseBVarRange(x_15); +lean_dec(x_15); +x_17 = l_Lean_Expr_looseBVarRange(x_12); +lean_dec_ref(x_12); +x_18 = lean_nat_dec_eq(x_16, x_17); +lean_dec(x_17); +lean_dec(x_16); +if (x_18 == 0) +{ +lean_object* x_19; +lean_dec_ref(x_14); +x_19 = lean_box(0); +return x_19; +} +else +{ +return x_14; +} +} +} +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; +x_20 = lean_ctor_get(x_1, 0); +lean_inc(x_20); +lean_dec(x_1); +x_21 = lean_ctor_get(x_20, 3); +lean_inc_ref(x_21); +x_22 = lean_ctor_get(x_20, 5); +lean_inc_ref(x_22); +lean_dec_ref(x_20); +x_23 = lean_array_get_size(x_21); +lean_dec_ref(x_21); +lean_inc_ref(x_22); +x_24 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_24, 0, x_22); +x_25 = l_Nat_repeatTR_loop___at___Lean_Elab_Tactic_Do_SplitInfo_resTy_spec__0(x_23, x_24); +if (lean_obj_tag(x_25) == 0) +{ +lean_dec_ref(x_22); +return x_25; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +x_27 = l_Lean_Expr_looseBVarRange(x_26); +lean_dec(x_26); +x_28 = l_Lean_Expr_looseBVarRange(x_22); +lean_dec_ref(x_22); +x_29 = lean_nat_dec_eq(x_27, x_28); +lean_dec(x_28); +lean_dec(x_27); +if (x_29 == 0) +{ +lean_object* x_30; +lean_dec_ref(x_25); +x_30 = lean_box(0); +return x_30; +} +else +{ +return x_25; +} +} +} +} +else +{ +lean_object* x_31; +x_31 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_31); +lean_dec_ref(x_1); +x_2 = x_31; +goto block_8; +} +block_8: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_3 = l_Lean_Expr_getAppNumArgs(x_2); +x_4 = lean_unsigned_to_nat(1u); +x_5 = lean_nat_sub(x_3, x_4); +lean_dec(x_3); +x_6 = l_Lean_Expr_getRevArg_x21(x_2, x_5); +lean_dec_ref(x_2); +x_7 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_7, 0, x_6); +return x_7; +} +} +} +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_SplitInfo_altInfos_spec__0___redArg(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; uint8_t x_8; +x_7 = lean_unsigned_to_nat(0u); +x_8 = lean_nat_dec_eq(x_4, x_7); +if (x_8 == 1) +{ +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_2); +return x_6; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_9 = lean_ctor_get(x_1, 8); +x_10 = lean_unsigned_to_nat(1u); +x_11 = lean_nat_sub(x_4, x_10); +lean_dec(x_4); +x_12 = lean_array_fget(x_3, x_5); +lean_inc_ref(x_2); +x_13 = lean_array_get(x_2, x_9, x_5); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +x_15 = lean_nat_add(x_5, x_10); +lean_dec(x_5); +x_16 = lean_array_push(x_6, x_14); +x_4 = x_11; +x_5 = x_15; +x_6 = x_16; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_SplitInfo_altInfos_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_SplitInfo_altInfos_spec__0___redArg(x_1, x_2, x_3, x_4, x_5, x_7); +return x_8; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SplitInfo_altInfos___closed__0() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(2u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_altInfos(lean_object* x_1) { +_start: +{ +lean_object* x_2; +if (lean_obj_tag(x_1) == 2) +{ +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_1, 0); +x_21 = lean_ctor_get(x_20, 7); +x_22 = l_Lean_instInhabitedExpr; +x_23 = lean_array_get_size(x_21); +x_24 = lean_unsigned_to_nat(0u); +x_25 = lean_mk_empty_array_with_capacity(x_23); +x_26 = l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_SplitInfo_altInfos_spec__0___redArg(x_20, x_22, x_21, x_23, x_24, x_25); +return x_26; +} +else +{ +lean_object* x_27; +x_27 = lean_ctor_get(x_1, 0); +x_2 = x_27; +goto block_19; +} +block_19: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_3 = lean_unsigned_to_nat(0u); +x_4 = lean_unsigned_to_nat(3u); +x_5 = l_Lean_Expr_getAppNumArgs(x_2); +x_6 = lean_nat_sub(x_5, x_4); +x_7 = lean_unsigned_to_nat(1u); +x_8 = lean_nat_sub(x_6, x_7); +lean_dec(x_6); +x_9 = l_Lean_Expr_getRevArg_x21(x_2, x_8); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_3); +lean_ctor_set(x_10, 1, x_9); +x_11 = lean_unsigned_to_nat(4u); +x_12 = lean_nat_sub(x_5, x_11); +lean_dec(x_5); +x_13 = lean_nat_sub(x_12, x_7); +lean_dec(x_12); +x_14 = l_Lean_Expr_getRevArg_x21(x_2, x_13); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_14); +x_16 = l_Lean_Elab_Tactic_Do_SplitInfo_altInfos___closed__0; +x_17 = lean_array_push(x_16, x_10); +x_18 = lean_array_push(x_17, x_15); +return x_18; +} +} +} +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_SplitInfo_altInfos_spec__0___redArg___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_SplitInfo_altInfos_spec__0___redArg(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_SplitInfo_altInfos_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Array_mapFinIdxM_map___at___Lean_Elab_Tactic_Do_SplitInfo_altInfos_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_altInfos___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Elab_Tactic_Do_SplitInfo_altInfos(x_1); +lean_dec_ref(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__0___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("ite", 3, 3); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__0___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__0___closed__0; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_8 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__0___closed__1; +x_9 = lean_box(0); +x_10 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_10, 0, x_1); +lean_ctor_set(x_10, 1, x_9); +x_11 = l_Lean_Expr_const___override(x_8, x_10); +x_12 = l_Lean_mkApp5(x_11, x_2, x_3, x_4, x_5, x_7); +x_13 = lean_apply_2(x_6, lean_box(0), x_12); +return x_13; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__1___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("isFalse", 7, 7); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__1___closed__0; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__0), 7, 6); +lean_closure_set(x_11, 0, x_1); +lean_closure_set(x_11, 1, x_2); +lean_closure_set(x_11, 2, x_3); +lean_closure_set(x_11, 3, x_4); +lean_closure_set(x_11, 4, x_10); +lean_closure_set(x_11, 5, x_5); +x_12 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__1___closed__1; +x_13 = lean_apply_3(x_6, x_12, x_7, x_8); +x_14 = lean_apply_4(x_9, lean_box(0), lean_box(0), x_13, x_11); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_6 = lean_mk_empty_array_with_capacity(x_1); +x_7 = lean_array_push(x_6, x_2); +x_8 = 0; +x_9 = 1; +x_10 = lean_box(x_8); +x_11 = lean_box(x_3); +x_12 = lean_box(x_8); +x_13 = lean_box(x_3); +x_14 = lean_box(x_9); +x_15 = lean_alloc_closure((void*)(l_Lean_Meta_mkLambdaFVars___boxed), 12, 7); +lean_closure_set(x_15, 0, x_7); +lean_closure_set(x_15, 1, x_5); +lean_closure_set(x_15, 2, x_10); +lean_closure_set(x_15, 3, x_11); +lean_closure_set(x_15, 4, x_12); +lean_closure_set(x_15, 5, x_13); +lean_closure_set(x_15, 6, x_14); +x_16 = lean_apply_2(x_4, lean_box(0), x_15); +return x_16; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("isTrue", 6, 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__0; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_7 = lean_box(x_2); +x_8 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__2___boxed), 5, 4); +lean_closure_set(x_8, 0, x_1); +lean_closure_set(x_8, 1, x_6); +lean_closure_set(x_8, 2, x_7); +lean_closure_set(x_8, 3, x_3); +x_9 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__1; +x_10 = lean_unsigned_to_nat(0u); +x_11 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__2; +x_12 = lean_apply_3(x_4, x_9, x_10, x_11); +x_13 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_12, x_8); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__5(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_7 = lean_box(x_2); +lean_inc(x_1); +x_8 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__2___boxed), 5, 4); +lean_closure_set(x_8, 0, x_1); +lean_closure_set(x_8, 1, x_6); +lean_closure_set(x_8, 2, x_7); +lean_closure_set(x_8, 3, x_3); +x_9 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__1___closed__1; +x_10 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__2; +x_11 = lean_apply_3(x_4, x_9, x_1, x_10); +x_12 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_11, x_8); +return x_12; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__4___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("dite", 4, 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__4___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__4___closed__0; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_8 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__4___closed__1; +x_9 = lean_box(0); +x_10 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_10, 0, x_1); +lean_ctor_set(x_10, 1, x_9); +x_11 = l_Lean_Expr_const___override(x_8, x_10); +x_12 = l_Lean_mkApp5(x_11, x_2, x_3, x_4, x_5, x_7); +x_13 = lean_apply_2(x_6, lean_box(0), x_12); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__6(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, uint8_t x_9, lean_object* x_10, uint8_t x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +lean_inc_ref(x_3); +x_14 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__4), 7, 6); +lean_closure_set(x_14, 0, x_1); +lean_closure_set(x_14, 1, x_2); +lean_closure_set(x_14, 2, x_3); +lean_closure_set(x_14, 3, x_4); +lean_closure_set(x_14, 4, x_13); +lean_closure_set(x_14, 5, x_5); +x_15 = l_Lean_mkNot(x_3); +x_16 = l_Lean_Meta_withLocalDecl___redArg(x_6, x_7, x_8, x_9, x_15, x_10, x_11); +x_17 = lean_apply_4(x_12, lean_box(0), lean_box(0), x_16, x_14); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__7(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; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_12 = 0; +x_13 = 0; +x_14 = lean_box(x_12); +x_15 = lean_box(x_13); +lean_inc_ref(x_9); +lean_inc(x_11); +lean_inc_ref(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_3); +x_16 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__6___boxed), 13, 12); +lean_closure_set(x_16, 0, x_1); +lean_closure_set(x_16, 1, x_2); +lean_closure_set(x_16, 2, x_3); +lean_closure_set(x_16, 3, x_4); +lean_closure_set(x_16, 4, x_5); +lean_closure_set(x_16, 5, x_6); +lean_closure_set(x_16, 6, x_7); +lean_closure_set(x_16, 7, x_11); +lean_closure_set(x_16, 8, x_14); +lean_closure_set(x_16, 9, x_8); +lean_closure_set(x_16, 10, x_15); +lean_closure_set(x_16, 11, x_9); +x_17 = l_Lean_Meta_withLocalDecl___redArg(x_6, x_7, x_11, x_12, x_3, x_10, x_13); +x_18 = lean_apply_4(x_9, lean_box(0), lean_box(0), x_17, x_16); +return x_18; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__8(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; +x_7 = l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(x_1, x_4, x_5, x_6); +return x_7; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__9___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("h", 1, 1); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__9___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__9___closed__0; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__9(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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; 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_11 = lean_unsigned_to_nat(1u); +x_12 = l_Lean_Expr_getAppNumArgs(x_1); +x_13 = lean_nat_sub(x_12, x_11); +x_14 = lean_nat_sub(x_13, x_11); +lean_dec(x_13); +x_15 = l_Lean_Expr_getRevArg_x21(x_1, x_14); +x_16 = lean_unsigned_to_nat(2u); +x_17 = lean_nat_sub(x_12, x_16); +lean_dec(x_12); +x_18 = lean_nat_sub(x_17, x_11); +lean_dec(x_17); +x_19 = l_Lean_Expr_getRevArg_x21(x_1, x_18); +if (x_2 == 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_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +x_20 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__1; +x_21 = lean_unsigned_to_nat(0u); +x_22 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__2; +lean_inc_ref(x_6); +lean_inc_ref(x_5); +x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__1), 10, 9); +lean_closure_set(x_23, 0, x_10); +lean_closure_set(x_23, 1, x_3); +lean_closure_set(x_23, 2, x_15); +lean_closure_set(x_23, 3, x_19); +lean_closure_set(x_23, 4, x_4); +lean_closure_set(x_23, 5, x_5); +lean_closure_set(x_23, 6, x_11); +lean_closure_set(x_23, 7, x_22); +lean_closure_set(x_23, 8, x_6); +x_24 = lean_apply_3(x_5, x_20, x_21, x_22); +x_25 = lean_apply_4(x_6, lean_box(0), lean_box(0), x_24, x_23); +return x_25; +} +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; lean_object* x_33; lean_object* x_34; +x_26 = lean_box(x_2); +lean_inc_ref(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_7); +x_27 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___boxed), 6, 5); +lean_closure_set(x_27, 0, x_11); +lean_closure_set(x_27, 1, x_26); +lean_closure_set(x_27, 2, x_7); +lean_closure_set(x_27, 3, x_5); +lean_closure_set(x_27, 4, x_6); +x_28 = lean_box(x_2); +lean_inc_ref(x_6); +lean_inc_ref(x_7); +x_29 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__5___boxed), 6, 5); +lean_closure_set(x_29, 0, x_11); +lean_closure_set(x_29, 1, x_28); +lean_closure_set(x_29, 2, x_7); +lean_closure_set(x_29, 3, x_5); +lean_closure_set(x_29, 4, x_6); +lean_inc_ref(x_6); +x_30 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__7), 11, 10); +lean_closure_set(x_30, 0, x_10); +lean_closure_set(x_30, 1, x_3); +lean_closure_set(x_30, 2, x_15); +lean_closure_set(x_30, 3, x_19); +lean_closure_set(x_30, 4, x_4); +lean_closure_set(x_30, 5, x_8); +lean_closure_set(x_30, 6, x_9); +lean_closure_set(x_30, 7, x_29); +lean_closure_set(x_30, 8, x_6); +lean_closure_set(x_30, 9, x_27); +x_31 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__9___closed__1; +x_32 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__8___boxed), 6, 1); +lean_closure_set(x_32, 0, x_31); +x_33 = lean_apply_2(x_7, lean_box(0), x_32); +x_34 = lean_apply_4(x_6, lean_box(0), lean_box(0), x_33, x_30); +return x_34; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__10(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; uint8_t 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; lean_object* x_12; lean_object* x_13; +x_4 = 0; +x_5 = 1; +x_6 = 1; +x_7 = lean_box(x_4); +x_8 = lean_box(x_5); +x_9 = lean_box(x_4); +x_10 = lean_box(x_5); +x_11 = lean_box(x_6); +x_12 = lean_alloc_closure((void*)(l_Lean_Meta_mkLambdaFVars___boxed), 12, 7); +lean_closure_set(x_12, 0, x_1); +lean_closure_set(x_12, 1, x_3); +lean_closure_set(x_12, 2, x_7); +lean_closure_set(x_12, 3, x_8); +lean_closure_set(x_12, 4, x_9); +lean_closure_set(x_12, 5, x_10); +lean_closure_set(x_12, 6, x_11); +x_13 = lean_apply_2(x_2, lean_box(0), x_12); +return x_13; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__11___closed__0() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(1u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_5 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__1; +x_6 = lean_unsigned_to_nat(0u); +x_7 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__11___closed__0; +x_8 = lean_array_push(x_7, x_4); +lean_inc_ref(x_8); +x_9 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__10), 3, 2); +lean_closure_set(x_9, 0, x_8); +lean_closure_set(x_9, 1, x_1); +x_10 = lean_apply_3(x_2, x_5, x_6, x_8); +x_11 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_10, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_6 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__1___closed__1; +x_7 = lean_mk_empty_array_with_capacity(x_1); +x_8 = lean_array_push(x_7, x_5); +lean_inc_ref(x_8); +x_9 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__10), 3, 2); +lean_closure_set(x_9, 0, x_8); +lean_closure_set(x_9, 1, x_2); +x_10 = lean_apply_3(x_3, x_6, x_1, x_8); +x_11 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_10, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__17(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_11 = lean_unsigned_to_nat(1u); +lean_inc_ref(x_3); +lean_inc_ref(x_1); +x_12 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__13), 5, 4); +lean_closure_set(x_12, 0, x_11); +lean_closure_set(x_12, 1, x_1); +lean_closure_set(x_12, 2, x_2); +lean_closure_set(x_12, 3, x_3); +x_13 = l_Lean_Expr_getAppNumArgs(x_4); +x_14 = lean_nat_sub(x_13, x_11); +x_15 = lean_nat_sub(x_14, x_11); +lean_dec(x_14); +x_16 = l_Lean_Expr_getRevArg_x21(x_4, x_15); +x_17 = lean_unsigned_to_nat(2u); +x_18 = lean_nat_sub(x_13, x_17); +lean_dec(x_13); +x_19 = lean_nat_sub(x_18, x_11); +lean_dec(x_18); +x_20 = l_Lean_Expr_getRevArg_x21(x_4, x_19); +lean_inc_ref(x_3); +x_21 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__7), 11, 10); +lean_closure_set(x_21, 0, x_10); +lean_closure_set(x_21, 1, x_5); +lean_closure_set(x_21, 2, x_16); +lean_closure_set(x_21, 3, x_20); +lean_closure_set(x_21, 4, x_6); +lean_closure_set(x_21, 5, x_7); +lean_closure_set(x_21, 6, x_8); +lean_closure_set(x_21, 7, x_12); +lean_closure_set(x_21, 8, x_3); +lean_closure_set(x_21, 9, x_9); +x_22 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__9___closed__1; +x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__8___boxed), 6, 1); +lean_closure_set(x_23, 0, x_22); +x_24 = lean_apply_2(x_1, lean_box(0), x_23); +x_25 = lean_apply_4(x_3, lean_box(0), lean_box(0), x_24, x_21); +return x_25; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__12(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_6 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__9___closed__1; +x_7 = lean_unsigned_to_nat(1u); +x_8 = lean_nat_add(x_2, x_7); +x_9 = lean_name_append_index_after(x_6, x_8); +x_10 = lean_apply_3(x_1, x_9, x_2, x_4); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__14(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Meta_MatcherApp_toExpr(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__15(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = lean_apply_2(x_1, lean_box(0), x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg(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, uint8_t x_12) { +_start: +{ +lean_object* x_13; +x_13 = lean_ctor_get(x_3, 0); +lean_inc_ref(x_13); +switch (lean_obj_tag(x_9)) { +case 0: +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +x_14 = lean_ctor_get(x_3, 1); +lean_inc_ref(x_14); +x_15 = lean_ctor_get(x_13, 1); +lean_inc_ref(x_15); +lean_dec_ref(x_13); +x_16 = lean_ctor_get(x_9, 0); +lean_inc_ref(x_16); +lean_dec_ref(x_9); +x_17 = lean_box(x_12); +lean_inc_ref(x_1); +lean_inc_ref(x_14); +lean_inc_ref(x_10); +x_18 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__9___boxed), 10, 9); +lean_closure_set(x_18, 0, x_16); +lean_closure_set(x_18, 1, x_17); +lean_closure_set(x_18, 2, x_10); +lean_closure_set(x_18, 3, x_15); +lean_closure_set(x_18, 4, x_11); +lean_closure_set(x_18, 5, x_14); +lean_closure_set(x_18, 6, x_1); +lean_closure_set(x_18, 7, x_2); +lean_closure_set(x_18, 8, x_3); +x_19 = lean_alloc_closure((void*)(l_Lean_Meta_getLevel), 6, 1); +lean_closure_set(x_19, 0, x_10); +x_20 = lean_apply_2(x_1, lean_box(0), x_19); +x_21 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_20, x_18); +return x_21; +} +case 1: +{ +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_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +x_22 = lean_ctor_get(x_3, 1); +lean_inc_ref(x_22); +x_23 = lean_ctor_get(x_13, 1); +lean_inc_ref(x_23); +lean_dec_ref(x_13); +x_24 = lean_ctor_get(x_9, 0); +lean_inc_ref(x_24); +lean_dec_ref(x_9); +lean_inc_ref(x_22); +lean_inc_ref(x_11); +lean_inc_ref(x_1); +x_25 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__11), 4, 3); +lean_closure_set(x_25, 0, x_1); +lean_closure_set(x_25, 1, x_11); +lean_closure_set(x_25, 2, x_22); +lean_inc_ref(x_10); +lean_inc_ref(x_22); +lean_inc_ref(x_1); +x_26 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__17___boxed), 10, 9); +lean_closure_set(x_26, 0, x_1); +lean_closure_set(x_26, 1, x_11); +lean_closure_set(x_26, 2, x_22); +lean_closure_set(x_26, 3, x_24); +lean_closure_set(x_26, 4, x_10); +lean_closure_set(x_26, 5, x_23); +lean_closure_set(x_26, 6, x_2); +lean_closure_set(x_26, 7, x_3); +lean_closure_set(x_26, 8, x_25); +x_27 = lean_alloc_closure((void*)(l_Lean_Meta_getLevel), 6, 1); +lean_closure_set(x_27, 0, x_10); +x_28 = lean_apply_2(x_1, lean_box(0), x_27); +x_29 = lean_apply_4(x_22, lean_box(0), lean_box(0), x_28, x_26); +return x_29; +} +default: +{ +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; +x_30 = lean_ctor_get(x_13, 0); +lean_inc_ref(x_30); +x_31 = lean_ctor_get(x_13, 1); +lean_inc_ref(x_31); +lean_dec_ref(x_13); +x_32 = lean_ctor_get(x_9, 0); +lean_inc_ref(x_32); +lean_dec_ref(x_9); +x_33 = lean_ctor_get(x_30, 0); +lean_inc_ref(x_33); +lean_dec_ref(x_30); +x_34 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__12___boxed), 5, 1); +lean_closure_set(x_34, 0, x_11); +x_35 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__14), 1, 0); +lean_inc_ref(x_31); +x_36 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__15___boxed), 4, 2); +lean_closure_set(x_36, 0, x_31); +lean_closure_set(x_36, 1, x_10); +x_37 = lean_apply_1(x_31, lean_box(0)); +lean_inc_ref(x_37); +x_38 = l_Lean_Meta_MatcherApp_transform___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_32, x_12, x_12, x_37, x_36, x_34, x_37); +x_39 = lean_apply_4(x_33, lean_box(0), lean_box(0), x_35, x_38); +return x_39; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, uint8_t x_13) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +uint8_t x_6; lean_object* x_7; +x_6 = lean_unbox(x_3); +x_7 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__2(x_1, x_2, x_6, x_4, x_5); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +uint8_t x_7; lean_object* x_8; +x_7 = lean_unbox(x_2); +x_8 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3(x_1, x_7, x_3, x_4, x_5, x_6); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__5___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) { +_start: +{ +uint8_t x_7; lean_object* x_8; +x_7 = lean_unbox(x_2); +x_8 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__5(x_1, x_7, x_3, x_4, x_5, x_6); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_unbox(x_9); +x_15 = lean_unbox(x_11); +x_16 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_14, x_10, x_15, x_12, x_13); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__8___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__8(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_2); +x_12 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__9(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec_ref(x_1); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__17___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__17(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec_ref(x_4); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__12___boxed(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; +x_6 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__12(x_1, x_2, x_3, x_4, x_5); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__15___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__15(x_1, x_2, x_3, x_4); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; lean_object* x_14; +x_13 = lean_unbox(x_12); +x_14 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_13); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; lean_object* x_15; +x_14 = lean_unbox(x_13); +x_15 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_14); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_simpDiscrs_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +if (lean_obj_tag(x_1) == 2) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_ctor_get(x_1, 0); +x_12 = l_Lean_Meta_MatcherApp_toMatcherInfo(x_11); +x_13 = l_Lean_Meta_Simp_simpMatchDiscrs_x3f(x_12, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_14 = lean_box(0); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_10); +return x_15; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_simpDiscrs_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_SplitInfo_simpDiscrs_x3f(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec_ref(x_1); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = lean_st_ref_get(x_2, x_3); +x_5 = !lean_is_exclusive(x_4); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_6 = lean_ctor_get(x_4, 0); +x_7 = lean_ctor_get(x_6, 0); +lean_inc_ref(x_7); +lean_dec(x_6); +x_8 = l_Lean_Meta_Match_Extension_getMatcherInfo_x3f(x_7, x_1); +lean_ctor_set(x_4, 0, x_8); +return x_4; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_9 = lean_ctor_get(x_4, 0); +x_10 = lean_ctor_get(x_4, 1); +lean_inc(x_10); +lean_inc(x_9); +lean_dec(x_4); +x_11 = lean_ctor_get(x_9, 0); +lean_inc_ref(x_11); +lean_dec(x_9); +x_12 = l_Lean_Meta_Match_Extension_getMatcherInfo_x3f(x_11, x_1); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_10); +return x_13; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__0(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; +x_7 = l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__0___redArg(x_1, x_5, x_6); +return x_7; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___lam__0___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_unknownIdentifierMessageTag; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_8 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___lam__0___closed__0; +x_9 = lean_alloc_ctor(8, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_1); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_7); +return x_10; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__0; +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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__0; +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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__0; +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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__0; +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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__0; +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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__0; +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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__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; lean_object* x_7; lean_object* x_8; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__6; +x_2 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__5; +x_3 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__4; +x_4 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__3; +x_5 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__2; +x_6 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__1; +x_7 = lean_unsigned_to_nat(0u); +x_8 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_8, 0, x_7); +lean_ctor_set(x_8, 1, x_7); +lean_ctor_set(x_8, 2, x_7); +lean_ctor_set(x_8, 3, x_6); +lean_ctor_set(x_8, 4, x_5); +lean_ctor_set(x_8, 5, x_4); +lean_ctor_set(x_8, 6, x_3); +lean_ctor_set(x_8, 7, x_2); +lean_ctor_set(x_8, 8, x_1); +return x_8; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__0; +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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(32u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__9; +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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__11() { +_start: +{ +size_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = 5; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__9; +x_4 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__10; +x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +lean_ctor_set(x_5, 2, x_2); +lean_ctor_set(x_5, 3, x_2); +lean_ctor_set_usize(x_5, 4, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = lean_box(1); +x_2 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__11; +x_3 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__8; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_1); +return x_4; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__13() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("A private declaration `", 23, 23); +return x_1; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__13; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__15() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("` exists but is not accessible in the current context.", 54, 54); +return x_1; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__15; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; uint8_t x_9; +x_8 = lean_st_ref_get(x_6, x_7); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_16; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_8, 1); +x_12 = lean_ctor_get(x_10, 0); +lean_inc_ref(x_12); +lean_dec(x_10); +x_16 = l_Lean_Name_isAnonymous(x_2); +if (x_16 == 0) +{ +uint8_t x_17; +x_17 = lean_ctor_get_uint8(x_12, sizeof(void*)*8); +if (x_17 == 0) +{ +lean_dec_ref(x_12); +lean_free_object(x_8); +lean_dec(x_2); +goto block_15; +} +else +{ +lean_object* x_18; uint8_t x_19; +x_18 = l_Lean_Environment_setExporting(x_12, x_16); +lean_inc(x_2); +lean_inc_ref(x_18); +x_19 = l_Lean_Environment_contains(x_18, x_2, x_17); +if (x_19 == 0) +{ +lean_dec_ref(x_18); +lean_free_object(x_8); +lean_dec(x_2); +goto block_15; +} +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; +x_20 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__7; +x_21 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__12; +x_22 = lean_box(0); +x_23 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_23, 0, x_18); +lean_ctor_set(x_23, 1, x_20); +lean_ctor_set(x_23, 2, x_21); +lean_ctor_set(x_23, 3, x_22); +x_24 = l_Lean_MessageData_ofConstName(x_2, x_16); +lean_ctor_set_tag(x_8, 3); +lean_ctor_set(x_8, 1, x_24); +lean_ctor_set(x_8, 0, x_23); +x_25 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__14; +x_26 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_8); +x_27 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__16; +x_28 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +x_29 = l_Lean_MessageData_note(x_28); +x_30 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_30, 0, x_1); +lean_ctor_set(x_30, 1, x_29); +x_31 = lean_box(0); +x_32 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___lam__0(x_30, x_31, x_3, x_4, x_5, x_6, x_11); +return x_32; +} +} +} +else +{ +lean_dec_ref(x_12); +lean_free_object(x_8); +lean_dec(x_2); +goto block_15; +} +block_15: +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_box(0); +x_14 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___lam__0(x_1, x_13, x_3, x_4, x_5, x_6, x_11); +return x_14; +} +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_39; +x_33 = lean_ctor_get(x_8, 0); +x_34 = lean_ctor_get(x_8, 1); +lean_inc(x_34); +lean_inc(x_33); +lean_dec(x_8); +x_35 = lean_ctor_get(x_33, 0); +lean_inc_ref(x_35); +lean_dec(x_33); +x_39 = l_Lean_Name_isAnonymous(x_2); +if (x_39 == 0) +{ +uint8_t x_40; +x_40 = lean_ctor_get_uint8(x_35, sizeof(void*)*8); +if (x_40 == 0) +{ +lean_dec_ref(x_35); +lean_dec(x_2); +goto block_38; +} +else +{ +lean_object* x_41; uint8_t x_42; +x_41 = l_Lean_Environment_setExporting(x_35, x_39); +lean_inc(x_2); +lean_inc_ref(x_41); +x_42 = l_Lean_Environment_contains(x_41, x_2, x_40); +if (x_42 == 0) +{ +lean_dec_ref(x_41); +lean_dec(x_2); +goto block_38; +} +else +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_43 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__7; +x_44 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__12; +x_45 = lean_box(0); +x_46 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_46, 0, x_41); +lean_ctor_set(x_46, 1, x_43); +lean_ctor_set(x_46, 2, x_44); +lean_ctor_set(x_46, 3, x_45); +x_47 = l_Lean_MessageData_ofConstName(x_2, x_39); +x_48 = lean_alloc_ctor(3, 2, 0); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_47); +x_49 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__14; +x_50 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_48); +x_51 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__16; +x_52 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_52, 0, x_50); +lean_ctor_set(x_52, 1, x_51); +x_53 = l_Lean_MessageData_note(x_52); +x_54 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_54, 0, x_1); +lean_ctor_set(x_54, 1, x_53); +x_55 = lean_box(0); +x_56 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___lam__0(x_54, x_55, x_3, x_4, x_5, x_6, x_34); +return x_56; +} +} +} +else +{ +lean_dec_ref(x_35); +lean_dec(x_2); +goto block_38; +} +block_38: +{ +lean_object* x_36; lean_object* x_37; +x_36 = lean_box(0); +x_37 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___lam__0(x_1, x_36, x_3, x_4, x_5, x_6, x_34); +return x_37; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2_spec__2_spec__2(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; uint8_t x_8; +x_7 = lean_st_ref_get(x_5, x_6); +x_8 = !lean_is_exclusive(x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_9 = lean_ctor_get(x_7, 0); +x_10 = lean_ctor_get(x_7, 1); +x_11 = lean_ctor_get(x_9, 0); +lean_inc_ref(x_11); +lean_dec(x_9); +x_12 = lean_st_ref_get(x_3, x_10); +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_14 = lean_ctor_get(x_12, 0); +x_15 = lean_ctor_get(x_14, 0); +lean_inc_ref(x_15); +lean_dec(x_14); +x_16 = lean_ctor_get(x_2, 2); +x_17 = lean_ctor_get(x_4, 2); +lean_inc(x_17); +lean_inc_ref(x_16); +x_18 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_18, 0, x_11); +lean_ctor_set(x_18, 1, x_15); +lean_ctor_set(x_18, 2, x_16); +lean_ctor_set(x_18, 3, x_17); +lean_ctor_set_tag(x_7, 3); +lean_ctor_set(x_7, 1, x_1); +lean_ctor_set(x_7, 0, x_18); +lean_ctor_set(x_12, 0, x_7); +return x_12; +} +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; +x_19 = lean_ctor_get(x_12, 0); +x_20 = lean_ctor_get(x_12, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_12); +x_21 = lean_ctor_get(x_19, 0); +lean_inc_ref(x_21); +lean_dec(x_19); +x_22 = lean_ctor_get(x_2, 2); +x_23 = lean_ctor_get(x_4, 2); +lean_inc(x_23); +lean_inc_ref(x_22); +x_24 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_24, 0, x_11); +lean_ctor_set(x_24, 1, x_21); +lean_ctor_set(x_24, 2, x_22); +lean_ctor_set(x_24, 3, x_23); +lean_ctor_set_tag(x_7, 3); +lean_ctor_set(x_7, 1, x_1); +lean_ctor_set(x_7, 0, x_24); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_7); +lean_ctor_set(x_25, 1, x_20); +return x_25; +} +} +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; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_26 = lean_ctor_get(x_7, 0); +x_27 = lean_ctor_get(x_7, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_7); +x_28 = lean_ctor_get(x_26, 0); +lean_inc_ref(x_28); +lean_dec(x_26); +x_29 = lean_st_ref_get(x_3, x_27); +x_30 = lean_ctor_get(x_29, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_29, 1); +lean_inc(x_31); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + x_32 = x_29; +} else { + lean_dec_ref(x_29); + x_32 = lean_box(0); +} +x_33 = lean_ctor_get(x_30, 0); +lean_inc_ref(x_33); +lean_dec(x_30); +x_34 = lean_ctor_get(x_2, 2); +x_35 = lean_ctor_get(x_4, 2); +lean_inc(x_35); +lean_inc_ref(x_34); +x_36 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_36, 0, x_28); +lean_ctor_set(x_36, 1, x_33); +lean_ctor_set(x_36, 2, x_34); +lean_ctor_set(x_36, 3, x_35); +x_37 = lean_alloc_ctor(3, 2, 0); +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set(x_37, 1, x_1); +if (lean_is_scalar(x_32)) { + x_38 = lean_alloc_ctor(0, 2, 0); +} else { + x_38 = x_32; +} +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_31); +return x_38; +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2_spec__2___redArg(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; uint8_t x_9; +x_7 = lean_ctor_get(x_4, 5); +x_8 = l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2_spec__2_spec__2(x_1, x_2, x_3, x_4, x_5, x_6); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_8, 0); +lean_inc(x_7); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_7); +lean_ctor_set(x_11, 1, x_10); +lean_ctor_set_tag(x_8, 1); +lean_ctor_set(x_8, 0, x_11); +return x_8; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_8, 0); +x_13 = lean_ctor_get(x_8, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_8); +lean_inc(x_7); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_7); +lean_ctor_set(x_14, 1, x_12); +x_15 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +return x_15; +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2_spec__2___redArg(x_2, x_3, x_4, x_5, x_6, x_7); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2___redArg(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; +x_8 = !lean_is_exclusive(x_5); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = lean_ctor_get(x_5, 5); +x_10 = l_Lean_replaceRef(x_1, x_9); +lean_dec(x_9); +lean_ctor_set(x_5, 5, x_10); +x_11 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2_spec__2___redArg(x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec_ref(x_5); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_24; uint8_t x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_12 = lean_ctor_get(x_5, 0); +x_13 = lean_ctor_get(x_5, 1); +x_14 = lean_ctor_get(x_5, 2); +x_15 = lean_ctor_get(x_5, 3); +x_16 = lean_ctor_get(x_5, 4); +x_17 = lean_ctor_get(x_5, 5); +x_18 = lean_ctor_get(x_5, 6); +x_19 = lean_ctor_get(x_5, 7); +x_20 = lean_ctor_get(x_5, 8); +x_21 = lean_ctor_get(x_5, 9); +x_22 = lean_ctor_get(x_5, 10); +x_23 = lean_ctor_get_uint8(x_5, sizeof(void*)*13); +x_24 = lean_ctor_get(x_5, 11); +x_25 = lean_ctor_get_uint8(x_5, sizeof(void*)*13 + 1); +x_26 = lean_ctor_get(x_5, 12); +lean_inc(x_26); +lean_inc(x_24); +lean_inc(x_22); +lean_inc(x_21); +lean_inc(x_20); +lean_inc(x_19); +lean_inc(x_18); +lean_inc(x_17); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_5); +x_27 = l_Lean_replaceRef(x_1, x_17); +lean_dec(x_17); +x_28 = lean_alloc_ctor(0, 13, 2); +lean_ctor_set(x_28, 0, x_12); +lean_ctor_set(x_28, 1, x_13); +lean_ctor_set(x_28, 2, x_14); +lean_ctor_set(x_28, 3, x_15); +lean_ctor_set(x_28, 4, x_16); +lean_ctor_set(x_28, 5, x_27); +lean_ctor_set(x_28, 6, x_18); +lean_ctor_set(x_28, 7, x_19); +lean_ctor_set(x_28, 8, x_20); +lean_ctor_set(x_28, 9, x_21); +lean_ctor_set(x_28, 10, x_22); +lean_ctor_set(x_28, 11, x_24); +lean_ctor_set(x_28, 12, x_26); +lean_ctor_set_uint8(x_28, sizeof(void*)*13, x_23); +lean_ctor_set_uint8(x_28, sizeof(void*)*13 + 1, x_25); +x_29 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2_spec__2___redArg(x_2, x_3, x_4, x_28, x_6, x_7); +lean_dec_ref(x_28); +return x_29; +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2(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_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1___redArg(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; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_9 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec_ref(x_9); +x_12 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2___redArg(x_1, x_10, x_4, x_5, x_6, x_7, x_11); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +static lean_object* _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Unknown constant `", 18, 18); +return x_1; +} +} +static lean_object* _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__0; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("`", 1, 1); +return x_1; +} +} +static lean_object* _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__2; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_8 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__1; +x_9 = 0; +lean_inc(x_2); +x_10 = l_Lean_MessageData_ofConstName(x_2, x_9); +x_11 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_11, 0, x_8); +lean_ctor_set(x_11, 1, x_10); +x_12 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__3; +x_13 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_13, 0, x_11); +lean_ctor_set(x_13, 1, x_12); +x_14 = l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1___redArg(x_1, x_13, x_2, x_3, x_4, x_5, x_6, x_7); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1___redArg(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 = lean_ctor_get(x_4, 5); +lean_inc(x_7); +x_8 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg(x_7, x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_7); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1___redArg(x_2, x_3, x_4, x_5, x_6, x_7); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_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) { +_start: +{ +lean_object* x_7; uint8_t x_8; +x_7 = lean_st_ref_get(x_5, x_6); +x_8 = !lean_is_exclusive(x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; +x_9 = lean_ctor_get(x_7, 0); +x_10 = lean_ctor_get(x_7, 1); +x_11 = lean_ctor_get(x_9, 0); +lean_inc_ref(x_11); +lean_dec(x_9); +x_12 = 0; +lean_inc(x_1); +x_13 = l_Lean_Environment_find_x3f(x_11, x_1, x_12); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; +lean_free_object(x_7); +x_14 = l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1___redArg(x_1, x_2, x_3, x_4, x_5, x_10); +return x_14; +} +else +{ +lean_object* x_15; +lean_dec_ref(x_4); +lean_dec(x_1); +x_15 = lean_ctor_get(x_13, 0); +lean_inc(x_15); +lean_dec_ref(x_13); +lean_ctor_set(x_7, 0, x_15); +return x_7; +} +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; lean_object* x_20; +x_16 = lean_ctor_get(x_7, 0); +x_17 = lean_ctor_get(x_7, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_7); +x_18 = lean_ctor_get(x_16, 0); +lean_inc_ref(x_18); +lean_dec(x_16); +x_19 = 0; +lean_inc(x_1); +x_20 = l_Lean_Environment_find_x3f(x_18, x_1, x_19); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; +x_21 = l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1___redArg(x_1, x_2, x_3, x_4, x_5, x_17); +return x_21; +} +else +{ +lean_object* x_22; lean_object* x_23; +lean_dec_ref(x_4); +lean_dec(x_1); +x_22 = lean_ctor_get(x_20, 0); +lean_inc(x_22); +lean_dec_ref(x_20); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_17); +return x_23; +} +} +} +} +static lean_object* _init_l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_instMonadEIO(lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Core_instMonadCoreM___lam__0___boxed), 5, 0); +return x_1; +} +} +static lean_object* _init_l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Core_instMonadCoreM___lam__1), 7, 0); +return x_1; +} +} +static lean_object* _init_l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_instMonadMetaM___lam__0___boxed), 7, 0); +return x_1; +} +} +static lean_object* _init_l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_instMonadMetaM___lam__1), 9, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9(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; uint8_t x_9; +x_7 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__0; +x_8 = l_ReaderT_instMonad___redArg(x_7); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_8, 1); +lean_dec(x_11); +x_12 = !lean_is_exclusive(x_10); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_13 = lean_ctor_get(x_10, 0); +x_14 = lean_ctor_get(x_10, 2); +x_15 = lean_ctor_get(x_10, 3); +x_16 = lean_ctor_get(x_10, 4); +x_17 = lean_ctor_get(x_10, 1); +lean_dec(x_17); +x_18 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__1; +x_19 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__2; +lean_inc_ref(x_13); +x_20 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_20, 0, x_13); +x_21 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_21, 0, x_13); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +x_23 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_23, 0, x_16); +x_24 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_24, 0, x_15); +x_25 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_25, 0, x_14); +lean_ctor_set(x_10, 4, x_23); +lean_ctor_set(x_10, 3, x_24); +lean_ctor_set(x_10, 2, x_25); +lean_ctor_set(x_10, 1, x_18); +lean_ctor_set(x_10, 0, x_22); +lean_ctor_set(x_8, 1, x_19); +x_26 = l_ReaderT_instMonad___redArg(x_8); +x_27 = !lean_is_exclusive(x_26); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_28 = lean_ctor_get(x_26, 0); +x_29 = lean_ctor_get(x_26, 1); +lean_dec(x_29); +x_30 = !lean_is_exclusive(x_28); +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; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_31 = lean_ctor_get(x_28, 0); +x_32 = lean_ctor_get(x_28, 2); +x_33 = lean_ctor_get(x_28, 3); +x_34 = lean_ctor_get(x_28, 4); +x_35 = lean_ctor_get(x_28, 1); +lean_dec(x_35); +x_36 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__3; +x_37 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__4; +lean_inc_ref(x_31); +x_38 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_38, 0, x_31); +x_39 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_39, 0, x_31); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +x_41 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_41, 0, x_34); +x_42 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_42, 0, x_33); +x_43 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_43, 0, x_32); +lean_ctor_set(x_28, 4, x_41); +lean_ctor_set(x_28, 3, x_42); +lean_ctor_set(x_28, 2, x_43); +lean_ctor_set(x_28, 1, x_36); +lean_ctor_set(x_28, 0, x_40); +lean_ctor_set(x_26, 1, x_37); +x_44 = lean_box(0); +x_45 = l_instInhabitedOfMonad___redArg(x_26, x_44); +x_46 = lean_panic_fn(x_45, x_1); +x_47 = lean_apply_5(x_46, x_2, x_3, x_4, x_5, x_6); +return x_47; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_48 = lean_ctor_get(x_28, 0); +x_49 = lean_ctor_get(x_28, 2); +x_50 = lean_ctor_get(x_28, 3); +x_51 = lean_ctor_get(x_28, 4); +lean_inc(x_51); +lean_inc(x_50); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_28); +x_52 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__3; +x_53 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__4; +lean_inc_ref(x_48); +x_54 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_54, 0, x_48); +x_55 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_55, 0, x_48); +x_56 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set(x_56, 1, x_55); +x_57 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_57, 0, x_51); +x_58 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_58, 0, x_50); +x_59 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_59, 0, x_49); +x_60 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_60, 0, x_56); +lean_ctor_set(x_60, 1, x_52); +lean_ctor_set(x_60, 2, x_59); +lean_ctor_set(x_60, 3, x_58); +lean_ctor_set(x_60, 4, x_57); +lean_ctor_set(x_26, 1, x_53); +lean_ctor_set(x_26, 0, x_60); +x_61 = lean_box(0); +x_62 = l_instInhabitedOfMonad___redArg(x_26, x_61); +x_63 = lean_panic_fn(x_62, x_1); +x_64 = lean_apply_5(x_63, x_2, x_3, x_4, x_5, x_6); +return x_64; +} +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_65 = lean_ctor_get(x_26, 0); +lean_inc(x_65); +lean_dec(x_26); +x_66 = lean_ctor_get(x_65, 0); +lean_inc_ref(x_66); +x_67 = lean_ctor_get(x_65, 2); +lean_inc_ref(x_67); +x_68 = lean_ctor_get(x_65, 3); +lean_inc_ref(x_68); +x_69 = lean_ctor_get(x_65, 4); +lean_inc_ref(x_69); +if (lean_is_exclusive(x_65)) { + lean_ctor_release(x_65, 0); + lean_ctor_release(x_65, 1); + lean_ctor_release(x_65, 2); + lean_ctor_release(x_65, 3); + lean_ctor_release(x_65, 4); + x_70 = x_65; +} else { + lean_dec_ref(x_65); + x_70 = lean_box(0); +} +x_71 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__3; +x_72 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__4; +lean_inc_ref(x_66); +x_73 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_73, 0, x_66); +x_74 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_74, 0, x_66); +x_75 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_75, 0, x_73); +lean_ctor_set(x_75, 1, x_74); +x_76 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_76, 0, x_69); +x_77 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_77, 0, x_68); +x_78 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_78, 0, x_67); +if (lean_is_scalar(x_70)) { + x_79 = lean_alloc_ctor(0, 5, 0); +} else { + x_79 = x_70; +} +lean_ctor_set(x_79, 0, x_75); +lean_ctor_set(x_79, 1, x_71); +lean_ctor_set(x_79, 2, x_78); +lean_ctor_set(x_79, 3, x_77); +lean_ctor_set(x_79, 4, x_76); +x_80 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_80, 0, x_79); +lean_ctor_set(x_80, 1, x_72); +x_81 = lean_box(0); +x_82 = l_instInhabitedOfMonad___redArg(x_80, x_81); +x_83 = lean_panic_fn(x_82, x_1); +x_84 = lean_apply_5(x_83, x_2, x_3, x_4, x_5, x_6); +return x_84; +} +} +else +{ +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; +x_85 = lean_ctor_get(x_10, 0); +x_86 = lean_ctor_get(x_10, 2); +x_87 = lean_ctor_get(x_10, 3); +x_88 = lean_ctor_get(x_10, 4); +lean_inc(x_88); +lean_inc(x_87); +lean_inc(x_86); +lean_inc(x_85); +lean_dec(x_10); +x_89 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__1; +x_90 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__2; +lean_inc_ref(x_85); +x_91 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_91, 0, x_85); +x_92 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_92, 0, x_85); +x_93 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_93, 0, x_91); +lean_ctor_set(x_93, 1, x_92); +x_94 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_94, 0, x_88); +x_95 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_95, 0, x_87); +x_96 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_96, 0, x_86); +x_97 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_97, 0, x_93); +lean_ctor_set(x_97, 1, x_89); +lean_ctor_set(x_97, 2, x_96); +lean_ctor_set(x_97, 3, x_95); +lean_ctor_set(x_97, 4, x_94); +lean_ctor_set(x_8, 1, x_90); +lean_ctor_set(x_8, 0, x_97); +x_98 = l_ReaderT_instMonad___redArg(x_8); +x_99 = lean_ctor_get(x_98, 0); +lean_inc_ref(x_99); +if (lean_is_exclusive(x_98)) { + lean_ctor_release(x_98, 0); + lean_ctor_release(x_98, 1); + x_100 = x_98; +} else { + lean_dec_ref(x_98); + x_100 = lean_box(0); +} +x_101 = lean_ctor_get(x_99, 0); +lean_inc_ref(x_101); +x_102 = lean_ctor_get(x_99, 2); +lean_inc_ref(x_102); +x_103 = lean_ctor_get(x_99, 3); +lean_inc_ref(x_103); +x_104 = lean_ctor_get(x_99, 4); +lean_inc_ref(x_104); +if (lean_is_exclusive(x_99)) { + lean_ctor_release(x_99, 0); + lean_ctor_release(x_99, 1); + lean_ctor_release(x_99, 2); + lean_ctor_release(x_99, 3); + lean_ctor_release(x_99, 4); + x_105 = x_99; +} else { + lean_dec_ref(x_99); + x_105 = lean_box(0); +} +x_106 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__3; +x_107 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__4; +lean_inc_ref(x_101); +x_108 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_108, 0, x_101); +x_109 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_109, 0, x_101); +x_110 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_110, 0, x_108); +lean_ctor_set(x_110, 1, x_109); +x_111 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_111, 0, x_104); +x_112 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_112, 0, x_103); +x_113 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_113, 0, x_102); +if (lean_is_scalar(x_105)) { + x_114 = lean_alloc_ctor(0, 5, 0); +} else { + x_114 = x_105; +} +lean_ctor_set(x_114, 0, x_110); +lean_ctor_set(x_114, 1, x_106); +lean_ctor_set(x_114, 2, x_113); +lean_ctor_set(x_114, 3, x_112); +lean_ctor_set(x_114, 4, x_111); +if (lean_is_scalar(x_100)) { + x_115 = lean_alloc_ctor(0, 2, 0); +} else { + x_115 = x_100; +} +lean_ctor_set(x_115, 0, x_114); +lean_ctor_set(x_115, 1, x_107); +x_116 = lean_box(0); +x_117 = l_instInhabitedOfMonad___redArg(x_115, x_116); +x_118 = lean_panic_fn(x_117, x_1); +x_119 = lean_apply_5(x_118, x_2, x_3, x_4, x_5, x_6); +return x_119; +} +} +else +{ +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; +x_120 = lean_ctor_get(x_8, 0); +lean_inc(x_120); +lean_dec(x_8); +x_121 = lean_ctor_get(x_120, 0); +lean_inc_ref(x_121); +x_122 = lean_ctor_get(x_120, 2); +lean_inc_ref(x_122); +x_123 = lean_ctor_get(x_120, 3); +lean_inc_ref(x_123); +x_124 = lean_ctor_get(x_120, 4); +lean_inc_ref(x_124); +if (lean_is_exclusive(x_120)) { + lean_ctor_release(x_120, 0); + lean_ctor_release(x_120, 1); + lean_ctor_release(x_120, 2); + lean_ctor_release(x_120, 3); + lean_ctor_release(x_120, 4); + x_125 = x_120; +} else { + lean_dec_ref(x_120); + x_125 = lean_box(0); +} +x_126 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__1; +x_127 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__2; +lean_inc_ref(x_121); +x_128 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_128, 0, x_121); +x_129 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_129, 0, x_121); +x_130 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_130, 0, x_128); +lean_ctor_set(x_130, 1, x_129); +x_131 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_131, 0, x_124); +x_132 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_132, 0, x_123); +x_133 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_133, 0, x_122); +if (lean_is_scalar(x_125)) { + x_134 = lean_alloc_ctor(0, 5, 0); +} else { + x_134 = x_125; +} +lean_ctor_set(x_134, 0, x_130); +lean_ctor_set(x_134, 1, x_126); +lean_ctor_set(x_134, 2, x_133); +lean_ctor_set(x_134, 3, x_132); +lean_ctor_set(x_134, 4, x_131); +x_135 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_135, 0, x_134); +lean_ctor_set(x_135, 1, x_127); +x_136 = l_ReaderT_instMonad___redArg(x_135); +x_137 = lean_ctor_get(x_136, 0); +lean_inc_ref(x_137); +if (lean_is_exclusive(x_136)) { + lean_ctor_release(x_136, 0); + lean_ctor_release(x_136, 1); + x_138 = x_136; +} else { + lean_dec_ref(x_136); + x_138 = lean_box(0); +} +x_139 = lean_ctor_get(x_137, 0); +lean_inc_ref(x_139); +x_140 = lean_ctor_get(x_137, 2); +lean_inc_ref(x_140); +x_141 = lean_ctor_get(x_137, 3); +lean_inc_ref(x_141); +x_142 = lean_ctor_get(x_137, 4); +lean_inc_ref(x_142); +if (lean_is_exclusive(x_137)) { + lean_ctor_release(x_137, 0); + lean_ctor_release(x_137, 1); + lean_ctor_release(x_137, 2); + lean_ctor_release(x_137, 3); + lean_ctor_release(x_137, 4); + x_143 = x_137; +} else { + lean_dec_ref(x_137); + x_143 = lean_box(0); +} +x_144 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__3; +x_145 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__4; +lean_inc_ref(x_139); +x_146 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_146, 0, x_139); +x_147 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_147, 0, x_139); +x_148 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_148, 0, x_146); +lean_ctor_set(x_148, 1, x_147); +x_149 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_149, 0, x_142); +x_150 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_150, 0, x_141); +x_151 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_151, 0, x_140); +if (lean_is_scalar(x_143)) { + x_152 = lean_alloc_ctor(0, 5, 0); +} else { + x_152 = x_143; +} +lean_ctor_set(x_152, 0, x_148); +lean_ctor_set(x_152, 1, x_144); +lean_ctor_set(x_152, 2, x_151); +lean_ctor_set(x_152, 3, x_150); +lean_ctor_set(x_152, 4, x_149); +if (lean_is_scalar(x_138)) { + x_153 = lean_alloc_ctor(0, 2, 0); +} else { + x_153 = x_138; +} +lean_ctor_set(x_153, 0, x_152); +lean_ctor_set(x_153, 1, x_145); +x_154 = lean_box(0); +x_155 = l_instInhabitedOfMonad___redArg(x_153, x_154); +x_156 = lean_panic_fn(x_155, x_1); +x_157 = lean_apply_5(x_156, x_2, x_3, x_4, x_5, x_6); +return x_157; +} +} +} +static lean_object* _init_l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Lean.Meta.Match.MatcherApp.Basic", 32, 32); +return x_1; +} +} +static lean_object* _init_l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Lean.Meta.matchMatcherApp\?", 26, 26); +return x_1; +} +} +static lean_object* _init_l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("unreachable code has been reached", 33, 33); +return x_1; +} +} +static lean_object* _init_l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__3() { +_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_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__2; +x_2 = lean_unsigned_to_nat(53u); +x_3 = lean_unsigned_to_nat(68u); +x_4 = l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__1; +x_5 = l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__0; +x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); +return x_6; +} +} +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg(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: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_8; +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_2); +lean_ctor_set(x_8, 1, x_7); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = lean_ctor_get(x_1, 0); +lean_inc(x_9); +x_10 = lean_ctor_get(x_1, 1); +lean_inc(x_10); +lean_dec_ref(x_1); +lean_inc_ref(x_5); +x_11 = l_Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1(x_9, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +if (lean_obj_tag(x_12) == 6) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_13 = lean_ctor_get(x_12, 0); +lean_inc_ref(x_13); +lean_dec_ref(x_12); +x_14 = lean_ctor_get(x_11, 1); +lean_inc(x_14); +lean_dec_ref(x_11); +x_15 = lean_ctor_get(x_13, 4); +lean_inc(x_15); +lean_dec_ref(x_13); +x_16 = lean_array_push(x_2, x_15); +x_1 = x_10; +x_2 = x_16; +x_7 = x_14; +goto _start; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +lean_dec(x_12); +x_18 = lean_ctor_get(x_11, 1); +lean_inc(x_18); +lean_dec_ref(x_11); +x_19 = l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__3; +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +x_20 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9(x_19, x_3, x_4, x_5, x_6, x_18); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_20, 1); +lean_inc(x_21); +lean_dec_ref(x_20); +x_1 = x_10; +x_7 = x_21; +goto _start; +} +else +{ +uint8_t x_23; +lean_dec(x_10); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_23 = !lean_is_exclusive(x_20); +if (x_23 == 0) +{ +return x_20; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_20, 0); +x_25 = lean_ctor_get(x_20, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_20); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; +} +} +} +} +else +{ +uint8_t x_27; +lean_dec(x_10); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_27 = !lean_is_exclusive(x_11); +if (x_27 == 0) +{ +return x_11; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_11, 0); +x_29 = lean_ctor_get(x_11, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_11); +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +return x_30; +} +} +} +} +} +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg(x_2, x_3, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10___redArg(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: +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_9; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_3); +lean_ctor_set(x_9, 1, x_8); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_2, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_2, 1); +lean_inc(x_11); +lean_dec_ref(x_2); +lean_inc_ref(x_6); +x_12 = l_Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1(x_10, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +if (lean_obj_tag(x_13) == 6) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_14 = lean_ctor_get(x_13, 0); +lean_inc_ref(x_14); +lean_dec_ref(x_13); +x_15 = lean_ctor_get(x_12, 1); +lean_inc(x_15); +lean_dec_ref(x_12); +x_16 = lean_ctor_get(x_14, 4); +lean_inc(x_16); +lean_dec_ref(x_14); +x_17 = lean_array_push(x_3, x_16); +x_18 = l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg(x_11, x_17, x_4, x_5, x_6, x_7, x_15); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +lean_dec(x_13); +x_19 = lean_ctor_get(x_12, 1); +lean_inc(x_19); +lean_dec_ref(x_12); +x_20 = l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__3; +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +x_21 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9(x_20, x_4, x_5, x_6, x_7, x_19); +if (lean_obj_tag(x_21) == 0) +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_21, 1); +lean_inc(x_22); +lean_dec_ref(x_21); +x_23 = l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg(x_11, x_3, x_4, x_5, x_6, x_7, x_22); +return x_23; +} +else +{ +uint8_t x_24; +lean_dec(x_11); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_24 = !lean_is_exclusive(x_21); +if (x_24 == 0) +{ +return x_21; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_21, 0); +x_26 = lean_ctor_get(x_21, 1); +lean_inc(x_26); +lean_inc(x_25); +lean_dec(x_21); +x_27 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_27, 0, x_25); +lean_ctor_set(x_27, 1, x_26); +return x_27; +} +} +} +} +else +{ +uint8_t x_28; +lean_dec(x_11); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_28 = !lean_is_exclusive(x_12); +if (x_28 == 0) +{ +return x_12; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_12, 0); +x_30 = lean_ctor_get(x_12, 1); +lean_inc(x_30); +lean_inc(x_29); +lean_dec(x_12); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_29); +lean_ctor_set(x_31, 1, x_30); +return x_31; +} +} +} +} +} +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10___redArg(x_1, x_2, x_3, x_5, x_6, x_7, x_8, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___lam__0(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 = 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; +} +} +static lean_object* _init_l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___closed__0() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +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_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_box(0); +x_2 = l_Lean_Expr_sort___override(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0(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: +{ +uint8_t x_8; +x_8 = l_Lean_Expr_isApp(x_1); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +x_9 = lean_box(0); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_7); +return x_10; +} +else +{ +lean_object* x_11; +x_11 = l_Lean_Expr_getAppFn(x_1); +if (lean_obj_tag(x_11) == 4) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_84; lean_object* x_85; lean_object* x_86; uint8_t x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_97; lean_object* x_98; uint8_t x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_118; lean_object* x_119; uint8_t 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_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; uint8_t x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; +x_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_ref(x_11); +lean_inc(x_12); +x_133 = l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__0___redArg(x_12, x_6, x_7); +x_134 = lean_ctor_get(x_133, 0); +lean_inc(x_134); +x_135 = lean_ctor_get(x_133, 1); +lean_inc(x_135); +if (lean_is_exclusive(x_133)) { + lean_ctor_release(x_133, 0); + lean_ctor_release(x_133, 1); + x_136 = x_133; +} else { + lean_dec_ref(x_133); + x_136 = lean_box(0); +} +x_137 = l_Lean_instInhabitedExpr; +if (lean_obj_tag(x_134) == 0) +{ +lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; +lean_dec(x_136); +x_157 = lean_st_ref_get(x_6, x_135); +x_158 = lean_ctor_get(x_157, 0); +lean_inc(x_158); +x_159 = lean_ctor_get(x_157, 1); +lean_inc(x_159); +lean_dec_ref(x_157); +if (x_2 == 0) +{ +lean_dec(x_158); +lean_dec(x_13); +lean_dec(x_12); +lean_dec_ref(x_1); +goto block_222; +} +else +{ +lean_object* x_223; uint8_t x_224; +x_223 = lean_ctor_get(x_158, 0); +lean_inc_ref(x_223); +lean_dec(x_158); +lean_inc(x_12); +x_224 = l_Lean_isCasesOnRecursor(x_223, x_12); +if (x_224 == 0) +{ +lean_dec(x_13); +lean_dec(x_12); +lean_dec_ref(x_1); +goto block_222; +} +else +{ +if (lean_obj_tag(x_12) == 0) +{ +x_160 = x_12; +goto block_219; +} +else +{ +lean_object* x_225; +x_225 = lean_ctor_get(x_12, 0); +lean_inc(x_225); +x_160 = x_225; +goto block_219; +} +} +} +block_219: +{ +lean_object* x_161; +lean_inc_ref(x_5); +x_161 = l_Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1(x_160, x_3, x_4, x_5, x_6, x_159); +if (lean_obj_tag(x_161) == 0) +{ +lean_object* x_162; +x_162 = lean_ctor_get(x_161, 0); +lean_inc(x_162); +if (lean_obj_tag(x_162) == 5) +{ +lean_object* x_163; uint8_t x_164; +x_163 = lean_ctor_get(x_162, 0); +lean_inc_ref(x_163); +lean_dec_ref(x_162); +x_164 = !lean_is_exclusive(x_161); +if (x_164 == 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; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; uint8_t x_183; +x_165 = lean_ctor_get(x_161, 1); +x_166 = lean_ctor_get(x_161, 0); +lean_dec(x_166); +x_167 = lean_ctor_get(x_163, 0); +lean_inc_ref(x_167); +x_168 = lean_ctor_get(x_163, 1); +lean_inc(x_168); +x_169 = lean_ctor_get(x_163, 2); +lean_inc(x_169); +x_170 = lean_ctor_get(x_163, 4); +lean_inc(x_170); +x_171 = l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___closed__2; +x_172 = l_Lean_Expr_getAppNumArgs(x_1); +lean_inc(x_172); +x_173 = lean_mk_array(x_172, x_171); +x_174 = lean_unsigned_to_nat(1u); +x_175 = lean_nat_sub(x_172, x_174); +lean_dec(x_172); +x_176 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_173, x_175); +x_177 = lean_nat_add(x_168, x_174); +x_178 = lean_nat_add(x_177, x_169); +x_179 = lean_nat_add(x_178, x_174); +lean_dec(x_178); +x_180 = l_Lean_InductiveVal_numCtors(x_163); +lean_dec_ref(x_163); +x_181 = lean_nat_add(x_179, x_180); +lean_dec(x_180); +x_182 = lean_array_get_size(x_176); +x_183 = lean_nat_dec_le(x_181, x_182); +if (x_183 == 0) +{ +lean_object* x_184; +lean_dec(x_182); +lean_dec(x_181); +lean_dec(x_179); +lean_dec(x_177); +lean_dec_ref(x_176); +lean_dec(x_170); +lean_dec(x_169); +lean_dec(x_168); +lean_dec_ref(x_167); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_184 = lean_box(0); +lean_ctor_set(x_161, 0, x_184); +return x_161; +} +else +{ +lean_object* x_185; uint8_t x_186; +lean_free_object(x_161); +x_185 = lean_unsigned_to_nat(0u); +x_186 = lean_nat_dec_le(x_168, x_182); +if (x_186 == 0) +{ +lean_inc(x_182); +x_138 = x_167; +x_139 = x_183; +x_140 = x_182; +x_141 = x_181; +x_142 = x_168; +x_143 = x_169; +x_144 = x_174; +x_145 = x_165; +x_146 = x_170; +x_147 = x_176; +x_148 = x_177; +x_149 = x_179; +x_150 = x_185; +x_151 = x_182; +goto block_156; +} +else +{ +lean_inc(x_168); +x_138 = x_167; +x_139 = x_183; +x_140 = x_182; +x_141 = x_181; +x_142 = x_168; +x_143 = x_169; +x_144 = x_174; +x_145 = x_165; +x_146 = x_170; +x_147 = x_176; +x_148 = x_177; +x_149 = x_179; +x_150 = x_185; +x_151 = x_168; +goto block_156; +} +} +} +else +{ +lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; uint8_t x_204; +x_187 = lean_ctor_get(x_161, 1); +lean_inc(x_187); +lean_dec(x_161); +x_188 = lean_ctor_get(x_163, 0); +lean_inc_ref(x_188); +x_189 = lean_ctor_get(x_163, 1); +lean_inc(x_189); +x_190 = lean_ctor_get(x_163, 2); +lean_inc(x_190); +x_191 = lean_ctor_get(x_163, 4); +lean_inc(x_191); +x_192 = l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___closed__2; +x_193 = l_Lean_Expr_getAppNumArgs(x_1); +lean_inc(x_193); +x_194 = lean_mk_array(x_193, x_192); +x_195 = lean_unsigned_to_nat(1u); +x_196 = lean_nat_sub(x_193, x_195); +lean_dec(x_193); +x_197 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_194, x_196); +x_198 = lean_nat_add(x_189, x_195); +x_199 = lean_nat_add(x_198, x_190); +x_200 = lean_nat_add(x_199, x_195); +lean_dec(x_199); +x_201 = l_Lean_InductiveVal_numCtors(x_163); +lean_dec_ref(x_163); +x_202 = lean_nat_add(x_200, x_201); +lean_dec(x_201); +x_203 = lean_array_get_size(x_197); +x_204 = lean_nat_dec_le(x_202, x_203); +if (x_204 == 0) +{ +lean_object* x_205; lean_object* x_206; +lean_dec(x_203); +lean_dec(x_202); +lean_dec(x_200); +lean_dec(x_198); +lean_dec_ref(x_197); +lean_dec(x_191); +lean_dec(x_190); +lean_dec(x_189); +lean_dec_ref(x_188); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_205 = lean_box(0); +x_206 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_206, 0, x_205); +lean_ctor_set(x_206, 1, x_187); +return x_206; +} +else +{ +lean_object* x_207; uint8_t x_208; +x_207 = lean_unsigned_to_nat(0u); +x_208 = lean_nat_dec_le(x_189, x_203); +if (x_208 == 0) +{ +lean_inc(x_203); +x_138 = x_188; +x_139 = x_204; +x_140 = x_203; +x_141 = x_202; +x_142 = x_189; +x_143 = x_190; +x_144 = x_195; +x_145 = x_187; +x_146 = x_191; +x_147 = x_197; +x_148 = x_198; +x_149 = x_200; +x_150 = x_207; +x_151 = x_203; +goto block_156; +} +else +{ +lean_inc(x_189); +x_138 = x_188; +x_139 = x_204; +x_140 = x_203; +x_141 = x_202; +x_142 = x_189; +x_143 = x_190; +x_144 = x_195; +x_145 = x_187; +x_146 = x_191; +x_147 = x_197; +x_148 = x_198; +x_149 = x_200; +x_150 = x_207; +x_151 = x_189; +goto block_156; +} +} +} +} +else +{ +uint8_t x_209; +lean_dec(x_162); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +x_209 = !lean_is_exclusive(x_161); +if (x_209 == 0) +{ +lean_object* x_210; lean_object* x_211; +x_210 = lean_ctor_get(x_161, 0); +lean_dec(x_210); +x_211 = lean_box(0); +lean_ctor_set(x_161, 0, x_211); +return x_161; +} +else +{ +lean_object* x_212; lean_object* x_213; lean_object* x_214; +x_212 = lean_ctor_get(x_161, 1); +lean_inc(x_212); +lean_dec(x_161); +x_213 = lean_box(0); +x_214 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_214, 0, x_213); +lean_ctor_set(x_214, 1, x_212); +return x_214; +} +} +} +else +{ +uint8_t x_215; +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +x_215 = !lean_is_exclusive(x_161); +if (x_215 == 0) +{ +return x_161; +} +else +{ +lean_object* x_216; lean_object* x_217; lean_object* x_218; +x_216 = lean_ctor_get(x_161, 0); +x_217 = lean_ctor_get(x_161, 1); +lean_inc(x_217); +lean_inc(x_216); +lean_dec(x_161); +x_218 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_218, 0, x_216); +lean_ctor_set(x_218, 1, x_217); +return x_218; +} +} +} +block_222: +{ +lean_object* x_220; lean_object* x_221; +x_220 = lean_box(0); +x_221 = l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___lam__0(x_220, x_3, x_4, x_5, x_6, x_159); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_221; +} +} +else +{ +lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; uint8_t x_236; +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_226 = lean_ctor_get(x_134, 0); +lean_inc(x_226); +if (lean_is_exclusive(x_134)) { + lean_ctor_release(x_134, 0); + x_227 = x_134; +} else { + lean_dec_ref(x_134); + x_227 = lean_box(0); +} +x_228 = l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___closed__2; +x_229 = l_Lean_Expr_getAppNumArgs(x_1); +lean_inc(x_229); +x_230 = lean_mk_array(x_229, x_228); +x_231 = lean_unsigned_to_nat(1u); +x_232 = lean_nat_sub(x_229, x_231); +lean_dec(x_229); +x_233 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_230, x_232); +x_234 = lean_array_get_size(x_233); +x_235 = l_Lean_Meta_Match_MatcherInfo_arity(x_226); +x_236 = lean_nat_dec_lt(x_234, x_235); +lean_dec(x_235); +if (x_236 == 0) +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_278; uint8_t x_281; +x_237 = lean_ctor_get(x_226, 0); +lean_inc(x_237); +x_238 = lean_ctor_get(x_226, 1); +lean_inc(x_238); +x_239 = lean_ctor_get(x_226, 2); +lean_inc_ref(x_239); +x_240 = lean_ctor_get(x_226, 3); +lean_inc(x_240); +x_241 = lean_ctor_get(x_226, 4); +lean_inc_ref(x_241); +x_242 = lean_array_mk(x_13); +x_243 = lean_unsigned_to_nat(0u); +lean_inc(x_237); +x_244 = l_Array_extract___redArg(x_233, x_243, x_237); +x_245 = lean_array_get(x_137, x_233, x_237); +x_268 = lean_nat_add(x_237, x_231); +lean_dec(x_237); +x_269 = lean_nat_add(x_268, x_238); +lean_dec(x_238); +x_281 = lean_nat_dec_le(x_268, x_243); +if (x_281 == 0) +{ +x_278 = x_268; +goto block_280; +} +else +{ +lean_dec(x_268); +x_278 = x_243; +goto block_280; +} +block_254: +{ +lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; +x_249 = l_Array_toSubarray___redArg(x_233, x_248, x_234); +x_250 = l_Array_ofSubarray___redArg(x_249); +lean_dec_ref(x_249); +x_251 = lean_alloc_ctor(0, 10, 0); +lean_ctor_set(x_251, 0, x_12); +lean_ctor_set(x_251, 1, x_242); +lean_ctor_set(x_251, 2, x_240); +lean_ctor_set(x_251, 3, x_241); +lean_ctor_set(x_251, 4, x_244); +lean_ctor_set(x_251, 5, x_245); +lean_ctor_set(x_251, 6, x_246); +lean_ctor_set(x_251, 7, x_239); +lean_ctor_set(x_251, 8, x_247); +lean_ctor_set(x_251, 9, x_250); +if (lean_is_scalar(x_227)) { + x_252 = lean_alloc_ctor(1, 1, 0); +} else { + x_252 = x_227; +} +lean_ctor_set(x_252, 0, x_251); +if (lean_is_scalar(x_136)) { + x_253 = lean_alloc_ctor(0, 2, 0); +} else { + x_253 = x_136; +} +lean_ctor_set(x_253, 0, x_252); +lean_ctor_set(x_253, 1, x_135); +return x_253; +} +block_262: +{ +lean_object* x_259; lean_object* x_260; uint8_t x_261; +lean_inc_ref(x_233); +x_259 = l_Array_toSubarray___redArg(x_233, x_257, x_258); +x_260 = l_Array_ofSubarray___redArg(x_259); +lean_dec_ref(x_259); +x_261 = lean_nat_dec_le(x_256, x_243); +if (x_261 == 0) +{ +x_246 = x_255; +x_247 = x_260; +x_248 = x_256; +goto block_254; +} +else +{ +lean_dec(x_256); +x_246 = x_255; +x_247 = x_260; +x_248 = x_243; +goto block_254; +} +} +block_267: +{ +uint8_t x_266; +x_266 = lean_nat_dec_le(x_264, x_234); +if (x_266 == 0) +{ +lean_inc(x_234); +x_255 = x_263; +x_256 = x_264; +x_257 = x_265; +x_258 = x_234; +goto block_262; +} +else +{ +lean_inc(x_264); +x_255 = x_263; +x_256 = x_264; +x_257 = x_265; +x_258 = x_264; +goto block_262; +} +} +block_277: +{ +lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; uint8_t x_276; +lean_inc_ref(x_233); +x_272 = l_Array_toSubarray___redArg(x_233, x_270, x_271); +x_273 = l_Array_ofSubarray___redArg(x_272); +lean_dec_ref(x_272); +x_274 = l_Lean_Meta_Match_MatcherInfo_numAlts(x_226); +lean_dec(x_226); +x_275 = lean_nat_add(x_269, x_274); +lean_dec(x_274); +x_276 = lean_nat_dec_le(x_269, x_243); +if (x_276 == 0) +{ +x_263 = x_273; +x_264 = x_275; +x_265 = x_269; +goto block_267; +} +else +{ +lean_dec(x_269); +x_263 = x_273; +x_264 = x_275; +x_265 = x_243; +goto block_267; +} +} +block_280: +{ +uint8_t x_279; +x_279 = lean_nat_dec_le(x_269, x_234); +if (x_279 == 0) +{ +lean_inc(x_234); +x_270 = x_278; +x_271 = x_234; +goto block_277; +} +else +{ +lean_inc(x_269); +x_270 = x_278; +x_271 = x_269; +goto block_277; +} +} +} +else +{ +lean_object* x_282; lean_object* x_283; +lean_dec(x_234); +lean_dec_ref(x_233); +lean_dec(x_227); +lean_dec(x_226); +lean_dec(x_13); +lean_dec(x_12); +x_282 = lean_box(0); +if (lean_is_scalar(x_136)) { + x_283 = lean_alloc_ctor(0, 2, 0); +} else { + x_283 = x_136; +} +lean_ctor_set(x_283, 0, x_282); +lean_ctor_set(x_283, 1, x_135); +return x_283; +} +} +block_48: +{ +lean_object* x_23; lean_object* x_24; +x_23 = l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___closed__0; +lean_inc(x_21); +x_24 = l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10___redArg(x_21, x_21, x_23, x_3, x_4, x_5, x_6, x_19); +lean_dec(x_21); +if (lean_obj_tag(x_24) == 0) +{ +uint8_t x_25; +x_25 = !lean_is_exclusive(x_24); +if (x_25 == 0) +{ +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; +x_26 = lean_ctor_get(x_24, 0); +x_27 = lean_array_mk(x_13); +x_28 = l_Array_ofSubarray___redArg(x_14); +lean_dec_ref(x_14); +x_29 = l_Array_ofSubarray___redArg(x_20); +lean_dec_ref(x_20); +x_30 = l_Array_ofSubarray___redArg(x_15); +lean_dec_ref(x_15); +x_31 = l_Array_ofSubarray___redArg(x_17); +lean_dec_ref(x_17); +x_32 = lean_alloc_ctor(0, 10, 0); +lean_ctor_set(x_32, 0, x_12); +lean_ctor_set(x_32, 1, x_27); +lean_ctor_set(x_32, 2, x_22); +lean_ctor_set(x_32, 3, x_16); +lean_ctor_set(x_32, 4, x_28); +lean_ctor_set(x_32, 5, x_18); +lean_ctor_set(x_32, 6, x_29); +lean_ctor_set(x_32, 7, x_26); +lean_ctor_set(x_32, 8, x_30); +lean_ctor_set(x_32, 9, x_31); +x_33 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_24, 0, x_33); +return x_24; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_34 = lean_ctor_get(x_24, 0); +x_35 = lean_ctor_get(x_24, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_24); +x_36 = lean_array_mk(x_13); +x_37 = l_Array_ofSubarray___redArg(x_14); +lean_dec_ref(x_14); +x_38 = l_Array_ofSubarray___redArg(x_20); +lean_dec_ref(x_20); +x_39 = l_Array_ofSubarray___redArg(x_15); +lean_dec_ref(x_15); +x_40 = l_Array_ofSubarray___redArg(x_17); +lean_dec_ref(x_17); +x_41 = lean_alloc_ctor(0, 10, 0); +lean_ctor_set(x_41, 0, x_12); +lean_ctor_set(x_41, 1, x_36); +lean_ctor_set(x_41, 2, x_22); +lean_ctor_set(x_41, 3, x_16); +lean_ctor_set(x_41, 4, x_37); +lean_ctor_set(x_41, 5, x_18); +lean_ctor_set(x_41, 6, x_38); +lean_ctor_set(x_41, 7, x_34); +lean_ctor_set(x_41, 8, x_39); +lean_ctor_set(x_41, 9, x_40); +x_42 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_42, 0, x_41); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_35); +return x_43; +} +} +else +{ +uint8_t x_44; +lean_dec(x_22); +lean_dec_ref(x_20); +lean_dec_ref(x_18); +lean_dec_ref(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec(x_12); +x_44 = !lean_is_exclusive(x_24); +if (x_44 == 0) +{ +return x_24; +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_24, 0); +x_46 = lean_ctor_get(x_24, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_24); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; +} +} +} +block_67: +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; uint8_t x_64; +x_60 = lean_ctor_get(x_50, 1); +lean_inc(x_60); +lean_dec_ref(x_50); +x_61 = l_Array_toSubarray___redArg(x_57, x_58, x_59); +x_62 = l_List_lengthTR___redArg(x_60); +lean_dec(x_60); +x_63 = l_List_lengthTR___redArg(x_13); +x_64 = lean_nat_dec_eq(x_62, x_63); +lean_dec(x_63); +lean_dec(x_62); +if (x_64 == 0) +{ +lean_object* x_65; +x_65 = l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___closed__1; +x_14 = x_49; +x_15 = x_51; +x_16 = x_52; +x_17 = x_61; +x_18 = x_53; +x_19 = x_54; +x_20 = x_56; +x_21 = x_55; +x_22 = x_65; +goto block_48; +} +else +{ +lean_object* x_66; +x_66 = lean_box(0); +x_14 = x_49; +x_15 = x_51; +x_16 = x_52; +x_17 = x_61; +x_18 = x_53; +x_19 = x_54; +x_20 = x_56; +x_21 = x_55; +x_22 = x_66; +goto block_48; +} +} +block_83: +{ +lean_object* x_80; lean_object* x_81; uint8_t x_82; +lean_inc_ref(x_77); +x_80 = l_Array_toSubarray___redArg(x_77, x_78, x_79); +x_81 = lean_unsigned_to_nat(0u); +x_82 = lean_nat_dec_le(x_72, x_81); +if (x_82 == 0) +{ +x_49 = x_68; +x_50 = x_69; +x_51 = x_80; +x_52 = x_70; +x_53 = x_73; +x_54 = x_74; +x_55 = x_76; +x_56 = x_75; +x_57 = x_77; +x_58 = x_72; +x_59 = x_71; +goto block_67; +} +else +{ +lean_dec(x_72); +x_49 = x_68; +x_50 = x_69; +x_51 = x_80; +x_52 = x_70; +x_53 = x_73; +x_54 = x_74; +x_55 = x_76; +x_56 = x_75; +x_57 = x_77; +x_58 = x_81; +x_59 = x_71; +goto block_67; +} +} +block_96: +{ +if (x_87 == 0) +{ +lean_inc(x_88); +x_68 = x_84; +x_69 = x_85; +x_70 = x_86; +x_71 = x_88; +x_72 = x_89; +x_73 = x_90; +x_74 = x_91; +x_75 = x_94; +x_76 = x_93; +x_77 = x_92; +x_78 = x_95; +x_79 = x_88; +goto block_83; +} +else +{ +lean_inc(x_89); +x_68 = x_84; +x_69 = x_85; +x_70 = x_86; +x_71 = x_88; +x_72 = x_89; +x_73 = x_90; +x_74 = x_91; +x_75 = x_94; +x_76 = x_93; +x_77 = x_92; +x_78 = x_95; +x_79 = x_89; +goto block_83; +} +} +block_117: +{ +lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; uint8_t x_116; +lean_inc_ref(x_107); +x_111 = l_Array_toSubarray___redArg(x_107, x_109, x_110); +x_112 = lean_nat_add(x_103, x_104); +lean_dec(x_103); +x_113 = lean_box(0); +x_114 = lean_mk_array(x_112, x_113); +x_115 = lean_unsigned_to_nat(0u); +x_116 = lean_nat_dec_le(x_108, x_115); +if (x_116 == 0) +{ +x_84 = x_97; +x_85 = x_98; +x_86 = x_114; +x_87 = x_99; +x_88 = x_100; +x_89 = x_101; +x_90 = x_102; +x_91 = x_105; +x_92 = x_107; +x_93 = x_106; +x_94 = x_111; +x_95 = x_108; +goto block_96; +} +else +{ +lean_dec(x_108); +x_84 = x_97; +x_85 = x_98; +x_86 = x_114; +x_87 = x_99; +x_88 = x_100; +x_89 = x_101; +x_90 = x_102; +x_91 = x_105; +x_92 = x_107; +x_93 = x_106; +x_94 = x_111; +x_95 = x_115; +goto block_96; +} +} +block_132: +{ +uint8_t x_131; +x_131 = lean_nat_dec_le(x_129, x_121); +if (x_131 == 0) +{ +lean_inc(x_121); +x_97 = x_118; +x_98 = x_119; +x_99 = x_120; +x_100 = x_121; +x_101 = x_122; +x_102 = x_124; +x_103 = x_123; +x_104 = x_125; +x_105 = x_126; +x_106 = x_128; +x_107 = x_127; +x_108 = x_129; +x_109 = x_130; +x_110 = x_121; +goto block_117; +} +else +{ +lean_inc(x_129); +x_97 = x_118; +x_98 = x_119; +x_99 = x_120; +x_100 = x_121; +x_101 = x_122; +x_102 = x_124; +x_103 = x_123; +x_104 = x_125; +x_105 = x_126; +x_106 = x_128; +x_107 = x_127; +x_108 = x_129; +x_109 = x_130; +x_110 = x_129; +goto block_117; +} +} +block_156: +{ +lean_object* x_152; lean_object* x_153; lean_object* x_154; uint8_t x_155; +lean_inc_ref(x_147); +x_152 = l_Array_toSubarray___redArg(x_147, x_150, x_151); +x_153 = lean_array_get(x_137, x_147, x_142); +lean_dec(x_142); +x_154 = lean_unsigned_to_nat(0u); +x_155 = lean_nat_dec_le(x_148, x_154); +if (x_155 == 0) +{ +x_118 = x_152; +x_119 = x_138; +x_120 = x_139; +x_121 = x_140; +x_122 = x_141; +x_123 = x_143; +x_124 = x_153; +x_125 = x_144; +x_126 = x_145; +x_127 = x_147; +x_128 = x_146; +x_129 = x_149; +x_130 = x_148; +goto block_132; +} +else +{ +lean_dec(x_148); +x_118 = x_152; +x_119 = x_138; +x_120 = x_139; +x_121 = x_140; +x_122 = x_141; +x_123 = x_143; +x_124 = x_153; +x_125 = x_144; +x_126 = x_145; +x_127 = x_147; +x_128 = x_146; +x_129 = x_149; +x_130 = x_154; +goto block_132; +} +} +} +else +{ +lean_object* x_284; lean_object* x_285; +lean_dec_ref(x_11); +lean_dec_ref(x_1); +x_284 = lean_box(0); +x_285 = l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___lam__0(x_284, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_285; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_getSplitInfo_x3f(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; uint8_t x_8; +x_7 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__0___closed__1; +x_8 = l_Lean_Expr_isAppOf(x_1, x_7); +if (x_8 == 0) +{ +lean_object* x_9; uint8_t x_10; +x_9 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__4___closed__1; +x_10 = l_Lean_Expr_isAppOf(x_1, x_9); +if (x_10 == 0) +{ +uint8_t x_11; lean_object* x_12; +x_11 = 1; +x_12 = l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0(x_1, x_11, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +if (lean_obj_tag(x_13) == 0) +{ +uint8_t x_14; +x_14 = !lean_is_exclusive(x_12); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_ctor_get(x_12, 0); +lean_dec(x_15); +x_16 = lean_box(0); +lean_ctor_set(x_12, 0, x_16); +return x_12; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_12, 1); +lean_inc(x_17); +lean_dec(x_12); +x_18 = lean_box(0); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_19, 1, x_17); +return x_19; +} +} +else +{ +uint8_t x_20; +x_20 = !lean_is_exclusive(x_12); +if (x_20 == 0) +{ +lean_object* x_21; uint8_t x_22; +x_21 = lean_ctor_get(x_12, 0); +lean_dec(x_21); +x_22 = !lean_is_exclusive(x_13); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; +x_23 = lean_ctor_get(x_13, 0); +x_24 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_13, 0, x_24); +return x_12; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_13, 0); +lean_inc(x_25); +lean_dec(x_13); +x_26 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_26, 0, x_25); +x_27 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_12, 0, x_27); +return x_12; +} +} +else +{ +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_28 = lean_ctor_get(x_12, 1); +lean_inc(x_28); +lean_dec(x_12); +x_29 = lean_ctor_get(x_13, 0); +lean_inc(x_29); +if (lean_is_exclusive(x_13)) { + lean_ctor_release(x_13, 0); + x_30 = x_13; +} else { + lean_dec_ref(x_13); + x_30 = lean_box(0); +} +x_31 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_31, 0, x_29); +if (lean_is_scalar(x_30)) { + x_32 = lean_alloc_ctor(1, 1, 0); +} else { + x_32 = x_30; +} +lean_ctor_set(x_32, 0, x_31); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_28); +return x_33; +} +} +} +else +{ +uint8_t x_34; +x_34 = !lean_is_exclusive(x_12); +if (x_34 == 0) +{ +return x_12; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_12, 0); +x_36 = lean_ctor_get(x_12, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_12); +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_38; lean_object* x_39; lean_object* x_40; +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_38 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_38, 0, x_1); +x_39 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_39, 0, x_38); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_39); +lean_ctor_set(x_40, 1, x_6); +return x_40; +} +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_41 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_41, 0, x_1); +x_42 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_42, 0, x_41); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_6); +return x_43; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__0___redArg(x_1, x_2, x_3); +lean_dec(x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__0___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__0(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_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: +{ +lean_object* x_8; +x_8 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2_spec__2_spec__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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2_spec__2_spec__2(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2_spec__2___redArg___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2_spec__2___redArg(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2_spec__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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2_spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_2); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__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_6); +lean_dec_ref(x_5); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_2); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1___redArg___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1___redArg(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_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: +{ +lean_object* x_8; +x_8 = l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_1); +return x_10; +} +} +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_1); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___lam__0___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___lam__0(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___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); +x_9 = l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0(x_1, x_8, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Failed to proof for if condition ", 33, 33); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__0; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("", 0, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__2; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_rwIfOrMatcher(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; uint8_t x_27; lean_object* x_38; uint8_t x_39; +x_38 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__0___closed__1; +x_39 = l_Lean_Expr_isAppOf(x_2, x_38); +if (x_39 == 0) +{ +lean_object* x_40; uint8_t x_41; +x_40 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__4___closed__1; +x_41 = l_Lean_Expr_isAppOf(x_2, x_40); +x_27 = x_41; +goto block_37; +} +else +{ +x_27 = x_39; +goto block_37; +} +block_26: +{ +lean_object* x_9; +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +lean_inc_ref(x_8); +x_9 = l_Lean_Meta_findLocalDeclWithType_x3f(x_8, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +lean_dec_ref(x_2); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec_ref(x_9); +x_12 = l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__1; +x_13 = l_Lean_MessageData_ofExpr(x_8); +x_14 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +x_15 = l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__3; +x_16 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_16, 0, x_14); +lean_ctor_set(x_16, 1, x_15); +x_17 = l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__2_spec__2___redArg(x_16, x_3, x_4, x_5, x_6, x_11); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_17; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +lean_dec_ref(x_8); +x_18 = lean_ctor_get(x_9, 1); +lean_inc(x_18); +lean_dec_ref(x_9); +x_19 = lean_ctor_get(x_10, 0); +lean_inc(x_19); +lean_dec_ref(x_10); +x_20 = l_Lean_Expr_fvar___override(x_19); +x_21 = l_Lean_Tactic_FunInd_rwIfWith(x_20, x_2, x_3, x_4, x_5, x_6, x_18); +return x_21; +} +} +else +{ +uint8_t x_22; +lean_dec_ref(x_8); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_22 = !lean_is_exclusive(x_9); +if (x_22 == 0) +{ +return x_9; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_9, 0); +x_24 = lean_ctor_get(x_9, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_9); +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; +} +} +} +block_37: +{ +if (x_27 == 0) +{ +lean_object* x_28; +x_28 = l_Lean_Tactic_FunInd_rwMatcher(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_28; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; +x_29 = lean_unsigned_to_nat(1u); +x_30 = l_Lean_Expr_getAppNumArgs(x_2); +x_31 = lean_nat_sub(x_30, x_29); +lean_dec(x_30); +x_32 = lean_nat_sub(x_31, x_29); +lean_dec(x_31); +x_33 = l_Lean_Expr_getRevArg_x21(x_2, x_32); +x_34 = lean_unsigned_to_nat(0u); +x_35 = lean_nat_dec_eq(x_1, x_34); +lean_dec(x_1); +if (x_35 == 0) +{ +lean_object* x_36; +x_36 = l_Lean_mkNot(x_33); +x_8 = x_36; +goto block_26; +} +else +{ +x_8 = x_33; +goto block_26; +} +} +} +} +} +lean_object* initialize_Lean_Meta_Tactic_FunInd(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Elab_Tactic_Do_VCGen_Split(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Meta_Tactic_FunInd(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__0 = _init_l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__0); +l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__1 = _init_l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__1); +l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__2 = _init_l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__2); +l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__3 = _init_l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo___closed__3); +l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo = _init_l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_instInhabitedSplitInfo); +l_Lean_Elab_Tactic_Do_SplitInfo_altInfos___closed__0 = _init_l_Lean_Elab_Tactic_Do_SplitInfo_altInfos___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SplitInfo_altInfos___closed__0); +l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__0___closed__0 = _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__0___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__0___closed__0); +l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__0___closed__1 = _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__0___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__0___closed__1); +l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__1___closed__0 = _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__1___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__1___closed__0); +l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__1___closed__1 = _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__1___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__1___closed__1); +l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__0 = _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__0); +l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__1 = _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__1); +l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__2 = _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__3___closed__2); +l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__4___closed__0 = _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__4___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__4___closed__0); +l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__4___closed__1 = _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__4___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__4___closed__1); +l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__9___closed__0 = _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__9___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__9___closed__0); +l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__9___closed__1 = _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__9___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__9___closed__1); +l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__11___closed__0 = _init_l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__11___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SplitInfo_splitWithConstantMotive___redArg___lam__11___closed__0); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___lam__0___closed__0 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___lam__0___closed__0(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___lam__0___closed__0); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__0 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__0(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__0); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__1 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__1(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__1); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__2 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__2(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__2); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__3 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__3(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__3); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__4 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__4(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__4); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__5 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__5(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__5); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__6 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__6(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__6); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__7 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__7(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__7); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__8 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__8(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__8); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__9 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__9(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__9); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__10 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__10(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__10); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__11 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__11(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__11); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__12 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__12(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__12); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__13 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__13(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__13); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__14 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__14(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__14); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__15 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__15(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__15); +l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__16 = _init_l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__16(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1_spec__1_spec__1___closed__16); +l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__0 = _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__0(); +lean_mark_persistent(l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__0); +l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__1 = _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__1(); +lean_mark_persistent(l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__1); +l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__2 = _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__2(); +lean_mark_persistent(l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__2); +l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__3 = _init_l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__3(); +lean_mark_persistent(l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__1_spec__1_spec__1___redArg___closed__3); +l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__0 = _init_l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__0(); +lean_mark_persistent(l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__0); +l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__1 = _init_l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__1(); +lean_mark_persistent(l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__1); +l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__2 = _init_l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__2(); +lean_mark_persistent(l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__2); +l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__3 = _init_l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__3(); +lean_mark_persistent(l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__3); +l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__4 = _init_l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__4(); +lean_mark_persistent(l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__9___closed__4); +l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__0 = _init_l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__0(); +lean_mark_persistent(l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__0); +l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__1 = _init_l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__1(); +lean_mark_persistent(l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__1); +l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__2 = _init_l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__2(); +lean_mark_persistent(l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__2); +l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__3 = _init_l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__3(); +lean_mark_persistent(l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0_spec__10_spec__10___redArg___closed__3); +l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___closed__0 = _init_l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___closed__0(); +lean_mark_persistent(l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___closed__0); +l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___closed__1 = _init_l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___closed__1(); +lean_mark_persistent(l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___closed__1); +l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___closed__2 = _init_l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___closed__2(); +lean_mark_persistent(l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Elab_Tactic_Do_getSplitInfo_x3f_spec__0___closed__2); +l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__0 = _init_l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__0(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__0); +l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__1 = _init_l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__1); +l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__2 = _init_l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__2); +l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__3 = _init_l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_rwIfOrMatcher___closed__3); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Elab/Term.c b/stage0/stdlib/Lean/Elab/Term.c index 2c637da3cd..941aab4202 100644 --- a/stage0/stdlib/Lean/Elab/Term.c +++ b/stage0/stdlib/Lean/Elab/Term.c @@ -39,7 +39,6 @@ lean_object* lean_format_pretty(lean_object*, lean_object*, lean_object*, lean_o LEAN_EXPORT lean_object* l_Lean_Elab_Term_logUnassignedUsingErrorInfos(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_initFn___closed__3____x40_Lean_Elab_Term___hyg_19491_; LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux_spec__0___redArg___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___lam__0___closed__0; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___Lean_Core_transform_visit___at___Lean_Core_transform___at___Lean_Elab_Term_exposeLevelMVars_spec__1_spec__1_spec__12(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_withoutHeedElabAsElimImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_hashCacheKey____x40_Lean_Elab_Term___hyg_1060____boxed(lean_object*); @@ -82,6 +81,7 @@ LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_____private_Lean_Elab_Term_0_ lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visit(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_logUnassignedUsingErrorInfos___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Core_transform___at___Lean_Elab_Term_exposeLevelMVars_spec__1___closed__2; +LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_Lean_mkAppN(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_hasNoImplicitLambdaAnnotation___closed__0; @@ -105,7 +105,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_levelMVarToParam___redArg___boxed(lean LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_Elab_Term_mkConst_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_withoutAutoBoundImplicit(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_matchesIdent(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_isTypeAscription___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_useImplicitLambda___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_registerMVarErrorImplicitArgInfo___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -136,7 +135,6 @@ LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___List_forIn_x27_loop___at__ static lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__12; lean_object* lean_private_to_user_name(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Term_exprToSyntax_spec__0_spec__0_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_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* l_Lean_Elab_Level_elabLevel(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Term_logUnassignedUsingErrorInfos_spec__4___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Language_SnapshotTask_cancelRec(lean_object*, lean_object*, lean_object*, lean_object*); @@ -156,10 +154,12 @@ static lean_object* l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__2; static lean_object* l_Lean_Elab_Term_mkSaveInfoAnnotation___closed__1; lean_object* l_Array_reverse___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_registerMVarErrorImplicitArgInfo___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_instInhabitedSyntheticMVarDecl; static lean_object* l_Lean_Elab_Term_MVarErrorInfo_logError___lam__0___closed__5; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___Lean_Elab_Term_ContainsPendingMVar_visit_spec__5(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_profileitM___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore_spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_instToSnapshotTreeTacticParsedSnapshot_go___lam__0(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_instInhabitedTacticParsedSnapshot; LEAN_EXPORT lean_object* l_Lean_Elab_Term_registerSyntheticMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -273,22 +273,22 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___Std_DHashMap_Internal_Raw_u2080_expand_go___at___Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Core_transform_visit___at___Lean_Core_transform___at___Lean_Elab_Term_exposeLevelMVars_spec__1_spec__1_spec__9_spec__9_spec__9(lean_object*, lean_object*, lean_object*); lean_object* l_String_removeLeadingSpaces(lean_object*); static lean_object* l_Lean_Elab_Term_instInhabitedMVarErrorKind___closed__10; +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__5___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_Term_expandDeclId___closed__1; lean_object* l_Lean_Core_checkSystem(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___Lean_withTraceNode___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore_spec__6_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_mul(size_t, size_t); LEAN_EXPORT lean_object* l_liftExcept___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Elab_Term_withAutoBoundImplicitForbiddenPred___redArg___lam__0(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__10___closed__1; static lean_object* l_Lean_Elab_Term_ensureType___closed__0; static lean_object* l_Lean_Elab_Term_getInfoTreeWithContext_x3f___redArg___closed__1; LEAN_EXPORT lean_object* l_Array_contains___at___Lean_Elab_Term_collectUnassignedMVars_go_spec__0___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_throwAbortCommand___at___Lean_Elab_Term_ensureNoUnassignedMVars_spec__0___redArg(lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_incrementalAttr___regBuiltin_Lean_Elab_incrementalAttr_declRange__3___closed__5; LEAN_EXPORT lean_object* l_Lean_Elab_Term_traceAtCmdPos___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Term_addAutoBoundImplicits_x27_spec__1___redArg___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*); static lean_object* l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Elab_Term_logUnassignedLevelMVarsUsingErrorInfos_spec__3_spec__3___redArg___closed__3; -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___lam__0(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_addMacroStack___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Term_exprToSyntax_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_unknownIdentifierMessageTag; @@ -309,6 +309,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_mkPartialTermInfo___redArg(lean_object lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_ST_Prim_Ref_get___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_getBodyInfo_x3f(lean_object*); +LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_resolveName_process___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_mkFreshIdent___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_mdata___override(lean_object*, lean_object*); @@ -316,7 +317,6 @@ lean_object* l___private_Lean_Log_0__Lean_MessageData_appendDescriptionWidgetIfN LEAN_EXPORT lean_object* l_Lean_Elab_Term_hasNoImplicitLambdaAnnotation___boxed(lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Term_addAutoBoundImplicits_go_spec__1(lean_object*, lean_object*, 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*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1___lam__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_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__8_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*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_saveState___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___Lean_Elab_Term_addAutoBoundImplicits_x27_spec__0(lean_object*, size_t, size_t); @@ -326,7 +326,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_exceptionToSorry(lean_object*, lean_ob LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Term_logUnassignedUsingErrorInfos_spec__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*, lean_object*); lean_object* l_Lean_replaceRef(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand_go___at___Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Elab_Term_ContainsPendingMVar_visit_spec__1_spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_getInfoTreeWithContext_x3f___redArg___closed__10; LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_Elab_Term_mkConst_spec__0_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -349,13 +348,14 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_withNarrowedTacticReuse___redArg___lam LEAN_EXPORT lean_object* l_Lean_Elab_Term_registerMVarErrorInfo___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Core_withIncRecDepth___at___Lean_Core_transform_visit___at___Lean_Core_transform___at___Lean_Elab_Term_exposeLevelMVars_spec__1_spec__1_spec__6_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit_spec__0(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Elab_Term_registerSyntheticMVarWithCurrRef___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getTailPos_x3f(lean_object*, uint8_t); static lean_object* l_Lean_Elab_Term_mkCoe___lam__1___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Term_containsPendingMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__2___closed__0; -static lean_object* l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__0; +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_withRestoreOrSaveFull(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Elab_Term_ContainsPendingMVar_visit_spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_instInhabitedMVarErrorKind___closed__6; @@ -380,6 +380,7 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_PersistentArray_mapM LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___Lean_Core_transform_visit___at___Lean_Core_transform___at___Lean_Elab_Term_exposeLevelMVars_spec__1_spec__1_spec__3___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_applyResult(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_float_decLt(double, double); +LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_mkConst___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_LVal_getRef___boxed(lean_object*); lean_object* l_Lean_Attribute_Builtin_ensureNoArgs(lean_object*, lean_object*, lean_object*, lean_object*); @@ -420,7 +421,9 @@ static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_initFn___closed static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_initFn___closed__1____x40_Lean_Elab_Term___hyg_19764_; LEAN_EXPORT lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_ppGoal___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__12___closed__1; lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_withRestoreOrSaveFull___redArg___closed__22; LEAN_EXPORT lean_object* l_Lean_Elab_withSaveParentDeclInfoContext___at___Lean_Elab_Term_withDeclName_spec__1___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_19764_(lean_object*); @@ -450,6 +453,7 @@ static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVi lean_object* l_Lean_stringToMessageData(lean_object*); static lean_object* l_Lean_Elab_Term_withAutoBoundImplicit___redArg___closed__3; lean_object* l_Lean_Expr_mvar___override(lean_object*); +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Term_withTermInfoContext_x27___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_EXPORT uint8_t l_Array_contains___at___Lean_Elab_Term_logUnassignedLevelMVarsUsingErrorInfos_spec__0(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_contains___at___Lean_Elab_Term_logUnassignedUsingErrorInfos_spec__1___boxed(lean_object*, lean_object*); @@ -523,7 +527,7 @@ LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at___Lean_PersistentArr static lean_object* l_Lean_Elab_Term_mkSaveInfoAnnotation___closed__0; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Term_addAutoBoundImplicitsInlayHint_spec__3___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasSyntheticSorry(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__0(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_ensureType___closed__2; static lean_object* l_Lean_Elab_Term_withRestoreOrSaveFull___redArg___closed__9; LEAN_EXPORT lean_object* l_Lean_Elab_Term_withNarrowedTacticReuse___redArg___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -537,6 +541,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_isLocalIdent_x3f___boxed(lean_object*, static lean_object* l_Lean_Elab_Term_instAddErrorMessageContextTermElabM___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Term_registerMVarErrorCustomInfo___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_Term_resolveName___closed__3; +LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Core_instMonadOptionsCoreM___lam__0___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Term_collectUnassignedMVars_go_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_throwAbortTerm___at___Lean_Elab_Term_throwMVarError_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -556,7 +561,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_throwAbortTerm___at___Lean_Elab_Term_throwM LEAN_EXPORT lean_object* l_Lean_Elab_Term_getMVarDecl___redArg(lean_object*, lean_object*, lean_object*); uint8_t lean_is_reserved_name(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_addAutoBoundImplicitsInlayHint___closed__1; -static lean_object* l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Term_commitIfNoErrors_x3f___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Elab_Term_logUnassignedUsingErrorInfos_spec__6___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_instInhabitedTermElabM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -582,7 +586,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_withMacroExpansion___redArg(lean_objec LEAN_EXPORT lean_object* l_List_elem___at___Lean_Elab_Term_levelMVarToParam_spec__0___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_instToSnapshotTreeTacticParsedSnapshot_go_spec__0___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Nat_reprFast(lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_ptr_addr(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Term_addAutoBoundImplicitsInlayHint_spec__4(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); @@ -634,6 +637,7 @@ static lean_object* l_Lean_Elab_Term_isLetRecAuxMVar___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_task_pure(lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___Lean_withTraceNode___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore_spec__6_spec__9___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_throwErrorIfErrors(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_save___at___Lean_Elab_withSaveInfoContext___at___Lean_Elab_Term_withoutModifyingElabMetaStateWithInfo_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___Array_contains___at___Lean_Elab_Term_logUnassignedLevelMVarsUsingErrorInfos_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -654,7 +658,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_withExpectedType(lean_object*, lean_ob static lean_object* l_Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1___closed__0; lean_object* lean_local_ctx_find(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_registerMVarErrorImplicitArgInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_eqWithInfoAndTraceReuse(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_ensureNoUnassignedMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___closed__2; @@ -673,7 +676,6 @@ LEAN_EXPORT lean_object* l_Lean_resolveLocalName_loop___at___Lean_resolveLocalNa LEAN_EXPORT lean_object* l_Lean_throwAttrMustBeGlobal___at_____private_Lean_Elab_Term_0__Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_19764__spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___Lean_Elab_withSaveParentDeclInfoContext___at___Lean_Elab_Term_withDeclName_spec__1_spec__1___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_withLogging___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore_spec__2_spec__2_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__13(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_initFn___closed__4____x40_Lean_Elab_Term___hyg_19491_; LEAN_EXPORT lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_initFn___regBuiltin___private_Lean_Elab_Term_0__Lean_Elab_initFn_docString__1____x40_Lean_Elab_Term___hyg_19764_(lean_object*); @@ -690,7 +692,6 @@ uint8_t lean_expr_eqv(lean_object*, lean_object*); lean_object* l_Lean_declareBuiltin(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambdaAux___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_instToSnapshotTreeTacticParsedSnapshot_go(lean_object*); -static lean_object* l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__4; lean_object* l_Lean_ResolveName_resolveNamespace(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkPrivateName(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_MVarErrorInfo_logError___closed__0; @@ -700,7 +701,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_withMacroExpansionInfo___at___Lean_Elab_Ter LEAN_EXPORT lean_object* l_Lean_Elab_Term_liftLevelM___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_tryPostponeIfHasMVars_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Term_addAutoBoundImplicitsInlayHint_spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__8_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Elab_Term_logUnassignedUsingErrorInfos_spec__4___redArg(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_termElabAttribute___regBuiltin_Lean_Elab_Term_termElabAttribute_declRange__3(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_getInfoTreeWithContext_x3f___redArg___boxed(lean_object*, lean_object*, lean_object*); @@ -724,7 +724,6 @@ LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___Lean_Elab_Term_logUnassig static lean_object* l___auto___closed__21____x40_Lean_Elab_Term___hyg_3155_; uint8_t l_Lean_TagAttribute_hasTag(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_instInhabitedCache___closed__2; -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofSyntax(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_resolveName_process(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -762,7 +761,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_instToSnapshotTreeTacticFinishedSnap LEAN_EXPORT lean_object* l_Lean_Elab_withInfoTreeContext___at___Lean_Elab_withMacroExpansionInfo___at___Lean_Elab_Term_withMacroExpansion_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getDelayedMVarAssignment_x3f___at___Lean_getDelayedMVarRoot___at___Lean_Elab_Term_isLetRecAuxMVar_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_exprToSyntax(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_findSome_x3f___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___Lean_Core_transform_visit___at___Lean_Core_transform___at___Lean_Elab_Term_exposeLevelMVars_spec__1_spec__1_spec__3___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_filterTR_loop___at___Lean_resolveLocalName_loop___at___Lean_resolveLocalName___at___Lean_Elab_Term_isLocalIdent_x3f_spec__0_spec__9_spec__10(lean_object*, lean_object*); @@ -843,7 +841,7 @@ static lean_object* l_Lean_Elab_Term_MVarErrorInfo_logError___lam__0___closed__3 LEAN_EXPORT lean_object* l_Lean_Elab_Term_withoutTacticReuse___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux_spec__0_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTermCore___closed__3; -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_withReuseContext___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_instMonadTermElabM___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Core_resetMessageLog___redArg(lean_object*, lean_object*); @@ -859,7 +857,8 @@ static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___l LEAN_EXPORT lean_object* l_Lean_withDeclNameForAuxNaming___at___Lean_Elab_Term_withDeclName_spec__0___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFnsAux___closed__1; double lean_float_of_nat(lean_object*); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__15(uint8_t, lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__15(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__4(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_Elab_Term_initFn___closed__0____x40_Lean_Elab_Term___hyg_3952_; lean_object* l_Lean_Meta_whnfForall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -916,6 +915,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_collectUnassignedMVars_go___redArg(lea static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_initFn___closed__6____x40_Lean_Elab_Term___hyg_19491_; static lean_object* l_Lean_Elab_Term_mkConst___closed__1; LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_logErrorAt___at___Lean_Elab_Term_MVarErrorInfo_logError_spec__1_spec__1___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Term_termElabAttribute; static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_Elab_Term_mkConst_spec__0_spec__0_spec__0_spec__0_spec__0___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_isIncrementalElab___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*); @@ -932,7 +932,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabLevel___redArg___boxed(lean_object LEAN_EXPORT lean_object* l_Lean_Elab_Term_ppGoal___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand_go___at___Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Core_transform_visit___at___Lean_Core_transform___at___Lean_Elab_Term_exposeLevelMVars_spec__1_spec__1_spec__9_spec__9(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ST_Prim_mkRef___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Term_collectUnassignedMVars_go_spec__2(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_extraMsgToMsg___boxed(lean_object*); static lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__3; @@ -942,9 +941,12 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_getDeclName_x3f(lean_object*, lean_obj LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_localDeclDependsOn___at___Lean_Elab_Term_addAutoBoundImplicits_go_spec__0___redArg___lam__0(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_mkFreshBinderName___redArg(lean_object*, lean_object*); +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__4; uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_coerceToSort_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Term_addAutoBoundImplicits_go_spec__1___redArg(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*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__5(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__15_spec__15(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_ofSubarray___redArg(lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore_spec__12_spec__12___lam__0___closed__0; LEAN_EXPORT uint8_t l_Array_contains___at___Lean_Elab_Term_logUnassignedUsingErrorInfos_spec__1(lean_object*, lean_object*); @@ -966,6 +968,7 @@ static lean_object* l_Lean_Elab_Term_mkTypeMismatchError___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Term_withReuseContext___redArg___lam__0(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_wrapAsyncAsSnapshot(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static double l_Lean_withTraceNode___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore_spec__6___redArg___closed__5; +static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__5___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_isIncrementalElab___redArg___lam__0(lean_object*, lean_object*); extern lean_object* l_Lean_MessageData_nil; LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Core_transform_visit___at___Lean_Core_transform___at___Lean_Elab_Term_exposeLevelMVars_spec__1_spec__1_spec__8___redArg(lean_object*, lean_object*); @@ -989,11 +992,13 @@ static lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__5; LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Elab_Term_logUnassignedUsingErrorInfos_spec__4_spec__4___redArg(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFnsAux___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_EXPORT lean_object* l_Lean_Elab_Term_levelMVarToParam___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___lam__0___closed__0; lean_object* l_Lean_instMonadQuotationOfMonadFunctorOfMonadLift___redArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_InfoTree_substitute(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_incrementalAttr___regBuiltin_Lean_Elab_incrementalAttr_docString__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1___lam__2(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*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_addTermInfo___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_isExplicitApp___closed__1; static lean_object* l_Lean_Core_transform___at___Lean_Elab_Term_exposeLevelMVars_spec__1___closed__5; LEAN_EXPORT lean_object* l_Lean_Elab_Term_getLevelNames___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1014,7 +1019,6 @@ static lean_object* l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___clo LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Term_logUnassignedUsingErrorInfos_spec__7___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___auto___closed__31____x40_Lean_Elab_Term___hyg_3155_; uint8_t l_Lean_BinderInfo_isInstImplicit(uint8_t); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__13_spec__13(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_wrapAsyncAsSnapshot___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_collectUnassignedMVars_go___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAnnotation(lean_object*, lean_object*); @@ -1074,7 +1078,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_withNarrowedTacticReuse___redArg___lam lean_object* l_Lean_PersistentArray_append___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Term_exprToSyntax_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_initFn___closed__1____x40_Lean_Elab_Term___hyg_3952_; lean_object* l_ReaderT_instMonadExceptOf___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_addTermInfo_x27___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*); @@ -1121,7 +1124,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_blockImplicitLambda___boxed(lean_objec static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFnsAux___closed__0; static lean_object* l_Lean_Elab_Term_instAddErrorMessageContextTermElabM___closed__2; static lean_object* l_Lean_Elab_Term_mkCoe___lam__0___closed__1; -static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Elab_Term_addAutoBoundImplicits_x27_spec__1___redArg(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_trace_profiler_threshold; LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___Lean_Elab_Term_synthesizeInstMVarCore_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1218,7 +1220,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_withTermInfoContext_x27(lean_object*, static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_dropTermParens___closed__2; static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore_spec__12_spec__12___lam__0___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___closed__1; static lean_object* l_Lean_Elab_Term_instInhabitedMVarErrorKind___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Term_instInhabitedLevelMVarErrorInfo; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambda_loop_spec__0___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*); @@ -1244,7 +1245,6 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_MVarId_assi LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at_____private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___Lean_Elab_withSaveParentDeclInfoContext___at___Lean_Elab_Term_withDeclName_spec__1_spec__1_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Elab_Term_ContainsPendingMVar_visit_spec__0___redArg(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__1; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore_spec__12_spec__12___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___auto___closed__0____x40_Lean_Elab_Term___hyg_3155_; static lean_object* l_Lean_Elab_Tactic_instInhabitedCacheKey___closed__0; @@ -1266,6 +1266,7 @@ uint8_t l_Lean_Environment_contains(lean_object*, lean_object*, uint8_t); static lean_object* l_Lean_Elab_Term_instInhabitedMVarErrorKind___closed__5; extern lean_object* l_Lean_inheritedTraceOptions; static lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_checkIfShadowingStructureField___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__1_spec__1___closed__2; +static lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__12___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux_spec__0___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___Std_DHashMap_Internal_Raw_u2080_expand_go___at___Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Core_transform_visit___at___Lean_Core_transform___at___Lean_Elab_Term_exposeLevelMVars_spec__1_spec__1_spec__9_spec__9_spec__9___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_isMVarApp___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1338,6 +1339,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe(lean_object* LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Elab_Term_logUnassignedUsingErrorInfos_spec__4_spec__4___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at___Lean_Elab_Term_MVarErrorInfo_logError_spec__0___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_initFn___closed__2____x40_Lean_Elab_Term___hyg_17137_; static lean_object* l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Elab_Term_logUnassignedLevelMVarsUsingErrorInfos_spec__3_spec__3___redArg___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Term_isSaveInfoAnnotation_x3f(lean_object*); @@ -1399,6 +1401,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_instToStringSyntheticMVarKind___lam__0 LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoTree___at___Lean_Elab_pushInfoLeaf___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_mkPartialTermInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabLevel___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at_____private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___Lean_Elab_withSaveParentDeclInfoContext___at___Lean_Elab_Term_withDeclName_spec__1_spec__1_spec__1___redArg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_withExpectedType___closed__1; @@ -1433,6 +1436,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_checkDepre LEAN_EXPORT lean_object* l_Lean_Elab_Term_withNarrowedTacticReuse(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_beqAttributeApplicationTime____x40_Lean_Attributes___hyg_20_(uint8_t, uint8_t); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___lam__0___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_throwMaxRecDepthAt___at___Lean_Core_withIncRecDepth___at___Lean_Core_transform_visit___at___Lean_Core_transform___at___Lean_Elab_Term_exposeLevelMVars_spec__1_spec__1_spec__6_spec__6___redArg___closed__1; static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at___Lean_Elab_Term_MVarErrorInfo_logError_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1456,10 +1460,10 @@ lean_object* l_Lean_Environment_mainModule(lean_object*); static lean_object* l_Lean_Elab_Term_withoutTacticIncrementality___redArg___lam__2___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_withRestoreOrSaveFull___redArg___closed__14; +LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Elab_Term_exprToSyntax_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_setInfoState___at___Lean_Elab_Term_SavedState_restore_spec__0___redArg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Term_mkFreshBinderName(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_findSomeRevM_x3f___at___Lean_resolveLocalName___at___Lean_Elab_Term_isLocalIdent_x3f_spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); static lean_object* l_Lean_Elab_Term_instInhabitedState___closed__0; @@ -1468,7 +1472,7 @@ lean_object* l_ReaderT_instMonadFunctor___lam__0(lean_object*, lean_object*, lea static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_isHole___closed__2; static lean_object* l_Lean_Elab_Term_getInfoTreeWithContext_x3f___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Term_TermElabM_run___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); lean_object* l_Lean_Meta_coerce_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_withoutModifyingStateWithInfoAndMessagesImpl___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1481,6 +1485,7 @@ static lean_object* l_Lean_Elab_Term_withoutTacticIncrementality___redArg___lam_ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambda_loop_spec__0___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_resolveId_x3f___closed__2; LEAN_EXPORT lean_object* l_Lean_withDeclNameForAuxNaming___at___Lean_Elab_Term_withDeclName_spec__0___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__3; lean_object* l_Lean_indentExpr(lean_object*); LEAN_EXPORT uint8_t l_Lean_localDeclDependsOn___at___Lean_Elab_Term_addAutoBoundImplicits_go_spec__0___redArg___lam__1(lean_object*); uint8_t l_Lean_BinderInfo_isExplicit(uint8_t); @@ -1567,7 +1572,6 @@ static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_initFn___closed LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Elab_Term_ContainsPendingMVar_visit_spec__0___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_logException___at___Lean_Elab_withLogging___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore_spec__2_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___Array_contains___at___Lean_Elab_Term_collectUnassignedMVars_go_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__10___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoTree___at___Lean_Elab_pushInfoLeaf___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l___auto___closed__4____x40_Lean_Elab_Term___hyg_3155_; lean_object* l_Lean_Syntax_getHeadInfo_x3f(lean_object*); @@ -1633,6 +1637,7 @@ lean_object* l_Lean_instAddErrorMessageContextOfAddMessageContextOfMonad___redAr LEAN_EXPORT lean_object* l_Lean_Elab_isIncrementalElab(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_contains___at___Lean_Elab_Term_logUnassignedUsingErrorInfos_spec__0___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Term_addAutoBoundImplicitsInlayHint_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__15_spec__15___boxed(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_Elab_Term_MVarErrorInfo_logError___closed__1; LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___Lean_withTraceNode___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore_spec__6_spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_setLevelNames___redArg(lean_object*, lean_object*, lean_object*); @@ -1658,6 +1663,7 @@ static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_initFn___closed__2__ LEAN_EXPORT lean_object* l_Lean_Elab_Term_withoutAutoBoundImplicit___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_getModuleIdxFor_x3f(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_mkCoe(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_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__5___closed__1; lean_object* l_Lean_registerBuiltinAttribute(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_incrementalAttr; static lean_object* l_Lean_Elab_Term_withRestoreOrSaveFull___redArg___closed__11; @@ -1669,6 +1675,7 @@ static lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHas LEAN_EXPORT lean_object* l_Lean_Elab_Term_withoutTacticReuse___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_Term_addAutoBoundImplicits_go_spec__1___boxed(lean_object**); static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_isNoImplicitLambda___closed__1; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__10_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*); static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_Elab_Term_mkConst_spec__0_spec__0_spec__0___redArg___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Term_exposeLevelMVars___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_withoutHeedElabAsElim___redArg(lean_object*, lean_object*); @@ -1791,6 +1798,7 @@ lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_o LEAN_EXPORT lean_object* l_Lean_Elab_Term_tryPostponeIfNoneOrMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___Lean_withTraceNode___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore_spec__6_spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_withMacroExpansionInfo___at___Lean_Elab_Term_withMacroExpansion_spec__0___redArg___lam__0(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_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___closed__1; LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Term_throwErrorIfErrors_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Term_withTermInfoContext_x27___lam__0___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*); @@ -1801,7 +1809,7 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsa LEAN_EXPORT lean_object* l_Lean_addMessageContextPartial___at___Lean_throwError___at_____private_Lean_Elab_Term_0__Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_19764__spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Core_instMonadCoreM___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_mkFreshIdent___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_throwAttrMustBeGlobal___at_____private_Lean_Elab_Term_0__Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_19764__spec__2___redArg___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_addCompletionInfo___at___Lean_Elab_Term_addDotCompletionInfo_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___auto___closed__19____x40_Lean_Elab_Term___hyg_3155_; @@ -1818,6 +1826,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at__ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_checkIfShadowingStructureField___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__1_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_withoutTacticReuse___redArg___lam__0(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__10_spec__10(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_initFn___closed__13____x40_Lean_Elab_Term___hyg_17137_; LEAN_EXPORT lean_object* l_Lean_Elab_Term_instMonadMacroAdapterTermElabM___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint64_t l_Lean_hashMVarId____x40_Lean_Expr___hyg_1869_(lean_object*); @@ -1844,6 +1853,7 @@ lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_LocalDecl_toExpr(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_withReuseContext(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Elab_Term_exprToSyntax_spec__0_spec__0_spec__0(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstVal___at___Lean_Elab_Term_mkConst_spec__0_spec__0_spec__0_spec__0_spec__0___closed__3; LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Elab_Term_traceAtCmdPos_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkAuxDeclName___at___Lean_Elab_Term_mkAuxName_spec__0___redArg(lean_object*, lean_object*, lean_object*); @@ -1872,7 +1882,6 @@ static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_decorateErrorMe uint8_t lean_nat_dec_le(lean_object*, lean_object*); extern lean_object* l_Lean_Meta_instAddMessageContextMetaM; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_PersistentArray_mapMAux___at___Lean_PersistentArray_mapM___at_____private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___Lean_Elab_withSaveParentDeclInfoContext___at___Lean_Elab_Term_withDeclName_spec__1_spec__1_spec__2_spec__2_spec__3(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getDelayedMVarAssignment_x3f___at___Lean_Elab_Term_ContainsPendingMVar_visit_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___closed__3; extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; @@ -1892,11 +1901,13 @@ static lean_object* l_Lean_Elab_Term_LevelMVarErrorInfo_logError___lam__0___clos uint8_t l_List_any___redArg(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLambdaFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_realizeGlobalName(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__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_EXPORT lean_object* l_Lean_Elab_pushInfoTree___at___Lean_Elab_pushInfoLeaf___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore_spec__0_spec__0(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*); static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___Lean_Elab_liftMacroM___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux_spec__0_spec__4___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambda_loop_spec__0___redArg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_initFn___lam__0____x40_Lean_Elab_Term___hyg_19764_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Tactic_instToSnapshotTreeTacticParsedSnapshot_go_spec__0(size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_instInhabitedMVarErrorKind; LEAN_EXPORT lean_object* l_Lean_Elab_Term_withNarrowedArgTacticReuse___redArg___lam__0(lean_object*, lean_object*); @@ -1921,7 +1932,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_beqCacheKey____x40_Lean_Elab_Term___ static lean_object* l_Lean_Elab_Tactic_instBEqCacheKey___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambda(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_setExporting(lean_object*, uint8_t); -static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___closed__0; static lean_object* l_Lean_Elab_Term_instToStringSyntheticMVarKind___lam__0___closed__0; LEAN_EXPORT lean_object* l_Lean_Elab_Term_MVarErrorInfo_logError(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1948,7 +1958,6 @@ static lean_object* l_Lean_Elab_Term_MVarErrorInfo_logError___lam__0___closed__4 static lean_object* l_Lean_Elab_throwAbortTerm___at___Lean_Elab_Term_throwMVarError_spec__0___redArg___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_termElabAttribute___regBuiltin_Lean_Elab_Term_termElabAttribute_docString__1(lean_object*); uint8_t l_Lean_Elab_isValidAutoBoundImplicitName(lean_object*, uint8_t); -static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___closed__1; LEAN_EXPORT lean_object* l_Lean_PersistentArray_findSomeRevMAux___at___Lean_PersistentArray_findSomeRevM_x3f___at___Lean_resolveLocalName___at___Lean_Elab_Term_isLocalIdent_x3f_spec__0_spec__5_spec__6(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_mkFreshBinderName___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_instAddErrorMessageContextTermElabM___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1957,10 +1966,10 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_mkBodyInfo(lean_object*, lean_object*) LEAN_EXPORT lean_object* l_Lean_Elab_Term_withoutHeedElabAsElimImp___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_addMacroStack___at___Lean_throwError___at___Lean_Elab_Term_throwErrorIfErrors_spec__0_spec__1___redArg___closed__3; lean_object* l_String_toSubstring_x27(lean_object*); +static lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___closed__0; static lean_object* l_Lean_Elab_Term_getInfoTreeWithContext_x3f___redArg___closed__5; LEAN_EXPORT lean_object* l_Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at___Lean_PersistentArray_findSomeRevM_x3f___at___Lean_resolveLocalName___at___Lean_Elab_Term_isLocalIdent_x3f_spec__0_spec__5_spec__5___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__13_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_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_save___at___Lean_Elab_withSaveInfoContext___at___Lean_Elab_Term_withoutModifyingElabMetaStateWithInfo_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_MVarErrorInfo_logError___lam__0(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_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Elab_logException___at___Lean_Elab_withLogging___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore_spec__2_spec__2_spec__2_spec__2___redArg(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2000,7 +2009,6 @@ LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_beqCacheKey____x40_Lean_Elab_Term___hyg_9 LEAN_EXPORT lean_object* l_Lean_Elab_Term_registerLevelMVarErrorExprInfo___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_instMonadBacktrackSavedStateTermElabM___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__8; -LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkAuxDeclName___at___Lean_Elab_Term_mkAuxName_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static size_t l_Lean_Elab_Term_instInhabitedMVarErrorKind___closed__4; LEAN_EXPORT lean_object* l_Lean_getDelayedMVarAssignment_x3f___at___Lean_getDelayedMVarRoot___at___Lean_Elab_Term_isLetRecAuxMVar_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2008,6 +2016,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_withoutMacroStackAtErr___redArg(lean_o static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_isNoImplicitLambda___closed__0; lean_object* l_Lean_PersistentArray_toList___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Elab_Term_throwTypeMismatchError_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__17(uint8_t, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at___Lean_PersistentArray_findSomeRevMAux___at___Lean_PersistentArray_findSomeRevM_x3f___at___Lean_resolveLocalName___at___Lean_Elab_Term_isLocalIdent_x3f_spec__0_spec__5_spec__6_spec__6___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getConstVal___at___Lean_Elab_Term_mkConst_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageLog_add(lean_object*, lean_object*); @@ -61691,6 +61700,363 @@ return x_26; } } } +static lean_object* _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__0() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_TermElabM_toIO___redArg___closed__4; +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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_TermElabM_toIO___redArg___closed__4; +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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_TermElabM_toIO___redArg___closed__4; +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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_TermElabM_toIO___redArg___closed__4; +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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__3; +x_2 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__2; +x_3 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__1; +x_4 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__0; +x_5 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +lean_ctor_set(x_5, 2, x_2); +lean_ctor_set(x_5, 3, x_4); +lean_ctor_set(x_5, 4, x_1); +lean_ctor_set(x_5, 5, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_5 = lean_st_ref_take(x_3, x_4); +x_6 = lean_ctor_get(x_5, 0); +lean_inc(x_6); +x_7 = lean_ctor_get(x_5, 1); +lean_inc(x_7); +lean_dec_ref(x_5); +x_8 = !lean_is_exclusive(x_6); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_9 = lean_ctor_get(x_6, 5); +lean_dec(x_9); +x_10 = lean_ctor_get(x_6, 0); +lean_dec(x_10); +x_11 = l_Lean_Elab_Term_TermElabM_toIO___redArg___closed__6; +lean_ctor_set(x_6, 5, x_11); +lean_ctor_set(x_6, 0, x_1); +x_12 = lean_st_ref_set(x_3, x_6, x_7); +x_13 = lean_ctor_get(x_12, 1); +lean_inc(x_13); +lean_dec_ref(x_12); +x_14 = lean_st_ref_take(x_2, x_13); +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec_ref(x_14); +x_17 = !lean_is_exclusive(x_15); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_18 = lean_ctor_get(x_15, 1); +lean_dec(x_18); +x_19 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__4; +lean_ctor_set(x_15, 1, x_19); +x_20 = lean_st_ref_set(x_2, x_15, x_16); +x_21 = !lean_is_exclusive(x_20); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_20, 0); +lean_dec(x_22); +x_23 = lean_box(0); +lean_ctor_set(x_20, 0, x_23); +return x_20; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_20, 1); +lean_inc(x_24); +lean_dec(x_20); +x_25 = lean_box(0); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_24); +return x_26; +} +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_27 = lean_ctor_get(x_15, 0); +x_28 = lean_ctor_get(x_15, 2); +x_29 = lean_ctor_get(x_15, 3); +x_30 = lean_ctor_get(x_15, 4); +lean_inc(x_30); +lean_inc(x_29); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_15); +x_31 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__4; +x_32 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_32, 0, x_27); +lean_ctor_set(x_32, 1, x_31); +lean_ctor_set(x_32, 2, x_28); +lean_ctor_set(x_32, 3, x_29); +lean_ctor_set(x_32, 4, x_30); +x_33 = lean_st_ref_set(x_2, x_32, x_16); +x_34 = lean_ctor_get(x_33, 1); +lean_inc(x_34); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + x_35 = x_33; +} else { + lean_dec_ref(x_33); + x_35 = lean_box(0); +} +x_36 = lean_box(0); +if (lean_is_scalar(x_35)) { + x_37 = lean_alloc_ctor(0, 2, 0); +} else { + x_37 = x_35; +} +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set(x_37, 1, x_34); +return x_37; +} +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_38 = lean_ctor_get(x_6, 1); +x_39 = lean_ctor_get(x_6, 2); +x_40 = lean_ctor_get(x_6, 3); +x_41 = lean_ctor_get(x_6, 4); +x_42 = lean_ctor_get(x_6, 6); +x_43 = lean_ctor_get(x_6, 7); +x_44 = lean_ctor_get(x_6, 8); +lean_inc(x_44); +lean_inc(x_43); +lean_inc(x_42); +lean_inc(x_41); +lean_inc(x_40); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_6); +x_45 = l_Lean_Elab_Term_TermElabM_toIO___redArg___closed__6; +x_46 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_46, 0, x_1); +lean_ctor_set(x_46, 1, x_38); +lean_ctor_set(x_46, 2, x_39); +lean_ctor_set(x_46, 3, x_40); +lean_ctor_set(x_46, 4, x_41); +lean_ctor_set(x_46, 5, x_45); +lean_ctor_set(x_46, 6, x_42); +lean_ctor_set(x_46, 7, x_43); +lean_ctor_set(x_46, 8, x_44); +x_47 = lean_st_ref_set(x_3, x_46, x_7); +x_48 = lean_ctor_get(x_47, 1); +lean_inc(x_48); +lean_dec_ref(x_47); +x_49 = lean_st_ref_take(x_2, x_48); +x_50 = lean_ctor_get(x_49, 0); +lean_inc(x_50); +x_51 = lean_ctor_get(x_49, 1); +lean_inc(x_51); +lean_dec_ref(x_49); +x_52 = lean_ctor_get(x_50, 0); +lean_inc_ref(x_52); +x_53 = lean_ctor_get(x_50, 2); +lean_inc(x_53); +x_54 = lean_ctor_get(x_50, 3); +lean_inc_ref(x_54); +x_55 = lean_ctor_get(x_50, 4); +lean_inc_ref(x_55); +if (lean_is_exclusive(x_50)) { + lean_ctor_release(x_50, 0); + lean_ctor_release(x_50, 1); + lean_ctor_release(x_50, 2); + lean_ctor_release(x_50, 3); + lean_ctor_release(x_50, 4); + x_56 = x_50; +} else { + lean_dec_ref(x_50); + x_56 = lean_box(0); +} +x_57 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__4; +if (lean_is_scalar(x_56)) { + x_58 = lean_alloc_ctor(0, 5, 0); +} else { + x_58 = x_56; +} +lean_ctor_set(x_58, 0, x_52); +lean_ctor_set(x_58, 1, x_57); +lean_ctor_set(x_58, 2, x_53); +lean_ctor_set(x_58, 3, x_54); +lean_ctor_set(x_58, 4, x_55); +x_59 = lean_st_ref_set(x_2, x_58, x_51); +x_60 = lean_ctor_get(x_59, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_59)) { + lean_ctor_release(x_59, 0); + lean_ctor_release(x_59, 1); + x_61 = x_59; +} else { + lean_dec_ref(x_59); + x_61 = lean_box(0); +} +x_62 = lean_box(0); +if (lean_is_scalar(x_61)) { + x_63 = lean_alloc_ctor(0, 2, 0); +} else { + x_63 = x_61; +} +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_60); +return x_63; +} +} +} +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5(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_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg(x_1, x_5, x_7, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5___redArg(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_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_10 = lean_st_ref_get(x_8, x_9); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec_ref(x_10); +x_13 = lean_ctor_get(x_11, 0); +lean_inc_ref(x_13); +lean_dec(x_11); +x_14 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg(x_1, x_6, x_8, x_12); +x_15 = lean_ctor_get(x_14, 1); +lean_inc(x_15); +lean_dec_ref(x_14); +lean_inc(x_8); +lean_inc(x_6); +x_16 = lean_apply_7(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_15); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec_ref(x_16); +x_19 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg(x_13, x_6, x_8, x_18); +lean_dec(x_8); +lean_dec(x_6); +x_20 = !lean_is_exclusive(x_19); +if (x_20 == 0) +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_19, 0); +lean_dec(x_21); +lean_ctor_set(x_19, 0, x_17); +return x_19; +} +else +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_19, 1); +lean_inc(x_22); +lean_dec(x_19); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_17); +lean_ctor_set(x_23, 1, x_22); +return x_23; +} +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_24 = lean_ctor_get(x_16, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_16, 1); +lean_inc(x_25); +lean_dec_ref(x_16); +x_26 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg(x_13, x_6, x_8, x_25); +lean_dec(x_8); +lean_dec(x_6); +x_27 = !lean_is_exclusive(x_26); +if (x_27 == 0) +{ +lean_object* x_28; +x_28 = lean_ctor_get(x_26, 0); +lean_dec(x_28); +lean_ctor_set_tag(x_26, 1); +lean_ctor_set(x_26, 0, x_24); +return x_26; +} +else +{ +lean_object* x_29; lean_object* x_30; +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_dec(x_26); +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_24); +lean_ctor_set(x_30, 1, x_29); +return x_30; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} static lean_object* _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__0___closed__0() { _start: { @@ -61705,62 +62071,61 @@ lean_ctor_set(x_4, 2, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__0(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_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__0(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, lean_object* x_8, lean_object* x_9) { _start: { -lean_object* x_9; lean_object* x_10; -x_9 = lean_ctor_get(x_6, 5); -lean_inc(x_9); -lean_inc_ref(x_6); -lean_inc_ref(x_2); -x_10 = l_Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_10) == 0) +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_7, 5); +lean_inc(x_10); +lean_inc_ref(x_7); +lean_inc_ref(x_3); +x_11 = l_Lean_mkConstWithLevelParams___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__3(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_11) == 0) { -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_19; lean_object* x_20; -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -x_12 = lean_ctor_get(x_10, 1); +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); -lean_dec_ref(x_10); -x_13 = lean_box(0); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_9); -x_15 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__0___closed__0; -x_16 = lean_box(0); -x_17 = 0; +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +lean_dec_ref(x_11); +x_14 = lean_box(0); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_10); +x_16 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__0___closed__0; +x_17 = lean_box(0); x_18 = lean_alloc_ctor(0, 4, 1); -lean_ctor_set(x_18, 0, x_14); -lean_ctor_set(x_18, 1, x_15); -lean_ctor_set(x_18, 2, x_16); -lean_ctor_set(x_18, 3, x_11); -lean_ctor_set_uint8(x_18, sizeof(void*)*4, x_17); +lean_ctor_set(x_18, 0, x_15); +lean_ctor_set(x_18, 1, x_16); +lean_ctor_set(x_18, 2, x_17); +lean_ctor_set(x_18, 3, x_12); +lean_ctor_set_uint8(x_18, sizeof(void*)*4, x_1); x_19 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_19, 0, x_18); -x_20 = l_Lean_Elab_pushInfoLeaf___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore_spec__0(x_19, x_2, x_3, x_4, x_5, x_6, x_7, x_12); -lean_dec_ref(x_6); -lean_dec_ref(x_2); +x_20 = l_Lean_Elab_pushInfoLeaf___at_____private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore_spec__0(x_19, x_3, x_4, x_5, x_6, x_7, x_8, x_13); +lean_dec_ref(x_7); +lean_dec_ref(x_3); return x_20; } else { uint8_t x_21; -lean_dec(x_9); -lean_dec_ref(x_6); -lean_dec_ref(x_2); -x_21 = !lean_is_exclusive(x_10); +lean_dec(x_10); +lean_dec_ref(x_7); +lean_dec_ref(x_3); +x_21 = !lean_is_exclusive(x_11); if (x_21 == 0) { -return x_10; +return x_11; } else { lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_10, 0); -x_23 = lean_ctor_get(x_10, 1); +x_22 = lean_ctor_get(x_11, 0); +x_23 = lean_ctor_get(x_11, 1); lean_inc(x_23); lean_inc(x_22); -lean_dec(x_10); +lean_dec(x_11); x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_22); lean_ctor_set(x_24, 1, x_23); @@ -62040,7 +62405,88 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_11 = lean_st_ref_get(x_9, x_10); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +if (lean_is_exclusive(x_11)) { + lean_ctor_release(x_11, 0); + lean_ctor_release(x_11, 1); + x_14 = x_11; +} else { + lean_dec_ref(x_11); + x_14 = lean_box(0); +} +x_25 = lean_ctor_get(x_12, 0); +lean_inc_ref(x_25); +lean_dec(x_12); +lean_inc(x_2); +x_26 = l_Lean_privateToUserName(x_2); +lean_inc_ref(x_3); +x_27 = lean_is_reserved_name(x_3, x_26); +if (x_27 == 0) +{ +lean_object* x_28; uint8_t x_29; +lean_inc(x_2); +x_28 = l_Lean_mkPrivateName(x_25, x_2); +lean_dec_ref(x_25); +x_29 = lean_is_reserved_name(x_3, x_28); +x_15 = x_29; +goto block_24; +} +else +{ +lean_dec_ref(x_25); +lean_dec_ref(x_3); +x_15 = x_27; +goto block_24; +} +block_24: +{ +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +lean_dec(x_14); +lean_dec(x_2); +x_16 = lean_box(0); +x_17 = lean_apply_8(x_1, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +return x_17; +} +else +{ +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_dec_ref(x_1); +x_18 = l_Lean_Elab_Term_MVarErrorInfo_logError_addArgName___redArg___closed__3; +x_19 = l_Lean_MessageData_ofName(x_2); +if (lean_is_scalar(x_14)) { + x_20 = lean_alloc_ctor(7, 2, 0); +} else { + x_20 = x_14; + lean_ctor_set_tag(x_20, 7); +} +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +x_21 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__3___closed__1; +x_22 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +x_23 = l_Lean_throwError___at___Lean_Elab_Term_throwErrorIfErrors_spec__0___redArg(x_22, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_23; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__4(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; lean_object* x_22; uint8_t x_23; @@ -62097,7 +62543,7 @@ return x_20; } } } -static lean_object* _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___closed__0() { +static lean_object* _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__5___closed__0() { _start: { lean_object* x_1; @@ -62105,345 +62551,212 @@ x_1 = lean_mk_string_unchecked("private declaration '", 21, 21); return x_1; } } -static lean_object* _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___closed__1() { +static lean_object* _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__5___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___closed__0; +x_1 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__5___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__5(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc(x_2); +x_11 = lean_apply_8(x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_11) == 0) +{ +uint8_t x_12; +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_11, 1); +x_14 = lean_ctor_get(x_11, 0); +lean_dec(x_14); +lean_inc(x_2); +x_15 = lean_private_to_user_name(x_2); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_16 = l_Lean_Elab_Term_MVarErrorInfo_logError_addArgName___redArg___closed__3; +x_17 = l_Lean_MessageData_ofConstName(x_2, x_3); +lean_ctor_set_tag(x_11, 7); +lean_ctor_set(x_11, 1, x_17); +lean_ctor_set(x_11, 0, x_16); +x_18 = l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__0___redArg___closed__3; +x_19 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_19, 0, x_11); +lean_ctor_set(x_19, 1, x_18); +x_20 = l_Lean_throwError___at___Lean_Elab_Term_throwErrorIfErrors_spec__0___redArg(x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_20; +} +else +{ +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_dec(x_2); +x_21 = lean_ctor_get(x_15, 0); +lean_inc(x_21); +lean_dec_ref(x_15); +x_22 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__5___closed__1; +x_23 = l_Lean_MessageData_ofConstName(x_21, x_3); +lean_ctor_set_tag(x_11, 7); +lean_ctor_set(x_11, 1, x_23); +lean_ctor_set(x_11, 0, x_22); +x_24 = l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__0___redArg___closed__3; +x_25 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_25, 0, x_11); +lean_ctor_set(x_25, 1, x_24); +x_26 = l_Lean_throwError___at___Lean_Elab_Term_throwErrorIfErrors_spec__0___redArg(x_25, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_26; +} +} +else +{ +lean_object* x_27; lean_object* x_28; +x_27 = lean_ctor_get(x_11, 1); +lean_inc(x_27); +lean_dec(x_11); +lean_inc(x_2); +x_28 = lean_private_to_user_name(x_2); +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; +x_29 = l_Lean_Elab_Term_MVarErrorInfo_logError_addArgName___redArg___closed__3; +x_30 = l_Lean_MessageData_ofConstName(x_2, x_3); +x_31 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_31, 0, x_29); +lean_ctor_set(x_31, 1, x_30); +x_32 = l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__0___redArg___closed__3; +x_33 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +x_34 = l_Lean_throwError___at___Lean_Elab_Term_throwErrorIfErrors_spec__0___redArg(x_33, x_4, x_5, x_6, x_7, x_8, x_9, x_27); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_34; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +lean_dec(x_2); +x_35 = lean_ctor_get(x_28, 0); +lean_inc(x_35); +lean_dec_ref(x_28); +x_36 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__5___closed__1; +x_37 = l_Lean_MessageData_ofConstName(x_35, x_3); +x_38 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_37); +x_39 = l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__0___redArg___closed__3; +x_40 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +x_41 = l_Lean_throwError___at___Lean_Elab_Term_throwErrorIfErrors_spec__0___redArg(x_40, x_4, x_5, x_6, x_7, x_8, x_9, x_27); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_41; +} +} +} +else +{ +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_2); +return x_11; +} +} +} LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; uint8_t x_17; +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; uint8_t x_20; x_9 = lean_st_ref_get(x_7, x_8); x_10 = lean_ctor_get(x_9, 0); lean_inc(x_10); x_11 = lean_ctor_get(x_9, 1); lean_inc(x_11); -if (lean_is_exclusive(x_9)) { - lean_ctor_release(x_9, 0); - lean_ctor_release(x_9, 1); - x_12 = x_9; -} else { - lean_dec_ref(x_9); - x_12 = lean_box(0); -} -x_13 = lean_ctor_get(x_10, 0); -lean_inc_ref(x_13); +lean_dec_ref(x_9); +x_12 = lean_ctor_get(x_10, 0); +lean_inc_ref(x_12); lean_dec(x_10); -x_14 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__0___boxed), 8, 0); -lean_inc_ref(x_14); -lean_inc_ref(x_13); +x_13 = 0; +x_14 = lean_box(x_13); +x_15 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__0___boxed), 9, 1); +lean_closure_set(x_15, 0, x_14); +x_16 = l_Lean_Environment_setExporting(x_12, x_13); +lean_inc_ref(x_15); +lean_inc_ref(x_16); lean_inc(x_1); -x_15 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__1___boxed), 11, 3); -lean_closure_set(x_15, 0, x_1); -lean_closure_set(x_15, 1, x_13); -lean_closure_set(x_15, 2, x_14); -x_16 = 1; +x_17 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__1___boxed), 11, 3); +lean_closure_set(x_17, 0, x_1); +lean_closure_set(x_17, 1, x_16); +lean_closure_set(x_17, 2, x_15); +lean_inc_ref(x_15); lean_inc(x_1); -lean_inc_ref(x_13); -x_17 = l_Lean_Environment_contains(x_13, x_1, x_16); -if (x_17 == 0) -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_32; lean_object* x_33; uint8_t x_34; -x_18 = lean_st_ref_get(x_7, x_11); -x_19 = lean_ctor_get(x_18, 0); -lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -if (lean_is_exclusive(x_18)) { - lean_ctor_release(x_18, 0); - lean_ctor_release(x_18, 1); - x_21 = x_18; -} else { - lean_dec_ref(x_18); - x_21 = lean_box(0); -} -x_32 = lean_ctor_get(x_19, 0); -lean_inc_ref(x_32); -lean_dec(x_19); +lean_inc_ref(x_16); +x_18 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__2___boxed), 12, 4); +lean_closure_set(x_18, 0, x_16); +lean_closure_set(x_18, 1, x_1); +lean_closure_set(x_18, 2, x_17); +lean_closure_set(x_18, 3, x_15); +x_19 = 1; lean_inc(x_1); -x_33 = l_Lean_privateToUserName(x_1); -lean_inc_ref(x_13); -x_34 = lean_is_reserved_name(x_13, x_33); -if (x_34 == 0) +lean_inc_ref(x_16); +x_20 = l_Lean_Environment_contains(x_16, x_1, x_19); +if (x_20 == 0) { -lean_object* x_35; uint8_t x_36; -lean_inc(x_1); -x_35 = l_Lean_mkPrivateName(x_32, x_1); -lean_dec_ref(x_32); -lean_inc_ref(x_13); -x_36 = lean_is_reserved_name(x_13, x_35); -x_22 = x_36; -goto block_31; -} -else -{ -lean_dec_ref(x_32); -x_22 = x_34; -goto block_31; -} -block_31: -{ -if (x_22 == 0) -{ -lean_object* x_23; lean_object* x_24; -lean_dec(x_21); -lean_dec(x_12); -x_23 = lean_box(0); -x_24 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__2(x_13, x_1, x_15, x_14, x_23, x_2, x_3, x_4, x_5, x_6, x_7, x_20); -return x_24; -} -else -{ -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_21; lean_object* x_22; lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -x_25 = l_Lean_Elab_Term_MVarErrorInfo_logError_addArgName___redArg___closed__3; -x_26 = l_Lean_MessageData_ofName(x_1); -if (lean_is_scalar(x_21)) { - x_27 = lean_alloc_ctor(7, 2, 0); -} else { - x_27 = x_21; - lean_ctor_set_tag(x_27, 7); -} -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -x_28 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__3___closed__1; -if (lean_is_scalar(x_12)) { - x_29 = lean_alloc_ctor(7, 2, 0); -} else { - x_29 = x_12; - lean_ctor_set_tag(x_29, 7); -} -lean_ctor_set(x_29, 0, x_27); -lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_throwError___at___Lean_Elab_Term_throwErrorIfErrors_spec__0___redArg(x_29, x_2, x_3, x_4, x_5, x_6, x_7, x_20); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_30; -} -} +lean_inc_ref(x_16); +x_21 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__3), 10, 3); +lean_closure_set(x_21, 0, x_18); +lean_closure_set(x_21, 1, x_1); +lean_closure_set(x_21, 2, x_16); +x_22 = l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5___redArg(x_16, x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_11); +return x_22; } else { -lean_object* x_37; -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_inc_ref(x_6); -lean_inc_ref(x_2); -lean_inc(x_1); -x_37 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_11); -if (lean_obj_tag(x_37) == 0) -{ -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 1); -x_40 = lean_ctor_get(x_37, 0); -lean_dec(x_40); -lean_inc(x_1); -x_41 = lean_private_to_user_name(x_1); -if (lean_obj_tag(x_41) == 0) -{ -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_42 = l_Lean_Elab_Term_MVarErrorInfo_logError_addArgName___redArg___closed__3; -x_43 = l_Lean_MessageData_ofConstName(x_1, x_16); -lean_ctor_set_tag(x_37, 7); -lean_ctor_set(x_37, 1, x_43); -lean_ctor_set(x_37, 0, x_42); -x_44 = l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__0___redArg___closed__3; -if (lean_is_scalar(x_12)) { - x_45 = lean_alloc_ctor(7, 2, 0); -} else { - x_45 = x_12; - lean_ctor_set_tag(x_45, 7); +lean_object* x_23; lean_object* x_24; lean_object* x_25; +lean_dec_ref(x_18); +x_23 = lean_box(x_19); +x_24 = lean_alloc_closure((void*)(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__5___boxed), 10, 3); +lean_closure_set(x_24, 0, x_15); +lean_closure_set(x_24, 1, x_1); +lean_closure_set(x_24, 2, x_23); +x_25 = l_Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5___redArg(x_16, x_24, x_2, x_3, x_4, x_5, x_6, x_7, x_11); +return x_25; } -lean_ctor_set(x_45, 0, x_37); -lean_ctor_set(x_45, 1, x_44); -x_46 = l_Lean_throwError___at___Lean_Elab_Term_throwErrorIfErrors_spec__0___redArg(x_45, x_2, x_3, x_4, x_5, x_6, x_7, x_39); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_46; -} -else -{ -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_dec(x_1); -x_47 = lean_ctor_get(x_41, 0); -lean_inc(x_47); -lean_dec_ref(x_41); -x_48 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___closed__1; -x_49 = l_Lean_MessageData_ofConstName(x_47, x_16); -lean_ctor_set_tag(x_37, 7); -lean_ctor_set(x_37, 1, x_49); -lean_ctor_set(x_37, 0, x_48); -x_50 = l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__0___redArg___closed__3; -if (lean_is_scalar(x_12)) { - x_51 = lean_alloc_ctor(7, 2, 0); -} else { - x_51 = x_12; - lean_ctor_set_tag(x_51, 7); -} -lean_ctor_set(x_51, 0, x_37); -lean_ctor_set(x_51, 1, x_50); -x_52 = l_Lean_throwError___at___Lean_Elab_Term_throwErrorIfErrors_spec__0___redArg(x_51, x_2, x_3, x_4, x_5, x_6, x_7, x_39); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_52; -} -} -else -{ -lean_object* x_53; lean_object* x_54; -x_53 = lean_ctor_get(x_37, 1); -lean_inc(x_53); -lean_dec(x_37); -lean_inc(x_1); -x_54 = lean_private_to_user_name(x_1); -if (lean_obj_tag(x_54) == 0) -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_55 = l_Lean_Elab_Term_MVarErrorInfo_logError_addArgName___redArg___closed__3; -x_56 = l_Lean_MessageData_ofConstName(x_1, x_16); -x_57 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_57, 0, x_55); -lean_ctor_set(x_57, 1, x_56); -x_58 = l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__0___redArg___closed__3; -if (lean_is_scalar(x_12)) { - x_59 = lean_alloc_ctor(7, 2, 0); -} else { - x_59 = x_12; - lean_ctor_set_tag(x_59, 7); -} -lean_ctor_set(x_59, 0, x_57); -lean_ctor_set(x_59, 1, x_58); -x_60 = l_Lean_throwError___at___Lean_Elab_Term_throwErrorIfErrors_spec__0___redArg(x_59, x_2, x_3, x_4, x_5, x_6, x_7, x_53); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_60; -} -else -{ -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_dec(x_1); -x_61 = lean_ctor_get(x_54, 0); -lean_inc(x_61); -lean_dec_ref(x_54); -x_62 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___closed__1; -x_63 = l_Lean_MessageData_ofConstName(x_61, x_16); -x_64 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_64, 0, x_62); -lean_ctor_set(x_64, 1, x_63); -x_65 = l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__0___redArg___closed__3; -if (lean_is_scalar(x_12)) { - x_66 = lean_alloc_ctor(7, 2, 0); -} else { - x_66 = x_12; - lean_ctor_set_tag(x_66, 7); -} -lean_ctor_set(x_66, 0, x_64); -lean_ctor_set(x_66, 1, x_65); -x_67 = l_Lean_throwError___at___Lean_Elab_Term_throwErrorIfErrors_spec__0___redArg(x_66, x_2, x_3, x_4, x_5, x_6, x_7, x_53); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_67; -} -} -} -else -{ -lean_dec(x_12); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_37; -} -} -} -} -static lean_object* _init_l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__0() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_TermElabM_toIO___redArg___closed__4; -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_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_TermElabM_toIO___redArg___closed__4; -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_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_TermElabM_toIO___redArg___closed__4; -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_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_TermElabM_toIO___redArg___closed__4; -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_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__3; -x_2 = l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__2; -x_3 = l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__1; -x_4 = l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__0; -x_5 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_5, 0, x_4); -lean_ctor_set(x_5, 1, x_3); -lean_ctor_set(x_5, 2, x_2); -lean_ctor_set(x_5, 3, x_4); -lean_ctor_set(x_5, 4, x_1); -lean_ctor_set(x_5, 5, x_1); -return x_5; } } LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0(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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { @@ -62497,7 +62810,7 @@ if (x_26 == 0) lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; x_27 = lean_ctor_get(x_24, 1); lean_dec(x_27); -x_28 = l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__4; +x_28 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__4; lean_ctor_set(x_24, 1, x_28); x_29 = lean_st_ref_set(x_7, x_24, x_25); lean_dec(x_7); @@ -62534,7 +62847,7 @@ lean_inc(x_36); lean_inc(x_35); lean_inc(x_34); lean_dec(x_24); -x_38 = l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__4; +x_38 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__4; x_39 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_39, 0, x_34); lean_ctor_set(x_39, 1, x_38); @@ -62626,7 +62939,7 @@ if (lean_is_exclusive(x_58)) { lean_dec_ref(x_58); x_64 = lean_box(0); } -x_65 = l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__4; +x_65 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__4; if (lean_is_scalar(x_64)) { x_66 = lean_alloc_ctor(0, 5, 0); } else { @@ -63216,7 +63529,7 @@ return x_26; } } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__8_spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t 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_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__10_spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t 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) { _start: { lean_object* x_15; lean_object* x_16; uint8_t x_21; @@ -63343,7 +63656,7 @@ goto _start; } } } -LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__8(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_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_24; lean_object* x_25; lean_object* x_26; @@ -63387,7 +63700,7 @@ lean_dec(x_12); x_15 = lean_box(0); x_16 = lean_array_size(x_14); x_17 = 0; -x_18 = l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__8_spec__8(x_10, x_15, x_9, x_14, x_16, x_17, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_13); +x_18 = l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__10_spec__10(x_10, x_15, x_9, x_14, x_16, x_17, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_13); lean_dec(x_14); lean_dec_ref(x_9); lean_dec(x_10); @@ -63414,7 +63727,7 @@ return x_22; } } } -static lean_object* _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__10___closed__0() { +static lean_object* _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__12___closed__0() { _start: { lean_object* x_1; @@ -63422,16 +63735,16 @@ x_1 = lean_mk_string_unchecked("unexpected doc string", 21, 21); return x_1; } } -static lean_object* _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__10___closed__1() { +static lean_object* _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__12___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__10___closed__0; +x_1 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__12___closed__0; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__12(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; lean_object* x_10; @@ -63485,7 +63798,7 @@ return x_25; 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 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__10___closed__1; +x_26 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__12___closed__1; x_27 = l_Lean_MessageData_ofSyntax(x_10); x_28 = l_Lean_indentD(x_27); x_29 = lean_alloc_ctor(7, 2, 0); @@ -63500,7 +63813,7 @@ return x_32; } } } -static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___lam__0___closed__0() { +static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___lam__0___closed__0() { _start: { lean_object* x_1; @@ -63508,16 +63821,16 @@ x_1 = l_Lean_docStringExt; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___lam__0(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_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_inc_ref(x_8); -x_11 = l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__8(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__10(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_10); x_12 = lean_ctor_get(x_11, 1); lean_inc(x_12); lean_dec_ref(x_11); -x_13 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__10(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_12); +x_13 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__12(x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; @@ -63539,7 +63852,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean x_20 = lean_ctor_get(x_17, 0); x_21 = lean_ctor_get(x_17, 5); lean_dec(x_21); -x_22 = l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___lam__0___closed__0; +x_22 = l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___lam__0___closed__0; x_23 = l_String_removeLeadingSpaces(x_14); x_24 = l_Lean_MapDeclarationExtension_insert___redArg(x_22, x_20, x_2, x_23); x_25 = l_Lean_Elab_Term_TermElabM_toIO___redArg___closed__6; @@ -63561,7 +63874,7 @@ if (x_31 == 0) lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; x_32 = lean_ctor_get(x_29, 1); lean_dec(x_32); -x_33 = l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__4; +x_33 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__4; lean_ctor_set(x_29, 1, x_33); x_34 = lean_st_ref_set(x_7, x_29, x_30); x_35 = !lean_is_exclusive(x_34); @@ -63599,7 +63912,7 @@ lean_inc(x_43); lean_inc(x_42); lean_inc(x_41); lean_dec(x_29); -x_45 = l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__4; +x_45 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__4; x_46 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_46, 0, x_41); lean_ctor_set(x_46, 1, x_45); @@ -63648,7 +63961,7 @@ lean_inc(x_54); lean_inc(x_53); lean_inc(x_52); lean_dec(x_17); -x_60 = l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___lam__0___closed__0; +x_60 = l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___lam__0___closed__0; x_61 = l_String_removeLeadingSpaces(x_14); x_62 = l_Lean_MapDeclarationExtension_insert___redArg(x_60, x_52, x_2, x_61); x_63 = l_Lean_Elab_Term_TermElabM_toIO___redArg___closed__6; @@ -63691,7 +64004,7 @@ if (lean_is_exclusive(x_68)) { lean_dec_ref(x_68); x_74 = lean_box(0); } -x_75 = l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__4; +x_75 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__4; if (lean_is_scalar(x_74)) { x_76 = lean_alloc_ctor(0, 5, 0); } else { @@ -63749,7 +64062,7 @@ return x_85; } } } -static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___closed__0() { +static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___closed__0() { _start: { lean_object* x_1; @@ -63757,7 +64070,7 @@ x_1 = lean_mk_string_unchecked("invalid doc string, declaration '", 33, 33); return x_1; } } -static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___closed__1() { +static lean_object* _init_l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___closed__1() { _start: { lean_object* x_1; @@ -63765,7 +64078,7 @@ x_1 = lean_mk_string_unchecked("' is in an imported module", 26, 26); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8(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_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -63784,7 +64097,7 @@ if (lean_obj_tag(x_14) == 0) { lean_object* x_15; lean_object* x_16; x_15 = lean_box(0); -x_16 = l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___lam__0(x_2, x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_12); +x_16 = l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___lam__0(x_2, x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_12); return x_16; } else @@ -63796,12 +64109,12 @@ if (x_17 == 0) 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; x_18 = lean_ctor_get(x_14, 0); lean_dec(x_18); -x_19 = l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___closed__0; +x_19 = l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___closed__0; x_20 = 1; x_21 = l_Lean_Name_toStringWithToken___at___Lean_Name_toString_spec__0(x_1, x_20); x_22 = lean_string_append(x_19, x_21); lean_dec_ref(x_21); -x_23 = l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___closed__1; +x_23 = l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___closed__1; x_24 = lean_string_append(x_22, x_23); lean_ctor_set_tag(x_14, 3); lean_ctor_set(x_14, 0, x_24); @@ -63814,12 +64127,12 @@ else { 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; lean_dec(x_14); -x_27 = l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___closed__0; +x_27 = l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___closed__0; x_28 = 1; x_29 = l_Lean_Name_toStringWithToken___at___Lean_Name_toString_spec__0(x_1, x_28); x_30 = lean_string_append(x_27, x_29); lean_dec_ref(x_29); -x_31 = l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___closed__1; +x_31 = l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___closed__1; x_32 = lean_string_append(x_30, x_31); x_33 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_33, 0, x_32); @@ -63831,7 +64144,7 @@ return x_35; } } } -LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8(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_EXPORT lean_object* l_Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { if (lean_obj_tag(x_2) == 0) @@ -63850,12 +64163,12 @@ else { lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_2, 0); -x_13 = l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_13 = l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_13; } } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__13_spec__13(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__15_spec__15(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; uint8_t x_18; @@ -63973,7 +64286,7 @@ goto _start; } } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__13(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__15(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; uint8_t x_18; @@ -64084,12 +64397,12 @@ block_17: size_t x_14; size_t x_15; lean_object* x_16; x_14 = 1; x_15 = lean_usize_add(x_2, x_14); -x_16 = l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__13_spec__13(x_1, x_15, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10, x_13); +x_16 = l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__15_spec__15(x_1, x_15, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10, x_13); return x_16; } } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__15(uint8_t x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__17(uint8_t x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_11; @@ -64252,7 +64565,7 @@ lean_inc(x_34); lean_dec(x_31); x_35 = lean_ctor_get(x_3, 1); lean_inc(x_33); -x_36 = l_Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8(x_33, x_35, x_6, x_7, x_8, x_9, x_10, x_11, x_32); +x_36 = l_Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10(x_33, x_35, x_6, x_7, x_8, x_9, x_10, x_11, x_32); lean_dec(x_11); lean_dec(x_9); lean_dec_ref(x_8); @@ -64399,7 +64712,7 @@ lean_ctor_set(x_12, 0, x_43); x_44 = 0; x_45 = lean_usize_of_nat(x_40); lean_dec(x_40); -x_46 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__15(x_34, x_37, x_44, x_45, x_12); +x_46 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__17(x_34, x_37, x_44, x_45, x_12); lean_dec_ref(x_37); x_47 = lean_ctor_get(x_46, 1); lean_inc(x_47); @@ -64451,7 +64764,7 @@ x_24 = lean_usize_of_nat(x_18); lean_dec(x_18); lean_inc_ref(x_9); lean_inc_ref(x_5); -x_25 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__13(x_16, x_23, x_24, x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_25 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__15(x_16, x_23, x_24, x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec_ref(x_16); if (lean_obj_tag(x_25) == 0) { @@ -64547,7 +64860,7 @@ lean_ctor_set(x_79, 1, x_73); x_80 = 0; x_81 = lean_usize_of_nat(x_75); lean_dec(x_75); -x_82 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__15(x_69, x_72, x_80, x_81, x_79); +x_82 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__17(x_69, x_72, x_80, x_81, x_79); lean_dec_ref(x_72); x_83 = lean_ctor_get(x_82, 1); lean_inc(x_83); @@ -64598,7 +64911,7 @@ x_59 = lean_usize_of_nat(x_53); lean_dec(x_53); lean_inc_ref(x_9); lean_inc_ref(x_5); -x_60 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__13(x_51, x_58, x_59, x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_60 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__15(x_51, x_58, x_59, x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec_ref(x_51); if (lean_obj_tag(x_60) == 0) { @@ -64871,18 +65184,43 @@ lean_dec(x_3); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__0___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_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg(x_1, x_2, x_3, x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); +lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); +lean_dec_ref(x_2); return x_9; } } +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__0___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_10; lean_object* x_11; +x_10 = lean_unbox(x_1); +x_11 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__0(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +return x_11; +} +} LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { @@ -64899,15 +65237,24 @@ x_13 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec_ref(x_4); return x_12; } } +LEAN_EXPORT lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_3); +x_12 = l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__5(x_1, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { @@ -64986,7 +65333,7 @@ lean_dec_ref(x_2); return x_11; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__8_spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__10_spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { size_t x_15; size_t x_16; lean_object* x_17; @@ -64994,7 +65341,7 @@ x_15 = lean_unbox_usize(x_5); lean_dec(x_5); x_16 = lean_unbox_usize(x_6); lean_dec(x_6); -x_17 = l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__8_spec__8(x_1, x_2, x_3, x_4, x_15, x_16, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_17 = l_Array_forIn_x27Unsafe_loop___at___Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__10_spec__10(x_1, x_2, x_3, x_4, x_15, x_16, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_13); lean_dec(x_11); lean_dec_ref(x_10); @@ -65006,11 +65353,11 @@ lean_dec(x_1); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__8___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_EXPORT lean_object* l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_validateDocComment___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -65020,11 +65367,11 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +LEAN_EXPORT lean_object* l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__12___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__12(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); @@ -65033,11 +65380,11 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___lam__0___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_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec(x_7); lean_dec_ref(x_6); @@ -65046,11 +65393,11 @@ lean_dec(x_1); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___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_EXPORT lean_object* l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10(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_6); lean_dec_ref(x_5); @@ -65059,11 +65406,11 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8___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_EXPORT lean_object* l_Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l_Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10(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_6); lean_dec_ref(x_5); @@ -65072,7 +65419,7 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__13_spec__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__15_spec__15___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: { size_t x_12; size_t x_13; lean_object* x_14; @@ -65080,7 +65427,7 @@ x_12 = lean_unbox_usize(x_2); lean_dec(x_2); x_13 = lean_unbox_usize(x_3); lean_dec(x_3); -x_14 = l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__13_spec__13(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__15_spec__15(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_10); lean_dec(x_8); lean_dec_ref(x_7); @@ -65089,7 +65436,7 @@ lean_dec_ref(x_1); return x_14; } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__15___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: { size_t x_12; size_t x_13; lean_object* x_14; @@ -65097,7 +65444,7 @@ x_12 = lean_unbox_usize(x_2); lean_dec(x_2); x_13 = lean_unbox_usize(x_3); lean_dec(x_3); -x_14 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__13(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__15(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_10); lean_dec(x_8); lean_dec_ref(x_7); @@ -65106,7 +65453,7 @@ lean_dec_ref(x_1); return x_14; } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__15___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__17___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { uint8_t x_6; size_t x_7; size_t x_8; lean_object* x_9; @@ -65115,7 +65462,7 @@ x_7 = lean_unbox_usize(x_3); lean_dec(x_3); x_8 = lean_unbox_usize(x_4); lean_dec(x_4); -x_9 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__15(x_6, x_2, x_7, x_8, x_5); +x_9 = l_Array_foldlMUnsafe_fold___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__17(x_6, x_2, x_7, x_8, x_5); lean_dec_ref(x_2); return x_9; } @@ -68551,6 +68898,16 @@ l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_checkIfShadowingStructureField___a lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_checkIfShadowingStructureField___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__1_spec__1___closed__4); l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_checkIfShadowingStructureField___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__1_spec__1___closed__5 = _init_l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_checkIfShadowingStructureField___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__1_spec__1___closed__5(); lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at___Lean_Elab_checkIfShadowingStructureField___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__1_spec__1___closed__5); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__0 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__0(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__0); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__1 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__1(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__1); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__2 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__2(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__2); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__3 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__3(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__3); +l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__4 = _init_l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__4(); +lean_mark_persistent(l_Lean_setEnv___at___Lean_withEnv___at___Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3_spec__5_spec__5___redArg___closed__4); l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__0___closed__0 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__0___closed__0(); lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__0___closed__0); l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__1___closed__0 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__1___closed__0(); @@ -68565,20 +68922,10 @@ l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__3___closed__0); l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__3___closed__1 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__3___closed__1(); lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__3___closed__1); -l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___closed__0 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___closed__0(); -lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___closed__0); -l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___closed__1 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___closed__1(); -lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___closed__1); -l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__0 = _init_l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__0(); -lean_mark_persistent(l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__0); -l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__1 = _init_l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__1(); -lean_mark_persistent(l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__1); -l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__2 = _init_l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__2(); -lean_mark_persistent(l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__2); -l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__3 = _init_l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__3(); -lean_mark_persistent(l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__3); -l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__4 = _init_l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__4(); -lean_mark_persistent(l_Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3___lam__0___closed__4); +l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__5___closed__0 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__5___closed__0(); +lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__5___closed__0); +l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__5___closed__1 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__5___closed__1(); +lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___Lean_Elab_applyVisibility___at___Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1_spec__3_spec__3___lam__5___closed__1); l_Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1___lam__1___closed__0 = _init_l_Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1___lam__1___closed__0(); lean_mark_persistent(l_Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1___lam__1___closed__0); l_Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1___lam__1___closed__1 = _init_l_Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1___lam__1___closed__1(); @@ -68591,16 +68938,16 @@ l_Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expan lean_mark_persistent(l_Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1___closed__2); l_Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1___closed__3 = _init_l_Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1___closed__3(); lean_mark_persistent(l_Lean_Elab_mkDeclName___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__1___closed__3); -l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__10___closed__0 = _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__10___closed__0(); -lean_mark_persistent(l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__10___closed__0); -l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__10___closed__1 = _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__10___closed__1(); -lean_mark_persistent(l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8_spec__10___closed__1); -l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___lam__0___closed__0 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___lam__0___closed__0(); -lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___lam__0___closed__0); -l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___closed__0 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___closed__0(); -lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___closed__0); -l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___closed__1 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___closed__1(); -lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__8_spec__8___closed__1); +l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__12___closed__0 = _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__12___closed__0(); +lean_mark_persistent(l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__12___closed__0); +l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__12___closed__1 = _init_l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__12___closed__1(); +lean_mark_persistent(l_Lean_getDocStringText___at___Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10_spec__12___closed__1); +l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___lam__0___closed__0 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___lam__0___closed__0(); +lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___lam__0___closed__0); +l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___closed__0 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___closed__0(); +lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___closed__0); +l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___closed__1 = _init_l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___closed__1(); +lean_mark_persistent(l_Lean_addDocString___at___Lean_addDocString_x27___at___Lean_Elab_expandDeclId___at___Lean_Elab_Term_expandDeclId_spec__0_spec__10_spec__10___closed__1); l_Lean_Elab_Term_expandDeclId___closed__0 = _init_l_Lean_Elab_Term_expandDeclId___closed__0(); lean_mark_persistent(l_Lean_Elab_Term_expandDeclId___closed__0); l_Lean_Elab_Term_expandDeclId___closed__1 = _init_l_Lean_Elab_Term_expandDeclId___closed__1(); diff --git a/stage0/stdlib/Lean/Meta/Match/Match.c b/stage0/stdlib/Lean/Meta/Match/Match.c index 8ef08fdcbc..ebb7c1c0a0 100644 --- a/stage0/stdlib/Lean/Meta/Match/Match.c +++ b/stage0/stdlib/Lean/Meta/Match/Match.c @@ -205,6 +205,7 @@ static lean_object* l_Lean_Meta_Match_addMatcherInfo___at___Lean_Meta_Match_mkMa lean_object* l_ReaderT_instFunctorOfMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor_spec__10(lean_object*, uint8_t, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hashMatcherKey____x40_Lean_Meta_Match_Match___hyg_11007____boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lam__0(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_compileDecl(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isBitVecValueTransition___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -501,7 +502,6 @@ LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Array_mapFinIdxM_map___at static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_mkIncorrectNumberOfPatternsMsg___redArg___closed__8; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_initFn___closed__15____x40_Lean_Meta_Match_Match___hyg_14781_; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_Match_hashMatcherKey____x40_Lean_Meta_Match_Match___hyg_11007____boxed(lean_object*); lean_object* l_Lean_MessageData_ofFormat(lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_initFn___closed__6____x40_Lean_Meta_Match_Match___hyg_14781_; static lean_object* l_Lean_Meta_Match_logIncorrectNumberOfPatternsAt___redArg___closed__2; @@ -831,7 +831,6 @@ uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at___Lean_Meta_Match_mkMatcher_spec__6(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_foldrM___at___Lean_LocalContext_foldrM___at___Lean_Meta_Match_withCleanLCtxFor_spec__1_spec__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_Meta_Match_throwIncorrectNumberOfPatternsAt___at_____private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNumPatterns_spec__1_spec__3_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint64_t l_Lean_Meta_Match_hashMatcherKey____x40_Lean_Meta_Match_Match___hyg_11007_(lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isVariableTransition___lam__0(lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at_____private_Lean_Meta_Match_Match_0__Lean_Meta_Match_getInductiveVal_x3f_spec__0_spec__0_spec__0_spec__0_spec__0___closed__1; static lean_object* l_Lean_Meta_Match_mkMatcher___lam__1___closed__6; @@ -929,6 +928,7 @@ LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Array_mapFinIdxM_map___at LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_Match_mkMatcher_spec__11___boxed(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_Match_getMkMatcherInputInContext___closed__3; LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasValPattern(lean_object*); +LEAN_EXPORT uint64_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hashMatcherKey____x40_Lean_Meta_Match_Match___hyg_11007_(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_matcherExt; lean_object* lean_nat_mul(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveSomeLocalFVarIdCnstr_x3f___lam__0___closed__3; @@ -34723,7 +34723,7 @@ x_1 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_instBEqMatcherKey___c return x_1; } } -LEAN_EXPORT uint64_t l_Lean_Meta_Match_hashMatcherKey____x40_Lean_Meta_Match_Match___hyg_11007_(lean_object* x_1) { +LEAN_EXPORT uint64_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hashMatcherKey____x40_Lean_Meta_Match_Match___hyg_11007_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; uint8_t x_4; uint64_t x_5; uint64_t x_6; uint64_t x_7; uint64_t x_8; @@ -34768,11 +34768,11 @@ return x_13; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_Match_hashMatcherKey____x40_Lean_Meta_Match_Match___hyg_11007____boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hashMatcherKey____x40_Lean_Meta_Match_Match___hyg_11007____boxed(lean_object* x_1) { _start: { uint64_t x_2; lean_object* x_3; -x_2 = l_Lean_Meta_Match_hashMatcherKey____x40_Lean_Meta_Match_Match___hyg_11007_(x_1); +x_2 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hashMatcherKey____x40_Lean_Meta_Match_Match___hyg_11007_(x_1); lean_dec_ref(x_1); x_3 = lean_box_uint64(x_2); return x_3; @@ -34782,7 +34782,7 @@ static lean_object* _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_i _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Meta_Match_hashMatcherKey____x40_Lean_Meta_Match_Match___hyg_11007____boxed), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hashMatcherKey____x40_Lean_Meta_Match_Match___hyg_11007____boxed), 1, 0); return x_1; } } @@ -35019,7 +35019,7 @@ else lean_object* x_8; lean_object* x_9; uint64_t x_10; size_t x_11; size_t x_12; lean_object* x_13; size_t x_14; size_t x_15; size_t x_16; size_t x_17; lean_object* x_18; lean_object* x_19; x_8 = lean_array_fget(x_2, x_4); x_9 = lean_array_fget(x_3, x_4); -x_10 = l_Lean_Meta_Match_hashMatcherKey____x40_Lean_Meta_Match_Match___hyg_11007_(x_8); +x_10 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hashMatcherKey____x40_Lean_Meta_Match_Match___hyg_11007_(x_8); x_11 = lean_uint64_to_usize(x_10); x_12 = 5; x_13 = lean_unsigned_to_nat(1u); @@ -35321,7 +35321,7 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___Lean_Meta_Match_ _start: { uint64_t x_4; size_t x_5; size_t x_6; lean_object* x_7; -x_4 = l_Lean_Meta_Match_hashMatcherKey____x40_Lean_Meta_Match_Match___hyg_11007_(x_2); +x_4 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hashMatcherKey____x40_Lean_Meta_Match_Match___hyg_11007_(x_2); x_5 = lean_uint64_to_usize(x_4); x_6 = 1; x_7 = l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_Meta_Match_mkMatcherAuxDefinition_spec__1_spec__1___redArg(x_1, x_5, x_6, x_2, x_3); @@ -35922,7 +35922,7 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___Lean_Meta_Matc _start: { uint64_t x_3; size_t x_4; lean_object* x_5; -x_3 = l_Lean_Meta_Match_hashMatcherKey____x40_Lean_Meta_Match_Match___hyg_11007_(x_2); +x_3 = l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hashMatcherKey____x40_Lean_Meta_Match_Match___hyg_11007_(x_2); x_4 = lean_uint64_to_usize(x_3); x_5 = l_Lean_PersistentHashMap_findAux___at___Lean_PersistentHashMap_find_x3f___at___Lean_Meta_Match_mkMatcherAuxDefinition_spec__8_spec__8___redArg(x_1, x_4, x_2); return x_5; diff --git a/stage0/stdlib/Lean/Meta/Match/MatcherApp/Transform.c b/stage0/stdlib/Lean/Meta/Match/MatcherApp/Transform.c index c6b4e01b03..c04fcd0605 100644 --- a/stage0/stdlib/Lean/Meta/Match/MatcherApp/Transform.c +++ b/stage0/stdlib/Lean/Meta/Match/MatcherApp/Transform.c @@ -131,7 +131,7 @@ static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__25___closed LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at_____private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_forallBoundedTelescope___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_inferMatchType___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_inferMatchType___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_reprFast(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_withUserNamesImpl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_Iterators_instIteratorMap___redArg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -229,7 +229,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lea LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_refineThrough___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__14___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_inferMatchType_spec__7_spec__7___lam__1___closed__0; -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__28(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__28(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logInfo___at___Lean_Meta_MatcherApp_inferMatchType_spec__0_spec__0_spec__0___lam__0___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__51(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAuxAux___redArg(uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -300,7 +300,7 @@ LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logInfo___at__ LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__72___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg___lam__0___boxed(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_MatcherApp_transform___redArg___lam__57___closed__3; -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_inferMatchType___lam__2(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_inferMatchType___lam__2(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofExpr(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__57___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -336,7 +336,7 @@ static lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__65___closed LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__38(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_inferMatchType___lam__2___closed__1; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Id_instMonad___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__24___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*); @@ -389,7 +389,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Meta_Match LEAN_EXPORT lean_object* l_Array_zipWithMAux___at___Array_zipWithMAux___at___Lean_Meta_MatcherApp_refineThrough_spec__2_spec__2___lam__0___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_get_match_equations_for(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Meta_MatcherApp_inferMatchType_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_append___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__34___boxed(lean_object**); @@ -413,7 +413,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__20(lea LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__15(uint8_t, lean_object*, uint8_t, 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*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_inferMatchType_spec__7_spec__7___lam__0(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__4(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__2(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Option_get___at___Lean_logAt___at___Lean_log___at___Lean_logInfo___at___Lean_Meta_MatcherApp_inferMatchType_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__14___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -477,7 +477,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__12(lea LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__17___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isFVar(lean_object*); lean_object* l_Lean_Meta_instantiateForall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__43(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__43(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_mvarId_x21(lean_object*); @@ -6067,13 +6067,13 @@ x_15 = lean_apply_2(x_5, lean_box(0), x_14); return x_15; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__28(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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__28(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_7; lean_object* x_8; -x_7 = lean_apply_3(x_1, x_2, x_3, x_6); -x_8 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_7, x_5); -return x_8; +lean_object* x_8; lean_object* x_9; +x_8 = lean_apply_4(x_1, x_2, x_3, x_4, x_7); +x_9 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_8, x_6); +return x_9; } } LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__29(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) { @@ -6105,12 +6105,14 @@ lean_closure_set(x_16, 2, x_14); lean_closure_set(x_16, 3, x_15); lean_closure_set(x_16, 4, x_4); lean_inc_ref(x_7); -x_17 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__28), 6, 5); +lean_inc_ref(x_1); +x_17 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__28), 7, 6); lean_closure_set(x_17, 0, x_5); lean_closure_set(x_17, 1, x_6); lean_closure_set(x_17, 2, x_13); -lean_closure_set(x_17, 3, x_7); -lean_closure_set(x_17, 4, x_16); +lean_closure_set(x_17, 3, x_1); +lean_closure_set(x_17, 4, x_7); +lean_closure_set(x_17, 5, x_16); lean_inc_ref(x_10); lean_inc_ref(x_9); lean_inc_ref(x_7); @@ -7795,13 +7797,13 @@ x_19 = lean_apply_2(x_7, lean_box(0), x_18); return x_19; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__43(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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__43(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_7; lean_object* x_8; -x_7 = lean_apply_3(x_1, x_2, x_3, x_6); -x_8 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_7, x_5); -return x_8; +lean_object* x_8; lean_object* x_9; +x_8 = lean_apply_4(x_1, x_2, x_3, x_4, x_7); +x_9 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_8, x_6); +return x_9; } } LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___redArg___lam__44(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { @@ -7826,21 +7828,23 @@ lean_closure_set(x_20, 3, x_14); lean_closure_set(x_20, 4, x_18); lean_closure_set(x_20, 5, x_19); lean_closure_set(x_20, 6, x_7); -lean_inc_ref(x_10); -x_21 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__43), 6, 5); -lean_closure_set(x_21, 0, x_8); -lean_closure_set(x_21, 1, x_9); -lean_closure_set(x_21, 2, x_15); -lean_closure_set(x_21, 3, x_10); -lean_closure_set(x_21, 4, x_20); -x_22 = l_Array_append___redArg(x_11, x_4); +x_21 = l_Array_append___redArg(x_8, x_4); lean_dec_ref(x_4); +lean_inc_ref(x_11); +lean_inc_ref(x_21); +x_22 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___redArg___lam__43), 7, 6); +lean_closure_set(x_22, 0, x_9); +lean_closure_set(x_22, 1, x_10); +lean_closure_set(x_22, 2, x_15); +lean_closure_set(x_22, 3, x_21); +lean_closure_set(x_22, 4, x_11); +lean_closure_set(x_22, 5, x_20); x_23 = lean_alloc_closure((void*)(l_Lean_Meta_instantiateLambda___boxed), 7, 2); lean_closure_set(x_23, 0, x_12); -lean_closure_set(x_23, 1, x_22); +lean_closure_set(x_23, 1, x_21); x_24 = lean_apply_2(x_7, lean_box(0), x_23); x_25 = lean_apply_3(x_17, lean_box(0), x_24, x_13); -x_26 = lean_apply_4(x_10, lean_box(0), lean_box(0), x_25, x_21); +x_26 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_25, x_22); return x_26; } } @@ -7930,10 +7934,10 @@ lean_closure_set(x_20, 1, x_16); lean_closure_set(x_20, 2, x_18); lean_closure_set(x_20, 3, x_19); lean_closure_set(x_20, 4, x_4); -lean_closure_set(x_20, 5, x_5); -lean_closure_set(x_20, 6, x_6); -lean_closure_set(x_20, 7, x_7); -lean_closure_set(x_20, 8, x_17); +lean_closure_set(x_20, 5, x_17); +lean_closure_set(x_20, 6, x_5); +lean_closure_set(x_20, 7, x_6); +lean_closure_set(x_20, 8, x_7); lean_closure_set(x_20, 9, x_8); lean_closure_set(x_20, 10, x_9); lean_closure_set(x_20, 11, x_10); @@ -14195,7 +14199,7 @@ return x_1; LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logInfo___at___Lean_Meta_MatcherApp_inferMatchType_spec__0_spec__0_spec__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t 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_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_81; lean_object* x_82; uint8_t x_83; lean_object* x_84; uint8_t x_85; lean_object* x_86; uint8_t x_87; lean_object* x_88; lean_object* x_110; lean_object* x_111; uint8_t x_112; lean_object* x_113; uint8_t x_114; lean_object* x_115; uint8_t x_116; lean_object* x_117; lean_object* x_121; lean_object* x_122; lean_object* x_123; uint8_t x_124; lean_object* x_125; uint8_t x_126; uint8_t x_127; uint8_t x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; uint8_t x_138; uint8_t x_139; uint8_t x_140; uint8_t x_142; uint8_t x_158; +uint8_t x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_81; uint8_t x_82; uint8_t x_83; lean_object* x_84; uint8_t x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_110; uint8_t x_111; uint8_t x_112; lean_object* x_113; uint8_t x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_121; uint8_t x_122; lean_object* x_123; uint8_t x_124; lean_object* x_125; lean_object* x_126; uint8_t x_127; uint8_t x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; uint8_t x_137; lean_object* x_138; uint8_t x_139; uint8_t x_140; uint8_t x_142; uint8_t x_158; x_133 = 2; x_158 = l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(x_3, x_133); if (x_158 == 0) @@ -14235,15 +14239,15 @@ lean_ctor_set(x_20, 1, x_25); lean_ctor_set(x_20, 0, x_24); x_28 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_28, 0, x_20); -lean_ctor_set(x_28, 1, x_12); +lean_ctor_set(x_28, 1, x_15); x_29 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_29, 0, x_13); -lean_ctor_set(x_29, 1, x_15); -lean_ctor_set(x_29, 2, x_16); -lean_ctor_set(x_29, 3, x_10); +lean_ctor_set(x_29, 0, x_16); +lean_ctor_set(x_29, 1, x_11); +lean_ctor_set(x_29, 2, x_12); +lean_ctor_set(x_29, 3, x_13); lean_ctor_set(x_29, 4, x_28); -lean_ctor_set_uint8(x_29, sizeof(void*)*5, x_14); -lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 1, x_11); +lean_ctor_set_uint8(x_29, sizeof(void*)*5, x_10); +lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 1, x_14); lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 2, x_4); x_30 = l_Lean_MessageLog_add(x_29, x_27); lean_ctor_set(x_22, 6, x_30); @@ -14297,15 +14301,15 @@ lean_ctor_set(x_20, 1, x_25); lean_ctor_set(x_20, 0, x_24); x_47 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_47, 0, x_20); -lean_ctor_set(x_47, 1, x_12); +lean_ctor_set(x_47, 1, x_15); x_48 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_48, 0, x_13); -lean_ctor_set(x_48, 1, x_15); -lean_ctor_set(x_48, 2, x_16); -lean_ctor_set(x_48, 3, x_10); +lean_ctor_set(x_48, 0, x_16); +lean_ctor_set(x_48, 1, x_11); +lean_ctor_set(x_48, 2, x_12); +lean_ctor_set(x_48, 3, x_13); lean_ctor_set(x_48, 4, x_47); -lean_ctor_set_uint8(x_48, sizeof(void*)*5, x_14); -lean_ctor_set_uint8(x_48, sizeof(void*)*5 + 1, x_11); +lean_ctor_set_uint8(x_48, sizeof(void*)*5, x_10); +lean_ctor_set_uint8(x_48, sizeof(void*)*5 + 1, x_14); lean_ctor_set_uint8(x_48, sizeof(void*)*5 + 2, x_4); x_49 = l_Lean_MessageLog_add(x_48, x_44); x_50 = lean_alloc_ctor(0, 9, 0); @@ -14391,15 +14395,15 @@ lean_ctor_set(x_70, 0, x_58); lean_ctor_set(x_70, 1, x_59); x_71 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_71, 0, x_70); -lean_ctor_set(x_71, 1, x_12); +lean_ctor_set(x_71, 1, x_15); x_72 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_72, 0, x_13); -lean_ctor_set(x_72, 1, x_15); -lean_ctor_set(x_72, 2, x_16); -lean_ctor_set(x_72, 3, x_10); +lean_ctor_set(x_72, 0, x_16); +lean_ctor_set(x_72, 1, x_11); +lean_ctor_set(x_72, 2, x_12); +lean_ctor_set(x_72, 3, x_13); lean_ctor_set(x_72, 4, x_71); -lean_ctor_set_uint8(x_72, sizeof(void*)*5, x_14); -lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 1, x_11); +lean_ctor_set_uint8(x_72, sizeof(void*)*5, x_10); +lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 1, x_14); lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 2, x_4); x_73 = l_Lean_MessageLog_add(x_72, x_66); if (lean_is_scalar(x_69)) { @@ -14449,25 +14453,25 @@ if (x_91 == 0) lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; x_92 = lean_ctor_get(x_90, 0); x_93 = lean_ctor_get(x_90, 1); -lean_inc_ref(x_82); -x_94 = l_Lean_FileMap_toPosition(x_82, x_86); +lean_inc_ref(x_87); +x_94 = l_Lean_FileMap_toPosition(x_87, x_86); lean_dec(x_86); -x_95 = l_Lean_FileMap_toPosition(x_82, x_88); +x_95 = l_Lean_FileMap_toPosition(x_87, x_88); lean_dec(x_88); x_96 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_96, 0, x_95); x_97 = l_Lean_Meta_MatcherApp_transform___redArg___lam__40___closed__2; -if (x_87 == 0) +if (x_85 == 0) { lean_free_object(x_90); lean_dec_ref(x_81); -x_10 = x_97; -x_11 = x_83; -x_12 = x_92; -x_13 = x_84; -x_14 = x_85; -x_15 = x_94; -x_16 = x_96; +x_10 = x_82; +x_11 = x_94; +x_12 = x_96; +x_13 = x_97; +x_14 = x_83; +x_15 = x_92; +x_16 = x_84; x_17 = x_7; x_18 = x_8; x_19 = x_93; @@ -14493,13 +14497,13 @@ return x_90; else { lean_free_object(x_90); -x_10 = x_97; -x_11 = x_83; -x_12 = x_92; -x_13 = x_84; -x_14 = x_85; -x_15 = x_94; -x_16 = x_96; +x_10 = x_82; +x_11 = x_94; +x_12 = x_96; +x_13 = x_97; +x_14 = x_83; +x_15 = x_92; +x_16 = x_84; x_17 = x_7; x_18 = x_8; x_19 = x_93; @@ -14515,24 +14519,24 @@ x_101 = lean_ctor_get(x_90, 1); lean_inc(x_101); lean_inc(x_100); lean_dec(x_90); -lean_inc_ref(x_82); -x_102 = l_Lean_FileMap_toPosition(x_82, x_86); +lean_inc_ref(x_87); +x_102 = l_Lean_FileMap_toPosition(x_87, x_86); lean_dec(x_86); -x_103 = l_Lean_FileMap_toPosition(x_82, x_88); +x_103 = l_Lean_FileMap_toPosition(x_87, x_88); lean_dec(x_88); x_104 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_104, 0, x_103); x_105 = l_Lean_Meta_MatcherApp_transform___redArg___lam__40___closed__2; -if (x_87 == 0) +if (x_85 == 0) { lean_dec_ref(x_81); -x_10 = x_105; -x_11 = x_83; -x_12 = x_100; -x_13 = x_84; -x_14 = x_85; -x_15 = x_102; -x_16 = x_104; +x_10 = x_82; +x_11 = x_102; +x_12 = x_104; +x_13 = x_105; +x_14 = x_83; +x_15 = x_100; +x_16 = x_84; x_17 = x_7; x_18 = x_8; x_19 = x_101; @@ -14559,13 +14563,13 @@ return x_108; } else { -x_10 = x_105; -x_11 = x_83; -x_12 = x_100; -x_13 = x_84; -x_14 = x_85; -x_15 = x_102; -x_16 = x_104; +x_10 = x_82; +x_11 = x_102; +x_12 = x_104; +x_13 = x_105; +x_14 = x_83; +x_15 = x_100; +x_16 = x_84; x_17 = x_7; x_18 = x_8; x_19 = x_101; @@ -14577,8 +14581,8 @@ goto block_80; block_120: { lean_object* x_118; -x_118 = l_Lean_Syntax_getTailPos_x3f(x_115, x_114); -lean_dec(x_115); +x_118 = l_Lean_Syntax_getTailPos_x3f(x_116, x_111); +lean_dec(x_116); if (lean_obj_tag(x_118) == 0) { lean_inc(x_117); @@ -14588,7 +14592,7 @@ x_83 = x_112; x_84 = x_113; x_85 = x_114; x_86 = x_117; -x_87 = x_116; +x_87 = x_115; x_88 = x_117; goto block_109; } @@ -14604,7 +14608,7 @@ x_83 = x_112; x_84 = x_113; x_85 = x_114; x_86 = x_117; -x_87 = x_116; +x_87 = x_115; x_88 = x_119; goto block_109; } @@ -14614,7 +14618,7 @@ block_132: lean_object* x_128; lean_object* x_129; x_128 = l_Lean_replaceRef(x_1, x_125); lean_dec(x_125); -x_129 = l_Lean_Syntax_getPos_x3f(x_128, x_124); +x_129 = l_Lean_Syntax_getPos_x3f(x_128, x_122); if (lean_obj_tag(x_129) == 0) { lean_object* x_130; @@ -14624,8 +14628,8 @@ x_111 = x_122; x_112 = x_127; x_113 = x_123; x_114 = x_124; -x_115 = x_128; -x_116 = x_126; +x_115 = x_126; +x_116 = x_128; x_117 = x_130; goto block_120; } @@ -14640,8 +14644,8 @@ x_111 = x_122; x_112 = x_127; x_113 = x_123; x_114 = x_124; -x_115 = x_128; -x_116 = x_126; +x_115 = x_126; +x_116 = x_128; x_117 = x_131; goto block_120; } @@ -14650,10 +14654,10 @@ block_141: { if (x_140 == 0) { -x_121 = x_137; -x_122 = x_134; +x_121 = x_134; +x_122 = x_139; x_123 = x_135; -x_124 = x_139; +x_124 = x_137; x_125 = x_136; x_126 = x_138; x_127 = x_3; @@ -14661,10 +14665,10 @@ goto block_132; } else { -x_121 = x_137; -x_122 = x_134; +x_121 = x_134; +x_122 = x_139; x_123 = x_135; -x_124 = x_139; +x_124 = x_137; x_125 = x_136; x_126 = x_138; x_127 = x_133; @@ -14695,11 +14699,11 @@ x_152 = l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(x_3, x_151); if (x_152 == 0) { lean_dec(x_145); -x_134 = x_144; +x_134 = x_150; x_135 = x_143; x_136 = x_146; -x_137 = x_150; -x_138 = x_147; +x_137 = x_147; +x_138 = x_144; x_139 = x_142; x_140 = x_152; goto block_141; @@ -14710,11 +14714,11 @@ lean_object* x_153; uint8_t x_154; x_153 = l_Lean_logAt___at___Lean_log___at___Lean_logInfo___at___Lean_Meta_MatcherApp_inferMatchType_spec__0_spec__0_spec__0___closed__0; x_154 = l_Lean_Option_get___at___Lean_logAt___at___Lean_log___at___Lean_logInfo___at___Lean_Meta_MatcherApp_inferMatchType_spec__0_spec__0_spec__0_spec__0(x_145, x_153); lean_dec(x_145); -x_134 = x_144; +x_134 = x_150; x_135 = x_143; x_136 = x_146; -x_137 = x_150; -x_138 = x_147; +x_137 = x_147; +x_138 = x_144; x_139 = x_142; x_140 = x_154; goto block_141; @@ -17293,7 +17297,8 @@ lean_inc(x_12); lean_inc_ref(x_11); lean_inc(x_10); lean_inc_ref(x_9); -x_17 = lean_apply_8(x_3, x_4, x_5, x_15, x_9, x_10, x_11, x_12, x_16); +lean_inc_ref(x_2); +x_17 = lean_apply_9(x_3, x_4, x_5, x_2, x_15, x_9, x_10, x_11, x_12, x_16); if (lean_obj_tag(x_17) == 0) { lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; @@ -19348,21 +19353,20 @@ x_11 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_ return x_11; } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -lean_object* x_17; lean_object* x_29; lean_object* x_30; -x_29 = l_Array_append___redArg(x_8, x_5); +lean_object* x_17; lean_object* x_18; lean_object* x_30; +x_17 = l_Array_append___redArg(x_1, x_2); lean_inc(x_15); lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); -x_30 = l_Lean_Meta_instantiateLambda(x_9, x_29, x_12, x_13, x_14, x_15, x_16); -lean_dec_ref(x_29); +x_30 = l_Lean_Meta_instantiateLambda(x_9, x_17, x_12, x_13, x_14, x_15, x_16); if (lean_obj_tag(x_30) == 0) { -x_17 = x_30; -goto block_28; +x_18 = x_30; +goto block_29; } else { @@ -19394,51 +19398,51 @@ lean_object* x_34; lean_object* x_35; lean_dec_ref(x_30); x_34 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts___lam__1___closed__2; x_35 = l_Lean_throwError___at_____private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts_spec__0___redArg(x_34, x_12, x_13, x_14, x_15, x_32); -x_17 = x_35; -goto block_28; +x_18 = x_35; +goto block_29; } else { lean_dec(x_32); -x_17 = x_30; -goto block_28; +x_18 = x_30; +goto block_29; } } } -block_28: +block_29: { -if (lean_obj_tag(x_17) == 0) +if (lean_obj_tag(x_18) == 0) { -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_17, 0); -lean_inc(x_18); -x_19 = lean_ctor_get(x_17, 1); +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); -lean_dec_ref(x_17); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec_ref(x_18); lean_inc(x_15); lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); -x_20 = lean_apply_8(x_1, x_2, x_11, x_18, x_12, x_13, x_14, x_15, x_19); -if (lean_obj_tag(x_20) == 0) +x_21 = lean_apply_9(x_3, x_4, x_11, x_17, x_19, x_12, x_13, x_14, x_15, x_20); +if (lean_obj_tag(x_21) == 0) { -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; -x_21 = lean_ctor_get(x_20, 0); -lean_inc(x_21); -x_22 = lean_ctor_get(x_20, 1); +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_28; +x_22 = lean_ctor_get(x_21, 0); lean_inc(x_22); -lean_dec_ref(x_20); -x_23 = l_Array_append___redArg(x_3, x_4); -x_24 = l_Array_append___redArg(x_23, x_5); -x_25 = l_Array_append___redArg(x_24, x_10); -x_26 = 1; -x_27 = l_Lean_Meta_mkLambdaFVars(x_25, x_21, x_6, x_7, x_6, x_7, x_26, x_12, x_13, x_14, x_15, x_22); +x_23 = lean_ctor_get(x_21, 1); +lean_inc(x_23); +lean_dec_ref(x_21); +x_24 = l_Array_append___redArg(x_5, x_6); +x_25 = l_Array_append___redArg(x_24, x_2); +x_26 = l_Array_append___redArg(x_25, x_10); +x_27 = 1; +x_28 = l_Lean_Meta_mkLambdaFVars(x_26, x_22, x_7, x_8, x_7, x_8, x_27, x_12, x_13, x_14, x_15, x_23); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec_ref(x_12); -lean_dec_ref(x_25); -return x_27; +lean_dec_ref(x_26); +return x_28; } else { @@ -19446,32 +19450,55 @@ lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec_ref(x_12); -lean_dec_ref(x_3); -return x_20; +lean_dec_ref(x_5); +return x_21; } } else { +lean_dec_ref(x_17); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec_ref(x_12); lean_dec_ref(x_11); +lean_dec_ref(x_5); +lean_dec(x_4); lean_dec_ref(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -return x_17; +return x_18; } } } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +_start: +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_17 = lean_box(x_6); +x_18 = lean_box(x_7); +x_19 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__0___boxed), 16, 9); +lean_closure_set(x_19, 0, x_1); +lean_closure_set(x_19, 1, x_10); +lean_closure_set(x_19, 2, x_2); +lean_closure_set(x_19, 3, x_3); +lean_closure_set(x_19, 4, x_4); +lean_closure_set(x_19, 5, x_5); +lean_closure_set(x_19, 6, x_17); +lean_closure_set(x_19, 7, x_18); +lean_closure_set(x_19, 8, x_8); +x_20 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_20, 0, x_9); +x_21 = l_Lean_Meta_forallBoundedTelescope___at_____private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts_spec__2___redArg(x_11, x_20, x_19, x_6, x_6, x_12, x_13, x_14, x_15, x_16); +return x_21; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; x_17 = lean_box(x_5); x_18 = lean_box(x_6); -x_19 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__0___boxed), 16, 9); +x_19 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__1___boxed), 16, 9); lean_closure_set(x_19, 0, x_1); lean_closure_set(x_19, 1, x_2); lean_closure_set(x_19, 2, x_3); @@ -19487,28 +19514,6 @@ x_21 = l_Lean_Meta_forallBoundedTelescope___at_____private_Lean_Meta_Match_Match return x_21; } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { -_start: -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_17 = lean_box(x_4); -x_18 = lean_box(x_5); -x_19 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__1___boxed), 16, 9); -lean_closure_set(x_19, 0, x_1); -lean_closure_set(x_19, 1, x_2); -lean_closure_set(x_19, 2, x_3); -lean_closure_set(x_19, 3, x_10); -lean_closure_set(x_19, 4, x_17); -lean_closure_set(x_19, 5, x_18); -lean_closure_set(x_19, 6, x_6); -lean_closure_set(x_19, 7, x_7); -lean_closure_set(x_19, 8, x_8); -x_20 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_20, 0, x_9); -x_21 = l_Lean_Meta_forallBoundedTelescope___at_____private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_updateAlts_spec__2___redArg(x_11, x_20, x_19, x_4, x_4, x_12, x_13, x_14, x_15, x_16); -return x_21; -} -} LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { @@ -19530,12 +19535,12 @@ x_20 = lean_box(x_4); x_21 = lean_box(x_5); lean_inc_ref(x_10); x_22 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__2___boxed), 16, 9); -lean_closure_set(x_22, 0, x_2); -lean_closure_set(x_22, 1, x_3); -lean_closure_set(x_22, 2, x_10); -lean_closure_set(x_22, 3, x_20); -lean_closure_set(x_22, 4, x_21); -lean_closure_set(x_22, 5, x_11); +lean_closure_set(x_22, 0, x_11); +lean_closure_set(x_22, 1, x_2); +lean_closure_set(x_22, 2, x_3); +lean_closure_set(x_22, 3, x_10); +lean_closure_set(x_22, 4, x_20); +lean_closure_set(x_22, 5, x_21); lean_closure_set(x_22, 6, x_6); lean_closure_set(x_22, 7, x_7); lean_closure_set(x_22, 8, x_8); @@ -26453,290 +26458,290 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_inferMatchType___lam__2(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, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_inferMatchType___lam__2(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, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -lean_object* x_10; -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc(x_6); +lean_object* x_11; +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); lean_inc_ref(x_5); -lean_inc_ref(x_4); -x_10 = lean_infer_type(x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_10) == 0) +x_11 = lean_infer_type(x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_11) == 0) { -lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -x_12 = lean_ctor_get(x_10, 1); +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); -lean_dec_ref(x_10); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc(x_6); -lean_inc_ref(x_5); -x_13 = l_Lean_Meta_mkEq(x_3, x_11, x_5, x_6, x_7, x_8, x_12); -if (lean_obj_tag(x_13) == 0) +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +lean_dec_ref(x_11); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +x_14 = l_Lean_Meta_mkEq(x_3, x_12, x_6, x_7, x_8, x_9, x_13); +if (lean_obj_tag(x_14) == 0) { -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -x_15 = lean_ctor_get(x_13, 1); +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); -lean_dec_ref(x_13); -x_16 = lean_box(0); -lean_inc_ref(x_5); -x_17 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_14, x_16, x_5, x_6, x_7, x_8, x_15); -if (lean_obj_tag(x_17) == 0) +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec_ref(x_14); +x_17 = lean_box(0); +lean_inc_ref(x_6); +x_18 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_15, x_17, x_6, x_7, x_8, x_9, x_16); +if (lean_obj_tag(x_18) == 0) { -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_29; lean_object* x_30; -x_18 = lean_ctor_get(x_17, 0); -lean_inc(x_18); -x_19 = lean_ctor_get(x_17, 1); +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_30; lean_object* x_31; +x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); -if (lean_is_exclusive(x_17)) { - lean_ctor_release(x_17, 0); - lean_ctor_release(x_17, 1); - x_20 = x_17; +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +if (lean_is_exclusive(x_18)) { + lean_ctor_release(x_18, 0); + lean_ctor_release(x_18, 1); + x_21 = x_18; } else { - lean_dec_ref(x_17); - x_20 = lean_box(0); + lean_dec_ref(x_18); + x_21 = lean_box(0); } -x_29 = l_Lean_Expr_mvarId_x21(x_18); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc(x_6); -lean_inc_ref(x_5); -x_30 = l_Lean_Meta_Split_simpMatchTarget(x_29, x_5, x_6, x_7, x_8, x_19); -if (lean_obj_tag(x_30) == 0) +x_30 = l_Lean_Expr_mvarId_x21(x_19); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +x_31 = l_Lean_Meta_Split_simpMatchTarget(x_30, x_6, x_7, x_8, x_9, x_20); +if (lean_obj_tag(x_31) == 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_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_ctor_get(x_31, 0); lean_inc(x_32); -lean_dec_ref(x_30); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc(x_6); -lean_inc_ref(x_5); -lean_inc(x_31); -x_33 = l_Lean_MVarId_refl(x_31, x_5, x_6, x_7, x_8, x_32); -if (lean_obj_tag(x_33) == 0) +x_33 = lean_ctor_get(x_31, 1); +lean_inc(x_33); +lean_dec_ref(x_31); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_32); +x_34 = l_Lean_MVarId_refl(x_32, x_6, x_7, x_8, x_9, x_33); +if (lean_obj_tag(x_34) == 0) { -lean_dec(x_31); -lean_dec(x_20); -x_21 = x_33; -goto block_28; +lean_dec(x_32); +lean_dec(x_21); +x_22 = x_34; +goto block_29; } else { -lean_object* x_34; lean_object* x_35; uint8_t x_36; uint8_t x_56; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); +lean_object* x_35; lean_object* x_36; uint8_t x_37; uint8_t x_57; +x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); -x_56 = l_Lean_Exception_isInterrupt(x_34); -if (x_56 == 0) +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +x_57 = l_Lean_Exception_isInterrupt(x_35); +if (x_57 == 0) { -uint8_t x_57; -x_57 = l_Lean_Exception_isRuntime(x_34); -lean_dec(x_34); -x_36 = x_57; -goto block_55; -} -else -{ -lean_dec(x_34); -x_36 = x_56; -goto block_55; -} -block_55: -{ -if (x_36 == 0) -{ -uint8_t x_37; -x_37 = !lean_is_exclusive(x_33); -if (x_37 == 0) -{ -lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_38 = lean_ctor_get(x_33, 1); -lean_dec(x_38); -x_39 = lean_ctor_get(x_33, 0); -lean_dec(x_39); -x_40 = l_Lean_Meta_MatcherApp_inferMatchType___lam__2___closed__1; -lean_inc(x_31); -x_41 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_41, 0, x_31); -lean_ctor_set_tag(x_33, 7); -lean_ctor_set(x_33, 1, x_41); -lean_ctor_set(x_33, 0, x_40); -x_42 = l_Lean_Meta_MatcherApp_transform___redArg___lam__40___closed__3; -if (lean_is_scalar(x_20)) { - x_43 = lean_alloc_ctor(7, 2, 0); -} else { - x_43 = x_20; - lean_ctor_set_tag(x_43, 7); -} -lean_ctor_set(x_43, 0, x_33); -lean_ctor_set(x_43, 1, x_42); -lean_inc_ref(x_7); -x_44 = l_Lean_logInfo___at___Lean_Meta_MatcherApp_inferMatchType_spec__0(x_43, x_5, x_6, x_7, x_8, x_35); -x_45 = lean_ctor_get(x_44, 1); -lean_inc(x_45); -lean_dec_ref(x_44); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc(x_6); -lean_inc_ref(x_5); -x_46 = l_Lean_MVarId_admit(x_31, x_1, x_5, x_6, x_7, x_8, x_45); -x_21 = x_46; -goto block_28; -} -else -{ -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_dec(x_33); -x_47 = l_Lean_Meta_MatcherApp_inferMatchType___lam__2___closed__1; -lean_inc(x_31); -x_48 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_48, 0, x_31); -x_49 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -x_50 = l_Lean_Meta_MatcherApp_transform___redArg___lam__40___closed__3; -if (lean_is_scalar(x_20)) { - x_51 = lean_alloc_ctor(7, 2, 0); -} else { - x_51 = x_20; - lean_ctor_set_tag(x_51, 7); -} -lean_ctor_set(x_51, 0, x_49); -lean_ctor_set(x_51, 1, x_50); -lean_inc_ref(x_7); -x_52 = l_Lean_logInfo___at___Lean_Meta_MatcherApp_inferMatchType_spec__0(x_51, x_5, x_6, x_7, x_8, x_35); -x_53 = lean_ctor_get(x_52, 1); -lean_inc(x_53); -lean_dec_ref(x_52); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc(x_6); -lean_inc_ref(x_5); -x_54 = l_Lean_MVarId_admit(x_31, x_1, x_5, x_6, x_7, x_8, x_53); -x_21 = x_54; -goto block_28; -} +uint8_t x_58; +x_58 = l_Lean_Exception_isRuntime(x_35); +lean_dec(x_35); +x_37 = x_58; +goto block_56; } else { lean_dec(x_35); -lean_dec(x_31); -lean_dec(x_20); -x_21 = x_33; -goto block_28; +x_37 = x_57; +goto block_56; } +block_56: +{ +if (x_37 == 0) +{ +uint8_t x_38; +x_38 = !lean_is_exclusive(x_34); +if (x_38 == 0) +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_39 = lean_ctor_get(x_34, 1); +lean_dec(x_39); +x_40 = lean_ctor_get(x_34, 0); +lean_dec(x_40); +x_41 = l_Lean_Meta_MatcherApp_inferMatchType___lam__2___closed__1; +lean_inc(x_32); +x_42 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_42, 0, x_32); +lean_ctor_set_tag(x_34, 7); +lean_ctor_set(x_34, 1, x_42); +lean_ctor_set(x_34, 0, x_41); +x_43 = l_Lean_Meta_MatcherApp_transform___redArg___lam__40___closed__3; +if (lean_is_scalar(x_21)) { + x_44 = lean_alloc_ctor(7, 2, 0); +} else { + x_44 = x_21; + lean_ctor_set_tag(x_44, 7); } +lean_ctor_set(x_44, 0, x_34); +lean_ctor_set(x_44, 1, x_43); +lean_inc_ref(x_8); +x_45 = l_Lean_logInfo___at___Lean_Meta_MatcherApp_inferMatchType_spec__0(x_44, x_6, x_7, x_8, x_9, x_36); +x_46 = lean_ctor_get(x_45, 1); +lean_inc(x_46); +lean_dec_ref(x_45); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +x_47 = l_Lean_MVarId_admit(x_32, x_1, x_6, x_7, x_8, x_9, x_46); +x_22 = x_47; +goto block_29; +} +else +{ +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_dec(x_34); +x_48 = l_Lean_Meta_MatcherApp_inferMatchType___lam__2___closed__1; +lean_inc(x_32); +x_49 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_49, 0, x_32); +x_50 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +x_51 = l_Lean_Meta_MatcherApp_transform___redArg___lam__40___closed__3; +if (lean_is_scalar(x_21)) { + x_52 = lean_alloc_ctor(7, 2, 0); +} else { + x_52 = x_21; + lean_ctor_set_tag(x_52, 7); +} +lean_ctor_set(x_52, 0, x_50); +lean_ctor_set(x_52, 1, x_51); +lean_inc_ref(x_8); +x_53 = l_Lean_logInfo___at___Lean_Meta_MatcherApp_inferMatchType_spec__0(x_52, x_6, x_7, x_8, x_9, x_36); +x_54 = lean_ctor_get(x_53, 1); +lean_inc(x_54); +lean_dec_ref(x_53); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +x_55 = l_Lean_MVarId_admit(x_32, x_1, x_6, x_7, x_8, x_9, x_54); +x_22 = x_55; +goto block_29; } } else { -uint8_t x_58; -lean_dec(x_20); -lean_dec(x_18); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_58 = !lean_is_exclusive(x_30); -if (x_58 == 0) -{ -return x_30; -} -else -{ -lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_59 = lean_ctor_get(x_30, 0); -x_60 = lean_ctor_get(x_30, 1); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_30); -x_61 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_61, 0, x_59); -lean_ctor_set(x_61, 1, x_60); -return x_61; -} -} -block_28: -{ -if (lean_obj_tag(x_21) == 0) -{ -lean_object* x_22; lean_object* x_23; -x_22 = lean_ctor_get(x_21, 1); -lean_inc(x_22); -lean_dec_ref(x_21); -x_23 = l_Lean_Meta_mkEqMPR(x_18, x_4, x_5, x_6, x_7, x_8, x_22); -return x_23; -} -else -{ -uint8_t x_24; -lean_dec(x_18); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_24 = !lean_is_exclusive(x_21); -if (x_24 == 0) -{ -return x_21; -} -else -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_21, 0); -x_26 = lean_ctor_get(x_21, 1); -lean_inc(x_26); -lean_inc(x_25); +lean_dec(x_36); +lean_dec(x_32); lean_dec(x_21); -x_27 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; +x_22 = x_34; +goto block_29; } } } } else { -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); +uint8_t x_59; +lean_dec(x_21); +lean_dec(x_19); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); lean_dec_ref(x_5); -lean_dec_ref(x_4); -return x_17; +x_59 = !lean_is_exclusive(x_31); +if (x_59 == 0) +{ +return x_31; +} +else +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = lean_ctor_get(x_31, 0); +x_61 = lean_ctor_get(x_31, 1); +lean_inc(x_61); +lean_inc(x_60); +lean_dec(x_31); +x_62 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_62, 0, x_60); +lean_ctor_set(x_62, 1, x_61); +return x_62; +} +} +block_29: +{ +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; +x_23 = lean_ctor_get(x_22, 1); +lean_inc(x_23); +lean_dec_ref(x_22); +x_24 = l_Lean_Meta_mkEqMPR(x_19, x_5, x_6, x_7, x_8, x_9, x_23); +return x_24; +} +else +{ +uint8_t x_25; +lean_dec(x_19); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +x_25 = !lean_is_exclusive(x_22); +if (x_25 == 0) +{ +return x_22; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_22, 0); +x_27 = lean_ctor_get(x_22, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_22); +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; +} +} } } else { -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); lean_dec_ref(x_5); -lean_dec_ref(x_4); -return x_13; +return x_18; } } else { -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +return x_14; +} +} +else +{ +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); lean_dec_ref(x_5); -lean_dec_ref(x_4); lean_dec_ref(x_3); -return x_10; +return x_11; } } } @@ -26958,7 +26963,7 @@ x_17 = lean_array_get_size(x_14); lean_dec_ref(x_14); x_18 = 1; x_19 = lean_box(x_18); -x_20 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_inferMatchType___lam__2___boxed), 9, 1); +x_20 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_inferMatchType___lam__2___boxed), 10, 1); lean_closure_set(x_20, 0, x_19); x_21 = 0; x_22 = lean_box(x_21); @@ -27371,12 +27376,12 @@ LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at__ _start: { uint8_t x_17; uint8_t x_18; lean_object* x_19; -x_17 = lean_unbox(x_6); -x_18 = lean_unbox(x_7); -x_19 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_17, x_18, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_17 = lean_unbox(x_7); +x_18 = lean_unbox(x_8); +x_19 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_17, x_18, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); lean_dec_ref(x_10); -lean_dec_ref(x_5); -lean_dec_ref(x_4); +lean_dec_ref(x_6); +lean_dec_ref(x_2); return x_19; } } @@ -27384,9 +27389,9 @@ LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at__ _start: { uint8_t x_17; uint8_t x_18; lean_object* x_19; -x_17 = lean_unbox(x_5); -x_18 = lean_unbox(x_6); -x_19 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__1(x_1, x_2, x_3, x_4, x_17, x_18, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_17 = lean_unbox(x_6); +x_18 = lean_unbox(x_7); +x_19 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_17, x_18, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); return x_19; } } @@ -27394,9 +27399,9 @@ LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at__ _start: { uint8_t x_17; uint8_t x_18; lean_object* x_19; -x_17 = lean_unbox(x_4); -x_18 = lean_unbox(x_5); -x_19 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__2(x_1, x_2, x_3, x_17, x_18, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_17 = lean_unbox(x_5); +x_18 = lean_unbox(x_6); +x_19 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Meta_MatcherApp_inferMatchType_spec__9_spec__18___redArg___lam__2(x_1, x_2, x_3, x_4, x_17, x_18, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); return x_19; } } @@ -27786,14 +27791,15 @@ lean_dec_ref(x_2); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_inferMatchType___lam__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_EXPORT lean_object* l_Lean_Meta_MatcherApp_inferMatchType___lam__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) { _start: { -uint8_t x_10; lean_object* x_11; -x_10 = lean_unbox(x_1); -x_11 = l_Lean_Meta_MatcherApp_inferMatchType___lam__2(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_1); +x_12 = l_Lean_Meta_MatcherApp_inferMatchType___lam__2(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec_ref(x_4); lean_dec(x_2); -return x_11; +return x_12; } } LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_inferMatchType___lam__3___boxed(lean_object** _args) { diff --git a/stage0/stdlib/Lean/Meta/Tactic/FunInd.c b/stage0/stdlib/Lean/Meta/Tactic/FunInd.c index 64d99ed769..1f76157ad1 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/FunInd.c +++ b/stage0/stdlib/Lean/Meta/Tactic/FunInd.c @@ -18,16 +18,14 @@ static lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__1___closed__1 LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17_spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withErasedFVars___at___Lean_Tactic_FunInd_buildInductionCase_spec__3___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_Tactic_FunInd_setNaryFunIndInfo___closed__1; -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21(lean_object*, uint8_t, uint8_t, 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___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionCase(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*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___closed__16; -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_foldAndCollect_spec__21___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_refinedArguments_go_spec__4_spec__4___closed__0; lean_object* l_Lean_Expr_fvarId_x3f(lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3_spec__3___closed__1; static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25___lam__1___closed__1; static lean_object* l_Lean_Tactic_FunInd_M2_run___redArg___closed__0; @@ -53,11 +51,9 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Tactic_FunInd_foldAndColl LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand_go___at___Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__8_spec__8(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__5_spec__5_spec__5___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; static lean_object* l_Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6___redArg___closed__1; static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__20; -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__20___boxed(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_Tactic_FunInd_rwMatcher___closed__8; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -67,16 +63,15 @@ LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__12___boxed(l LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__9___boxed(lean_object**); lean_object* l_List_lengthTR___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_foldAndCollect_spec__24___redArg(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32_spec__32___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*); static lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__17___closed__0; -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_projectMutualInduct_spec__0___boxed(lean_object**); static lean_object* l_Lean_Tactic_FunInd_zipMaskedArray___redArg___closed__0; +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25___lam__6___closed__0; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__40___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at___Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__8_spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34___redArg___lam__3___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_rwMatcher_spec__14_spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_setNaryFunIndInfo___closed__0; @@ -88,18 +83,21 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_getConstInfoDefn___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveInduction___lam__1(uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint64_t l_Lean_Meta_Context_configKey(lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__1___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32_spec__32___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__5___boxed(lean_object**); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; lean_object* l_Lean_Meta_Match_MatcherInfo_getFirstAltPos(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__5___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3_spec__4_spec__4___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at___Lean_Meta_withErasedFVars___at___Lean_Tactic_FunInd_buildInductionCase_spec__3_spec__5___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAppN(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_withLetDecls___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveCases___lam__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; static lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__20___closed__3; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__20___boxed(lean_object**); -LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_shift_right(size_t, size_t); static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__0_spec__0___closed__13; static lean_object* l_Array_mapFinIdxM_map___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__5___redArg___closed__1; @@ -109,17 +107,14 @@ LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___Lean_Tactic_FunInd_rwMatche LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_projectMutualInduct_spec__0_spec__0___redArg(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_WF_instInhabitedEqnInfo; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__10(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__1___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__18(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_refinedArguments___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_rwMatcher_spec__10_spec__10___closed__1; -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_refinedArguments_spec__0(uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveCases___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__17; -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__28(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___closed__5; @@ -138,20 +133,19 @@ lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp(lean_object LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__4(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_cleanupAfter_go___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___Lean_Tactic_FunInd_rwMatcher_spec__14___redArg___lam__0___boxed(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___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__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_EXPORT lean_object* l_Lean_Meta_isMatcherApp___at___Lean_Tactic_FunInd_rwMatcher_spec__4___redArg___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getConstInfoDefn___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_M_branch___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Tactic_FunInd_buildInductionCase_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_StateT_instMonad___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg___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_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_foldAndCollect_spec__21___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__17___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34_spec__34___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveCases___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__20___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_lambdaBoundedTelescope___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); static lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__20___closed__1; @@ -181,19 +175,17 @@ LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Tactic_FunInd_bu static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6___closed__18; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17_spec__18_spec__18___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__12_spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__20___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Nat_foldRevM_loop___at___Lean_Tactic_FunInd_foldAndCollect_spec__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isProp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ConstantInfo_levelParams(lean_object*); static lean_object* l_Lean_Tactic_FunInd_buildInductionCase___lam__1___closed__1; -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentD(lean_object*); double lean_float_div(double, double); lean_object* l_Lean_Expr_projExpr_x21(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___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*); uint8_t l_Array_isEmpty___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deduplicateIHs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitLambda___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__6___lam__0(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_refinedArguments_go_spec__4_spec__4___closed__5; uint8_t l_Lean_Exception_isInterrupt(lean_object*); @@ -215,13 +207,12 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsa static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__5___closed__0; LEAN_EXPORT uint8_t l_Array_isEqvAux___at___Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__10___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_setNaryFunIndInfo___closed__3; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17_spec__17___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__7___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__18___redArg___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_FileMap_toPosition(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveInduction___lam__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionCase___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -234,7 +225,6 @@ static lean_object* l_Array_mapFinIdxM_map___at___Lean_Tactic_FunInd_deriveInduc static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_unpackMutualInduction_doRealize_spec__0_spec__0___closed__0; size_t lean_uint64_to_usize(uint64_t); uint64_t lean_uint64_lor(uint64_t, uint64_t); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, 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_Meta_forallMetaTelescope(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__11___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__1___boxed(lean_object*, lean_object*, lean_object*); @@ -250,6 +240,8 @@ uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_unpackMutualInduction_doRealize_spec__0_spec__0___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_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__30_spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_projectMutualInduct_spec__0_spec__0___redArg___lam__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*); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__17(uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_PersistentArray_forInAux___at___Lean_PersistentArray_forIn___at___Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f_spec__1_spec__1_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isOptParam(lean_object*); LEAN_EXPORT lean_object* l_Array_isEqvAux___at___Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__10___redArg___boxed(lean_object*, lean_object*, lean_object*); @@ -257,13 +249,13 @@ LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___Array_contains___at___Lean_Tac static lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__20___closed__11; uint8_t l_Lean_Expr_isApp(lean_object*); static lean_object* l_Lean_Tactic_FunInd_setNaryFunIndInfo___closed__2; +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_unpackMutualInduction_doRealize___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_instInhabitedConfigWithKey___private__1; lean_object* l_Nat_decLt___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f___lam__0___closed__0; LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitPost___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19_spec__19___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17_spec__18_spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_findConstVal_x3f(lean_object*, lean_object*, uint8_t); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34_spec__34___lam__2___closed__3; @@ -278,6 +270,7 @@ LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_inLastArg(lean_object*, lean_objec LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__10___closed__11; LEAN_EXPORT lean_object* l_panic___at___Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__7(lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_qpartition___redArg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofList(lean_object*); @@ -320,9 +313,9 @@ LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at__ LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__18___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_EXPORT lean_object* l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_rwMatcher_spec__14_spec__16___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__10___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32_spec__32_spec__32___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static double l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__6; -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__2(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_refinedArguments_go_spec__4_spec__4___closed__7; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__6_spec__6_spec__6_spec__8___redArg(size_t, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__4___closed__4; @@ -332,7 +325,6 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_ LEAN_EXPORT lean_object* l_Array_idxOfAux___at___Array_finIdxOf_x3f___at___Array_idxOf_x3f___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__18_spec__18_spec__18___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_unknownIdentifierMessageTag; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__2___boxed(lean_object**); uint8_t lean_usize_dec_eq(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_unpackMutualInduction_doRealize(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Tactic_FunInd_buildInductionBody_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -348,8 +340,9 @@ static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownId LEAN_EXPORT lean_object* l_List_mapTR_loop___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__12(lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveCases___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at___Lean_Meta_withErasedFVars___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__36_spec__36(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21___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*); uint8_t l_Lean_Name_isAnonymous(lean_object*); +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__23_spec__23_spec__23___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_ReaderT_instFunctorOfMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Structural_instInhabitedEqnInfo; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_assertIHs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -362,6 +355,7 @@ LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_cleanP LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_rwMatcher_spec__10_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* l_Lean_Elab_Structural_getRecArgInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Tactic_FunInd_setNaryFunIndInfo_spec__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_replaceRef(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -375,13 +369,12 @@ static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__1 LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__3(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_rwLetWith(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Structural_Positions_mapMwith___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23___redArg___closed__1; -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_PersistentArray_forIn___at___Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f_spec__1_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__11(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkExpectedTypeHint(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__10(lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25___lam__1___closed__3; -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___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*); static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__10___closed__4; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34_spec__34(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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*, lean_object*); @@ -391,8 +384,10 @@ lean_object* l_Lean_Syntax_getPos_x3f(lean_object*, uint8_t); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3_spec__3___closed__15; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__15___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_refinedArguments_go_spec__4_spec__4___closed__1; +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveCases_spec__4(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Tactic_FunInd_buildInductionBody_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getTailPos_x3f(lean_object*, uint8_t); lean_object* l_Lean_Meta_Match_MatcherInfo_arity(lean_object*); @@ -412,7 +407,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_Matcher LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_transformWithCache_visit_visitLambda___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__6_spec__6___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__22; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Structural_Positions_mapMwith___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23___redArg___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_Tactic_FunInd_abstractIndependentMVars___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__36___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -423,13 +418,16 @@ LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_Fun LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__1___redArg(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__20___closed__5; LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___Lean_PersistentArray_forIn___at___Lean_Tactic_FunInd_cleanupAfter_allHeqToEq_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__18___boxed(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_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__0_spec__0___closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__18___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_find_x3f(lean_object*, lean_object*, uint8_t); uint8_t lean_float_decLt(double, double); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_assertIHs_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__30(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveCases___lam__11___closed__1; static lean_object* l_Lean_Tactic_FunInd_withLetDecls___redArg___closed__1; -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__24(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at___Lean_Tactic_FunInd_refinedArguments_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25___lam__8___boxed__const__1; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_cleanPackedArgs___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -445,11 +443,11 @@ static lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__1___closed__2 lean_object* l_Nat_blt___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveCases___lam__0(lean_object*); lean_object* l_Lean_inlineExprTrailing(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalContextImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_MessageData_hasSyntheticSorry(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__5_spec__5_spec__5_spec__5_spec__5___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__27___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at___Lean_Tactic_FunInd_rwMatcher_spec__8___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__8_spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -459,15 +457,19 @@ lean_object* l_Lean_Meta_PProdN_projM(lean_object*, lean_object*, lean_object*, static lean_object* l_Lean_Tactic_FunInd_deriveInduction___closed__1; static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___closed__0; LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_LocalContext_foldlM___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_rwMData___redArg___boxed(lean_object*, lean_object*); uint8_t l_Lean_Expr_isAppOf(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_cleanupAfter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkConstWithLevelParams___at___Lean_Tactic_FunInd_deriveCases_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26___redArg___lam__0___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*); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at___Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__8_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__0_spec__0___closed__14; static lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__4___closed__4; -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__16___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_ReaderT_instApplicativeOfMonad___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___boxed(lean_object**); LEAN_EXPORT uint8_t l_Array_contains___at___Lean_Tactic_FunInd_deduplicateIHs_spec__0(lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6___closed__15; static lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__6_spec__6_spec__6___redArg___closed__0; @@ -475,6 +477,7 @@ LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at__ LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__31___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_getConstInfoDefn___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___closed__7; lean_object* lean_io_get_num_heartbeats(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_rwMatcher_spec__7___boxed(lean_object*, lean_object*, lean_object*); @@ -499,9 +502,10 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_PersistentArra LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__16___redArg___lam__0___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_Tactic_FunInd_deriveInductionStructural_doRealize___closed__2; LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__5_spec__5_spec__5_spec__5_spec__6___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Tactic_FunInd_refinedArguments_go_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__23_spec__23_spec__23(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3_spec__3___closed__9; LEAN_EXPORT lean_object* l_Array_zipWithMAux___at___Array_zipWithMAux___at___Lean_Elab_Structural_Positions_mapMwith___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23_spec__25_spec__25___redArg(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_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__9___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -512,9 +516,10 @@ LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_cleanPackedArgs(lean_object*, lean LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_PersistentArray_forInAux___at___Lean_PersistentArray_forIn___at___Lean_Tactic_FunInd_cleanupAfter_allHeqToEq_spec__0_spec__0_spec__1_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__19___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_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__19___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_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__10___closed__12; lean_object* l_Lean_instInhabitedPersistentArrayNode(lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Tactic_FunInd_buildInductionBody_spec__1___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_maskArray_spec__0___redArg(lean_object*, size_t, size_t, lean_object*); @@ -531,13 +536,14 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_ LEAN_EXPORT lean_object* l_Lean_Meta_withErasedFVars___at___Lean_Tactic_FunInd_buildInductionCase_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_InductiveVal_numTypeFormers(lean_object*); lean_object* l_Lean_Exception_toMessageData(lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___closed__3; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__13___boxed(lean_object**); static lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__4___closed__2; static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__3___closed__0; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Tactic_FunInd_rwMatcher_spec__12(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_rwMData___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__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*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32_spec__32_spec__32___closed__1; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__10(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Structural_instInhabitedRecArgInfo; @@ -553,7 +559,6 @@ static lean_object* l_Lean_Tactic_FunInd_zipMaskedArray___redArg___closed__1; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveCases___lam__11(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_PersistentArray_forIn___at___Lean_Tactic_FunInd_cleanupAfter_allHeqToEq_spec__0_spec__4___boxed(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_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__0_spec__0___closed__0; -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_byte_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25___lam__7___boxed(lean_object**); @@ -563,11 +568,11 @@ lean_object* l_Lean_CollectLevelParams_main(lean_object*, lean_object*); lean_object* l_Array_back_x21___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__6_spec__6_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Level_ofNat(lean_object*); -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_appArg_x21(lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Tactic_FunInd_refinedArguments_spec__2___redArg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_PersistentArray_forInAux___at___Lean_PersistentArray_forIn___at___Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f_spec__1_spec__1_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_ofFn___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__30_spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_contains___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__28(lean_object*, lean_object*); lean_object* l_ReaderT_instMonad___redArg(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_foldlMUnsafe_fold___at___Lean_Tactic_FunInd_rwMatcher_spec__12_spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -578,9 +583,9 @@ static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_f LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_PersistentArray_forInAux___at___Lean_PersistentArray_forIn___at___Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f_spec__1_spec__1_spec__2_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Structural_Positions_mapMwith___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23___redArg___closed__0; LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__16___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___redArg___lam__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_PersistentArray_forIn___at___Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f_spec__1_spec__5_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_WF_eqnInfoExt; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveInduction___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -591,23 +596,28 @@ LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitForall___at__ LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__5___closed__3; static lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___redArg___lam__3___closed__1; +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_maskArray(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveCases___lam__10___closed__2; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__1(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_unpackMutualInduction_doRealize_spec__0_spec__0___closed__7; -LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__28_spec__28___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_Tactic_FunInd_isFunInductName___closed__1; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_unpackMutualInduction(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Tactic_FunInd_rwMatcher_spec__0_spec__0(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg(uint8_t, 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*); +LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__23___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9___redArg___lam__0(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_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__16(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__1___closed__0; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Meta_withErasedFVars___at___Lean_Tactic_FunInd_buildInductionCase_spec__3_spec__6(lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__32_spec__32___redArg___lam__2___closed__2; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___lam__0___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*); static lean_object* l_Lean_Tactic_FunInd_deriveInduction___lam__2___closed__1; +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__32_spec__32___redArg___lam__2___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__6_spec__6_spec__6___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_rwMatcher_spec__10_spec__10___closed__2; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -615,11 +625,14 @@ uint8_t l_Lean_Expr_hasMVar(lean_object*); lean_object* l_Lean_Elab_Structural_IndGroupInst_brecOn(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__5_spec__5_spec__5_spec__5_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isSemiOutParam(lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32_spec__32_spec__32___lam__0___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__15(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTR_loop___at___Lean_mkConstWithLevelParams___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__8_spec__9(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_cleanPackedArgs___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26(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_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Tactic_FunInd_foldAndCollect_spec__17___redArg___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*); static lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__16___closed__1; static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_unpackMutualInduction_doRealize_spec__0_spec__0___closed__8; @@ -660,13 +673,12 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_ static lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__15; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingImp(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(lean_object*); extern lean_object* l_Lean_Elab_Structural_eqnInfoExt; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__6___closed__0; +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32___redArg___lam__0___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_EXPORT lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); -LEAN_EXPORT lean_object* l_panic___at___Lean_Tactic_FunInd_buildInductionBody_spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_refinedArguments_go_spec__4_spec__4___closed__12; static lean_object* l_Lean_Tactic_FunInd_isFunInductName___closed__2; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__6_spec__6_spec__6_spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -675,9 +687,7 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_ LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Tactic_FunInd_setNaryFunIndInfo_spec__2___boxed(lean_object**); LEAN_EXPORT lean_object* l_Array_contains___at___Lean_Tactic_FunInd_deduplicateIHs_spec__0___boxed(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Tactic_FunInd_isFunInductName(lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__31___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___closed__9; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_zipMaskedArray___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_M_localMapM___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -686,12 +696,13 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withErasedFVars___at___Lean_Tactic_FunInd_d static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3_spec__3___closed__6; static lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__4; static lean_object* l_Lean_Tactic_FunInd_inProdLambdaLastArg___closed__0; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__23(uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_rwFun_spec__1_spec__1___closed__3; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Meta_withErasedFVars___at___Lean_Tactic_FunInd_buildInductionCase_spec__3_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getNumHeadForalls(lean_object*); LEAN_EXPORT lean_object* l_Array_zipWithMAux___at___Lean_Elab_Structural_Positions_mapMwith___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23_spec__25___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_refinedArguments_go_spec__4_spec__4___closed__6; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__8___boxed(lean_object**); +static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__9___boxed__const__1; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveCases___lam__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_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__31___redArg(uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0___closed__4; @@ -706,6 +717,7 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsa lean_object* l_Lean_Meta_getFunInductName(lean_object*, uint8_t); static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__6___closed__0; LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__7___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitLambda___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__6(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__44(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___closed__4; @@ -717,7 +729,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at__ lean_object* l_Lean_Meta_Simp_Result_mkEqMPR(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_foldAndCollect_spec__21___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__10___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__20___closed__6; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__21___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*); @@ -728,8 +739,10 @@ static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___l static lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__16___closed__2; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__27___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_EXPORT lean_object* l_Lean_Tactic_FunInd_M_branch___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__4___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___Lean_getConstInfoDefn___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__2(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__8(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -751,7 +764,6 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_PersistentArra LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_transformWithCache_visit_visitLambda___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__6_spec__6(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__15; static lean_object* l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__2; -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__13; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__41___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Core_withIncRecDepth___at___Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__5_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -775,8 +787,9 @@ static lean_object* l_Lean_Tactic_FunInd_unpackMutualInduction_doRealize___close static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__6___closed__2; LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___Array_contains___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__14_spec__14(lean_object*, lean_object*, size_t, size_t); static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__5; +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32___redArg___lam__0(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_EXPORT lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17_spec__18_spec__18___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__5_spec__5___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___Array_contains___at___Lean_Meta_withErasedFVars___at___Lean_Tactic_FunInd_buildInductionCase_spec__3_spec__3_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -799,10 +812,12 @@ LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at___Lean_Tactic_ uint8_t l_Lean_Expr_isEq(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_getConstInfoDefn___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Tactic_FunInd_refinedArguments_go_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveCases___lam__8(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17_spec__18_spec__18___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveCases___lam__3___closed__1; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22(uint8_t, lean_object*, uint8_t, 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*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_setNaryFunIndInfo___closed__4; lean_object* l_Lean_Elab_Structural_Positions_numIndices(lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__10___closed__9; @@ -819,7 +834,6 @@ lean_object* l_Lean_Meta_kabstract(lean_object*, lean_object*, lean_object*, lea LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__11(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0___lam__2(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_observing_x3f___at___Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitLet___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__9___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkHEqRefl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkConstWithLevelParams___at___Lean_Tactic_FunInd_deriveCases_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -854,7 +868,6 @@ static lean_object* l_Lean_Tactic_FunInd_unpackMutualInduction_doRealize___close LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__18; LEAN_EXPORT lean_object* l_Lean_Meta_withErasedFVars___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__36___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__14(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_getConstInfoDefn___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0___closed__2; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveCases_spec__4_spec__4(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -867,12 +880,11 @@ LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_Fun LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__32_spec__32___boxed(lean_object**); static lean_object* l_Array_mapFinIdxM_map___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__5___redArg___closed__2; LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__5_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Tactic_FunInd_rwMatcher_spec__0_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_getConstInfoDefn___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Tactic_FunInd_withLetDecls_go_spec__0___redArg___boxed(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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3_spec__3___closed__5; -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__3___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitForall___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_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_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Tactic_FunInd_deriveCases_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofFormat(lean_object*); @@ -886,7 +898,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Tactic_FunInd_fo LEAN_EXPORT lean_object* l_Lean_observing_x3f___at___Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_unpackMutualInduction_doRealize___lam__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*, lean_object*); lean_object* l_Lean_Meta_Match_MatcherInfo_numAlts(lean_object*); -static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__9___boxed__const__1; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveInduction___lam__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_Id_instMonad___lam__2___boxed(lean_object*, lean_object*); static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Core_withIncRecDepth___at___Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__5_spec__5___redArg___closed__3; @@ -916,7 +927,6 @@ LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealiz static lean_object* l_Array_mapFinIdxM_map___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__5___redArg___closed__0; static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__0_spec__0___closed__3; static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__4___closed__8; -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19_spec__19___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_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_rwMatcher_spec__14_spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_assertIHs_spec__0(lean_object*, uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__22; @@ -931,15 +941,15 @@ static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__6; double lean_float_of_nat(lean_object*); static lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2___closed__0; static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__10; +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32_spec__32_spec__32___lam__0___closed__4; lean_object* l_instInhabitedOfMonad___redArg(lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_buildInductionCase___lam__0___closed__0; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__6_spec__6_spec__6_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_LocalContext_foldlM___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__0_spec__0_spec__0_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__19(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__19(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17_spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25___lam__0___closed__0; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_contains___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__14___boxed(lean_object*, lean_object*); @@ -961,15 +971,14 @@ static lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__2___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__36___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___Lean_Tactic_FunInd_rwMatcher_spec__0___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27(uint8_t, lean_object*, uint8_t, 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*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_withLetDecls_go___redArg___lam__0(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_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__25(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_st_mk_ref(lean_object*, lean_object*); lean_object* l_Lean_MVarId_tryClearMany_x27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__3___boxed(lean_object**); uint8_t lean_is_no_confusion(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__19(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21___redArg(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__12_spec__12___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_to_list(lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_refinedArguments_go_spec__4_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -982,18 +991,15 @@ static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__13; uint8_t l_Lean_MessageData_hasTag(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Core_withIncRecDepth___at___Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__5_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__3; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_unpackMutualInduction_doRealize___lam__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*); uint8_t l_Lean_Expr_hasLooseBVars(lean_object*); -LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__28_spec__28(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_is_out_param(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_getConstInfoDefn___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__3; lean_object* l_ST_Prim_mkRef___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__3___boxed(lean_object**); static lean_object* l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__1; static lean_object* l_Lean_Tactic_FunInd_mkLambdaFVarsMasked___closed__0; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_withLetDecls_go___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1001,8 +1007,8 @@ LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveCases___lam__2(lean_object*, LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_unpackMutualInduction_doRealize_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Tactic_FunInd_rwMatcher_spec__0_spec__0_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_ofSubarray___redArg(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_rwMatcher_spec__10_spec__10___closed__3; static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__10___closed__1; @@ -1010,6 +1016,7 @@ LEAN_EXPORT uint8_t l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_lo static lean_object* l_Lean_Tactic_FunInd_isFunInductName___closed__3; static size_t l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Tactic_FunInd_rwMatcher_spec__0_spec__0_spec__0___redArg___closed__0; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34_spec__34___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26___redArg___lam__0(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_StateT_instMonad___redArg___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_unpackMutualInduction___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveInduction___lam__2___closed__2; @@ -1018,10 +1025,11 @@ LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_withTraceNode___ LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Tactic_FunInd_rwMatcher_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withErasedFVars___at___Lean_Tactic_FunInd_buildInductionCase_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__23_spec__23(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; LEAN_EXPORT lean_object* l_panic___at___Lean_Tactic_FunInd_foldAndCollect_spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31___redArg(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_Tactic_FunInd_foldAndCollect___lam__17___closed__1; static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__8; LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at___Lean_Tactic_FunInd_buildInductionCase_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1042,33 +1050,31 @@ LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Tactic_FunInd_d extern lean_object* l_Lean_instInhabitedExpr; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__15(size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_withLetDecls_go(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_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34_spec__34___lam__2___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_M_exec(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___closed__0; static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25___lam__1___closed__0; -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9___redArg___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*); static lean_object* l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__7; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deduplicateIHs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__17(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__16___closed__0; -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_isEqvAux___at___Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint64_t l_Lean_Expr_hash(lean_object*); static lean_object* l_Lean_Tactic_FunInd_setNaryFunIndInfo___closed__5; +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34_spec__34___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Meta_withIncRecDepth___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__11_spec__11___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_mapMUnsafe_map___at___Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__8_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_refinedArguments___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveCases___closed__0; +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentArray_push___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_PersistentArray_forInAux___at___Lean_PersistentArray_forIn___at___Lean_Tactic_FunInd_cleanupAfter_allHeqToEq_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_PersistentArray_forInAux___at___Lean_PersistentArray_forIn___at___Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f_spec__1_spec__1_spec__1(lean_object*, lean_object*, lean_object*, 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*); @@ -1091,18 +1097,20 @@ LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInd LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_zipMaskedArray_spec__0___redArg(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__17___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_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__2(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6___boxed(lean_object**); static lean_object* l_Array_mapFinIdxM_map___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__5___redArg___closed__3; +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; lean_object* l_Lean_Expr_letE___override(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); static lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__4___closed__5; static lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__7; -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3_spec__3___lam__0___closed__0; lean_object* l_Lean_Meta_mapErrorImp___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Structural_Positions_mapMwith___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23_spec__23___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Tactic_FunInd_refinedArguments_go_spec__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__5_spec__5_spec__5_spec__5_spec__6___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___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; lean_object* l_Lean_Meta_mkLetFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2___lam__1(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1113,7 +1121,6 @@ static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_lo LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Tactic_FunInd_foldAndCollect_spec__16___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__8(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19_spec__19(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_refinedArguments___closed__1; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_contains___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__14(lean_object*, lean_object*); @@ -1123,6 +1130,7 @@ static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_lo lean_object* l_Lean_PersistentArray_append___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at___Lean_Meta_withErasedFVars___at___Lean_Tactic_FunInd_buildInductionCase_spec__3_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__0___boxed(lean_object**); LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__16___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__8___redArg(lean_object*); lean_object* l_Lean_Meta_ArgsPacker_curry(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1139,14 +1147,14 @@ extern lean_object* l_Lean_warningAsError; LEAN_EXPORT lean_object* l_Array_zipWithMAux___at___Lean_Elab_Structural_Positions_mapMwith___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23_spec__25___redArg___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_StateT_instMonad___redArg___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_expr_equal(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__15___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Tactic_FunInd_rwMatcher_spec__0_spec__0_spec__0(lean_object*, lean_object*, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__26(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_LocalContext_foldlM___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__0(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_getConstInfoDefn___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__4; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__9___boxed(lean_object**); lean_object* l_Lean_Meta_Match_genMatchCongrEqns(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__18___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_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0___lam__1___closed__0; static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___boxed__const__1; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1165,6 +1173,7 @@ LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Core_ LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3_spec__4_spec__4_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_PProdN_packLambdas(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkNot(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__18(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3_spec__4___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__0(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34_spec__34___lam__3___boxed(lean_object**); @@ -1187,6 +1196,7 @@ LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___Lean_C LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___Lean_Tactic_FunInd_cleanupAfter_allHeqToEq_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_StateT_bind(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__26(uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__2; @@ -1197,10 +1207,8 @@ LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at__ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations___lam__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__12_spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveInduction___lam__2___closed__3; -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25___lam__9(lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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*, lean_object*); -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__13___closed__2; static lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__12; @@ -1209,19 +1217,20 @@ LEAN_EXPORT lean_object* l_Array_idxOf_x3f___at___Lean_Tactic_FunInd_deriveInduc LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveCases___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Match_forallAltVarsTelescope___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; lean_object* l_Lean_Expr_appFn_x21(lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__30_spec__30(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__32_spec__32___redArg___lam__2___closed__9; static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__19; -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Tactic_FunInd_buildInductionBody_spec__1___redArg___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___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Meta_transformWithCache_visit_visitLet___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__9_spec__9___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_EXPORT lean_object* l_Lean_MVarId_withContext___at___Lean_Tactic_FunInd_cleanupAfter_allHeqToEq_spec__7___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__38(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_refinedArguments_go_spec__4_spec__4___closed__2; -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__28_spec__28_spec__28(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_____private_Lean_Util_Trace_0__Lean_addTraceNode___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__42_spec__42___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___Lean_Tactic_FunInd_rwMatcher_spec__14___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1237,18 +1246,16 @@ LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_refinedArguments_go(lean_object*, LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___Lean_Tactic_FunInd_foldAndCollect_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__2___redArg(lean_object*, lean_object*); lean_object* l_Lean_MVarId_assert(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31___redArg___lam__0(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_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__3(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand_go___at___Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__8_spec__8___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Tactic_FunInd_buildInductionCase_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___Lean_PersistentHashMap_insert___at___Lean_MVarId_assign___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__6_spec__6_spec__6___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__0___boxed(lean_object**); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__4___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at___Lean_Tactic_FunInd_rwMatcher_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerReservedNamePredicate(lean_object*, lean_object*); static lean_object* l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitLambda___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__6___lam__0___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_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__3(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFalseElim(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__11___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6___closed__2; @@ -1260,10 +1267,12 @@ LEAN_EXPORT lean_object* l_Array_zipWithMAux___at___Array_zipWithMAux___at___Lea LEAN_EXPORT lean_object* l_panic___at___Lean_Tactic_FunInd_foldAndCollect_spec__23(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withErasedFVars___at___Lean_Tactic_FunInd_buildInductionCase_spec__3___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___closed__6; -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__26___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__10___boxed(lean_object**); LEAN_EXPORT lean_object* l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__5_spec__5_spec__5_spec__5___redArg___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___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; static lean_object* l_Lean_Tactic_FunInd_abstractIndependentMVars___closed__2; static lean_object* l_Lean_getConstInfoRec___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__3___closed__0; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__8(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1282,11 +1291,11 @@ LEAN_EXPORT lean_object* l_Lean_LocalContext_foldlM___at___Lean_Tactic_FunInd_ab lean_object* l_Lean_Meta_realizeConst(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Environment_contains(lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__25___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__4___closed__0; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__22(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__38___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofExpr(lean_object*); @@ -1315,17 +1324,20 @@ static lean_object* l_Lean_Tactic_FunInd_rwMatcher___closed__3; LEAN_EXPORT uint8_t l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__32_spec__32___redArg___lam__0(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__7(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Tactic_FunInd_foldAndCollect_spec__16___redArg___boxed(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_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6___closed__3; lean_object* l_Lean_Meta_getFunCasesName(lean_object*, uint8_t); static lean_object* l_Lean_Tactic_FunInd_foldAndCollect___closed__2; static lean_object* l_Lean_getConstInfoDefn___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0___closed__3; +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_rwFun_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6___closed__5; lean_object* l_Lean_Expr_eta(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__20___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__4(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__30_spec__30(lean_object*, size_t, size_t, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_assertIHs_spec__0___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__19; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_projectMutualInduct_spec__0(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1342,14 +1354,13 @@ LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_withTraceNode___ uint8_t l_Lean_Expr_isAutoParam(lean_object*); lean_object* lean_name_append_index_after(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3_spec__4___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__14___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__30___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___Lean_PersistentArray_forIn___at___Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f_spec__1_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__1___closed__3; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Tactic_FunInd_rwMatcher_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__31___redArg___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___Array_contains___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__28_spec__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_PreDefinition_FixedParams_0__Lean_Elab_FixedParamPerm_forallTelescopeImpl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isFVarOf(lean_object*, lean_object*); @@ -1357,11 +1368,9 @@ static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Le LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_transformWithCache_visit_visitLambda___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__6_spec__6___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___Std_DHashMap_Internal_Raw_u2080_expand_go___at___Std_DHashMap_Internal_Raw_u2080_expand___at___Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__8_spec__8_spec__8(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__23___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*); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; lean_object* l_Lean_mkArrow___redArg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveCases___lam__3___closed__0; -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; lean_object* l_Lean_Meta_MatcherApp_inferMatchType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_rwFun_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); @@ -1371,7 +1380,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_matchMa LEAN_EXPORT lean_object* l_Lean_getConstVal___at___Lean_mkConstWithLevelParams___at___Lean_Tactic_FunInd_deriveCases_spec__2_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__4___closed__6; LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__5_spec__5_spec__5_spec__5(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___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__1___closed__0; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionCase___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1385,7 +1393,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunI LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveInduction(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_abstractIndependentMVars___boxed__const__1; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__22___boxed(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___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_withRewrittenMotiveArg(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_heqToEq(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__4___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1393,9 +1401,9 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_ LEAN_EXPORT lean_object* l_panic___at___Lean_Tactic_FunInd_buildInductionBody_spec__3(lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__10___closed__6; static lean_object* l_Lean_Tactic_FunInd_deduplicateIHs___closed__0; -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__15(uint8_t, 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_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32_spec__32_spec__32___lam__0___closed__2; +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_maskArray___redArg___boxed(lean_object*, lean_object*); uint8_t l_Lean_Name_hasMacroScopes(lean_object*); @@ -1414,23 +1422,22 @@ lean_object* l_Lean_Expr_letValue_x21(lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__14; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_LocalContext_foldlM___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__0_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_foldAndCollect___closed__0; -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__2(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__6___closed__3; static lean_object* l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2___boxed__const__1; static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__23; -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___boxed(lean_object**); static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__0; static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32_spec__32_spec__32___lam__0___closed__0; lean_object* l_Id_instMonad___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_appFnCleanup___redArg(lean_object*); static lean_object* l_Lean_Tactic_FunInd_buildInductionCase___lam__2___closed__1; static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__10___closed__3; -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__26___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__27(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_finIdxOf_x3f___at___Array_idxOf_x3f___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__18_spec__18(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Tactic_FunInd_foldAndCollect_spec__20___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__21_spec__21___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*); static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___closed__6; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__15___redArg(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveInduction___lam__2___closed__0; lean_object* l_Lean_Meta_Simp_Result_addLambdas(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_M2_branch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1442,18 +1449,17 @@ LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownC static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__4___closed__2; lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2___lam__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_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__25___boxed(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_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__2___closed__3; LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Meta_transformWithCache_visit_visitLet___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__9_spec__9___redArg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__20___closed__2; LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_rwFun(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__17___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_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_PersistentArray_forInAux___at___Lean_PersistentArray_forIn___at___Lean_Tactic_FunInd_cleanupAfter_allHeqToEq_spec__0_spec__0_spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__23(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_mkLambdaFVarsMasked(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__21_spec__21___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25___lam__2___boxed(lean_object**); static lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__14; static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_unpackMutualInduction_doRealize_spec__0_spec__0___closed__9; @@ -1464,7 +1470,8 @@ static lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__ LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitForall___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__8___lam__0___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*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___Lean_getConstInfoDefn___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__0___closed__0; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__25___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1484,6 +1491,7 @@ LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Tactic_FunInd_derive LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at___Lean_Tactic_FunInd_rwMatcher_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_getConstInfoDefn___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__12_spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__15(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__22(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isProj(lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1493,11 +1501,10 @@ LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnkn LEAN_EXPORT lean_object* l_Lean_mkConstWithLevelParams___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_M_exec___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Tactic_FunInd_refinedArguments_go_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_unpackMutualInduction_doRealize___lam__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3_spec__3___closed__8; static lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__8; LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Tactic_FunInd_buildInductionBody_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1512,10 +1519,12 @@ LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_ LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Tactic_FunInd_rwMatcher_spec__5___redArg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); uint8_t l_Lean_Meta_isMatcherAppCore(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26___redArg(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_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_refinedArguments_go_spec__4_spec__4___closed__11; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___boxed(lean_object**); static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__11; LEAN_EXPORT lean_object* l_Lean_Elab_Structural_Positions_mapMwith___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; lean_object* l_Lean_PersistentArray_toArray___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Tactic_FunInd_rwMatcher_spec__0_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEqRefl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1523,7 +1532,6 @@ static lean_object* l_Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Ta LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__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_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___closed__5; -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; lean_object* l_Lean_indentExpr(lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___closed__2; uint8_t l_Lean_Expr_isHEq(lean_object*); @@ -1537,13 +1545,14 @@ static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Le static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_rwFun_spec__1_spec__1___closed__1; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__17(size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Structural_Positions_mapMwith___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23_spec__23___redArg(lean_object*, lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32_spec__32(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__2___closed__2; LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__38___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Tactic_FunInd_withLetDecls_go_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__15; -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__8___boxed(lean_object**); lean_object* l_Lean_Meta_unfoldDefinition_x3f(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitLet___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__9(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveCases___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1554,7 +1563,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Tactic_FunIn LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__5_spec__5_spec__5_spec__5___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__24___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__6___boxed(lean_object**); uint8_t l_Lean_Environment_isSafeDefinition(lean_object*, lean_object*); lean_object* l_Lean_Meta_matchConstructorApp_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1567,6 +1575,7 @@ lean_object* l_Lean_Meta_mkForallFVars(lean_object*, lean_object*, uint8_t, uint uint8_t l_Lean_isBRecOnRecursor(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitForall___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__8___lam__0(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_local_ctx_erase(lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit_visitLet___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__9___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_EXPORT lean_object* l_Lean_Tactic_FunInd_withLetDecls(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); @@ -1582,14 +1591,13 @@ LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___Array_contains___at___Lean_Tac LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__15___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_instInhabitedMetaM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveCases___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Substring_prevn(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_setNaryFunIndInfo(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsDND___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__32_spec__32___redArg___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_MatcherApp_toExpr(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__4___boxed(lean_object**); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__38(lean_object*, size_t, size_t); static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__10___closed__0; static lean_object* l_Lean_Tactic_FunInd_setNaryFunIndInfo___closed__10; @@ -1599,15 +1607,16 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Structural_P LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Tactic_FunInd_refinedArguments_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_toSubarray___redArg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3_spec__3___closed__0; +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3_spec__4_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__26___redArg___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_saveState___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_isFunCasesName___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__16(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_PersistentArray_forInAux___at___Lean_PersistentArray_forIn___at___Lean_Tactic_FunInd_cleanupAfter_allHeqToEq_spec__0_spec__0_spec__1_spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_abstractIndependentMVars___lam__1(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__3___boxed(lean_object**); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_refinedArguments_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveCases___lam__10(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at___Lean_Tactic_FunInd_buildInductionCase_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1619,15 +1628,15 @@ LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___ lean_object* l_List_reverse___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Tactic_FunInd_foldAndCollect_spec__17___redArg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__4___closed__1; -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__3(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__1(lean_object*, lean_object*, lean_object*, uint8_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_M_localM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_unpackMutualInduction_doRealize___lam__4___closed__0; lean_object* lean_get_match_equations_for(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Structural_Positions_mapMwith___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23(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_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__26___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___Lean_Tactic_FunInd_rwMatcher_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0___closed__0; @@ -1639,6 +1648,7 @@ static lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_asser lean_object* l_Array_append___redArg(lean_object*, lean_object*); uint8_t l_instDecidableNot___redArg(uint8_t); LEAN_EXPORT lean_object* l_Lean_Elab_Structural_Positions_mapMwith___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23___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___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; LEAN_EXPORT lean_object* l_Lean_Meta_isMatcherApp___at___Lean_Tactic_FunInd_rwMatcher_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__6___closed__1; lean_object* l_Lean_Meta_Simp_mkCongr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1655,12 +1665,10 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls_loop___at___Lean_Meta_withLo LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveCases___lam__5(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_____private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_LocalContext_foldlM___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; static lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41___redArg___closed__1; static lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3_spec__3___closed__14; uint64_t lean_uint64_shift_left(uint64_t, uint64_t); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at___Lean_Tactic_FunInd_buildInductionCase_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19___redArg___lam__0(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_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Tactic_FunInd_buildInductionBody_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__1; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1668,7 +1676,6 @@ static lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lea static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__18; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_unpackMutualInduction_doRealize___closed__2; -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg(uint8_t, 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*); LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_getConstInfoDefn___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_findIdx_x3f_loop___redArg(lean_object*, lean_object*, lean_object*); @@ -1678,17 +1685,14 @@ LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___Lean_withTraceNode___at__ static lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__1___closed__0; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_maskArray_spec__0(lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* l_Nat_nextPowerOfTwo(lean_object*); -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___boxed(lean_object**); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34_spec__34___lam__2___closed__1; LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Tactic_FunInd_foldAndCollect_spec__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25___lam__7___closed__1; LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___Lean_Tactic_FunInd_rwMatcher_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__19___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*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsDND___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__16___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19___redArg___lam__0___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_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31___redArg___lam__0___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_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21___redArg___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_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___Lean_PersistentArray_forIn___at___Lean_Tactic_FunInd_cleanupAfter_allHeqToEq_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1705,14 +1709,11 @@ LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at__ static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Core_withIncRecDepth___at___Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__5_spec__5___redArg___closed__1; LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__11___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsDND___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__0(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Meta_withLocalDeclD___at___Lean_Tactic_FunInd_foldAndCollect_spec__0_spec__0___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Id_instMonad___lam__6(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__6___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__2___closed__0; LEAN_EXPORT lean_object* l_List_mapTR_loop___at___Lean_Tactic_FunInd_deriveCases_spec__6(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__30___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1720,7 +1721,7 @@ LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___Lean_Tactic_FunInd_rwMatche LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__9___redArg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_deriveCases_spec__0___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_expr_instantiate_rev(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__5___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_foldAndCollect_spec__21___redArg___lam__1___boxed(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_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3_spec__3___closed__2; @@ -1734,7 +1735,6 @@ static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___c static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__16; LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_refinedArguments_go_spec__4_spec__4___lam__4(lean_object*, lean_object*); size_t lean_usize_sub(size_t, size_t); -LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_mk(lean_object*); static lean_object* l_Lean_Elab_Structural_Positions_mapMwith___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23___redArg___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_withErasedFVars___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__36___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1744,7 +1744,6 @@ LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___l LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__5_spec__5_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__21(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__16; static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Core_withIncRecDepth___at___Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__5_spec__5___redArg___closed__5; @@ -1764,6 +1763,7 @@ LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at__ static lean_object* l_Lean_Tactic_FunInd_abstractIndependentMVars___closed__5; LEAN_EXPORT lean_object* l_Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_PProdN_stripProjs(lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__13(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Tactic_FunInd_rwMatcher_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___Lean_Tactic_FunInd_rwMatcher_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); @@ -1771,7 +1771,6 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___L uint8_t l_Substring_beq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_withIncRecDepth___at___Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__32_spec__32___redArg___lam__2___closed__4; lean_object* l_Lean_Level_param___override(lean_object*); size_t lean_usize_add(size_t, size_t); @@ -1784,7 +1783,6 @@ lean_object* l_mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_abstractIndependentMVars___lam__0___boxed(lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_projectMutualInduct_spec__0_spec__0___redArg___lam__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6___closed__10; -LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___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_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_PersistentArray_forIn___at___Lean_Tactic_FunInd_cleanupAfter_allHeqToEq_spec__0_spec__4_spec__4___boxed(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_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25___lam__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecls___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17_spec__18___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1796,7 +1794,6 @@ static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_f lean_object* l_Lean_Meta_mkEqOfHEq(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___closed__15; static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Core_withIncRecDepth___at___Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__5_spec__5___redArg___closed__2; -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Tactic_FunInd_buildInductionBody_spec__2___redArg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Tactic_FunInd_setNaryFunIndInfo_spec__2_spec__2___boxed(lean_object**); @@ -1809,7 +1806,7 @@ static double l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uget(lean_object*, size_t); static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__14; -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__16(lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__23_spec__23___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_getConstInfoDefn___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_fvar___override(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at___Lean_PersistentArray_foldlM___at___Lean_LocalContext_foldlM___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__0_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -1819,7 +1816,6 @@ LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at__ LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedDefinitionVal; static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___closed__1; -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19_spec__19___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__12___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_unpackMutualInduction_doRealize___lam__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*); extern lean_object* l_Lean_trace_profiler; @@ -1832,7 +1828,9 @@ static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___closed static lean_object* l_Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0___closed__1; static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Core_withIncRecDepth___at___Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__5_spec__5___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Tactic_FunInd_refinedArguments_spec__2_spec__2(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*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__2___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Option_get___at___Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32_spec__32_spec__32_spec__32___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1840,7 +1838,7 @@ lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FVarId_getType___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__0_spec__0___closed__2; static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34_spec__34___lam__3___closed__0; -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMutualInductName(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Tactic_FunInd_refinedArguments_go_spec__0___redArg___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_Name_mkStr1(lean_object*); @@ -1848,7 +1846,7 @@ LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_unpackMutualInduction_doRealize___ size_t lean_usize_shift_left(size_t, size_t); static lean_object* l_Lean_Elab_Structural_Positions_mapMwith___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23___redArg___closed__4; LEAN_EXPORT uint8_t l_Lean_Option_get___at___Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32_spec__32_spec__32_spec__32(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__9___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__2___boxed(lean_object**); lean_object* l_Lean_Expr_bindingBody_x21(lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__8; static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34_spec__34___lam__3___closed__1; @@ -1880,14 +1878,13 @@ static lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___redArg___lam__3___cl LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34___redArg___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___Lean_Tactic_FunInd_cleanupAfter_allHeqToEq_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_instDecidableEqNat___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__3___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveCases(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_throwMaxRecDepthAt___at___Lean_Core_withIncRecDepth___at___Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__5_spec__5___redArg___closed__6; -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__24___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_Tactic_FunInd_buildInductionBody_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_unpackMutualInduction_doRealize_spec__0_spec__0___lam__0(lean_object*, lean_object*); static lean_object* l_Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0___closed__3; -LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__28(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__7___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsDND___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__16(size_t, size_t, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); @@ -1900,9 +1897,9 @@ static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__17; LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__11___redArg___boxed(lean_object*, lean_object*, lean_object*); uint64_t l_Lean_hashMVarId____x40_Lean_Expr___hyg_1869_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_M_localM___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Option_get___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__45(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_withLocalDeclsD___at___Lean_Meta_withLocalDeclsDND___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__16_spec__17_spec__17(size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__30___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveCases___lam__1___closed__1; static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__5; @@ -1920,9 +1917,9 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_ LEAN_EXPORT lean_object* l_panic___at___Lean_Tactic_FunInd_setNaryFunIndInfo_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_foldAndCollect_spec__24(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_unpackMutualInduction_doRealize_spec__0_spec__0___lam__0___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___at___Lean_Tactic_FunInd_buildInductionCase_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isMData(lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_projectMutualInduct_spec__0_spec__0___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveCases___lam__11___closed__4; @@ -1930,6 +1927,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Meta_transformWithC LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___Array_contains___at___Lean_Meta_withErasedFVars___at___Lean_Tactic_FunInd_buildInductionCase_spec__3_spec__3_spec__3(lean_object*, lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__32_spec__32___redArg___lam__0___boxed(lean_object*, lean_object*); lean_object* l_Id_instMonad___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__41___redArg___closed__0; LEAN_EXPORT lean_object* l_Lean_throwError___at___Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3_spec__4_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; @@ -1948,6 +1946,7 @@ LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_rwFun_ LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_projectMutualInduct(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_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*); static lean_object* l_Lean_Elab_Structural_Positions_mapMwith___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23___redArg___closed__3; +LEAN_EXPORT lean_object* l_panic___at___Lean_Tactic_FunInd_buildInductionBody_spec__29(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_rwMatcher_spec__7(size_t, size_t, lean_object*); uint8_t lean_usize_dec_lt(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25___lam__1(lean_object*, lean_object*, lean_object*, uint8_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1957,23 +1956,24 @@ static lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_f LEAN_EXPORT lean_object* l_Lean_PersistentArray_foldlM___at___Lean_LocalContext_foldlM___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_getConstInfoDefn___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0___closed__0; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_abstractIndependentMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Pi_instInhabited___redArg___lam__0(lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_withLetDecls___redArg___closed__0; static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_unpackMutualInduction_doRealize_spec__0_spec__0___closed__6; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Structural_Positions_mapMwith___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23_spec__23___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_M2_branch___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLambdaFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__3(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__10___closed__8; uint64_t l_Lean_Meta_TransparencyMode_toUInt64(uint8_t); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__10(lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__10___closed__2; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Meta_instantiateLambda(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__23(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_foldAndCollect_spec__21_spec__21(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__21___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_qsort_sort___at___Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_exceptEmoji___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_refinedArguments_go_spec__4_spec__4___lam__0(lean_object*, lean_object*); @@ -1986,7 +1986,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at static lean_object* l_Lean_Tactic_FunInd_unpackMutualInduction_doRealize___lam__4___closed__1; static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__5___closed__1; LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withIncRecDepth___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__40(lean_object*, size_t, size_t, lean_object*); uint8_t l_Lean_Expr_isConst(lean_object*); @@ -2006,10 +2005,9 @@ LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveInduction___boxed(lean_objec lean_object* l_Lean_mkApp5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_cleanupAfter_go(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___closed__1; -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_unpackMutualInduction_doRealize_spec__0_spec__0___closed__5; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__19(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveCases___lam__3___closed__2; -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__28_spec__28_spec__28___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_Expr_mdataExpr_x21(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___Lean_Tactic_FunInd_foldAndCollect_spec__16(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_unpackMutualInduction_doRealize___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2020,11 +2018,10 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_M_loca lean_object* l_Lean_Meta_mkPProdSndM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_maskArray___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at___Lean_Elab_Structural_Positions_mapMwith___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23_spec__24(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__5_spec__5_spec__5_spec__5_spec__5___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isFVar(lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_M_ask(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__18(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__16___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isForall(lean_object*); lean_object* l_Lean_Meta_instantiateForall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2033,33 +2030,36 @@ LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___Lean_Tactic_FunInd_foldAn lean_object* l_Lean_Expr_mvarId_x21(lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__0_spec__0___closed__7; LEAN_EXPORT lean_object* l_Nat_foldRevM_loop___at___Lean_Tactic_FunInd_foldAndCollect_spec__19___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__18___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_PersistentArray_forIn___at___Lean_Tactic_FunInd_cleanupAfter_cleanupAfter_x3f_spec__1_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_InductiveVal_numCtors(lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__11___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_M_localMapM___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__8___redArg(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_Tactic_FunInd_isFunCasesName___closed__0; -static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; static lean_object* l_Lean_Tactic_FunInd_setNaryFunIndInfo___closed__9; LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___Lean_Tactic_FunInd_rwMatcher_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__0; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_inProdLambdaLastArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__1(lean_object*, lean_object*, lean_object*, uint8_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_consumeMData(lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__12___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32_spec__32___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__32_spec__32___redArg___lam__2___closed__6; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__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_EXPORT lean_object* l_Array_zipWithMAux___at___Lean_Elab_Structural_Positions_mapMwith___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__23_spec__25___redArg(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_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__5_spec__5_spec__5_spec__5_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___Lean_PersistentHashMap_containsAux___at___Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Tactic_FunInd_rwMatcher_spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__20(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_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_refinedArguments_go_spec__4_spec__4___closed__10; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__21___redArg(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___redArg___lam__3___closed__2; lean_object* l_Array_zip___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withIncRecDepth___at___Lean_Meta_transformWithCache_visit___at___Lean_Meta_transform___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__2_spec__2_spec__11___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2069,10 +2069,10 @@ static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__0___closed__1; uint8_t l_Lean_isCasesOnRecursor(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___Lean_Tactic_FunInd_rwMatcher_spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__16(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0___closed__2; lean_object* l_Lean_Meta_instMonadMetaM___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_instantiate1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__17___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*); static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__9___closed__0; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__13(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32_spec__32(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2080,17 +2080,20 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Meta_transformWithC static lean_object* l_Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0___closed__5; static lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__11; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_projectMutualInduct_spec__0_spec__0___boxed(lean_object**); +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__6; LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_get_x21Internal___redArg(lean_object*, lean_object*, lean_object*); lean_object* l_Id_instMonad___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6___closed__14; +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; uint8_t l_Lean_beqBinderInfo____x40_Lean_Expr___hyg_413_(uint8_t, uint8_t); static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction_doRealize___lam__10___closed__5; static lean_object* l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__2; lean_object* lean_mk_empty_array_with_capacity(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__5_spec__5___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_buildInductionCase___lam__2___closed__0; +static lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__4___closed__5; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6(lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_hrefl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2101,21 +2104,19 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withErasedFVars___at___Lean_Tactic_FunInd_d LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32_spec__32_spec__32(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addDecl(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___Lean_Core_transform_visit___at___Lean_Core_transform___at_____private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_elimTypeAnnotations_spec__0_spec__0_spec__2(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageLog_add(lean_object*, lean_object*); lean_object* l_StateT_instMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_rwIfWith___closed__10; lean_object* l_Lean_Meta_matchEq_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveCases___lam__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19___redArg___lam__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*); size_t lean_usize_land(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_M_run___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_StateT_pure(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_M_ask___redArg(lean_object*, lean_object*); lean_object* l_Lean_Meta_setFunIndInfo(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__6___closed__4; static lean_object* l_Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3___redArg___closed__0; -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__2___boxed(lean_object**); lean_object* l_Lean_Meta_elimOptParam(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__0_spec__0___closed__12; LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___Lean_Tactic_FunInd_foldAndCollect_spec__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2124,6 +2125,7 @@ LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__20(lean_ static lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__0___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_getConstInfoDefn___at___Lean_Tactic_FunInd_deriveUnaryInduction_doRealize_spec__0_spec__0_spec__0_spec__0_spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___Lean_MVarId_isAssigned___at___Lean_Tactic_FunInd_rwMatcher_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at___Lean_Tactic_FunInd_mkLambdaFVarsMasked_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__2___boxed(lean_object**); @@ -2139,7 +2141,6 @@ static lean_object* l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_fo lean_object* l_Lean_Meta_substVar_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_ArgsPacker_curryParam___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcherApp___at___Lean_Tactic_FunInd_rwMatcher_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31(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_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: @@ -7992,7 +7993,7 @@ lean_object* x_13; x_13 = l_Lean_Expr_getAppFn(x_1); if (lean_obj_tag(x_13) == 4) { -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; uint8_t x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; 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; uint8_t x_131; lean_object* x_132; lean_object* x_133; 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; uint8_t x_153; lean_object* x_154; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; uint8_t x_177; lean_object* x_178; lean_object* x_179; +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; uint8_t x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_119; uint8_t 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_141; uint8_t 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_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; uint8_t x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; x_14 = lean_ctor_get(x_13, 0); lean_inc(x_14); x_15 = lean_ctor_get(x_13, 1); @@ -8166,19 +8167,19 @@ x_218 = lean_nat_dec_le(x_200, x_214); if (x_218 == 0) { lean_inc(x_214); -x_165 = x_202; +x_165 = x_213; x_166 = x_209; -x_167 = x_206; -x_168 = x_199; -x_169 = x_200; -x_170 = x_208; -x_171 = x_211; -x_172 = x_197; -x_173 = x_214; -x_174 = x_201; -x_175 = x_213; -x_176 = x_194; -x_177 = x_215; +x_167 = x_215; +x_168 = x_197; +x_169 = x_208; +x_170 = x_200; +x_171 = x_194; +x_172 = x_202; +x_173 = x_211; +x_174 = x_199; +x_175 = x_201; +x_176 = x_214; +x_177 = x_206; x_178 = x_217; x_179 = x_214; goto block_184; @@ -8186,19 +8187,19 @@ goto block_184; else { lean_inc(x_200); -x_165 = x_202; +x_165 = x_213; x_166 = x_209; -x_167 = x_206; -x_168 = x_199; -x_169 = x_200; -x_170 = x_208; -x_171 = x_211; -x_172 = x_197; -x_173 = x_214; -x_174 = x_201; -x_175 = x_213; -x_176 = x_194; -x_177 = x_215; +x_167 = x_215; +x_168 = x_197; +x_169 = x_208; +x_170 = x_200; +x_171 = x_194; +x_172 = x_202; +x_173 = x_211; +x_174 = x_199; +x_175 = x_201; +x_176 = x_214; +x_177 = x_206; x_178 = x_217; x_179 = x_200; goto block_184; @@ -8271,19 +8272,19 @@ x_240 = lean_nat_dec_le(x_221, x_235); if (x_240 == 0) { lean_inc(x_235); -x_165 = x_223; +x_165 = x_234; x_166 = x_230; -x_167 = x_227; -x_168 = x_220; -x_169 = x_221; -x_170 = x_229; -x_171 = x_232; -x_172 = x_219; -x_173 = x_235; -x_174 = x_222; -x_175 = x_234; -x_176 = x_194; -x_177 = x_236; +x_167 = x_236; +x_168 = x_219; +x_169 = x_229; +x_170 = x_221; +x_171 = x_194; +x_172 = x_223; +x_173 = x_232; +x_174 = x_220; +x_175 = x_222; +x_176 = x_235; +x_177 = x_227; x_178 = x_239; x_179 = x_235; goto block_184; @@ -8291,19 +8292,19 @@ goto block_184; else { lean_inc(x_221); -x_165 = x_223; +x_165 = x_234; x_166 = x_230; -x_167 = x_227; -x_168 = x_220; -x_169 = x_221; -x_170 = x_229; -x_171 = x_232; -x_172 = x_219; -x_173 = x_235; -x_174 = x_222; -x_175 = x_234; -x_176 = x_194; -x_177 = x_236; +x_167 = x_236; +x_168 = x_219; +x_169 = x_229; +x_170 = x_221; +x_171 = x_194; +x_172 = x_223; +x_173 = x_232; +x_174 = x_220; +x_175 = x_222; +x_176 = x_235; +x_177 = x_227; x_178 = x_239; x_179 = x_221; goto block_184; @@ -8393,19 +8394,19 @@ x_265 = lean_nat_dec_le(x_245, x_259); if (x_265 == 0) { lean_inc(x_259); -x_165 = x_247; +x_165 = x_258; x_166 = x_254; -x_167 = x_251; -x_168 = x_244; -x_169 = x_245; -x_170 = x_253; -x_171 = x_256; -x_172 = x_242; -x_173 = x_259; -x_174 = x_246; -x_175 = x_258; -x_176 = x_241; -x_177 = x_260; +x_167 = x_260; +x_168 = x_242; +x_169 = x_253; +x_170 = x_245; +x_171 = x_241; +x_172 = x_247; +x_173 = x_256; +x_174 = x_244; +x_175 = x_246; +x_176 = x_259; +x_177 = x_251; x_178 = x_264; x_179 = x_259; goto block_184; @@ -8413,19 +8414,19 @@ goto block_184; else { lean_inc(x_245); -x_165 = x_247; +x_165 = x_258; x_166 = x_254; -x_167 = x_251; -x_168 = x_244; -x_169 = x_245; -x_170 = x_253; -x_171 = x_256; -x_172 = x_242; -x_173 = x_259; -x_174 = x_246; -x_175 = x_258; -x_176 = x_241; -x_177 = x_260; +x_167 = x_260; +x_168 = x_242; +x_169 = x_253; +x_170 = x_245; +x_171 = x_241; +x_172 = x_247; +x_173 = x_256; +x_174 = x_244; +x_175 = x_246; +x_176 = x_259; +x_177 = x_251; x_178 = x_264; x_179 = x_245; goto block_184; @@ -8655,18 +8656,18 @@ lean_inc_ref(x_298); x_325 = l_Array_toSubarray___redArg(x_298, x_323, x_324); x_326 = l_Array_ofSubarray___redArg(x_325); lean_dec_ref(x_325); -x_327 = lean_nat_dec_le(x_321, x_308); +x_327 = lean_nat_dec_le(x_322, x_308); if (x_327 == 0) { -x_311 = x_322; +x_311 = x_321; x_312 = x_326; -x_313 = x_321; +x_313 = x_322; goto block_320; } else { -lean_dec(x_321); -x_311 = x_322; +lean_dec(x_322); +x_311 = x_321; x_312 = x_326; x_313 = x_308; goto block_320; @@ -8679,8 +8680,8 @@ x_332 = lean_nat_dec_le(x_330, x_299); if (x_332 == 0) { lean_inc(x_299); -x_321 = x_330; -x_322 = x_329; +x_321 = x_329; +x_322 = x_330; x_323 = x_331; x_324 = x_299; goto block_328; @@ -8688,8 +8689,8 @@ goto block_328; else { lean_inc(x_330); -x_321 = x_330; -x_322 = x_329; +x_321 = x_329; +x_322 = x_330; x_323 = x_331; x_324 = x_330; goto block_328; @@ -8775,7 +8776,7 @@ block_67: lean_object* x_26; lean_object* x_27; x_26 = l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2___closed__0; lean_inc(x_17); -x_27 = l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__12___redArg(x_17, x_17, x_26, x_23, x_4, x_5, x_6, x_7, x_19); +x_27 = l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__12___redArg(x_17, x_17, x_26, x_20, x_4, x_5, x_6, x_7, x_16); lean_dec(x_17); if (lean_obj_tag(x_27) == 0) { @@ -8791,21 +8792,21 @@ 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; lean_object* x_37; lean_object* x_38; x_31 = lean_ctor_get(x_29, 0); x_32 = lean_array_mk(x_15); -x_33 = l_Array_ofSubarray___redArg(x_16); -lean_dec_ref(x_16); +x_33 = l_Array_ofSubarray___redArg(x_19); +lean_dec_ref(x_19); x_34 = l_Array_ofSubarray___redArg(x_22); lean_dec_ref(x_22); -x_35 = l_Array_ofSubarray___redArg(x_24); +x_35 = l_Array_ofSubarray___redArg(x_18); +lean_dec_ref(x_18); +x_36 = l_Array_ofSubarray___redArg(x_24); lean_dec_ref(x_24); -x_36 = l_Array_ofSubarray___redArg(x_21); -lean_dec_ref(x_21); x_37 = lean_alloc_ctor(0, 10, 0); lean_ctor_set(x_37, 0, x_14); lean_ctor_set(x_37, 1, x_32); lean_ctor_set(x_37, 2, x_25); -lean_ctor_set(x_37, 3, x_18); +lean_ctor_set(x_37, 3, x_21); lean_ctor_set(x_37, 4, x_33); -lean_ctor_set(x_37, 5, x_20); +lean_ctor_set(x_37, 5, x_23); lean_ctor_set(x_37, 6, x_34); lean_ctor_set(x_37, 7, x_31); lean_ctor_set(x_37, 8, x_35); @@ -8824,21 +8825,21 @@ lean_inc(x_40); lean_inc(x_39); lean_dec(x_29); x_41 = lean_array_mk(x_15); -x_42 = l_Array_ofSubarray___redArg(x_16); -lean_dec_ref(x_16); +x_42 = l_Array_ofSubarray___redArg(x_19); +lean_dec_ref(x_19); x_43 = l_Array_ofSubarray___redArg(x_22); lean_dec_ref(x_22); -x_44 = l_Array_ofSubarray___redArg(x_24); +x_44 = l_Array_ofSubarray___redArg(x_18); +lean_dec_ref(x_18); +x_45 = l_Array_ofSubarray___redArg(x_24); lean_dec_ref(x_24); -x_45 = l_Array_ofSubarray___redArg(x_21); -lean_dec_ref(x_21); x_46 = lean_alloc_ctor(0, 10, 0); lean_ctor_set(x_46, 0, x_14); lean_ctor_set(x_46, 1, x_41); lean_ctor_set(x_46, 2, x_25); -lean_ctor_set(x_46, 3, x_18); +lean_ctor_set(x_46, 3, x_21); lean_ctor_set(x_46, 4, x_42); -lean_ctor_set(x_46, 5, x_20); +lean_ctor_set(x_46, 5, x_23); lean_ctor_set(x_46, 6, x_43); lean_ctor_set(x_46, 7, x_39); lean_ctor_set(x_46, 8, x_44); @@ -8873,21 +8874,21 @@ if (lean_is_exclusive(x_49)) { x_53 = lean_box(0); } x_54 = lean_array_mk(x_15); -x_55 = l_Array_ofSubarray___redArg(x_16); -lean_dec_ref(x_16); +x_55 = l_Array_ofSubarray___redArg(x_19); +lean_dec_ref(x_19); x_56 = l_Array_ofSubarray___redArg(x_22); lean_dec_ref(x_22); -x_57 = l_Array_ofSubarray___redArg(x_24); +x_57 = l_Array_ofSubarray___redArg(x_18); +lean_dec_ref(x_18); +x_58 = l_Array_ofSubarray___redArg(x_24); lean_dec_ref(x_24); -x_58 = l_Array_ofSubarray___redArg(x_21); -lean_dec_ref(x_21); x_59 = lean_alloc_ctor(0, 10, 0); lean_ctor_set(x_59, 0, x_14); lean_ctor_set(x_59, 1, x_54); lean_ctor_set(x_59, 2, x_25); -lean_ctor_set(x_59, 3, x_18); +lean_ctor_set(x_59, 3, x_21); lean_ctor_set(x_59, 4, x_55); -lean_ctor_set(x_59, 5, x_20); +lean_ctor_set(x_59, 5, x_23); lean_ctor_set(x_59, 6, x_56); lean_ctor_set(x_59, 7, x_51); lean_ctor_set(x_59, 8, x_57); @@ -8912,11 +8913,11 @@ else uint8_t x_63; lean_dec(x_25); lean_dec_ref(x_24); +lean_dec_ref(x_23); lean_dec_ref(x_22); lean_dec_ref(x_21); -lean_dec_ref(x_20); +lean_dec_ref(x_19); lean_dec_ref(x_18); -lean_dec_ref(x_16); lean_dec(x_15); lean_dec(x_14); x_63 = !lean_is_exclusive(x_27); @@ -8942,10 +8943,10 @@ return x_66; block_87: { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; -x_80 = lean_ctor_get(x_70, 1); +x_80 = lean_ctor_get(x_71, 1); lean_inc(x_80); -lean_dec_ref(x_70); -x_81 = l_Array_toSubarray___redArg(x_72, x_78, x_79); +lean_dec_ref(x_71); +x_81 = l_Array_toSubarray___redArg(x_74, x_78, x_79); x_82 = l_List_lengthTR___redArg(x_80); lean_dec(x_80); x_83 = l_List_lengthTR___redArg(x_15); @@ -8956,15 +8957,15 @@ if (x_84 == 0) { lean_object* x_85; x_85 = l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2___closed__1; -x_16 = x_69; -x_17 = x_68; -x_18 = x_71; +x_16 = x_68; +x_17 = x_69; +x_18 = x_70; x_19 = x_73; -x_20 = x_74; -x_21 = x_81; -x_22 = x_76; -x_23 = x_75; -x_24 = x_77; +x_20 = x_72; +x_21 = x_76; +x_22 = x_75; +x_23 = x_77; +x_24 = x_81; x_25 = x_85; goto block_67; } @@ -8972,15 +8973,15 @@ else { lean_object* x_86; x_86 = lean_box(0); -x_16 = x_69; -x_17 = x_68; -x_18 = x_71; +x_16 = x_68; +x_17 = x_69; +x_18 = x_70; x_19 = x_73; -x_20 = x_74; -x_21 = x_81; -x_22 = x_76; -x_23 = x_75; -x_24 = x_77; +x_20 = x_72; +x_21 = x_76; +x_22 = x_75; +x_23 = x_77; +x_24 = x_81; x_25 = x_86; goto block_67; } @@ -8988,80 +8989,80 @@ goto block_67; block_104: { lean_object* x_101; lean_object* x_102; uint8_t x_103; -lean_inc_ref(x_93); -x_101 = l_Array_toSubarray___redArg(x_93, x_99, x_100); +lean_inc_ref(x_95); +x_101 = l_Array_toSubarray___redArg(x_95, x_99, x_100); x_102 = lean_unsigned_to_nat(0u); -x_103 = lean_nat_dec_le(x_94, x_102); +x_103 = lean_nat_dec_le(x_88, x_102); if (x_103 == 0) { -x_68 = x_90; -x_69 = x_89; -x_70 = x_92; +x_68 = x_89; +x_69 = x_90; +x_70 = x_101; x_71 = x_91; -x_72 = x_93; -x_73 = x_95; -x_74 = x_96; -x_75 = x_98; -x_76 = x_97; -x_77 = x_101; -x_78 = x_94; -x_79 = x_88; +x_72 = x_94; +x_73 = x_93; +x_74 = x_95; +x_75 = x_97; +x_76 = x_96; +x_77 = x_98; +x_78 = x_88; +x_79 = x_92; goto block_87; } else { -lean_dec(x_94); -x_68 = x_90; -x_69 = x_89; -x_70 = x_92; +lean_dec(x_88); +x_68 = x_89; +x_69 = x_90; +x_70 = x_101; x_71 = x_91; -x_72 = x_93; -x_73 = x_95; -x_74 = x_96; -x_75 = x_98; -x_76 = x_97; -x_77 = x_101; +x_72 = x_94; +x_73 = x_93; +x_74 = x_95; +x_75 = x_97; +x_76 = x_96; +x_77 = x_98; x_78 = x_102; -x_79 = x_88; +x_79 = x_92; goto block_87; } } block_118: { -if (x_114 == 0) +if (x_109 == 0) { -lean_inc(x_107); -x_88 = x_107; +lean_inc(x_112); +x_88 = x_105; x_89 = x_106; -x_90 = x_105; -x_91 = x_109; -x_92 = x_108; -x_93 = x_110; -x_94 = x_112; -x_95 = x_111; -x_96 = x_113; -x_97 = x_116; -x_98 = x_115; +x_90 = x_107; +x_91 = x_108; +x_92 = x_112; +x_93 = x_111; +x_94 = x_110; +x_95 = x_113; +x_96 = x_115; +x_97 = x_114; +x_98 = x_116; x_99 = x_117; -x_100 = x_107; +x_100 = x_112; goto block_104; } else { -lean_inc(x_112); -x_88 = x_107; +lean_inc(x_105); +x_88 = x_105; x_89 = x_106; -x_90 = x_105; -x_91 = x_109; -x_92 = x_108; -x_93 = x_110; -x_94 = x_112; -x_95 = x_111; -x_96 = x_113; -x_97 = x_116; -x_98 = x_115; +x_90 = x_107; +x_91 = x_108; +x_92 = x_112; +x_93 = x_111; +x_94 = x_110; +x_95 = x_113; +x_96 = x_115; +x_97 = x_114; +x_98 = x_116; x_99 = x_117; -x_100 = x_112; +x_100 = x_105; goto block_104; } } @@ -9070,44 +9071,44 @@ block_140: lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; uint8_t x_139; lean_inc_ref(x_123); x_134 = l_Array_toSubarray___redArg(x_123, x_132, x_133); -x_135 = lean_nat_add(x_127, x_121); -lean_dec(x_127); +x_135 = lean_nat_add(x_129, x_131); +lean_dec(x_129); x_136 = lean_box(0); x_137 = lean_mk_array(x_135, x_136); x_138 = lean_unsigned_to_nat(0u); -x_139 = lean_nat_dec_le(x_124, x_138); +x_139 = lean_nat_dec_le(x_127, x_138); if (x_139 == 0) { -x_105 = x_120; -x_106 = x_119; +x_105 = x_119; +x_106 = x_125; x_107 = x_126; -x_108 = x_122; -x_109 = x_137; -x_110 = x_123; -x_111 = x_129; -x_112 = x_128; -x_113 = x_130; -x_114 = x_131; -x_115 = x_125; -x_116 = x_134; -x_117 = x_124; +x_108 = x_128; +x_109 = x_120; +x_110 = x_122; +x_111 = x_121; +x_112 = x_130; +x_113 = x_123; +x_114 = x_134; +x_115 = x_137; +x_116 = x_124; +x_117 = x_127; goto block_118; } else { -lean_dec(x_124); -x_105 = x_120; -x_106 = x_119; +lean_dec(x_127); +x_105 = x_119; +x_106 = x_125; x_107 = x_126; -x_108 = x_122; -x_109 = x_137; -x_110 = x_123; -x_111 = x_129; -x_112 = x_128; -x_113 = x_130; -x_114 = x_131; -x_115 = x_125; -x_116 = x_134; +x_108 = x_128; +x_109 = x_120; +x_110 = x_122; +x_111 = x_121; +x_112 = x_130; +x_113 = x_123; +x_114 = x_134; +x_115 = x_137; +x_116 = x_124; x_117 = x_138; goto block_118; } @@ -9115,19 +9116,39 @@ goto block_118; block_156: { uint8_t x_155; -x_155 = lean_nat_dec_le(x_145, x_148); +x_155 = lean_nat_dec_le(x_148, x_152); if (x_155 == 0) { +lean_inc(x_152); +x_119 = x_141; +x_120 = x_142; +x_121 = x_143; +x_122 = x_144; +x_123 = x_145; +x_124 = x_146; +x_125 = x_147; +x_126 = x_149; +x_127 = x_148; +x_128 = x_150; +x_129 = x_151; +x_130 = x_152; +x_131 = x_153; +x_132 = x_154; +x_133 = x_152; +goto block_140; +} +else +{ lean_inc(x_148); x_119 = x_141; x_120 = x_142; x_121 = x_143; x_122 = x_144; -x_123 = x_146; -x_124 = x_145; +x_123 = x_145; +x_124 = x_146; x_125 = x_147; -x_126 = x_148; -x_127 = x_149; +x_126 = x_149; +x_127 = x_148; x_128 = x_150; x_129 = x_151; x_130 = x_152; @@ -9136,50 +9157,30 @@ x_132 = x_154; x_133 = x_148; goto block_140; } -else -{ -lean_inc(x_145); -x_119 = x_141; -x_120 = x_142; -x_121 = x_143; -x_122 = x_144; -x_123 = x_146; -x_124 = x_145; -x_125 = x_147; -x_126 = x_148; -x_127 = x_149; -x_128 = x_150; -x_129 = x_151; -x_130 = x_152; -x_131 = x_153; -x_132 = x_154; -x_133 = x_145; -goto block_140; -} } block_184: { lean_object* x_180; lean_object* x_181; lean_object* x_182; uint8_t x_183; -lean_inc_ref(x_170); -x_180 = l_Array_toSubarray___redArg(x_170, x_178, x_179); -x_181 = lean_array_get(x_164, x_170, x_169); -lean_dec(x_169); +lean_inc_ref(x_169); +x_180 = l_Array_toSubarray___redArg(x_169, x_178, x_179); +x_181 = lean_array_get(x_164, x_169, x_170); +lean_dec(x_170); x_182 = lean_unsigned_to_nat(0u); x_183 = lean_nat_dec_le(x_166, x_182); if (x_183 == 0) { -x_141 = x_180; -x_142 = x_165; -x_143 = x_167; +x_141 = x_165; +x_142 = x_167; +x_143 = x_180; x_144 = x_168; -x_145 = x_171; -x_146 = x_170; -x_147 = x_172; +x_145 = x_169; +x_146 = x_181; +x_147 = x_171; x_148 = x_173; -x_149 = x_174; -x_150 = x_175; -x_151 = x_176; -x_152 = x_181; +x_149 = x_172; +x_150 = x_174; +x_151 = x_175; +x_152 = x_176; x_153 = x_177; x_154 = x_166; goto block_156; @@ -9187,18 +9188,18 @@ goto block_156; else { lean_dec(x_166); -x_141 = x_180; -x_142 = x_165; -x_143 = x_167; +x_141 = x_165; +x_142 = x_167; +x_143 = x_180; x_144 = x_168; -x_145 = x_171; -x_146 = x_170; -x_147 = x_172; +x_145 = x_169; +x_146 = x_181; +x_147 = x_171; x_148 = x_173; -x_149 = x_174; -x_150 = x_175; -x_151 = x_176; -x_152 = x_181; +x_149 = x_172; +x_150 = x_174; +x_151 = x_175; +x_152 = x_176; x_153 = x_177; x_154 = x_182; goto block_156; @@ -12013,7 +12014,8 @@ lean_inc(x_12); lean_inc_ref(x_11); lean_inc(x_10); lean_inc_ref(x_9); -x_17 = lean_apply_8(x_3, x_4, x_5, x_15, x_9, x_10, x_11, x_12, x_16); +lean_inc_ref(x_2); +x_17 = lean_apply_9(x_3, x_4, x_5, x_2, x_15, x_9, x_10, x_11, x_12, x_16); if (lean_obj_tag(x_17) == 0) { lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; @@ -14174,7 +14176,7 @@ return x_1; LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32_spec__32_spec__32(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t 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_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_81; uint8_t x_82; uint8_t x_83; uint8_t x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_110; uint8_t x_111; uint8_t x_112; uint8_t x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_121; uint8_t x_122; uint8_t x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; uint8_t x_127; uint8_t x_133; lean_object* x_134; uint8_t x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; uint8_t x_139; uint8_t x_140; uint8_t x_142; uint8_t x_158; +lean_object* x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_81; uint8_t x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; uint8_t x_86; uint8_t x_87; lean_object* x_88; lean_object* x_110; uint8_t x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; uint8_t x_115; uint8_t x_116; lean_object* x_117; lean_object* x_121; uint8_t x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; uint8_t x_126; uint8_t x_127; uint8_t x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; uint8_t x_138; uint8_t x_139; uint8_t x_140; uint8_t x_142; uint8_t x_158; x_133 = 2; x_158 = l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(x_3, x_133); if (x_158 == 0) @@ -14214,15 +14216,15 @@ lean_ctor_set(x_20, 1, x_25); lean_ctor_set(x_20, 0, x_24); x_28 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_28, 0, x_20); -lean_ctor_set(x_28, 1, x_11); +lean_ctor_set(x_28, 1, x_14); x_29 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_29, 0, x_16); +lean_ctor_set(x_29, 0, x_13); lean_ctor_set(x_29, 1, x_10); lean_ctor_set(x_29, 2, x_12); lean_ctor_set(x_29, 3, x_15); lean_ctor_set(x_29, 4, x_28); -lean_ctor_set_uint8(x_29, sizeof(void*)*5, x_14); -lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 1, x_13); +lean_ctor_set_uint8(x_29, sizeof(void*)*5, x_11); +lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 1, x_16); lean_ctor_set_uint8(x_29, sizeof(void*)*5 + 2, x_4); x_30 = l_Lean_MessageLog_add(x_29, x_27); lean_ctor_set(x_22, 6, x_30); @@ -14276,15 +14278,15 @@ lean_ctor_set(x_20, 1, x_25); lean_ctor_set(x_20, 0, x_24); x_47 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_47, 0, x_20); -lean_ctor_set(x_47, 1, x_11); +lean_ctor_set(x_47, 1, x_14); x_48 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_48, 0, x_16); +lean_ctor_set(x_48, 0, x_13); lean_ctor_set(x_48, 1, x_10); lean_ctor_set(x_48, 2, x_12); lean_ctor_set(x_48, 3, x_15); lean_ctor_set(x_48, 4, x_47); -lean_ctor_set_uint8(x_48, sizeof(void*)*5, x_14); -lean_ctor_set_uint8(x_48, sizeof(void*)*5 + 1, x_13); +lean_ctor_set_uint8(x_48, sizeof(void*)*5, x_11); +lean_ctor_set_uint8(x_48, sizeof(void*)*5 + 1, x_16); lean_ctor_set_uint8(x_48, sizeof(void*)*5 + 2, x_4); x_49 = l_Lean_MessageLog_add(x_48, x_44); x_50 = lean_alloc_ctor(0, 9, 0); @@ -14370,15 +14372,15 @@ lean_ctor_set(x_70, 0, x_58); lean_ctor_set(x_70, 1, x_59); x_71 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_71, 0, x_70); -lean_ctor_set(x_71, 1, x_11); +lean_ctor_set(x_71, 1, x_14); x_72 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_72, 0, x_16); +lean_ctor_set(x_72, 0, x_13); lean_ctor_set(x_72, 1, x_10); lean_ctor_set(x_72, 2, x_12); lean_ctor_set(x_72, 3, x_15); lean_ctor_set(x_72, 4, x_71); -lean_ctor_set_uint8(x_72, sizeof(void*)*5, x_14); -lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 1, x_13); +lean_ctor_set_uint8(x_72, sizeof(void*)*5, x_11); +lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 1, x_16); lean_ctor_set_uint8(x_72, sizeof(void*)*5 + 2, x_4); x_73 = l_Lean_MessageLog_add(x_72, x_66); if (lean_is_scalar(x_69)) { @@ -14428,25 +14430,25 @@ if (x_91 == 0) lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; x_92 = lean_ctor_get(x_90, 0); x_93 = lean_ctor_get(x_90, 1); -lean_inc_ref(x_87); -x_94 = l_Lean_FileMap_toPosition(x_87, x_85); +lean_inc_ref(x_83); +x_94 = l_Lean_FileMap_toPosition(x_83, x_85); lean_dec(x_85); -x_95 = l_Lean_FileMap_toPosition(x_87, x_88); +x_95 = l_Lean_FileMap_toPosition(x_83, x_88); lean_dec(x_88); x_96 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_96, 0, x_95); x_97 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32_spec__32_spec__32___closed__0; -if (x_82 == 0) +if (x_86 == 0) { lean_free_object(x_90); lean_dec_ref(x_81); x_10 = x_94; -x_11 = x_92; +x_11 = x_82; x_12 = x_96; -x_13 = x_83; -x_14 = x_84; +x_13 = x_84; +x_14 = x_92; x_15 = x_97; -x_16 = x_86; +x_16 = x_87; x_17 = x_7; x_18 = x_8; x_19 = x_93; @@ -14463,7 +14465,7 @@ lean_object* x_99; lean_dec_ref(x_96); lean_dec_ref(x_94); lean_dec(x_92); -lean_dec_ref(x_86); +lean_dec_ref(x_84); lean_dec_ref(x_7); x_99 = lean_box(0); lean_ctor_set(x_90, 0, x_99); @@ -14473,12 +14475,12 @@ else { lean_free_object(x_90); x_10 = x_94; -x_11 = x_92; +x_11 = x_82; x_12 = x_96; -x_13 = x_83; -x_14 = x_84; +x_13 = x_84; +x_14 = x_92; x_15 = x_97; -x_16 = x_86; +x_16 = x_87; x_17 = x_7; x_18 = x_8; x_19 = x_93; @@ -14494,24 +14496,24 @@ x_101 = lean_ctor_get(x_90, 1); lean_inc(x_101); lean_inc(x_100); lean_dec(x_90); -lean_inc_ref(x_87); -x_102 = l_Lean_FileMap_toPosition(x_87, x_85); +lean_inc_ref(x_83); +x_102 = l_Lean_FileMap_toPosition(x_83, x_85); lean_dec(x_85); -x_103 = l_Lean_FileMap_toPosition(x_87, x_88); +x_103 = l_Lean_FileMap_toPosition(x_83, x_88); lean_dec(x_88); x_104 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_104, 0, x_103); x_105 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32_spec__32_spec__32___closed__0; -if (x_82 == 0) +if (x_86 == 0) { lean_dec_ref(x_81); x_10 = x_102; -x_11 = x_100; +x_11 = x_82; x_12 = x_104; -x_13 = x_83; -x_14 = x_84; +x_13 = x_84; +x_14 = x_100; x_15 = x_105; -x_16 = x_86; +x_16 = x_87; x_17 = x_7; x_18 = x_8; x_19 = x_101; @@ -14528,7 +14530,7 @@ lean_object* x_107; lean_object* x_108; lean_dec_ref(x_104); lean_dec_ref(x_102); lean_dec(x_100); -lean_dec_ref(x_86); +lean_dec_ref(x_84); lean_dec_ref(x_7); x_107 = lean_box(0); x_108 = lean_alloc_ctor(0, 2, 0); @@ -14539,12 +14541,12 @@ return x_108; else { x_10 = x_102; -x_11 = x_100; +x_11 = x_82; x_12 = x_104; -x_13 = x_83; -x_14 = x_84; +x_13 = x_84; +x_14 = x_100; x_15 = x_105; -x_16 = x_86; +x_16 = x_87; x_17 = x_7; x_18 = x_8; x_19 = x_101; @@ -14556,7 +14558,7 @@ goto block_80; block_120: { lean_object* x_118; -x_118 = l_Lean_Syntax_getTailPos_x3f(x_114, x_113); +x_118 = l_Lean_Syntax_getTailPos_x3f(x_114, x_111); lean_dec(x_114); if (lean_obj_tag(x_118) == 0) { @@ -14591,20 +14593,20 @@ goto block_109; block_132: { lean_object* x_128; lean_object* x_129; -x_128 = l_Lean_replaceRef(x_1, x_124); -lean_dec(x_124); -x_129 = l_Lean_Syntax_getPos_x3f(x_128, x_123); +x_128 = l_Lean_replaceRef(x_1, x_125); +lean_dec(x_125); +x_129 = l_Lean_Syntax_getPos_x3f(x_128, x_122); if (lean_obj_tag(x_129) == 0) { lean_object* x_130; x_130 = lean_unsigned_to_nat(0u); x_110 = x_121; x_111 = x_122; -x_112 = x_127; -x_113 = x_123; +x_112 = x_123; +x_113 = x_124; x_114 = x_128; -x_115 = x_125; -x_116 = x_126; +x_115 = x_126; +x_116 = x_127; x_117 = x_130; goto block_120; } @@ -14616,11 +14618,11 @@ lean_inc(x_131); lean_dec_ref(x_129); x_110 = x_121; x_111 = x_122; -x_112 = x_127; -x_113 = x_123; +x_112 = x_123; +x_113 = x_124; x_114 = x_128; -x_115 = x_125; -x_116 = x_126; +x_115 = x_126; +x_116 = x_127; x_117 = x_131; goto block_120; } @@ -14629,10 +14631,10 @@ block_141: { if (x_140 == 0) { -x_121 = x_134; -x_122 = x_135; -x_123 = x_139; -x_124 = x_136; +x_121 = x_136; +x_122 = x_139; +x_123 = x_134; +x_124 = x_135; x_125 = x_137; x_126 = x_138; x_127 = x_3; @@ -14640,10 +14642,10 @@ goto block_132; } else { -x_121 = x_134; -x_122 = x_135; -x_123 = x_139; -x_124 = x_136; +x_121 = x_136; +x_122 = x_139; +x_123 = x_134; +x_124 = x_135; x_125 = x_137; x_126 = x_138; x_127 = x_133; @@ -14674,11 +14676,11 @@ x_152 = l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(x_3, x_151); if (x_152 == 0) { lean_dec(x_145); -x_134 = x_150; -x_135 = x_147; -x_136 = x_146; -x_137 = x_143; -x_138 = x_144; +x_134 = x_144; +x_135 = x_143; +x_136 = x_150; +x_137 = x_146; +x_138 = x_147; x_139 = x_142; x_140 = x_152; goto block_141; @@ -14689,11 +14691,11 @@ lean_object* x_153; uint8_t x_154; x_153 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32_spec__32_spec__32___closed__1; x_154 = l_Lean_Option_get___at___Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32_spec__32_spec__32_spec__32(x_145, x_153); lean_dec(x_145); -x_134 = x_150; -x_135 = x_147; -x_136 = x_146; -x_137 = x_143; -x_138 = x_144; +x_134 = x_144; +x_135 = x_143; +x_136 = x_150; +x_137 = x_146; +x_138 = x_147; x_139 = x_142; x_140 = x_154; goto block_141; @@ -14820,21 +14822,20 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -lean_object* x_17; lean_object* x_29; lean_object* x_30; -x_29 = l_Array_append___redArg(x_8, x_5); +lean_object* x_17; lean_object* x_18; lean_object* x_30; +x_17 = l_Array_append___redArg(x_1, x_2); lean_inc(x_15); lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); -x_30 = l_Lean_Meta_instantiateLambda(x_9, x_29, x_12, x_13, x_14, x_15, x_16); -lean_dec_ref(x_29); +x_30 = l_Lean_Meta_instantiateLambda(x_9, x_17, x_12, x_13, x_14, x_15, x_16); if (lean_obj_tag(x_30) == 0) { -x_17 = x_30; -goto block_28; +x_18 = x_30; +goto block_29; } else { @@ -14866,51 +14867,51 @@ lean_object* x_34; lean_object* x_35; lean_dec_ref(x_30); x_34 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__0___closed__1; x_35 = l_Lean_throwError___at___Lean_Tactic_FunInd_foldAndCollect_spec__20___redArg(x_34, x_12, x_13, x_14, x_15, x_32); -x_17 = x_35; -goto block_28; +x_18 = x_35; +goto block_29; } else { lean_dec(x_32); -x_17 = x_30; -goto block_28; +x_18 = x_30; +goto block_29; } } } -block_28: +block_29: { -if (lean_obj_tag(x_17) == 0) +if (lean_obj_tag(x_18) == 0) { -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_17, 0); -lean_inc(x_18); -x_19 = lean_ctor_get(x_17, 1); +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); -lean_dec_ref(x_17); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec_ref(x_18); lean_inc(x_15); lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); -x_20 = lean_apply_8(x_1, x_2, x_11, x_18, x_12, x_13, x_14, x_15, x_19); -if (lean_obj_tag(x_20) == 0) +x_21 = lean_apply_9(x_3, x_4, x_11, x_17, x_19, x_12, x_13, x_14, x_15, x_20); +if (lean_obj_tag(x_21) == 0) { -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; -x_21 = lean_ctor_get(x_20, 0); -lean_inc(x_21); -x_22 = lean_ctor_get(x_20, 1); +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_28; +x_22 = lean_ctor_get(x_21, 0); lean_inc(x_22); -lean_dec_ref(x_20); -x_23 = l_Array_append___redArg(x_3, x_4); -x_24 = l_Array_append___redArg(x_23, x_5); -x_25 = l_Array_append___redArg(x_24, x_10); -x_26 = 1; -x_27 = l_Lean_Meta_mkLambdaFVars(x_25, x_21, x_6, x_7, x_6, x_7, x_26, x_12, x_13, x_14, x_15, x_22); +x_23 = lean_ctor_get(x_21, 1); +lean_inc(x_23); +lean_dec_ref(x_21); +x_24 = l_Array_append___redArg(x_5, x_6); +x_25 = l_Array_append___redArg(x_24, x_2); +x_26 = l_Array_append___redArg(x_25, x_10); +x_27 = 1; +x_28 = l_Lean_Meta_mkLambdaFVars(x_26, x_22, x_7, x_8, x_7, x_8, x_27, x_12, x_13, x_14, x_15, x_23); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec_ref(x_12); -lean_dec_ref(x_25); -return x_27; +lean_dec_ref(x_26); +return x_28; } else { @@ -14918,32 +14919,55 @@ lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec_ref(x_12); -lean_dec_ref(x_3); -return x_20; +lean_dec_ref(x_5); +return x_21; } } else { +lean_dec_ref(x_17); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec_ref(x_12); lean_dec_ref(x_11); +lean_dec_ref(x_5); +lean_dec(x_4); lean_dec_ref(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -return x_17; +return x_18; } } } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +_start: +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_17 = lean_box(x_6); +x_18 = lean_box(x_7); +x_19 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__0___boxed), 16, 9); +lean_closure_set(x_19, 0, x_1); +lean_closure_set(x_19, 1, x_10); +lean_closure_set(x_19, 2, x_2); +lean_closure_set(x_19, 3, x_3); +lean_closure_set(x_19, 4, x_4); +lean_closure_set(x_19, 5, x_5); +lean_closure_set(x_19, 6, x_17); +lean_closure_set(x_19, 7, x_18); +lean_closure_set(x_19, 8, x_8); +x_20 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_20, 0, x_9); +x_21 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_foldAndCollect_spec__24___redArg(x_11, x_20, x_19, x_6, x_6, x_12, x_13, x_14, x_15, x_16); +return x_21; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; x_17 = lean_box(x_5); x_18 = lean_box(x_6); -x_19 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__0___boxed), 16, 9); +x_19 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__1___boxed), 16, 9); lean_closure_set(x_19, 0, x_1); lean_closure_set(x_19, 1, x_2); lean_closure_set(x_19, 2, x_3); @@ -14959,28 +14983,6 @@ x_21 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_foldAndColle return x_21; } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { -_start: -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_17 = lean_box(x_4); -x_18 = lean_box(x_5); -x_19 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__1___boxed), 16, 9); -lean_closure_set(x_19, 0, x_1); -lean_closure_set(x_19, 1, x_2); -lean_closure_set(x_19, 2, x_3); -lean_closure_set(x_19, 3, x_10); -lean_closure_set(x_19, 4, x_17); -lean_closure_set(x_19, 5, x_18); -lean_closure_set(x_19, 6, x_6); -lean_closure_set(x_19, 7, x_7); -lean_closure_set(x_19, 8, x_8); -x_20 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_20, 0, x_9); -x_21 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_foldAndCollect_spec__24___redArg(x_11, x_20, x_19, x_4, x_4, x_12, x_13, x_14, x_15, x_16); -return x_21; -} -} LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { @@ -15002,12 +15004,12 @@ x_20 = lean_box(x_4); x_21 = lean_box(x_5); lean_inc_ref(x_10); x_22 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__2___boxed), 16, 9); -lean_closure_set(x_22, 0, x_2); -lean_closure_set(x_22, 1, x_3); -lean_closure_set(x_22, 2, x_10); -lean_closure_set(x_22, 3, x_20); -lean_closure_set(x_22, 4, x_21); -lean_closure_set(x_22, 5, x_11); +lean_closure_set(x_22, 0, x_11); +lean_closure_set(x_22, 1, x_2); +lean_closure_set(x_22, 2, x_3); +lean_closure_set(x_22, 3, x_10); +lean_closure_set(x_22, 4, x_20); +lean_closure_set(x_22, 5, x_21); lean_closure_set(x_22, 6, x_6); lean_closure_set(x_22, 7, x_7); lean_closure_set(x_22, 8, x_8); @@ -23206,7 +23208,7 @@ return x_1; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; double x_16; double x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_30; lean_object* x_31; double x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; double x_37; lean_object* x_50; lean_object* x_51; double x_52; double x_53; uint8_t x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; double x_71; uint8_t x_72; double x_73; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; double x_93; lean_object* x_94; lean_object* x_95; double x_96; uint8_t x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; lean_object* x_139; lean_object* x_140; double x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; uint8_t x_146; double x_147; double x_148; lean_object* x_152; lean_object* x_153; lean_object* x_154; uint8_t x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; double x_181; double x_182; uint8_t x_183; uint8_t x_184; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; double x_229; uint8_t x_230; double x_231; double x_232; lean_object* x_236; lean_object* x_237; lean_object* x_238; uint8_t x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; uint8_t x_294; +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_object* x_33; lean_object* x_34; double x_35; lean_object* x_36; double x_37; lean_object* x_50; lean_object* x_51; double x_52; double x_53; uint8_t x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_66; lean_object* x_67; double x_68; double x_69; lean_object* x_70; uint8_t x_71; lean_object* x_72; lean_object* x_73; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; uint8_t x_93; lean_object* x_94; double x_95; lean_object* x_96; lean_object* x_97; double x_98; lean_object* x_99; uint8_t x_100; lean_object* x_139; lean_object* x_140; uint8_t x_141; lean_object* x_142; lean_object* x_143; double x_144; lean_object* x_145; lean_object* x_146; double x_147; double x_148; lean_object* x_152; lean_object* x_153; lean_object* x_154; uint8_t x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_175; lean_object* x_176; double x_177; double x_178; lean_object* x_179; uint8_t x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; uint8_t x_184; lean_object* x_223; lean_object* x_224; double x_225; double x_226; lean_object* x_227; uint8_t x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; double x_232; lean_object* x_236; lean_object* x_237; lean_object* x_238; uint8_t x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; uint8_t x_294; x_12 = lean_ctor_get(x_9, 2); lean_inc(x_12); x_13 = lean_ctor_get(x_9, 5); @@ -23252,7 +23254,7 @@ goto block_293; } block_29: { -if (x_18 == 0) +if (x_16 == 0) { double x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; x_22 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__0; @@ -23263,11 +23265,11 @@ lean_ctor_set_float(x_23, sizeof(void*)*2, x_22); lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_22); lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_4); x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___lam__0(x_14, x_13, x_19, x_15, x_23, x_24, x_20, x_7, x_8, x_9, x_10, x_21); +x_25 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___lam__0(x_15, x_13, x_19, x_14, x_23, x_24, x_20, x_7, x_8, x_9, x_10, x_21); lean_dec(x_10); lean_dec(x_8); lean_dec_ref(x_7); -lean_dec_ref(x_15); +lean_dec_ref(x_14); return x_25; } else @@ -23276,15 +23278,15 @@ lean_object* x_26; lean_object* x_27; lean_object* x_28; x_26 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_26, 0, x_1); lean_ctor_set(x_26, 1, x_5); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_26, sizeof(void*)*2, x_18); lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_17); lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_4); x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___lam__0(x_14, x_13, x_19, x_15, x_26, x_27, x_20, x_7, x_8, x_9, x_10, x_21); +x_28 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___lam__0(x_15, x_13, x_19, x_14, x_26, x_27, x_20, x_7, x_8, x_9, x_10, x_21); lean_dec(x_10); lean_dec(x_8); lean_dec_ref(x_7); -lean_dec_ref(x_15); +lean_dec_ref(x_14); return x_28; } } @@ -23295,11 +23297,11 @@ lean_inc(x_10); lean_inc_ref(x_9); lean_inc(x_8); lean_inc_ref(x_7); -lean_inc_ref(x_33); -x_38 = lean_apply_7(x_2, x_35, x_33, x_7, x_8, x_9, x_10, x_34); +lean_inc_ref(x_34); +x_38 = lean_apply_7(x_2, x_33, x_34, x_7, x_8, x_9, x_10, x_36); if (lean_obj_tag(x_38) == 0) { -lean_dec_ref(x_33); +lean_dec_ref(x_34); if (lean_obj_tag(x_38) == 0) { lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; @@ -23316,8 +23318,8 @@ lean_dec(x_39); x_14 = x_30; x_15 = x_31; x_16 = x_32; -x_17 = x_37; -x_18 = x_36; +x_17 = x_35; +x_18 = x_37; x_19 = x_41; x_20 = x_42; x_21 = x_40; @@ -23366,10 +23368,10 @@ x_48 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___ x_14 = x_30; x_15 = x_31; x_16 = x_32; -x_17 = x_37; -x_18 = x_36; +x_17 = x_35; +x_18 = x_37; x_19 = x_48; -x_20 = x_33; +x_20 = x_34; x_21 = x_47; goto block_29; } @@ -23387,11 +23389,11 @@ lean_ctor_set_float(x_59, sizeof(void*)*2, x_58); lean_ctor_set_float(x_59, sizeof(void*)*2 + 8, x_58); lean_ctor_set_uint8(x_59, sizeof(void*)*2 + 16, x_4); x_60 = lean_box(0); -x_61 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___lam__0(x_51, x_13, x_55, x_50, x_59, x_60, x_56, x_7, x_8, x_9, x_10, x_57); +x_61 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___lam__0(x_50, x_13, x_55, x_51, x_59, x_60, x_56, x_7, x_8, x_9, x_10, x_57); lean_dec(x_10); lean_dec(x_8); lean_dec_ref(x_7); -lean_dec_ref(x_50); +lean_dec_ref(x_51); return x_61; } else @@ -23404,11 +23406,11 @@ lean_ctor_set_float(x_62, sizeof(void*)*2, x_53); lean_ctor_set_float(x_62, sizeof(void*)*2 + 8, x_52); lean_ctor_set_uint8(x_62, sizeof(void*)*2 + 16, x_4); x_63 = lean_box(0); -x_64 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___lam__0(x_51, x_13, x_55, x_50, x_62, x_63, x_56, x_7, x_8, x_9, x_10, x_57); +x_64 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___lam__0(x_50, x_13, x_55, x_51, x_62, x_63, x_56, x_7, x_8, x_9, x_10, x_57); lean_dec(x_10); lean_dec(x_8); lean_dec_ref(x_7); -lean_dec_ref(x_50); +lean_dec_ref(x_51); return x_64; } } @@ -23419,11 +23421,11 @@ lean_inc(x_10); lean_inc_ref(x_9); lean_inc(x_8); lean_inc_ref(x_7); -lean_inc_ref(x_68); -x_74 = lean_apply_7(x_2, x_69, x_68, x_7, x_8, x_9, x_10, x_70); +lean_inc_ref(x_70); +x_74 = lean_apply_7(x_2, x_73, x_70, x_7, x_8, x_9, x_10, x_72); if (lean_obj_tag(x_74) == 0) { -lean_dec_ref(x_68); +lean_dec_ref(x_70); if (lean_obj_tag(x_74) == 0) { lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; @@ -23439,9 +23441,9 @@ lean_inc(x_78); lean_dec(x_75); x_50 = x_66; x_51 = x_67; -x_52 = x_71; -x_53 = x_73; -x_54 = x_72; +x_52 = x_68; +x_53 = x_69; +x_54 = x_71; x_55 = x_77; x_56 = x_78; x_57 = x_76; @@ -23489,11 +23491,11 @@ lean_dec_ref(x_74); x_84 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__2; x_50 = x_66; x_51 = x_67; -x_52 = x_71; -x_53 = x_73; -x_54 = x_72; +x_52 = x_68; +x_53 = x_69; +x_54 = x_71; x_55 = x_84; -x_56 = x_68; +x_56 = x_70; x_57 = x_83; goto block_65; } @@ -23517,7 +23519,7 @@ lean_dec_ref(x_7); lean_dec_ref(x_5); lean_dec_ref(x_2); lean_dec(x_1); -x_102 = lean_st_ref_take(x_10, x_99); +x_102 = lean_st_ref_take(x_10, x_97); x_103 = lean_ctor_get(x_102, 0); lean_inc(x_103); x_104 = lean_ctor_get(x_103, 4); @@ -23536,7 +23538,7 @@ if (x_108 == 0) { lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; x_109 = lean_ctor_get(x_104, 0); -x_110 = l_Lean_PersistentArray_append___redArg(x_94, x_109); +x_110 = l_Lean_PersistentArray_append___redArg(x_99, x_109); lean_dec_ref(x_109); lean_ctor_set(x_104, 0, x_110); x_111 = lean_st_ref_set(x_10, x_103, x_105); @@ -23544,8 +23546,8 @@ lean_dec(x_10); x_112 = lean_ctor_get(x_111, 1); lean_inc(x_112); lean_dec_ref(x_111); -x_113 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__44___redArg(x_98, x_95, x_112); -lean_dec_ref(x_98); +x_113 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__44___redArg(x_94, x_96, x_112); +lean_dec_ref(x_94); return x_113; } else @@ -23555,7 +23557,7 @@ x_114 = lean_ctor_get_uint64(x_104, sizeof(void*)*1); x_115 = lean_ctor_get(x_104, 0); lean_inc(x_115); lean_dec(x_104); -x_116 = l_Lean_PersistentArray_append___redArg(x_94, x_115); +x_116 = l_Lean_PersistentArray_append___redArg(x_99, x_115); lean_dec_ref(x_115); x_117 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_117, 0, x_116); @@ -23566,8 +23568,8 @@ lean_dec(x_10); x_119 = lean_ctor_get(x_118, 1); lean_inc(x_119); lean_dec_ref(x_118); -x_120 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__44___redArg(x_98, x_95, x_119); -lean_dec_ref(x_98); +x_120 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__44___redArg(x_94, x_96, x_119); +lean_dec_ref(x_94); return x_120; } } @@ -23601,7 +23603,7 @@ if (lean_is_exclusive(x_104)) { lean_dec_ref(x_104); x_131 = lean_box(0); } -x_132 = l_Lean_PersistentArray_append___redArg(x_94, x_130); +x_132 = l_Lean_PersistentArray_append___redArg(x_99, x_130); lean_dec_ref(x_130); if (lean_is_scalar(x_131)) { x_133 = lean_alloc_ctor(0, 1, 8); @@ -23625,53 +23627,53 @@ lean_dec(x_10); x_136 = lean_ctor_get(x_135, 1); lean_inc(x_136); lean_dec_ref(x_135); -x_137 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__44___redArg(x_98, x_95, x_136); -lean_dec_ref(x_98); +x_137 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__44___redArg(x_94, x_96, x_136); +lean_dec_ref(x_94); return x_137; } } else { -lean_dec_ref(x_94); +lean_dec_ref(x_99); x_30 = x_91; x_31 = x_92; x_32 = x_93; -x_33 = x_95; -x_34 = x_99; -x_35 = x_98; +x_33 = x_94; +x_34 = x_96; +x_35 = x_95; x_36 = x_97; -x_37 = x_96; +x_37 = x_98; goto block_49; } } else { -lean_dec_ref(x_94); +lean_dec_ref(x_99); x_30 = x_91; x_31 = x_92; x_32 = x_93; -x_33 = x_95; -x_34 = x_99; -x_35 = x_98; +x_33 = x_94; +x_34 = x_96; +x_35 = x_95; x_36 = x_97; -x_37 = x_96; +x_37 = x_98; goto block_49; } } block_151: { double x_149; uint8_t x_150; -x_149 = lean_float_sub(x_147, x_141); +x_149 = lean_float_sub(x_144, x_147); x_150 = lean_float_decLt(x_148, x_149); x_91 = x_139; x_92 = x_140; x_93 = x_141; x_94 = x_142; -x_95 = x_143; -x_96 = x_147; -x_97 = x_146; -x_98 = x_145; -x_99 = x_144; +x_95 = x_144; +x_96 = x_143; +x_97 = x_145; +x_98 = x_147; +x_99 = x_146; x_100 = x_150; goto block_138; } @@ -23692,15 +23694,15 @@ if (x_165 == 0) { lean_dec(x_12); lean_inc_ref(x_156); -x_91 = x_153; -x_92 = x_156; -x_93 = x_162; -x_94 = x_154; -x_95 = x_157; -x_96 = x_163; -x_97 = x_165; -x_98 = x_156; -x_99 = x_161; +x_91 = x_156; +x_92 = x_153; +x_93 = x_165; +x_94 = x_156; +x_95 = x_163; +x_96 = x_157; +x_97 = x_161; +x_98 = x_162; +x_99 = x_154; x_100 = x_165; goto block_138; } @@ -23716,15 +23718,15 @@ x_168 = lean_float_of_nat(x_167); x_169 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__5; x_170 = lean_float_div(x_168, x_169); lean_inc_ref(x_156); -x_139 = x_153; -x_140 = x_156; -x_141 = x_162; -x_142 = x_154; +x_139 = x_156; +x_140 = x_153; +x_141 = x_165; +x_142 = x_156; x_143 = x_157; -x_144 = x_161; -x_145 = x_156; -x_146 = x_165; -x_147 = x_163; +x_144 = x_163; +x_145 = x_161; +x_146 = x_154; +x_147 = x_162; x_148 = x_170; goto block_151; } @@ -23736,15 +23738,15 @@ x_172 = l_Lean_Option_get___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_fo lean_dec(x_12); x_173 = lean_float_of_nat(x_172); lean_inc_ref(x_156); -x_139 = x_153; -x_140 = x_156; -x_141 = x_162; -x_142 = x_154; +x_139 = x_156; +x_140 = x_153; +x_141 = x_165; +x_142 = x_156; x_143 = x_157; -x_144 = x_161; -x_145 = x_156; -x_146 = x_165; -x_147 = x_163; +x_144 = x_163; +x_145 = x_161; +x_146 = x_154; +x_147 = x_162; x_148 = x_173; goto block_151; } @@ -23769,7 +23771,7 @@ lean_dec_ref(x_7); lean_dec_ref(x_5); lean_dec_ref(x_2); lean_dec(x_1); -x_186 = lean_st_ref_take(x_10, x_180); +x_186 = lean_st_ref_take(x_10, x_182); x_187 = lean_ctor_get(x_186, 0); lean_inc(x_187); x_188 = lean_ctor_get(x_187, 4); @@ -23788,7 +23790,7 @@ if (x_192 == 0) { lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; x_193 = lean_ctor_get(x_188, 0); -x_194 = l_Lean_PersistentArray_append___redArg(x_179, x_193); +x_194 = l_Lean_PersistentArray_append___redArg(x_181, x_193); lean_dec_ref(x_193); lean_ctor_set(x_188, 0, x_194); x_195 = lean_st_ref_set(x_10, x_187, x_189); @@ -23796,8 +23798,8 @@ lean_dec(x_10); x_196 = lean_ctor_get(x_195, 1); lean_inc(x_196); lean_dec_ref(x_195); -x_197 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__44___redArg(x_178, x_177, x_196); -lean_dec_ref(x_178); +x_197 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__44___redArg(x_183, x_179, x_196); +lean_dec_ref(x_183); return x_197; } else @@ -23807,7 +23809,7 @@ x_198 = lean_ctor_get_uint64(x_188, sizeof(void*)*1); x_199 = lean_ctor_get(x_188, 0); lean_inc(x_199); lean_dec(x_188); -x_200 = l_Lean_PersistentArray_append___redArg(x_179, x_199); +x_200 = l_Lean_PersistentArray_append___redArg(x_181, x_199); lean_dec_ref(x_199); x_201 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_201, 0, x_200); @@ -23818,8 +23820,8 @@ lean_dec(x_10); x_203 = lean_ctor_get(x_202, 1); lean_inc(x_203); lean_dec_ref(x_202); -x_204 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__44___redArg(x_178, x_177, x_203); -lean_dec_ref(x_178); +x_204 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__44___redArg(x_183, x_179, x_203); +lean_dec_ref(x_183); return x_204; } } @@ -23853,7 +23855,7 @@ if (lean_is_exclusive(x_188)) { lean_dec_ref(x_188); x_215 = lean_box(0); } -x_216 = l_Lean_PersistentArray_append___redArg(x_179, x_214); +x_216 = l_Lean_PersistentArray_append___redArg(x_181, x_214); lean_dec_ref(x_214); if (lean_is_scalar(x_215)) { x_217 = lean_alloc_ctor(0, 1, 8); @@ -23877,43 +23879,43 @@ lean_dec(x_10); x_220 = lean_ctor_get(x_219, 1); lean_inc(x_220); lean_dec_ref(x_219); -x_221 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__44___redArg(x_178, x_177, x_220); -lean_dec_ref(x_178); +x_221 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40_spec__44___redArg(x_183, x_179, x_220); +lean_dec_ref(x_183); return x_221; } } else { -lean_dec_ref(x_179); +lean_dec_ref(x_181); x_66 = x_175; x_67 = x_176; x_68 = x_177; x_69 = x_178; -x_70 = x_180; -x_71 = x_181; -x_72 = x_183; -x_73 = x_182; +x_70 = x_179; +x_71 = x_180; +x_72 = x_182; +x_73 = x_183; goto block_85; } } else { -lean_dec_ref(x_179); +lean_dec_ref(x_181); x_66 = x_175; x_67 = x_176; x_68 = x_177; x_69 = x_178; -x_70 = x_180; -x_71 = x_181; -x_72 = x_183; -x_73 = x_182; +x_70 = x_179; +x_71 = x_180; +x_72 = x_182; +x_73 = x_183; goto block_85; } } block_235: { double x_233; uint8_t x_234; -x_233 = lean_float_sub(x_229, x_231); +x_233 = lean_float_sub(x_225, x_226); x_234 = lean_float_decLt(x_232, x_233); x_175 = x_223; x_176 = x_224; @@ -23921,9 +23923,9 @@ x_177 = x_225; x_178 = x_226; x_179 = x_227; x_180 = x_228; -x_181 = x_229; -x_182 = x_231; -x_183 = x_230; +x_181 = x_230; +x_182 = x_229; +x_183 = x_231; x_184 = x_234; goto block_222; } @@ -23936,7 +23938,7 @@ lean_inc(x_244); x_245 = lean_ctor_get(x_243, 1); lean_inc(x_245); lean_dec_ref(x_243); -x_246 = lean_float_of_nat(x_237); +x_246 = lean_float_of_nat(x_236); x_247 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__6; x_248 = lean_float_div(x_246, x_247); x_249 = lean_float_of_nat(x_244); @@ -23947,15 +23949,15 @@ if (x_252 == 0) { lean_dec(x_12); lean_inc_ref(x_240); -x_175 = x_240; -x_176 = x_236; -x_177 = x_241; -x_178 = x_240; -x_179 = x_238; -x_180 = x_245; -x_181 = x_250; -x_182 = x_248; -x_183 = x_252; +x_175 = x_237; +x_176 = x_240; +x_177 = x_250; +x_178 = x_248; +x_179 = x_241; +x_180 = x_252; +x_181 = x_238; +x_182 = x_245; +x_183 = x_240; x_184 = x_252; goto block_222; } @@ -23971,15 +23973,15 @@ x_255 = lean_float_of_nat(x_254); x_256 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__5; x_257 = lean_float_div(x_255, x_256); lean_inc_ref(x_240); -x_223 = x_240; -x_224 = x_236; -x_225 = x_241; -x_226 = x_240; -x_227 = x_238; -x_228 = x_245; -x_229 = x_250; -x_230 = x_252; -x_231 = x_248; +x_223 = x_237; +x_224 = x_240; +x_225 = x_250; +x_226 = x_248; +x_227 = x_241; +x_228 = x_252; +x_229 = x_245; +x_230 = x_238; +x_231 = x_240; x_232 = x_257; goto block_235; } @@ -23991,15 +23993,15 @@ x_259 = l_Lean_Option_get___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_fo lean_dec(x_12); x_260 = lean_float_of_nat(x_259); lean_inc_ref(x_240); -x_223 = x_240; -x_224 = x_236; -x_225 = x_241; -x_226 = x_240; -x_227 = x_238; -x_228 = x_245; -x_229 = x_250; -x_230 = x_252; -x_231 = x_248; +x_223 = x_237; +x_224 = x_240; +x_225 = x_250; +x_226 = x_248; +x_227 = x_241; +x_228 = x_252; +x_229 = x_245; +x_230 = x_238; +x_231 = x_240; x_232 = x_260; goto block_235; } @@ -24053,8 +24055,8 @@ lean_dec(x_273); x_277 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_277, 0, x_275); lean_inc(x_265); -x_236 = x_265; -x_237 = x_270; +x_236 = x_270; +x_237 = x_265; x_238 = x_265; x_239 = x_268; x_240 = x_277; @@ -24073,8 +24075,8 @@ lean_dec_ref(x_272); x_280 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_280, 0, x_278); lean_inc(x_265); -x_236 = x_265; -x_237 = x_270; +x_236 = x_270; +x_237 = x_265; x_238 = x_265; x_239 = x_268; x_240 = x_280; @@ -24295,12 +24297,12 @@ return x_10; } } } -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -lean_object* x_10; -x_10 = l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_foldAndCollect_spec__21___redArg(x_4, x_1, x_5, x_6, x_7, x_8, x_9); -return x_10; +lean_object* x_11; +x_11 = l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_foldAndCollect_spec__21___redArg(x_5, x_1, x_6, x_7, x_8, x_9, x_10); +return x_11; } } static lean_object* _init_l_Lean_Tactic_FunInd_foldAndCollect___lam__4___closed__0() { @@ -25283,20 +25285,20 @@ x_17 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_foldAndColle return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__19(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t 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_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__19(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t 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) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_13 = lean_box(x_3); -x_14 = lean_box(x_4); -x_15 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_foldAndCollect___lam__18___boxed), 12, 5); -lean_closure_set(x_15, 0, x_1); -lean_closure_set(x_15, 1, x_2); -lean_closure_set(x_15, 2, x_13); -lean_closure_set(x_15, 3, x_14); -lean_closure_set(x_15, 4, x_6); -x_16 = l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_foldAndCollect_spec__21___redArg(x_7, x_15, x_8, x_9, x_10, x_11, x_12); -return x_16; +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = lean_box(x_3); +x_15 = lean_box(x_4); +x_16 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_foldAndCollect___lam__18___boxed), 12, 5); +lean_closure_set(x_16, 0, x_1); +lean_closure_set(x_16, 1, x_2); +lean_closure_set(x_16, 2, x_14); +lean_closure_set(x_16, 3, x_15); +lean_closure_set(x_16, 4, x_6); +x_17 = l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_foldAndCollect_spec__21___redArg(x_8, x_16, x_9, x_10, x_11, x_12, x_13); +return x_17; } } static lean_object* _init_l_Lean_Tactic_FunInd_foldAndCollect___lam__20___closed__0() { @@ -25537,7 +25539,7 @@ x_387 = 0; x_388 = lean_box(x_387); x_389 = lean_box(x_2); lean_inc_ref(x_3); -x_390 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_foldAndCollect___lam__19___boxed), 12, 4); +x_390 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_foldAndCollect___lam__19___boxed), 13, 4); lean_closure_set(x_390, 0, x_385); lean_closure_set(x_390, 1, x_3); lean_closure_set(x_390, 2, x_388); @@ -27324,7 +27326,7 @@ lean_closure_set(x_14, 2, x_3); lean_inc_ref(x_3); x_15 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_foldAndCollect___lam__2), 8, 1); lean_closure_set(x_15, 0, x_3); -x_16 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_foldAndCollect___lam__3___boxed), 9, 1); +x_16 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_foldAndCollect___lam__3___boxed), 10, 1); lean_closure_set(x_16, 0, x_15); lean_inc_ref(x_4); lean_inc(x_2); @@ -28047,12 +28049,12 @@ LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at__ _start: { uint8_t x_17; uint8_t x_18; lean_object* x_19; -x_17 = lean_unbox(x_6); -x_18 = lean_unbox(x_7); -x_19 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_17, x_18, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_17 = lean_unbox(x_7); +x_18 = lean_unbox(x_8); +x_19 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_17, x_18, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); lean_dec_ref(x_10); -lean_dec_ref(x_5); -lean_dec_ref(x_4); +lean_dec_ref(x_6); +lean_dec_ref(x_2); return x_19; } } @@ -28060,9 +28062,9 @@ LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at__ _start: { uint8_t x_17; uint8_t x_18; lean_object* x_19; -x_17 = lean_unbox(x_5); -x_18 = lean_unbox(x_6); -x_19 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__1(x_1, x_2, x_3, x_4, x_17, x_18, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_17 = lean_unbox(x_6); +x_18 = lean_unbox(x_7); +x_19 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_17, x_18, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); return x_19; } } @@ -28070,9 +28072,9 @@ LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at__ _start: { uint8_t x_17; uint8_t x_18; lean_object* x_19; -x_17 = lean_unbox(x_4); -x_18 = lean_unbox(x_5); -x_19 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__2(x_1, x_2, x_3, x_17, x_18, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_17 = lean_unbox(x_5); +x_18 = lean_unbox(x_6); +x_19 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__37___redArg___lam__2(x_1, x_2, x_3, x_4, x_17, x_18, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); return x_19; } } @@ -28583,14 +28585,15 @@ lean_dec_ref(x_4); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -lean_object* x_10; -x_10 = l_Lean_Tactic_FunInd_foldAndCollect___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_object* x_11; +x_11 = l_Lean_Tactic_FunInd_foldAndCollect___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec(x_2); -return x_10; +return x_11; } } LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__4___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) { @@ -28749,15 +28752,16 @@ x_15 = l_Lean_Tactic_FunInd_foldAndCollect___lam__18(x_1, x_2, x_13, x_14, x_5, return x_15; } } -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__19___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__19___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_13; uint8_t x_14; lean_object* x_15; -x_13 = lean_unbox(x_3); -x_14 = lean_unbox(x_4); -x_15 = l_Lean_Tactic_FunInd_foldAndCollect___lam__19(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +uint8_t x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_unbox(x_3); +x_15 = lean_unbox(x_4); +x_16 = l_Lean_Tactic_FunInd_foldAndCollect___lam__19(x_1, x_2, x_14, x_15, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec_ref(x_7); lean_dec(x_5); -return x_15; +return x_16; } } LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lam__20___boxed(lean_object** _args) { @@ -31782,11 +31786,11 @@ lean_object* x_95; x_95 = lean_ctor_get(x_88, 1); lean_inc(x_95); lean_dec(x_88); -x_33 = x_94; +x_33 = x_91; x_34 = x_92; -x_35 = x_91; +x_35 = x_93; x_36 = x_90; -x_37 = x_93; +x_37 = x_94; x_38 = x_95; goto block_71; } @@ -32092,12 +32096,12 @@ return x_31; block_71: { lean_object* x_39; -lean_inc(x_37); -lean_inc_ref(x_34); lean_inc(x_35); +lean_inc_ref(x_34); +lean_inc(x_33); lean_inc_ref(x_36); lean_inc(x_2); -x_39 = l_Lean_Meta_substVar_x3f(x_2, x_38, x_36, x_35, x_34, x_37, x_33); +x_39 = l_Lean_Meta_substVar_x3f(x_2, x_38, x_36, x_33, x_34, x_35, x_37); if (lean_obj_tag(x_39) == 0) { lean_object* x_40; @@ -32106,10 +32110,10 @@ lean_inc(x_40); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; -lean_dec(x_37); lean_dec_ref(x_36); lean_dec(x_35); lean_dec_ref(x_34); +lean_dec(x_33); lean_dec(x_26); lean_dec(x_25); x_41 = lean_ctor_get(x_39, 1); @@ -32138,7 +32142,7 @@ if (x_43 == 0) { lean_object* x_44; lean_object* x_45; x_44 = lean_ctor_get(x_40, 0); -x_45 = l_Lean_Tactic_FunInd_cleanupAfter_allHeqToEq(x_44, x_4, x_36, x_35, x_34, x_37, x_42); +x_45 = l_Lean_Tactic_FunInd_cleanupAfter_allHeqToEq(x_44, x_4, x_36, x_33, x_34, x_35, x_42); if (lean_obj_tag(x_45) == 0) { lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; @@ -32191,7 +32195,7 @@ lean_object* x_55; lean_object* x_56; x_55 = lean_ctor_get(x_40, 0); lean_inc(x_55); lean_dec(x_40); -x_56 = l_Lean_Tactic_FunInd_cleanupAfter_allHeqToEq(x_55, x_4, x_36, x_35, x_34, x_37, x_42); +x_56 = l_Lean_Tactic_FunInd_cleanupAfter_allHeqToEq(x_55, x_4, x_36, x_33, x_34, x_35, x_42); if (lean_obj_tag(x_56) == 0) { lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; @@ -32245,10 +32249,10 @@ return x_66; else { uint8_t x_67; -lean_dec(x_37); lean_dec_ref(x_36); lean_dec(x_35); lean_dec_ref(x_34); +lean_dec(x_33); lean_dec(x_26); lean_dec(x_25); lean_dec(x_14); @@ -32449,10 +32453,10 @@ lean_object* x_95; x_95 = lean_ctor_get(x_88, 1); lean_inc(x_95); lean_dec(x_88); -x_33 = x_93; -x_34 = x_90; -x_35 = x_91; -x_36 = x_94; +x_33 = x_90; +x_34 = x_94; +x_35 = x_93; +x_36 = x_91; x_37 = x_92; x_38 = x_95; goto block_71; @@ -32759,12 +32763,12 @@ return x_31; block_71: { lean_object* x_39; -lean_inc(x_33); -lean_inc_ref(x_37); lean_inc(x_35); -lean_inc_ref(x_34); +lean_inc_ref(x_37); +lean_inc(x_36); +lean_inc_ref(x_33); lean_inc(x_1); -x_39 = l_Lean_Meta_substVar_x3f(x_1, x_38, x_34, x_35, x_37, x_33, x_36); +x_39 = l_Lean_Meta_substVar_x3f(x_1, x_38, x_33, x_36, x_37, x_35, x_34); if (lean_obj_tag(x_39) == 0) { lean_object* x_40; @@ -32774,9 +32778,9 @@ if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_dec_ref(x_37); +lean_dec(x_36); lean_dec(x_35); -lean_dec_ref(x_34); -lean_dec(x_33); +lean_dec_ref(x_33); lean_dec(x_26); lean_dec(x_25); x_41 = lean_ctor_get(x_39, 1); @@ -32805,7 +32809,7 @@ if (x_43 == 0) { lean_object* x_44; lean_object* x_45; x_44 = lean_ctor_get(x_40, 0); -x_45 = l_Lean_Tactic_FunInd_cleanupAfter_allHeqToEq(x_44, x_3, x_34, x_35, x_37, x_33, x_42); +x_45 = l_Lean_Tactic_FunInd_cleanupAfter_allHeqToEq(x_44, x_3, x_33, x_36, x_37, x_35, x_42); if (lean_obj_tag(x_45) == 0) { lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; @@ -32858,7 +32862,7 @@ lean_object* x_55; lean_object* x_56; x_55 = lean_ctor_get(x_40, 0); lean_inc(x_55); lean_dec(x_40); -x_56 = l_Lean_Tactic_FunInd_cleanupAfter_allHeqToEq(x_55, x_3, x_34, x_35, x_37, x_33, x_42); +x_56 = l_Lean_Tactic_FunInd_cleanupAfter_allHeqToEq(x_55, x_3, x_33, x_36, x_37, x_35, x_42); if (lean_obj_tag(x_56) == 0) { lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; @@ -32913,9 +32917,9 @@ else { uint8_t x_67; lean_dec_ref(x_37); +lean_dec(x_36); lean_dec(x_35); -lean_dec_ref(x_34); -lean_dec(x_33); +lean_dec_ref(x_33); lean_dec(x_26); lean_dec(x_25); lean_dec(x_14); @@ -33547,11 +33551,11 @@ lean_object* x_92; x_92 = lean_ctor_get(x_85, 1); lean_inc(x_92); lean_dec(x_85); -x_33 = x_88; -x_34 = x_89; +x_33 = x_90; +x_34 = x_88; x_35 = x_87; x_36 = x_91; -x_37 = x_90; +x_37 = x_89; x_38 = x_92; goto block_69; } @@ -33834,12 +33838,12 @@ return x_31; block_69: { lean_object* x_39; -lean_inc(x_37); -lean_inc_ref(x_34); lean_inc(x_33); +lean_inc_ref(x_37); +lean_inc(x_34); lean_inc_ref(x_35); lean_inc(x_2); -x_39 = l_Lean_Meta_substVar_x3f(x_2, x_38, x_35, x_33, x_34, x_37, x_36); +x_39 = l_Lean_Meta_substVar_x3f(x_2, x_38, x_35, x_34, x_37, x_33, x_36); if (lean_obj_tag(x_39) == 0) { lean_object* x_40; @@ -33848,9 +33852,9 @@ lean_inc(x_40); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; -lean_dec(x_37); +lean_dec_ref(x_37); lean_dec_ref(x_35); -lean_dec_ref(x_34); +lean_dec(x_34); lean_dec(x_33); lean_dec(x_26); lean_dec(x_25); @@ -33880,7 +33884,7 @@ if (x_43 == 0) { lean_object* x_44; lean_object* x_45; x_44 = lean_ctor_get(x_40, 0); -x_45 = l_Lean_Tactic_FunInd_cleanupAfter_allHeqToEq(x_44, x_4, x_35, x_33, x_34, x_37, x_42); +x_45 = l_Lean_Tactic_FunInd_cleanupAfter_allHeqToEq(x_44, x_4, x_35, x_34, x_37, x_33, x_42); if (lean_obj_tag(x_45) == 0) { lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; @@ -33931,7 +33935,7 @@ lean_object* x_54; lean_object* x_55; x_54 = lean_ctor_get(x_40, 0); lean_inc(x_54); lean_dec(x_40); -x_55 = l_Lean_Tactic_FunInd_cleanupAfter_allHeqToEq(x_54, x_4, x_35, x_33, x_34, x_37, x_42); +x_55 = l_Lean_Tactic_FunInd_cleanupAfter_allHeqToEq(x_54, x_4, x_35, x_34, x_37, x_33, x_42); if (lean_obj_tag(x_55) == 0) { lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; @@ -33983,9 +33987,9 @@ return x_64; else { uint8_t x_65; -lean_dec(x_37); +lean_dec_ref(x_37); lean_dec_ref(x_35); -lean_dec_ref(x_34); +lean_dec(x_34); lean_dec(x_33); lean_dec(x_26); lean_dec(x_25); @@ -34186,10 +34190,10 @@ x_92 = lean_ctor_get(x_85, 1); lean_inc(x_92); lean_dec(x_85); x_33 = x_91; -x_34 = x_87; -x_35 = x_89; -x_36 = x_90; -x_37 = x_88; +x_34 = x_89; +x_35 = x_88; +x_36 = x_87; +x_37 = x_90; x_38 = x_92; goto block_69; } @@ -34472,12 +34476,12 @@ return x_31; block_69: { lean_object* x_39; -lean_inc(x_36); -lean_inc_ref(x_35); lean_inc(x_37); lean_inc_ref(x_34); +lean_inc(x_35); +lean_inc_ref(x_36); lean_inc(x_1); -x_39 = l_Lean_Meta_substVar_x3f(x_1, x_38, x_34, x_37, x_35, x_36, x_33); +x_39 = l_Lean_Meta_substVar_x3f(x_1, x_38, x_36, x_35, x_34, x_37, x_33); if (lean_obj_tag(x_39) == 0) { lean_object* x_40; @@ -34487,8 +34491,8 @@ if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_dec(x_37); -lean_dec(x_36); -lean_dec_ref(x_35); +lean_dec_ref(x_36); +lean_dec(x_35); lean_dec_ref(x_34); lean_dec(x_26); lean_dec(x_25); @@ -34518,7 +34522,7 @@ if (x_43 == 0) { lean_object* x_44; lean_object* x_45; x_44 = lean_ctor_get(x_40, 0); -x_45 = l_Lean_Tactic_FunInd_cleanupAfter_allHeqToEq(x_44, x_3, x_34, x_37, x_35, x_36, x_42); +x_45 = l_Lean_Tactic_FunInd_cleanupAfter_allHeqToEq(x_44, x_3, x_36, x_35, x_34, x_37, x_42); if (lean_obj_tag(x_45) == 0) { lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; @@ -34569,7 +34573,7 @@ lean_object* x_54; lean_object* x_55; x_54 = lean_ctor_get(x_40, 0); lean_inc(x_54); lean_dec(x_40); -x_55 = l_Lean_Tactic_FunInd_cleanupAfter_allHeqToEq(x_54, x_3, x_34, x_37, x_35, x_36, x_42); +x_55 = l_Lean_Tactic_FunInd_cleanupAfter_allHeqToEq(x_54, x_3, x_36, x_35, x_34, x_37, x_42); if (lean_obj_tag(x_55) == 0) { lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; @@ -34622,8 +34626,8 @@ else { uint8_t x_65; lean_dec(x_37); -lean_dec(x_36); -lean_dec_ref(x_35); +lean_dec_ref(x_36); +lean_dec(x_35); lean_dec_ref(x_34); lean_dec(x_26); lean_dec(x_25); @@ -37878,7 +37882,7 @@ return x_20; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; double x_17; double 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_32; lean_object* x_33; double x_34; lean_object* x_35; lean_object* x_36; double x_37; lean_object* x_38; uint8_t x_39; lean_object* x_40; lean_object* x_55; lean_object* x_56; uint8_t x_57; double x_58; double x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; uint8_t x_76; double x_77; lean_object* x_78; lean_object* x_79; double x_80; 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; double x_104; lean_object* x_105; lean_object* x_106; double x_107; uint8_t x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; uint8_t x_112; lean_object* x_151; lean_object* x_152; double x_153; lean_object* x_154; lean_object* x_155; double x_156; lean_object* x_157; lean_object* x_158; uint8_t x_159; lean_object* x_160; double x_161; lean_object* x_165; lean_object* x_166; uint8_t 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_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; uint8_t x_193; double x_194; lean_object* x_195; lean_object* x_196; double x_197; lean_object* x_198; uint8_t x_199; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; uint8_t x_242; double x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; double x_247; double x_248; lean_object* x_252; lean_object* x_253; uint8_t x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; uint8_t x_317; +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; double x_17; double 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_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; double x_36; double x_37; lean_object* x_38; uint8_t x_39; lean_object* x_40; lean_object* x_55; lean_object* x_56; double x_57; double x_58; uint8_t x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; double x_77; double x_78; uint8_t x_79; lean_object* x_80; 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; double x_105; double x_106; lean_object* x_107; uint8_t x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; uint8_t x_112; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; double x_155; double x_156; lean_object* x_157; uint8_t x_158; lean_object* x_159; lean_object* x_160; double x_161; lean_object* x_165; lean_object* x_166; uint8_t 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_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; double x_194; double x_195; uint8_t x_196; lean_object* x_197; lean_object* x_198; uint8_t x_199; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; double x_243; double x_244; uint8_t x_245; lean_object* x_246; lean_object* x_247; double x_248; lean_object* x_252; lean_object* x_253; uint8_t x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; uint8_t x_317; x_13 = lean_ctor_get(x_10, 2); lean_inc(x_13); x_14 = lean_ctor_get(x_10, 5); @@ -37974,7 +37978,7 @@ lean_inc(x_9); lean_inc_ref(x_8); lean_inc_ref(x_38); lean_inc_ref(x_35); -x_41 = lean_apply_8(x_2, x_36, x_35, x_38, x_8, x_9, x_10, x_11, x_40); +x_41 = lean_apply_8(x_2, x_34, x_35, x_38, x_8, x_9, x_10, x_11, x_40); if (lean_obj_tag(x_41) == 0) { lean_dec_ref(x_38); @@ -37999,8 +38003,8 @@ lean_inc(x_47); lean_dec(x_43); x_15 = x_32; x_16 = x_33; -x_17 = x_34; -x_18 = x_37; +x_17 = x_37; +x_18 = x_36; x_19 = x_39; x_20 = x_46; x_21 = x_47; @@ -38050,8 +38054,8 @@ lean_dec_ref(x_41); x_53 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__2; x_15 = x_32; x_16 = x_33; -x_17 = x_34; -x_18 = x_37; +x_17 = x_37; +x_18 = x_36; x_19 = x_39; x_20 = x_53; x_21 = x_35; @@ -38062,7 +38066,7 @@ goto block_31; } block_71: { -if (x_57 == 0) +if (x_59 == 0) { double x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; x_64 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__0; @@ -38086,8 +38090,8 @@ lean_object* x_68; lean_object* x_69; lean_object* x_70; x_68 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_68, 0, x_1); lean_ctor_set(x_68, 1, x_5); -lean_ctor_set_float(x_68, sizeof(void*)*2, x_58); -lean_ctor_set_float(x_68, sizeof(void*)*2 + 8, x_59); +lean_ctor_set_float(x_68, sizeof(void*)*2, x_57); +lean_ctor_set_float(x_68, sizeof(void*)*2 + 8, x_58); lean_ctor_set_uint8(x_68, sizeof(void*)*2 + 16, x_4); x_69 = lean_box(0); x_70 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9___redArg___lam__0(x_55, x_14, x_60, x_56, x_68, x_69, x_61, x_62, x_8, x_9, x_10, x_11, x_63); @@ -38105,13 +38109,13 @@ lean_inc(x_11); lean_inc_ref(x_10); lean_inc(x_9); lean_inc_ref(x_8); -lean_inc_ref(x_74); -lean_inc_ref(x_78); -x_81 = lean_apply_8(x_2, x_79, x_78, x_74, x_8, x_9, x_10, x_11, x_75); +lean_inc_ref(x_75); +lean_inc_ref(x_76); +x_81 = lean_apply_8(x_2, x_80, x_76, x_75, x_8, x_9, x_10, x_11, x_74); if (lean_obj_tag(x_81) == 0) { -lean_dec_ref(x_78); -lean_dec_ref(x_74); +lean_dec_ref(x_76); +lean_dec_ref(x_75); if (lean_obj_tag(x_81) == 0) { lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; @@ -38132,9 +38136,9 @@ lean_inc(x_87); lean_dec(x_83); x_55 = x_72; x_56 = x_73; -x_57 = x_76; -x_58 = x_77; -x_59 = x_80; +x_57 = x_77; +x_58 = x_78; +x_59 = x_79; x_60 = x_86; x_61 = x_87; x_62 = x_85; @@ -38183,12 +38187,12 @@ lean_dec_ref(x_81); x_93 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__2; x_55 = x_72; x_56 = x_73; -x_57 = x_76; -x_58 = x_77; -x_59 = x_80; +x_57 = x_77; +x_58 = x_78; +x_59 = x_79; x_60 = x_93; -x_61 = x_78; -x_62 = x_74; +x_61 = x_76; +x_62 = x_75; x_63 = x_92; goto block_71; } @@ -38239,8 +38243,8 @@ lean_dec(x_11); x_124 = lean_ctor_get(x_123, 1); lean_inc(x_124); lean_dec_ref(x_123); -x_125 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__11___redArg(x_106, x_105, x_109, x_124); -lean_dec_ref(x_106); +x_125 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__11___redArg(x_104, x_107, x_109, x_124); +lean_dec_ref(x_104); return x_125; } else @@ -38261,8 +38265,8 @@ lean_dec(x_11); x_131 = lean_ctor_get(x_130, 1); lean_inc(x_131); lean_dec_ref(x_130); -x_132 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__11___redArg(x_106, x_105, x_109, x_131); -lean_dec_ref(x_106); +x_132 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__11___redArg(x_104, x_107, x_109, x_131); +lean_dec_ref(x_104); return x_132; } } @@ -38320,8 +38324,8 @@ lean_dec(x_11); x_148 = lean_ctor_get(x_147, 1); lean_inc(x_148); lean_dec_ref(x_147); -x_149 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__11___redArg(x_106, x_105, x_109, x_148); -lean_dec_ref(x_106); +x_149 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__11___redArg(x_104, x_107, x_109, x_148); +lean_dec_ref(x_104); return x_149; } } @@ -38331,9 +38335,9 @@ lean_dec_ref(x_110); x_32 = x_102; x_33 = x_103; x_34 = x_104; -x_35 = x_105; +x_35 = x_107; x_36 = x_106; -x_37 = x_107; +x_37 = x_105; x_38 = x_109; x_39 = x_108; x_40 = x_111; @@ -38346,9 +38350,9 @@ lean_dec_ref(x_110); x_32 = x_102; x_33 = x_103; x_34 = x_104; -x_35 = x_105; +x_35 = x_107; x_36 = x_106; -x_37 = x_107; +x_37 = x_105; x_38 = x_109; x_39 = x_108; x_40 = x_111; @@ -38358,17 +38362,17 @@ goto block_54; block_164: { double x_162; uint8_t x_163; -x_162 = lean_float_sub(x_153, x_156); +x_162 = lean_float_sub(x_156, x_155); x_163 = lean_float_decLt(x_161, x_162); x_102 = x_151; x_103 = x_152; x_104 = x_153; -x_105 = x_154; +x_105 = x_156; x_106 = x_155; -x_107 = x_156; -x_108 = x_159; -x_109 = x_158; -x_110 = x_157; +x_107 = x_154; +x_108 = x_158; +x_109 = x_157; +x_110 = x_159; x_111 = x_160; x_112 = x_163; goto block_150; @@ -38392,10 +38396,10 @@ lean_dec(x_13); lean_inc_ref(x_169); x_102 = x_169; x_103 = x_166; -x_104 = x_177; -x_105 = x_170; -x_106 = x_169; -x_107 = x_176; +x_104 = x_169; +x_105 = x_177; +x_106 = x_176; +x_107 = x_170; x_108 = x_179; x_109 = x_171; x_110 = x_168; @@ -38417,13 +38421,13 @@ x_184 = lean_float_div(x_182, x_183); lean_inc_ref(x_169); x_151 = x_169; x_152 = x_166; -x_153 = x_177; +x_153 = x_169; x_154 = x_170; -x_155 = x_169; -x_156 = x_176; -x_157 = x_168; -x_158 = x_171; -x_159 = x_179; +x_155 = x_176; +x_156 = x_177; +x_157 = x_171; +x_158 = x_179; +x_159 = x_168; x_160 = x_175; x_161 = x_184; goto block_164; @@ -38438,13 +38442,13 @@ x_187 = lean_float_of_nat(x_186); lean_inc_ref(x_169); x_151 = x_169; x_152 = x_166; -x_153 = x_177; +x_153 = x_169; x_154 = x_170; -x_155 = x_169; -x_156 = x_176; -x_157 = x_168; -x_158 = x_171; -x_159 = x_179; +x_155 = x_176; +x_156 = x_177; +x_157 = x_171; +x_158 = x_179; +x_159 = x_168; x_160 = x_175; x_161 = x_187; goto block_164; @@ -38470,7 +38474,7 @@ lean_dec_ref(x_8); lean_dec_ref(x_5); lean_dec_ref(x_2); lean_dec(x_1); -x_201 = lean_st_ref_take(x_11, x_192); +x_201 = lean_st_ref_take(x_11, x_191); x_202 = lean_ctor_get(x_201, 0); lean_inc(x_202); x_203 = lean_ctor_get(x_202, 4); @@ -38489,7 +38493,7 @@ if (x_207 == 0) { lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; x_208 = lean_ctor_get(x_203, 0); -x_209 = l_Lean_PersistentArray_append___redArg(x_196, x_208); +x_209 = l_Lean_PersistentArray_append___redArg(x_197, x_208); lean_dec_ref(x_208); lean_ctor_set(x_203, 0, x_209); x_210 = lean_st_ref_set(x_11, x_202, x_204); @@ -38497,7 +38501,7 @@ lean_dec(x_11); x_211 = lean_ctor_get(x_210, 1); lean_inc(x_211); lean_dec_ref(x_210); -x_212 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__11___redArg(x_198, x_195, x_191, x_211); +x_212 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__11___redArg(x_198, x_193, x_192, x_211); lean_dec_ref(x_198); return x_212; } @@ -38508,7 +38512,7 @@ x_213 = lean_ctor_get_uint64(x_203, sizeof(void*)*1); x_214 = lean_ctor_get(x_203, 0); lean_inc(x_214); lean_dec(x_203); -x_215 = l_Lean_PersistentArray_append___redArg(x_196, x_214); +x_215 = l_Lean_PersistentArray_append___redArg(x_197, x_214); lean_dec_ref(x_214); x_216 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_216, 0, x_215); @@ -38519,7 +38523,7 @@ lean_dec(x_11); x_218 = lean_ctor_get(x_217, 1); lean_inc(x_218); lean_dec_ref(x_217); -x_219 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__11___redArg(x_198, x_195, x_191, x_218); +x_219 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__11___redArg(x_198, x_193, x_192, x_218); lean_dec_ref(x_198); return x_219; } @@ -38554,7 +38558,7 @@ if (lean_is_exclusive(x_203)) { lean_dec_ref(x_203); x_230 = lean_box(0); } -x_231 = l_Lean_PersistentArray_append___redArg(x_196, x_229); +x_231 = l_Lean_PersistentArray_append___redArg(x_197, x_229); lean_dec_ref(x_229); if (lean_is_scalar(x_230)) { x_232 = lean_alloc_ctor(0, 1, 8); @@ -38578,14 +38582,14 @@ lean_dec(x_11); x_235 = lean_ctor_get(x_234, 1); lean_inc(x_235); lean_dec_ref(x_234); -x_236 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__11___redArg(x_198, x_195, x_191, x_235); +x_236 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_buildInductionCase_spec__9_spec__11___redArg(x_198, x_193, x_192, x_235); lean_dec_ref(x_198); return x_236; } } else { -lean_dec_ref(x_196); +lean_dec_ref(x_197); x_72 = x_189; x_73 = x_190; x_74 = x_191; @@ -38593,14 +38597,14 @@ x_75 = x_192; x_76 = x_193; x_77 = x_194; x_78 = x_195; -x_79 = x_198; -x_80 = x_197; +x_79 = x_196; +x_80 = x_198; goto block_94; } } else { -lean_dec_ref(x_196); +lean_dec_ref(x_197); x_72 = x_189; x_73 = x_190; x_74 = x_191; @@ -38608,26 +38612,26 @@ x_75 = x_192; x_76 = x_193; x_77 = x_194; x_78 = x_195; -x_79 = x_198; -x_80 = x_197; +x_79 = x_196; +x_80 = x_198; goto block_94; } } block_251: { double x_249; uint8_t x_250; -x_249 = lean_float_sub(x_247, x_243); +x_249 = lean_float_sub(x_244, x_243); x_250 = lean_float_decLt(x_248, x_249); x_189 = x_238; x_190 = x_239; x_191 = x_240; -x_192 = x_241; -x_193 = x_242; +x_192 = x_242; +x_193 = x_241; x_194 = x_243; x_195 = x_244; x_196 = x_245; -x_197 = x_247; -x_198 = x_246; +x_197 = x_246; +x_198 = x_247; x_199 = x_250; goto block_237; } @@ -38653,13 +38657,13 @@ lean_dec(x_13); lean_inc_ref(x_256); x_189 = x_253; x_190 = x_256; -x_191 = x_258; -x_192 = x_262; -x_193 = x_269; +x_191 = x_262; +x_192 = x_258; +x_193 = x_257; x_194 = x_265; -x_195 = x_257; -x_196 = x_255; -x_197 = x_267; +x_195 = x_267; +x_196 = x_269; +x_197 = x_255; x_198 = x_256; x_199 = x_269; goto block_237; @@ -38678,14 +38682,14 @@ x_274 = lean_float_div(x_272, x_273); lean_inc_ref(x_256); x_238 = x_253; x_239 = x_256; -x_240 = x_258; -x_241 = x_262; -x_242 = x_269; +x_240 = x_262; +x_241 = x_257; +x_242 = x_258; x_243 = x_265; -x_244 = x_257; -x_245 = x_255; -x_246 = x_256; -x_247 = x_267; +x_244 = x_267; +x_245 = x_269; +x_246 = x_255; +x_247 = x_256; x_248 = x_274; goto block_251; } @@ -38699,14 +38703,14 @@ x_277 = lean_float_of_nat(x_276); lean_inc_ref(x_256); x_238 = x_253; x_239 = x_256; -x_240 = x_258; -x_241 = x_262; -x_242 = x_269; +x_240 = x_262; +x_241 = x_257; +x_242 = x_258; x_243 = x_265; -x_244 = x_257; -x_245 = x_255; -x_246 = x_256; -x_247 = x_267; +x_244 = x_267; +x_245 = x_269; +x_246 = x_255; +x_247 = x_256; x_248 = x_277; goto block_251; } @@ -46411,18 +46415,18 @@ if (x_96 == 0) uint8_t x_97; x_97 = l_Lean_Exception_isRuntime(x_94); lean_dec(x_94); -x_50 = x_93; -x_51 = x_91; -x_52 = x_95; +x_50 = x_95; +x_51 = x_93; +x_52 = x_91; x_53 = x_97; goto block_70; } else { lean_dec(x_94); -x_50 = x_93; -x_51 = x_91; -x_52 = x_95; +x_50 = x_95; +x_51 = x_93; +x_52 = x_91; x_53 = x_96; goto block_70; } @@ -46600,18 +46604,18 @@ if (x_124 == 0) uint8_t x_125; x_125 = l_Lean_Exception_isRuntime(x_122); lean_dec(x_122); -x_29 = x_119; -x_30 = x_123; -x_31 = x_121; +x_29 = x_123; +x_30 = x_121; +x_31 = x_119; x_32 = x_125; goto block_49; } else { lean_dec(x_122); -x_29 = x_119; -x_30 = x_123; -x_31 = x_121; +x_29 = x_123; +x_30 = x_121; +x_31 = x_119; x_32 = x_124; goto block_49; } @@ -46938,9 +46942,9 @@ block_49: if (x_32 == 0) { lean_object* x_33; +lean_dec_ref(x_30); +x_33 = l_Lean_Meta_SavedState_restore___redArg(x_31, x_7, x_9, x_29); lean_dec_ref(x_31); -x_33 = l_Lean_Meta_SavedState_restore___redArg(x_29, x_7, x_9, x_30); -lean_dec_ref(x_29); if (lean_obj_tag(x_33) == 0) { uint8_t x_34; @@ -46995,9 +46999,9 @@ goto block_19; } else { -lean_dec_ref(x_29); +lean_dec_ref(x_31); lean_dec(x_28); -x_17 = x_31; +x_17 = x_30; goto block_19; } } @@ -47006,9 +47010,9 @@ block_70: if (x_53 == 0) { lean_object* x_54; -lean_dec_ref(x_50); -x_54 = l_Lean_Meta_SavedState_restore___redArg(x_51, x_7, x_9, x_52); lean_dec_ref(x_51); +x_54 = l_Lean_Meta_SavedState_restore___redArg(x_52, x_7, x_9, x_50); +lean_dec_ref(x_52); if (lean_obj_tag(x_54) == 0) { uint8_t x_55; @@ -47063,9 +47067,9 @@ goto block_22; } else { -lean_dec_ref(x_51); +lean_dec_ref(x_52); lean_dec(x_28); -x_20 = x_50; +x_20 = x_51; goto block_22; } } @@ -47301,18 +47305,18 @@ if (x_96 == 0) uint8_t x_97; x_97 = l_Lean_Exception_isRuntime(x_94); lean_dec(x_94); -x_50 = x_91; -x_51 = x_93; -x_52 = x_95; +x_50 = x_93; +x_51 = x_95; +x_52 = x_91; x_53 = x_97; goto block_70; } else { lean_dec(x_94); -x_50 = x_91; -x_51 = x_93; -x_52 = x_95; +x_50 = x_93; +x_51 = x_95; +x_52 = x_91; x_53 = x_96; goto block_70; } @@ -47490,8 +47494,8 @@ if (x_124 == 0) uint8_t x_125; x_125 = l_Lean_Exception_isRuntime(x_122); lean_dec(x_122); -x_29 = x_121; -x_30 = x_119; +x_29 = x_119; +x_30 = x_121; x_31 = x_123; x_32 = x_125; goto block_49; @@ -47499,8 +47503,8 @@ goto block_49; else { lean_dec(x_122); -x_29 = x_121; -x_30 = x_119; +x_29 = x_119; +x_30 = x_121; x_31 = x_123; x_32 = x_124; goto block_49; @@ -47828,9 +47832,9 @@ block_49: if (x_32 == 0) { lean_object* x_33; -lean_dec_ref(x_29); -x_33 = l_Lean_Meta_SavedState_restore___redArg(x_30, x_7, x_9, x_31); lean_dec_ref(x_30); +x_33 = l_Lean_Meta_SavedState_restore___redArg(x_29, x_7, x_9, x_31); +lean_dec_ref(x_29); if (lean_obj_tag(x_33) == 0) { uint8_t x_34; @@ -47885,9 +47889,9 @@ goto block_19; } else { -lean_dec_ref(x_30); +lean_dec_ref(x_29); lean_dec(x_28); -x_17 = x_29; +x_17 = x_30; goto block_19; } } @@ -47896,9 +47900,9 @@ block_70: if (x_53 == 0) { lean_object* x_54; -lean_dec_ref(x_51); -x_54 = l_Lean_Meta_SavedState_restore___redArg(x_50, x_7, x_9, x_52); lean_dec_ref(x_50); +x_54 = l_Lean_Meta_SavedState_restore___redArg(x_52, x_7, x_9, x_51); +lean_dec_ref(x_52); if (lean_obj_tag(x_54) == 0) { uint8_t x_55; @@ -47953,9 +47957,9 @@ goto block_22; } else { -lean_dec_ref(x_50); +lean_dec_ref(x_52); lean_dec(x_28); -x_20 = x_51; +x_20 = x_50; goto block_22; } } @@ -48844,7 +48848,7 @@ return x_14; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___Lean_Tactic_FunInd_rwMatcher_spec__14___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; double x_15; uint8_t x_16; double x_17; lean_object* x_18; lean_object* x_19; lean_object* x_28; lean_object* x_29; lean_object* x_30; double x_31; lean_object* x_32; uint8_t x_33; double x_34; lean_object* x_45; lean_object* x_46; double x_47; uint8_t x_48; double x_49; lean_object* x_50; lean_object* x_51; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; double x_64; uint8_t x_65; double x_66; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; double x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; uint8_t x_86; double x_87; uint8_t x_88; lean_object* x_127; lean_object* x_128; lean_object* x_129; double x_130; lean_object* x_131; lean_object* x_132; uint8_t x_133; double x_134; double x_135; lean_object* x_139; lean_object* x_140; lean_object* x_141; uint8_t x_142; lean_object* x_143; lean_object* x_144; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; double x_165; lean_object* x_166; uint8_t x_167; double x_168; uint8_t x_169; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; double x_213; uint8_t x_214; double x_215; double x_216; lean_object* x_220; lean_object* x_221; lean_object* x_222; uint8_t x_223; lean_object* x_224; lean_object* x_225; uint8_t x_271; +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; lean_object* x_19; lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_object* x_31; lean_object* x_32; double x_33; double x_34; lean_object* x_45; lean_object* x_46; uint8_t x_47; double x_48; double x_49; lean_object* x_50; lean_object* x_51; lean_object* x_60; lean_object* x_61; uint8_t x_62; lean_object* x_63; lean_object* x_64; double x_65; double x_66; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; uint8_t x_82; lean_object* x_83; double x_84; lean_object* x_85; lean_object* x_86; double x_87; uint8_t x_88; lean_object* x_127; lean_object* x_128; uint8_t x_129; lean_object* x_130; lean_object* x_131; double x_132; lean_object* x_133; double x_134; double x_135; lean_object* x_139; lean_object* x_140; lean_object* x_141; uint8_t x_142; lean_object* x_143; lean_object* x_144; lean_object* x_161; lean_object* x_162; uint8_t x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; double x_167; double x_168; uint8_t x_169; lean_object* x_208; lean_object* x_209; uint8_t x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; double x_214; double x_215; double x_216; lean_object* x_220; lean_object* x_221; lean_object* x_222; uint8_t x_223; lean_object* x_224; lean_object* x_225; uint8_t x_271; x_11 = lean_ctor_get(x_8, 2); lean_inc(x_11); x_12 = lean_ctor_get(x_8, 5); @@ -48885,7 +48889,7 @@ goto block_270; } block_27: { -if (x_16 == 0) +if (x_15 == 0) { double x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; x_20 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__0; @@ -48909,8 +48913,8 @@ lean_object* x_24; lean_object* x_25; lean_object* x_26; x_24 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_24, 0, x_1); lean_ctor_set(x_24, 1, x_5); -lean_ctor_set_float(x_24, sizeof(void*)*2, x_15); -lean_ctor_set_float(x_24, sizeof(void*)*2 + 8, x_17); +lean_ctor_set_float(x_24, sizeof(void*)*2, x_17); +lean_ctor_set_float(x_24, sizeof(void*)*2 + 8, x_16); lean_ctor_set_uint8(x_24, sizeof(void*)*2 + 16, x_4); x_25 = lean_box(0); x_26 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_rwMatcher_spec__14___redArg___lam__0(x_14, x_12, x_18, x_13, x_24, x_25, x_6, x_7, x_8, x_9, x_19); @@ -48928,7 +48932,7 @@ lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_6); -x_35 = lean_apply_6(x_2, x_30, x_6, x_7, x_8, x_9, x_32); +x_35 = lean_apply_6(x_2, x_31, x_6, x_7, x_8, x_9, x_32); if (lean_obj_tag(x_35) == 0) { if (lean_obj_tag(x_35) == 0) @@ -48941,7 +48945,7 @@ lean_inc(x_37); lean_dec_ref(x_35); x_13 = x_28; x_14 = x_29; -x_15 = x_31; +x_15 = x_30; x_16 = x_33; x_17 = x_34; x_18 = x_36; @@ -48990,7 +48994,7 @@ lean_dec_ref(x_35); x_43 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__2; x_13 = x_28; x_14 = x_29; -x_15 = x_31; +x_15 = x_30; x_16 = x_33; x_17 = x_34; x_18 = x_43; @@ -49000,7 +49004,7 @@ goto block_27; } block_59: { -if (x_48 == 0) +if (x_47 == 0) { double x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; x_52 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__0; @@ -49024,8 +49028,8 @@ lean_object* x_56; lean_object* x_57; lean_object* x_58; x_56 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_56, 0, x_1); lean_ctor_set(x_56, 1, x_5); -lean_ctor_set_float(x_56, sizeof(void*)*2, x_49); -lean_ctor_set_float(x_56, sizeof(void*)*2 + 8, x_47); +lean_ctor_set_float(x_56, sizeof(void*)*2, x_48); +lean_ctor_set_float(x_56, sizeof(void*)*2 + 8, x_49); lean_ctor_set_uint8(x_56, sizeof(void*)*2 + 16, x_4); x_57 = lean_box(0); x_58 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_rwMatcher_spec__14___redArg___lam__0(x_46, x_12, x_50, x_45, x_56, x_57, x_6, x_7, x_8, x_9, x_51); @@ -49043,7 +49047,7 @@ lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_6); -x_67 = lean_apply_6(x_2, x_63, x_6, x_7, x_8, x_9, x_62); +x_67 = lean_apply_6(x_2, x_63, x_6, x_7, x_8, x_9, x_64); if (lean_obj_tag(x_67) == 0) { if (lean_obj_tag(x_67) == 0) @@ -49056,7 +49060,7 @@ lean_inc(x_69); lean_dec_ref(x_67); x_45 = x_60; x_46 = x_61; -x_47 = x_64; +x_47 = x_62; x_48 = x_65; x_49 = x_66; x_50 = x_68; @@ -49105,7 +49109,7 @@ lean_dec_ref(x_67); x_75 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__2; x_45 = x_60; x_46 = x_61; -x_47 = x_64; +x_47 = x_62; x_48 = x_65; x_49 = x_66; x_50 = x_75; @@ -49151,7 +49155,7 @@ if (x_96 == 0) { lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; x_97 = lean_ctor_get(x_92, 0); -x_98 = l_Lean_PersistentArray_append___redArg(x_84, x_97); +x_98 = l_Lean_PersistentArray_append___redArg(x_86, x_97); lean_dec_ref(x_97); lean_ctor_set(x_92, 0, x_98); x_99 = lean_st_ref_set(x_9, x_91, x_93); @@ -49170,7 +49174,7 @@ x_102 = lean_ctor_get_uint64(x_92, sizeof(void*)*1); x_103 = lean_ctor_get(x_92, 0); lean_inc(x_103); lean_dec(x_92); -x_104 = l_Lean_PersistentArray_append___redArg(x_84, x_103); +x_104 = l_Lean_PersistentArray_append___redArg(x_86, x_103); lean_dec_ref(x_103); x_105 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_105, 0, x_104); @@ -49216,7 +49220,7 @@ if (lean_is_exclusive(x_92)) { lean_dec_ref(x_92); x_119 = lean_box(0); } -x_120 = l_Lean_PersistentArray_append___redArg(x_84, x_118); +x_120 = l_Lean_PersistentArray_append___redArg(x_86, x_118); lean_dec_ref(x_118); if (lean_is_scalar(x_119)) { x_121 = lean_alloc_ctor(0, 1, 8); @@ -49247,26 +49251,26 @@ return x_125; } else { -lean_dec_ref(x_84); +lean_dec_ref(x_86); x_28 = x_80; x_29 = x_81; -x_30 = x_83; -x_31 = x_82; +x_30 = x_82; +x_31 = x_83; x_32 = x_85; -x_33 = x_86; +x_33 = x_84; x_34 = x_87; goto block_44; } } else { -lean_dec_ref(x_84); +lean_dec_ref(x_86); x_28 = x_80; x_29 = x_81; -x_30 = x_83; -x_31 = x_82; +x_30 = x_82; +x_31 = x_83; x_32 = x_85; -x_33 = x_86; +x_33 = x_84; x_34 = x_87; goto block_44; } @@ -49274,12 +49278,12 @@ goto block_44; block_138: { double x_136; uint8_t x_137; -x_136 = lean_float_sub(x_134, x_130); +x_136 = lean_float_sub(x_132, x_134); x_137 = lean_float_decLt(x_135, x_136); x_80 = x_127; x_81 = x_128; -x_82 = x_130; -x_83 = x_129; +x_82 = x_129; +x_83 = x_130; x_84 = x_132; x_85 = x_131; x_86 = x_133; @@ -49296,7 +49300,7 @@ lean_inc(x_146); x_147 = lean_ctor_get(x_145, 1); lean_inc(x_147); lean_dec_ref(x_145); -x_148 = lean_float_of_nat(x_140); +x_148 = lean_float_of_nat(x_139); x_149 = lean_float_of_nat(x_146); x_150 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__3; x_151 = l_Lean_Option_get___at___Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32_spec__32_spec__32_spec__32(x_11, x_150); @@ -49305,13 +49309,13 @@ if (x_151 == 0) lean_dec(x_11); lean_inc_ref(x_143); x_80 = x_143; -x_81 = x_139; -x_82 = x_148; +x_81 = x_140; +x_82 = x_151; x_83 = x_143; -x_84 = x_141; +x_84 = x_149; x_85 = x_147; -x_86 = x_151; -x_87 = x_149; +x_86 = x_141; +x_87 = x_148; x_88 = x_151; goto block_126; } @@ -49328,13 +49332,13 @@ x_155 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40__ x_156 = lean_float_div(x_154, x_155); lean_inc_ref(x_143); x_127 = x_143; -x_128 = x_139; -x_129 = x_143; -x_130 = x_148; +x_128 = x_140; +x_129 = x_151; +x_130 = x_143; x_131 = x_147; -x_132 = x_141; -x_133 = x_151; -x_134 = x_149; +x_132 = x_149; +x_133 = x_141; +x_134 = x_148; x_135 = x_156; goto block_138; } @@ -49347,13 +49351,13 @@ lean_dec(x_11); x_159 = lean_float_of_nat(x_158); lean_inc_ref(x_143); x_127 = x_143; -x_128 = x_139; -x_129 = x_143; -x_130 = x_148; +x_128 = x_140; +x_129 = x_151; +x_130 = x_143; x_131 = x_147; -x_132 = x_141; -x_133 = x_151; -x_134 = x_149; +x_132 = x_149; +x_133 = x_141; +x_134 = x_148; x_135 = x_159; goto block_138; } @@ -49378,7 +49382,7 @@ lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_2); lean_dec(x_1); -x_171 = lean_st_ref_take(x_9, x_164); +x_171 = lean_st_ref_take(x_9, x_166); x_172 = lean_ctor_get(x_171, 0); lean_inc(x_172); x_173 = lean_ctor_get(x_172, 4); @@ -49397,7 +49401,7 @@ if (x_177 == 0) { lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; x_178 = lean_ctor_get(x_173, 0); -x_179 = l_Lean_PersistentArray_append___redArg(x_166, x_178); +x_179 = l_Lean_PersistentArray_append___redArg(x_165, x_178); lean_dec_ref(x_178); lean_ctor_set(x_173, 0, x_179); x_180 = lean_st_ref_set(x_9, x_172, x_174); @@ -49405,8 +49409,8 @@ lean_dec(x_9); x_181 = lean_ctor_get(x_180, 1); lean_inc(x_181); lean_dec_ref(x_180); -x_182 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_rwMatcher_spec__14_spec__16___redArg(x_163, x_181); -lean_dec_ref(x_163); +x_182 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_rwMatcher_spec__14_spec__16___redArg(x_164, x_181); +lean_dec_ref(x_164); return x_182; } else @@ -49416,7 +49420,7 @@ x_183 = lean_ctor_get_uint64(x_173, sizeof(void*)*1); x_184 = lean_ctor_get(x_173, 0); lean_inc(x_184); lean_dec(x_173); -x_185 = l_Lean_PersistentArray_append___redArg(x_166, x_184); +x_185 = l_Lean_PersistentArray_append___redArg(x_165, x_184); lean_dec_ref(x_184); x_186 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_186, 0, x_185); @@ -49427,8 +49431,8 @@ lean_dec(x_9); x_188 = lean_ctor_get(x_187, 1); lean_inc(x_188); lean_dec_ref(x_187); -x_189 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_rwMatcher_spec__14_spec__16___redArg(x_163, x_188); -lean_dec_ref(x_163); +x_189 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_rwMatcher_spec__14_spec__16___redArg(x_164, x_188); +lean_dec_ref(x_164); return x_189; } } @@ -49462,7 +49466,7 @@ if (lean_is_exclusive(x_173)) { lean_dec_ref(x_173); x_200 = lean_box(0); } -x_201 = l_Lean_PersistentArray_append___redArg(x_166, x_199); +x_201 = l_Lean_PersistentArray_append___redArg(x_165, x_199); lean_dec_ref(x_199); if (lean_is_scalar(x_200)) { x_202 = lean_alloc_ctor(0, 1, 8); @@ -49486,19 +49490,19 @@ lean_dec(x_9); x_205 = lean_ctor_get(x_204, 1); lean_inc(x_205); lean_dec_ref(x_204); -x_206 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_rwMatcher_spec__14_spec__16___redArg(x_163, x_205); -lean_dec_ref(x_163); +x_206 = l_MonadExcept_ofExcept___at___Lean_withTraceNode___at___Lean_Tactic_FunInd_rwMatcher_spec__14_spec__16___redArg(x_164, x_205); +lean_dec_ref(x_164); return x_206; } } else { -lean_dec_ref(x_166); +lean_dec_ref(x_165); x_60 = x_161; x_61 = x_162; -x_62 = x_164; -x_63 = x_163; -x_64 = x_165; +x_62 = x_163; +x_63 = x_164; +x_64 = x_166; x_65 = x_167; x_66 = x_168; goto block_76; @@ -49506,12 +49510,12 @@ goto block_76; } else { -lean_dec_ref(x_166); +lean_dec_ref(x_165); x_60 = x_161; x_61 = x_162; -x_62 = x_164; -x_63 = x_163; -x_64 = x_165; +x_62 = x_163; +x_63 = x_164; +x_64 = x_166; x_65 = x_167; x_66 = x_168; goto block_76; @@ -49520,14 +49524,14 @@ goto block_76; block_219: { double x_217; uint8_t x_218; -x_217 = lean_float_sub(x_213, x_215); +x_217 = lean_float_sub(x_215, x_214); x_218 = lean_float_decLt(x_216, x_217); x_161 = x_208; x_162 = x_209; -x_163 = x_211; -x_164 = x_210; -x_165 = x_213; -x_166 = x_212; +x_163 = x_210; +x_164 = x_211; +x_165 = x_212; +x_166 = x_213; x_167 = x_214; x_168 = x_215; x_169 = x_218; @@ -49542,7 +49546,7 @@ lean_inc(x_227); x_228 = lean_ctor_get(x_226, 1); lean_inc(x_228); lean_dec_ref(x_226); -x_229 = lean_float_of_nat(x_221); +x_229 = lean_float_of_nat(x_220); x_230 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40___redArg___closed__6; x_231 = lean_float_div(x_229, x_230); x_232 = lean_float_of_nat(x_227); @@ -49554,13 +49558,13 @@ if (x_235 == 0) lean_dec(x_11); lean_inc_ref(x_224); x_161 = x_224; -x_162 = x_220; -x_163 = x_224; -x_164 = x_228; -x_165 = x_233; -x_166 = x_222; -x_167 = x_235; -x_168 = x_231; +x_162 = x_221; +x_163 = x_235; +x_164 = x_224; +x_165 = x_222; +x_166 = x_228; +x_167 = x_231; +x_168 = x_233; x_169 = x_235; goto block_207; } @@ -49577,13 +49581,13 @@ x_239 = l_Lean_withTraceNode___at___Lean_Tactic_FunInd_foldAndCollect_spec__40__ x_240 = lean_float_div(x_238, x_239); lean_inc_ref(x_224); x_208 = x_224; -x_209 = x_220; -x_210 = x_228; +x_209 = x_221; +x_210 = x_235; x_211 = x_224; x_212 = x_222; -x_213 = x_233; -x_214 = x_235; -x_215 = x_231; +x_213 = x_228; +x_214 = x_231; +x_215 = x_233; x_216 = x_240; goto block_219; } @@ -49596,13 +49600,13 @@ lean_dec(x_11); x_243 = lean_float_of_nat(x_242); lean_inc_ref(x_224); x_208 = x_224; -x_209 = x_220; -x_210 = x_228; +x_209 = x_221; +x_210 = x_235; x_211 = x_224; x_212 = x_222; -x_213 = x_233; -x_214 = x_235; -x_215 = x_231; +x_213 = x_228; +x_214 = x_231; +x_215 = x_233; x_216 = x_243; goto block_219; } @@ -49644,8 +49648,8 @@ lean_dec_ref(x_253); x_256 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_256, 0, x_254); lean_inc(x_246); -x_220 = x_246; -x_221 = x_251; +x_220 = x_251; +x_221 = x_246; x_222 = x_246; x_223 = x_249; x_224 = x_256; @@ -49663,8 +49667,8 @@ lean_dec_ref(x_253); x_259 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_259, 0, x_257); lean_inc(x_246); -x_220 = x_246; -x_221 = x_251; +x_220 = x_251; +x_221 = x_246; x_222 = x_246; x_223 = x_249; x_224 = x_259; @@ -49697,8 +49701,8 @@ lean_dec_ref(x_263); x_266 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_266, 0, x_264); lean_inc(x_246); -x_139 = x_246; -x_140 = x_261; +x_139 = x_261; +x_140 = x_246; x_141 = x_246; x_142 = x_249; x_143 = x_266; @@ -49716,8 +49720,8 @@ lean_dec_ref(x_263); x_269 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_269, 0, x_267); lean_inc(x_246); -x_139 = x_246; -x_140 = x_261; +x_139 = x_261; +x_140 = x_246; x_141 = x_246; x_142 = x_249; x_143 = x_269; @@ -50136,7 +50140,7 @@ return x_2; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_rwMatcher___lam__1(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_object* x_13; lean_object* x_14; lean_object* x_19; lean_object* x_20; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; uint8_t x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_91; size_t x_92; lean_object* x_93; uint8_t 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_147; +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_19; lean_object* x_20; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; uint8_t x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; size_t x_91; lean_object* x_92; lean_object* x_93; uint8_t 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_147; lean_inc(x_10); lean_inc_ref(x_9); lean_inc(x_8); @@ -50342,8 +50346,8 @@ x_185 = l_Lean_Expr_appArg_x21(x_184); lean_dec_ref(x_184); x_186 = l_Lean_Expr_appArg_x21(x_157); lean_dec(x_157); -x_91 = x_167; -x_92 = x_166; +x_91 = x_166; +x_92 = x_167; x_93 = x_164; x_94 = x_170; x_95 = x_185; @@ -50368,8 +50372,8 @@ x_189 = l_Lean_Expr_appArg_x21(x_188); lean_dec_ref(x_188); x_190 = l_Lean_Expr_appArg_x21(x_157); lean_dec(x_157); -x_91 = x_167; -x_92 = x_166; +x_91 = x_166; +x_92 = x_167; x_93 = x_164; x_94 = x_3; x_95 = x_189; @@ -50502,9 +50506,9 @@ block_49: if (x_37 == 0) { lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; -lean_dec_ref(x_31); +lean_dec_ref(x_30); x_38 = l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__1; -x_39 = l_Lean_MessageData_ofExpr(x_36); +x_39 = l_Lean_MessageData_ofExpr(x_31); x_40 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_40, 0, x_38); lean_ctor_set(x_40, 1, x_39); @@ -50512,7 +50516,7 @@ x_41 = l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__3; x_42 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_42, 0, x_40); lean_ctor_set(x_42, 1, x_41); -x_43 = l_Lean_Exception_toMessageData(x_32); +x_43 = l_Lean_Exception_toMessageData(x_33); x_44 = l_Lean_indentD(x_43); x_45 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_45, 0, x_42); @@ -50521,10 +50525,10 @@ x_46 = l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__5; x_47 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_47, 0, x_45); lean_ctor_set(x_47, 1, x_46); -x_48 = l_Lean_throwError___at___Lean_Tactic_FunInd_foldAndCollect_spec__20___redArg(x_47, x_28, x_34, x_29, x_30, x_33); -lean_dec(x_30); -lean_dec_ref(x_29); -lean_dec(x_34); +x_48 = l_Lean_throwError___at___Lean_Tactic_FunInd_foldAndCollect_spec__20___redArg(x_47, x_28, x_32, x_36, x_29, x_34); +lean_dec(x_29); +lean_dec_ref(x_36); +lean_dec(x_32); lean_dec_ref(x_28); x_19 = x_35; x_20 = x_48; @@ -50533,13 +50537,13 @@ goto block_27; else { lean_dec_ref(x_36); -lean_dec(x_34); -lean_dec_ref(x_32); -lean_dec(x_30); -lean_dec_ref(x_29); +lean_dec_ref(x_33); +lean_dec(x_32); +lean_dec_ref(x_31); +lean_dec(x_29); lean_dec_ref(x_28); x_19 = x_35; -x_20 = x_31; +x_20 = x_30; goto block_27; } } @@ -50550,8 +50554,8 @@ x_59 = l_Array_isEmpty___redArg(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; uint8_t x_73; +lean_dec_ref(x_56); lean_dec_ref(x_52); -lean_dec_ref(x_51); x_60 = l_Lean_Tactic_FunInd_rwMatcher___lam__1___closed__7; x_61 = l_Lean_MessageData_ofConstName(x_4, x_59); x_62 = lean_alloc_ctor(7, 2, 0); @@ -50572,11 +50576,11 @@ x_70 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect x_71 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_71, 0, x_69); lean_ctor_set(x_71, 1, x_70); -x_72 = l_Lean_throwError___at___Lean_Tactic_FunInd_foldAndCollect_spec__20___redArg(x_71, x_50, x_56, x_53, x_55, x_58); -lean_dec(x_55); -lean_dec_ref(x_53); -lean_dec(x_56); -lean_dec_ref(x_50); +x_72 = l_Lean_throwError___at___Lean_Tactic_FunInd_foldAndCollect_spec__20___redArg(x_71, x_51, x_50, x_55, x_53, x_58); +lean_dec(x_53); +lean_dec_ref(x_55); +lean_dec(x_50); +lean_dec_ref(x_51); x_73 = !lean_is_exclusive(x_72); if (x_73 == 0) { @@ -50601,20 +50605,20 @@ else lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_dec_ref(x_57); lean_dec(x_4); -x_77 = l_Lean_instantiateMVars___at___Lean_Tactic_FunInd_rwMatcher_spec__8___redArg(x_52, x_56, x_58); +x_77 = l_Lean_instantiateMVars___at___Lean_Tactic_FunInd_rwMatcher_spec__8___redArg(x_52, x_50, x_58); x_78 = lean_ctor_get(x_77, 0); lean_inc(x_78); x_79 = lean_ctor_get(x_77, 1); lean_inc(x_79); lean_dec_ref(x_77); -x_80 = l_Lean_instantiateMVars___at___Lean_Tactic_FunInd_rwMatcher_spec__8___redArg(x_51, x_56, x_79); +x_80 = l_Lean_instantiateMVars___at___Lean_Tactic_FunInd_rwMatcher_spec__8___redArg(x_56, x_50, x_79); if (x_54 == 0) { lean_object* x_81; lean_object* x_82; -lean_dec(x_56); -lean_dec(x_55); -lean_dec_ref(x_53); -lean_dec_ref(x_50); +lean_dec_ref(x_55); +lean_dec(x_53); +lean_dec_ref(x_51); +lean_dec(x_50); x_81 = lean_ctor_get(x_80, 0); lean_inc(x_81); x_82 = lean_ctor_get(x_80, 1); @@ -50633,19 +50637,19 @@ lean_inc(x_83); x_84 = lean_ctor_get(x_80, 1); lean_inc(x_84); lean_dec_ref(x_80); -lean_inc(x_55); -lean_inc_ref(x_53); -lean_inc(x_56); -lean_inc_ref(x_50); +lean_inc(x_53); +lean_inc_ref(x_55); +lean_inc(x_50); +lean_inc_ref(x_51); lean_inc(x_83); -x_85 = l_Lean_Meta_mkEqOfHEq(x_83, x_3, x_50, x_56, x_53, x_55, x_84); +x_85 = l_Lean_Meta_mkEqOfHEq(x_83, x_3, x_51, x_50, x_55, x_53, x_84); if (lean_obj_tag(x_85) == 0) { lean_dec(x_83); -lean_dec(x_56); -lean_dec(x_55); -lean_dec_ref(x_53); -lean_dec_ref(x_50); +lean_dec_ref(x_55); +lean_dec(x_53); +lean_dec_ref(x_51); +lean_dec(x_50); x_19 = x_78; x_20 = x_85; goto block_27; @@ -50662,29 +50666,29 @@ if (x_88 == 0) { uint8_t x_89; x_89 = l_Lean_Exception_isRuntime(x_86); -x_28 = x_50; +x_28 = x_51; x_29 = x_53; -x_30 = x_55; -x_31 = x_85; -x_32 = x_86; -x_33 = x_87; -x_34 = x_56; +x_30 = x_85; +x_31 = x_83; +x_32 = x_50; +x_33 = x_86; +x_34 = x_87; x_35 = x_78; -x_36 = x_83; +x_36 = x_55; x_37 = x_89; goto block_49; } else { -x_28 = x_50; +x_28 = x_51; x_29 = x_53; -x_30 = x_55; -x_31 = x_85; -x_32 = x_86; -x_33 = x_87; -x_34 = x_56; +x_30 = x_85; +x_31 = x_83; +x_32 = x_50; +x_33 = x_86; +x_34 = x_87; x_35 = x_78; -x_36 = x_83; +x_36 = x_55; x_37 = x_88; goto block_49; } @@ -50714,7 +50718,7 @@ if (x_104 == 0) lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; uint8_t x_120; lean_dec_ref(x_96); lean_dec_ref(x_93); -lean_dec_ref(x_91); +lean_dec_ref(x_92); x_105 = lean_ctor_get(x_102, 1); lean_inc(x_105); lean_dec_ref(x_102); @@ -50776,12 +50780,12 @@ x_124 = lean_ctor_get(x_102, 1); lean_inc(x_124); lean_dec_ref(x_102); x_125 = lean_box(0); -x_126 = lean_array_size(x_91); +x_126 = lean_array_size(x_92); lean_inc(x_100); lean_inc_ref(x_99); lean_inc(x_98); lean_inc_ref(x_97); -x_127 = l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_rwMatcher_spec__10(x_125, x_91, x_126, x_92, x_125, x_97, x_98, x_99, x_100, x_124); +x_127 = l_Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_rwMatcher_spec__10(x_125, x_92, x_126, x_91, x_125, x_97, x_98, x_99, x_100, x_124); if (lean_obj_tag(x_127) == 0) { lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; uint8_t x_132; @@ -50789,20 +50793,20 @@ x_128 = lean_ctor_get(x_127, 1); lean_inc(x_128); lean_dec_ref(x_127); x_129 = lean_unsigned_to_nat(0u); -x_130 = lean_array_get_size(x_91); +x_130 = lean_array_get_size(x_92); x_131 = l_Lean_Tactic_FunInd_M2_run___redArg___closed__0; x_132 = lean_nat_dec_lt(x_129, x_130); if (x_132 == 0) { lean_dec(x_130); -lean_dec_ref(x_91); -x_50 = x_97; -x_51 = x_93; +lean_dec_ref(x_92); +x_50 = x_98; +x_51 = x_97; x_52 = x_96; -x_53 = x_99; +x_53 = x_100; x_54 = x_94; -x_55 = x_100; -x_56 = x_98; +x_55 = x_99; +x_56 = x_93; x_57 = x_131; x_58 = x_128; goto block_90; @@ -50814,14 +50818,14 @@ x_133 = lean_nat_dec_le(x_130, x_130); if (x_133 == 0) { lean_dec(x_130); -lean_dec_ref(x_91); -x_50 = x_97; -x_51 = x_93; +lean_dec_ref(x_92); +x_50 = x_98; +x_51 = x_97; x_52 = x_96; -x_53 = x_99; +x_53 = x_100; x_54 = x_94; -x_55 = x_100; -x_56 = x_98; +x_55 = x_99; +x_56 = x_93; x_57 = x_131; x_58 = x_128; goto block_90; @@ -50831,20 +50835,20 @@ else size_t x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; x_134 = lean_usize_of_nat(x_130); lean_dec(x_130); -x_135 = l_Array_foldlMUnsafe_fold___at___Lean_Tactic_FunInd_rwMatcher_spec__12(x_91, x_92, x_134, x_131, x_97, x_98, x_99, x_100, x_128); -lean_dec_ref(x_91); +x_135 = l_Array_foldlMUnsafe_fold___at___Lean_Tactic_FunInd_rwMatcher_spec__12(x_92, x_91, x_134, x_131, x_97, x_98, x_99, x_100, x_128); +lean_dec_ref(x_92); x_136 = lean_ctor_get(x_135, 0); lean_inc(x_136); x_137 = lean_ctor_get(x_135, 1); lean_inc(x_137); lean_dec_ref(x_135); -x_50 = x_97; -x_51 = x_93; +x_50 = x_98; +x_51 = x_97; x_52 = x_96; -x_53 = x_99; +x_53 = x_100; x_54 = x_94; -x_55 = x_100; -x_56 = x_98; +x_55 = x_99; +x_56 = x_93; x_57 = x_136; x_58 = x_137; goto block_90; @@ -50860,7 +50864,7 @@ lean_dec(x_98); lean_dec_ref(x_97); lean_dec_ref(x_96); lean_dec_ref(x_93); -lean_dec_ref(x_91); +lean_dec_ref(x_92); lean_dec(x_4); x_138 = !lean_is_exclusive(x_127); if (x_138 == 0) @@ -50893,7 +50897,7 @@ lean_dec_ref(x_97); lean_dec_ref(x_96); lean_dec_ref(x_95); lean_dec_ref(x_93); -lean_dec_ref(x_91); +lean_dec_ref(x_92); lean_dec_ref(x_5); lean_dec(x_4); x_142 = !lean_is_exclusive(x_102); @@ -51164,8 +51168,8 @@ if (x_28 == 0) { lean_object* x_29; lean_object* x_30; uint8_t x_31; lean_dec_ref(x_26); -lean_inc(x_22); -x_29 = l_Lean_isTracingEnabledFor___at___Lean_Tactic_FunInd_rwMatcher_spec__5___redArg(x_22, x_5, x_24); +lean_inc(x_21); +x_29 = l_Lean_isTracingEnabledFor___at___Lean_Tactic_FunInd_rwMatcher_spec__5___redArg(x_21, x_5, x_23); x_30 = lean_ctor_get(x_29, 0); lean_inc(x_30); x_31 = lean_unbox(x_30); @@ -51174,14 +51178,14 @@ if (x_31 == 0) { lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_dec_ref(x_27); -lean_dec_ref(x_23); -lean_dec(x_22); +lean_dec(x_25); +lean_dec_ref(x_24); lean_dec(x_21); x_32 = lean_ctor_get(x_29, 1); lean_inc(x_32); lean_dec_ref(x_29); x_33 = lean_box(0); -x_34 = lean_apply_6(x_25, x_33, x_3, x_4, x_5, x_6, x_32); +x_34 = lean_apply_6(x_22, x_33, x_3, x_4, x_5, x_6, x_32); x_8 = x_34; goto block_20; } @@ -51196,7 +51200,7 @@ x_36 = lean_ctor_get(x_29, 1); x_37 = lean_ctor_get(x_29, 0); lean_dec(x_37); x_38 = l_Lean_Tactic_FunInd_rwMatcher___closed__1; -x_39 = l_Lean_MessageData_ofConstName(x_21, x_28); +x_39 = l_Lean_MessageData_ofConstName(x_25, x_28); lean_ctor_set_tag(x_29, 7); lean_ctor_set(x_29, 1, x_39); lean_ctor_set(x_29, 0, x_38); @@ -51209,17 +51213,17 @@ x_43 = l_Lean_indentD(x_42); x_44 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_44, 0, x_41); lean_ctor_set(x_44, 1, x_43); -x_45 = l_Lean_stringToMessageData(x_23); -lean_dec_ref(x_23); +x_45 = l_Lean_stringToMessageData(x_24); +lean_dec_ref(x_24); x_46 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_46, 0, x_44); lean_ctor_set(x_46, 1, x_45); -x_47 = l_Lean_addTrace___at___Lean_Tactic_FunInd_rwMatcher_spec__6(x_22, x_46, x_3, x_4, x_5, x_6, x_36); +x_47 = l_Lean_addTrace___at___Lean_Tactic_FunInd_rwMatcher_spec__6(x_21, x_46, x_3, x_4, x_5, x_6, x_36); x_48 = lean_ctor_get(x_47, 1); lean_inc(x_48); lean_dec_ref(x_47); x_49 = lean_box(0); -x_50 = lean_apply_6(x_25, x_49, x_3, x_4, x_5, x_6, x_48); +x_50 = lean_apply_6(x_22, x_49, x_3, x_4, x_5, x_6, x_48); x_8 = x_50; goto block_20; } @@ -51230,7 +51234,7 @@ x_51 = lean_ctor_get(x_29, 1); lean_inc(x_51); lean_dec(x_29); x_52 = l_Lean_Tactic_FunInd_rwMatcher___closed__1; -x_53 = l_Lean_MessageData_ofConstName(x_21, x_28); +x_53 = l_Lean_MessageData_ofConstName(x_25, x_28); x_54 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_54, 0, x_52); lean_ctor_set(x_54, 1, x_53); @@ -51243,17 +51247,17 @@ x_58 = l_Lean_indentD(x_57); x_59 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_59, 0, x_56); lean_ctor_set(x_59, 1, x_58); -x_60 = l_Lean_stringToMessageData(x_23); -lean_dec_ref(x_23); +x_60 = l_Lean_stringToMessageData(x_24); +lean_dec_ref(x_24); x_61 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_61, 0, x_59); lean_ctor_set(x_61, 1, x_60); -x_62 = l_Lean_addTrace___at___Lean_Tactic_FunInd_rwMatcher_spec__6(x_22, x_61, x_3, x_4, x_5, x_6, x_51); +x_62 = l_Lean_addTrace___at___Lean_Tactic_FunInd_rwMatcher_spec__6(x_21, x_61, x_3, x_4, x_5, x_6, x_51); x_63 = lean_ctor_get(x_62, 1); lean_inc(x_63); lean_dec_ref(x_62); x_64 = lean_box(0); -x_65 = lean_apply_6(x_25, x_64, x_3, x_4, x_5, x_6, x_63); +x_65 = lean_apply_6(x_22, x_64, x_3, x_4, x_5, x_6, x_63); x_8 = x_65; goto block_20; } @@ -51262,9 +51266,9 @@ goto block_20; else { lean_dec_ref(x_27); -lean_dec_ref(x_25); -lean_dec_ref(x_23); -lean_dec(x_22); +lean_dec(x_25); +lean_dec_ref(x_24); +lean_dec_ref(x_22); lean_dec(x_21); lean_dec(x_6); lean_dec_ref(x_5); @@ -51710,11 +51714,11 @@ if (x_199 == 0) { uint8_t x_200; x_200 = l_Lean_Exception_isRuntime(x_195); -x_21 = x_177; -x_22 = x_180; -x_23 = x_193; -x_24 = x_196; -x_25 = x_198; +x_21 = x_180; +x_22 = x_198; +x_23 = x_196; +x_24 = x_193; +x_25 = x_177; x_26 = x_194; x_27 = x_195; x_28 = x_200; @@ -51722,11 +51726,11 @@ goto block_66; } else { -x_21 = x_177; -x_22 = x_180; -x_23 = x_193; -x_24 = x_196; -x_25 = x_198; +x_21 = x_180; +x_22 = x_198; +x_23 = x_196; +x_24 = x_193; +x_25 = x_177; x_26 = x_194; x_27 = x_195; x_28 = x_199; @@ -51956,11 +51960,11 @@ if (x_262 == 0) { uint8_t x_263; x_263 = l_Lean_Exception_isRuntime(x_258); -x_21 = x_240; -x_22 = x_243; -x_23 = x_256; -x_24 = x_259; -x_25 = x_261; +x_21 = x_243; +x_22 = x_261; +x_23 = x_259; +x_24 = x_256; +x_25 = x_240; x_26 = x_257; x_27 = x_258; x_28 = x_263; @@ -51968,11 +51972,11 @@ goto block_66; } else { -x_21 = x_240; -x_22 = x_243; -x_23 = x_256; -x_24 = x_259; -x_25 = x_261; +x_21 = x_243; +x_22 = x_261; +x_23 = x_259; +x_24 = x_256; +x_25 = x_240; x_26 = x_257; x_27 = x_258; x_28 = x_262; @@ -54400,7 +54404,7 @@ lean_object* x_15; x_15 = l_Lean_Expr_getAppFn(x_1); if (lean_obj_tag(x_15) == 4) { -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_129; lean_object* x_130; uint8_t x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_144; uint8_t 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_167; uint8_t x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; uint8_t x_141; lean_object* x_142; 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; uint8_t x_157; lean_object* x_158; lean_object* x_159; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; uint8_t x_180; lean_object* x_181; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; uint8_t x_208; lean_object* x_209; lean_object* x_210; x_16 = lean_ctor_get(x_15, 0); lean_inc(x_16); x_17 = lean_ctor_get(x_15, 1); @@ -54597,20 +54601,20 @@ x_253 = lean_nat_dec_le(x_235, x_249); if (x_253 == 0) { lean_inc(x_249); -x_195 = x_234; -x_196 = x_250; -x_197 = x_249; -x_198 = x_241; -x_199 = x_244; -x_200 = x_235; -x_201 = x_246; -x_202 = x_229; -x_203 = x_237; -x_204 = x_248; -x_205 = x_236; -x_206 = x_226; -x_207 = x_243; -x_208 = x_232; +x_195 = x_248; +x_196 = x_234; +x_197 = x_244; +x_198 = x_226; +x_199 = x_241; +x_200 = x_236; +x_201 = x_232; +x_202 = x_249; +x_203 = x_229; +x_204 = x_246; +x_205 = x_243; +x_206 = x_237; +x_207 = x_235; +x_208 = x_250; x_209 = x_252; x_210 = x_249; goto block_215; @@ -54618,20 +54622,20 @@ goto block_215; else { lean_inc(x_235); -x_195 = x_234; -x_196 = x_250; -x_197 = x_249; -x_198 = x_241; -x_199 = x_244; -x_200 = x_235; -x_201 = x_246; -x_202 = x_229; -x_203 = x_237; -x_204 = x_248; -x_205 = x_236; -x_206 = x_226; -x_207 = x_243; -x_208 = x_232; +x_195 = x_248; +x_196 = x_234; +x_197 = x_244; +x_198 = x_226; +x_199 = x_241; +x_200 = x_236; +x_201 = x_232; +x_202 = x_249; +x_203 = x_229; +x_204 = x_246; +x_205 = x_243; +x_206 = x_237; +x_207 = x_235; +x_208 = x_250; x_209 = x_252; x_210 = x_235; goto block_215; @@ -54705,20 +54709,20 @@ x_275 = lean_nat_dec_le(x_256, x_270); if (x_275 == 0) { lean_inc(x_270); -x_195 = x_255; -x_196 = x_271; -x_197 = x_270; -x_198 = x_262; -x_199 = x_265; -x_200 = x_256; -x_201 = x_267; -x_202 = x_229; -x_203 = x_258; -x_204 = x_269; -x_205 = x_257; -x_206 = x_226; -x_207 = x_264; -x_208 = x_254; +x_195 = x_269; +x_196 = x_255; +x_197 = x_265; +x_198 = x_226; +x_199 = x_262; +x_200 = x_257; +x_201 = x_254; +x_202 = x_270; +x_203 = x_229; +x_204 = x_267; +x_205 = x_264; +x_206 = x_258; +x_207 = x_256; +x_208 = x_271; x_209 = x_274; x_210 = x_270; goto block_215; @@ -54726,20 +54730,20 @@ goto block_215; else { lean_inc(x_256); -x_195 = x_255; -x_196 = x_271; -x_197 = x_270; -x_198 = x_262; -x_199 = x_265; -x_200 = x_256; -x_201 = x_267; -x_202 = x_229; -x_203 = x_258; -x_204 = x_269; -x_205 = x_257; -x_206 = x_226; -x_207 = x_264; -x_208 = x_254; +x_195 = x_269; +x_196 = x_255; +x_197 = x_265; +x_198 = x_226; +x_199 = x_262; +x_200 = x_257; +x_201 = x_254; +x_202 = x_270; +x_203 = x_229; +x_204 = x_267; +x_205 = x_264; +x_206 = x_258; +x_207 = x_256; +x_208 = x_271; x_209 = x_274; x_210 = x_256; goto block_215; @@ -54831,20 +54835,20 @@ x_300 = lean_nat_dec_le(x_280, x_294); if (x_300 == 0) { lean_inc(x_294); -x_195 = x_279; -x_196 = x_295; -x_197 = x_294; -x_198 = x_286; -x_199 = x_289; -x_200 = x_280; -x_201 = x_291; -x_202 = x_276; -x_203 = x_282; -x_204 = x_293; -x_205 = x_281; -x_206 = x_226; -x_207 = x_288; -x_208 = x_277; +x_195 = x_293; +x_196 = x_279; +x_197 = x_289; +x_198 = x_226; +x_199 = x_286; +x_200 = x_281; +x_201 = x_277; +x_202 = x_294; +x_203 = x_276; +x_204 = x_291; +x_205 = x_288; +x_206 = x_282; +x_207 = x_280; +x_208 = x_295; x_209 = x_299; x_210 = x_294; goto block_215; @@ -54852,20 +54856,20 @@ goto block_215; else { lean_inc(x_280); -x_195 = x_279; -x_196 = x_295; -x_197 = x_294; -x_198 = x_286; -x_199 = x_289; -x_200 = x_280; -x_201 = x_291; -x_202 = x_276; -x_203 = x_282; -x_204 = x_293; -x_205 = x_281; -x_206 = x_226; -x_207 = x_288; -x_208 = x_277; +x_195 = x_293; +x_196 = x_279; +x_197 = x_289; +x_198 = x_226; +x_199 = x_286; +x_200 = x_281; +x_201 = x_277; +x_202 = x_294; +x_203 = x_276; +x_204 = x_291; +x_205 = x_288; +x_206 = x_282; +x_207 = x_280; +x_208 = x_295; x_209 = x_299; x_210 = x_280; goto block_215; @@ -54973,20 +54977,20 @@ x_328 = lean_nat_dec_le(x_307, x_321); if (x_328 == 0) { lean_inc(x_321); -x_195 = x_306; -x_196 = x_322; -x_197 = x_321; -x_198 = x_313; -x_199 = x_316; -x_200 = x_307; -x_201 = x_318; -x_202 = x_302; -x_203 = x_309; -x_204 = x_320; -x_205 = x_308; -x_206 = x_301; -x_207 = x_315; -x_208 = x_304; +x_195 = x_320; +x_196 = x_306; +x_197 = x_316; +x_198 = x_301; +x_199 = x_313; +x_200 = x_308; +x_201 = x_304; +x_202 = x_321; +x_203 = x_302; +x_204 = x_318; +x_205 = x_315; +x_206 = x_309; +x_207 = x_307; +x_208 = x_322; x_209 = x_327; x_210 = x_321; goto block_215; @@ -54994,20 +54998,20 @@ goto block_215; else { lean_inc(x_307); -x_195 = x_306; -x_196 = x_322; -x_197 = x_321; -x_198 = x_313; -x_199 = x_316; -x_200 = x_307; -x_201 = x_318; -x_202 = x_302; -x_203 = x_309; -x_204 = x_320; -x_205 = x_308; -x_206 = x_301; -x_207 = x_315; -x_208 = x_304; +x_195 = x_320; +x_196 = x_306; +x_197 = x_316; +x_198 = x_301; +x_199 = x_313; +x_200 = x_308; +x_201 = x_304; +x_202 = x_321; +x_203 = x_302; +x_204 = x_318; +x_205 = x_315; +x_206 = x_309; +x_207 = x_307; +x_208 = x_322; x_209 = x_327; x_210 = x_307; goto block_215; @@ -55298,18 +55302,18 @@ lean_inc_ref(x_372); x_400 = l_Array_toSubarray___redArg(x_372, x_398, x_399); x_401 = l_Array_ofSubarray___redArg(x_400); lean_dec_ref(x_400); -x_402 = lean_nat_dec_le(x_397, x_382); +x_402 = lean_nat_dec_le(x_396, x_382); if (x_402 == 0) { -x_385 = x_396; +x_385 = x_397; x_386 = x_401; -x_387 = x_397; +x_387 = x_396; goto block_395; } else { -lean_dec(x_397); -x_385 = x_396; +lean_dec(x_396); +x_385 = x_397; x_386 = x_401; x_387 = x_382; goto block_395; @@ -55318,7 +55322,7 @@ goto block_395; block_408: { uint8_t x_407; -x_407 = lean_nat_dec_le(x_405, x_373); +x_407 = lean_nat_dec_le(x_404, x_373); if (x_407 == 0) { lean_inc(x_373); @@ -55330,11 +55334,11 @@ goto block_403; } else { -lean_inc(x_405); +lean_inc(x_404); x_396 = x_404; x_397 = x_405; x_398 = x_406; -x_399 = x_405; +x_399 = x_404; goto block_403; } } @@ -55352,16 +55356,16 @@ lean_dec(x_415); x_417 = lean_nat_dec_le(x_410, x_382); if (x_417 == 0) { -x_404 = x_414; -x_405 = x_416; +x_404 = x_416; +x_405 = x_414; x_406 = x_410; goto block_408; } else { lean_dec(x_410); -x_404 = x_414; -x_405 = x_416; +x_404 = x_416; +x_405 = x_414; x_406 = x_382; goto block_408; } @@ -55424,9 +55428,9 @@ block_89: { lean_object* x_29; lean_object* x_30; x_29 = l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2___closed__0; -lean_inc(x_21); -x_30 = l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__12___redArg(x_21, x_21, x_29, x_27, x_19, x_5, x_6, x_7, x_8, x_26); -lean_dec(x_21); +lean_inc(x_26); +x_30 = l_List_forIn_x27_loop___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4_spec__12___redArg(x_26, x_26, x_29, x_18, x_22, x_5, x_6, x_7, x_8, x_25); +lean_dec(x_26); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; uint8_t x_33; @@ -55452,21 +55456,21 @@ if (x_37 == 0) lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; x_38 = lean_ctor_get(x_32, 0); x_39 = lean_array_mk(x_17); -x_40 = l_Array_ofSubarray___redArg(x_25); -lean_dec_ref(x_25); -x_41 = l_Array_ofSubarray___redArg(x_23); -lean_dec_ref(x_23); -x_42 = l_Array_ofSubarray___redArg(x_24); +x_40 = l_Array_ofSubarray___redArg(x_24); lean_dec_ref(x_24); -x_43 = l_Array_ofSubarray___redArg(x_22); -lean_dec_ref(x_22); +x_41 = l_Array_ofSubarray___redArg(x_27); +lean_dec_ref(x_27); +x_42 = l_Array_ofSubarray___redArg(x_21); +lean_dec_ref(x_21); +x_43 = l_Array_ofSubarray___redArg(x_23); +lean_dec_ref(x_23); x_44 = lean_alloc_ctor(0, 10, 0); lean_ctor_set(x_44, 0, x_16); lean_ctor_set(x_44, 1, x_39); lean_ctor_set(x_44, 2, x_28); lean_ctor_set(x_44, 3, x_20); lean_ctor_set(x_44, 4, x_40); -lean_ctor_set(x_44, 5, x_18); +lean_ctor_set(x_44, 5, x_19); lean_ctor_set(x_44, 6, x_41); lean_ctor_set(x_44, 7, x_38); lean_ctor_set(x_44, 8, x_42); @@ -55485,21 +55489,21 @@ lean_inc(x_47); lean_inc(x_46); lean_dec(x_32); x_48 = lean_array_mk(x_17); -x_49 = l_Array_ofSubarray___redArg(x_25); -lean_dec_ref(x_25); -x_50 = l_Array_ofSubarray___redArg(x_23); -lean_dec_ref(x_23); -x_51 = l_Array_ofSubarray___redArg(x_24); +x_49 = l_Array_ofSubarray___redArg(x_24); lean_dec_ref(x_24); -x_52 = l_Array_ofSubarray___redArg(x_22); -lean_dec_ref(x_22); +x_50 = l_Array_ofSubarray___redArg(x_27); +lean_dec_ref(x_27); +x_51 = l_Array_ofSubarray___redArg(x_21); +lean_dec_ref(x_21); +x_52 = l_Array_ofSubarray___redArg(x_23); +lean_dec_ref(x_23); x_53 = lean_alloc_ctor(0, 10, 0); lean_ctor_set(x_53, 0, x_16); lean_ctor_set(x_53, 1, x_48); lean_ctor_set(x_53, 2, x_28); lean_ctor_set(x_53, 3, x_20); lean_ctor_set(x_53, 4, x_49); -lean_ctor_set(x_53, 5, x_18); +lean_ctor_set(x_53, 5, x_19); lean_ctor_set(x_53, 6, x_50); lean_ctor_set(x_53, 7, x_46); lean_ctor_set(x_53, 8, x_51); @@ -55532,21 +55536,21 @@ if (lean_is_exclusive(x_32)) { x_59 = lean_box(0); } x_60 = lean_array_mk(x_17); -x_61 = l_Array_ofSubarray___redArg(x_25); -lean_dec_ref(x_25); -x_62 = l_Array_ofSubarray___redArg(x_23); -lean_dec_ref(x_23); -x_63 = l_Array_ofSubarray___redArg(x_24); +x_61 = l_Array_ofSubarray___redArg(x_24); lean_dec_ref(x_24); -x_64 = l_Array_ofSubarray___redArg(x_22); -lean_dec_ref(x_22); +x_62 = l_Array_ofSubarray___redArg(x_27); +lean_dec_ref(x_27); +x_63 = l_Array_ofSubarray___redArg(x_21); +lean_dec_ref(x_21); +x_64 = l_Array_ofSubarray___redArg(x_23); +lean_dec_ref(x_23); x_65 = lean_alloc_ctor(0, 10, 0); lean_ctor_set(x_65, 0, x_16); lean_ctor_set(x_65, 1, x_60); lean_ctor_set(x_65, 2, x_28); lean_ctor_set(x_65, 3, x_20); lean_ctor_set(x_65, 4, x_61); -lean_ctor_set(x_65, 5, x_18); +lean_ctor_set(x_65, 5, x_19); lean_ctor_set(x_65, 6, x_62); lean_ctor_set(x_65, 7, x_57); lean_ctor_set(x_65, 8, x_63); @@ -55596,21 +55600,21 @@ if (lean_is_exclusive(x_32)) { x_74 = lean_box(0); } x_75 = lean_array_mk(x_17); -x_76 = l_Array_ofSubarray___redArg(x_25); -lean_dec_ref(x_25); -x_77 = l_Array_ofSubarray___redArg(x_23); -lean_dec_ref(x_23); -x_78 = l_Array_ofSubarray___redArg(x_24); +x_76 = l_Array_ofSubarray___redArg(x_24); lean_dec_ref(x_24); -x_79 = l_Array_ofSubarray___redArg(x_22); -lean_dec_ref(x_22); +x_77 = l_Array_ofSubarray___redArg(x_27); +lean_dec_ref(x_27); +x_78 = l_Array_ofSubarray___redArg(x_21); +lean_dec_ref(x_21); +x_79 = l_Array_ofSubarray___redArg(x_23); +lean_dec_ref(x_23); x_80 = lean_alloc_ctor(0, 10, 0); lean_ctor_set(x_80, 0, x_16); lean_ctor_set(x_80, 1, x_75); lean_ctor_set(x_80, 2, x_28); lean_ctor_set(x_80, 3, x_20); lean_ctor_set(x_80, 4, x_76); -lean_ctor_set(x_80, 5, x_18); +lean_ctor_set(x_80, 5, x_19); lean_ctor_set(x_80, 6, x_77); lean_ctor_set(x_80, 7, x_72); lean_ctor_set(x_80, 8, x_78); @@ -55641,12 +55645,12 @@ else { uint8_t x_85; lean_dec(x_28); -lean_dec_ref(x_25); +lean_dec_ref(x_27); lean_dec_ref(x_24); lean_dec_ref(x_23); -lean_dec_ref(x_22); +lean_dec_ref(x_21); lean_dec_ref(x_20); -lean_dec_ref(x_18); +lean_dec_ref(x_19); lean_dec(x_17); lean_dec(x_16); x_85 = !lean_is_exclusive(x_30); @@ -55672,10 +55676,10 @@ return x_88; block_110: { lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; uint8_t x_107; -x_103 = lean_ctor_get(x_91, 1); +x_103 = lean_ctor_get(x_92, 1); lean_inc(x_103); -lean_dec_ref(x_91); -x_104 = l_Array_toSubarray___redArg(x_100, x_101, x_102); +lean_dec_ref(x_92); +x_104 = l_Array_toSubarray___redArg(x_99, x_101, x_102); x_105 = l_List_lengthTR___redArg(x_103); lean_dec(x_103); x_106 = l_List_lengthTR___redArg(x_17); @@ -55687,15 +55691,15 @@ if (x_107 == 0) lean_object* x_108; x_108 = l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2___closed__1; x_18 = x_90; -x_19 = x_92; -x_20 = x_93; +x_19 = x_91; +x_20 = x_95; x_21 = x_94; -x_22 = x_104; -x_23 = x_95; +x_22 = x_93; +x_23 = x_104; x_24 = x_96; -x_25 = x_98; -x_26 = x_97; -x_27 = x_99; +x_25 = x_97; +x_26 = x_98; +x_27 = x_100; x_28 = x_108; goto block_89; } @@ -55704,15 +55708,15 @@ else lean_object* x_109; x_109 = lean_box(0); x_18 = x_90; -x_19 = x_92; -x_20 = x_93; +x_19 = x_91; +x_20 = x_95; x_21 = x_94; -x_22 = x_104; -x_23 = x_95; +x_22 = x_93; +x_23 = x_104; x_24 = x_96; -x_25 = x_98; -x_26 = x_97; -x_27 = x_99; +x_25 = x_97; +x_26 = x_98; +x_27 = x_100; x_28 = x_109; goto block_89; } @@ -55720,132 +55724,132 @@ goto block_89; block_128: { lean_object* x_125; lean_object* x_126; uint8_t x_127; -lean_inc_ref(x_122); -x_125 = l_Array_toSubarray___redArg(x_122, x_123, x_124); +lean_inc_ref(x_121); +x_125 = l_Array_toSubarray___redArg(x_121, x_123, x_124); x_126 = lean_unsigned_to_nat(0u); -x_127 = lean_nat_dec_le(x_116, x_126); +x_127 = lean_nat_dec_le(x_112, x_126); if (x_127 == 0) { x_90 = x_111; x_91 = x_113; -x_92 = x_112; -x_93 = x_114; -x_94 = x_115; -x_95 = x_117; -x_96 = x_125; +x_92 = x_114; +x_93 = x_117; +x_94 = x_125; +x_95 = x_116; +x_96 = x_118; x_97 = x_119; -x_98 = x_118; +x_98 = x_120; x_99 = x_121; x_100 = x_122; -x_101 = x_116; -x_102 = x_120; +x_101 = x_112; +x_102 = x_115; goto block_110; } else { -lean_dec(x_116); +lean_dec(x_112); x_90 = x_111; x_91 = x_113; -x_92 = x_112; -x_93 = x_114; -x_94 = x_115; -x_95 = x_117; -x_96 = x_125; +x_92 = x_114; +x_93 = x_117; +x_94 = x_125; +x_95 = x_116; +x_96 = x_118; x_97 = x_119; -x_98 = x_118; +x_98 = x_120; x_99 = x_121; x_100 = x_122; x_101 = x_126; -x_102 = x_120; +x_102 = x_115; goto block_110; } } block_143: { -if (x_131 == 0) +if (x_141 == 0) { -lean_inc(x_132); -x_111 = x_133; -x_112 = x_134; -x_113 = x_129; -x_114 = x_135; +lean_inc(x_136); +x_111 = x_135; +x_112 = x_129; +x_113 = x_130; +x_114 = x_131; x_115 = x_136; -x_116 = x_137; -x_117 = x_130; -x_118 = x_138; -x_119 = x_139; -x_120 = x_132; -x_121 = x_140; -x_122 = x_141; +x_116 = x_132; +x_117 = x_137; +x_118 = x_133; +x_119 = x_134; +x_120 = x_138; +x_121 = x_139; +x_122 = x_140; x_123 = x_142; -x_124 = x_132; +x_124 = x_136; goto block_128; } else { -lean_inc(x_137); -x_111 = x_133; -x_112 = x_134; -x_113 = x_129; -x_114 = x_135; +lean_inc(x_129); +x_111 = x_135; +x_112 = x_129; +x_113 = x_130; +x_114 = x_131; x_115 = x_136; -x_116 = x_137; -x_117 = x_130; -x_118 = x_138; -x_119 = x_139; -x_120 = x_132; -x_121 = x_140; -x_122 = x_141; +x_116 = x_132; +x_117 = x_137; +x_118 = x_133; +x_119 = x_134; +x_120 = x_138; +x_121 = x_139; +x_122 = x_140; x_123 = x_142; -x_124 = x_137; +x_124 = x_129; goto block_128; } } block_166: { lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -lean_inc_ref(x_156); -x_160 = l_Array_toSubarray___redArg(x_156, x_158, x_159); -x_161 = lean_nat_add(x_153, x_147); -lean_dec(x_153); +lean_inc_ref(x_155); +x_160 = l_Array_toSubarray___redArg(x_155, x_158, x_159); +x_161 = lean_nat_add(x_150, x_149); +lean_dec(x_150); x_162 = lean_box(0); x_163 = lean_mk_array(x_161, x_162); x_164 = lean_unsigned_to_nat(0u); -x_165 = lean_nat_dec_le(x_148, x_164); +x_165 = lean_nat_dec_le(x_154, x_164); if (x_165 == 0) { x_129 = x_144; -x_130 = x_160; -x_131 = x_145; -x_132 = x_146; -x_133 = x_149; -x_134 = x_150; -x_135 = x_163; -x_136 = x_151; -x_137 = x_152; -x_138 = x_154; +x_130 = x_145; +x_131 = x_146; +x_132 = x_163; +x_133 = x_147; +x_134 = x_148; +x_135 = x_151; +x_136 = x_152; +x_137 = x_153; +x_138 = x_156; x_139 = x_155; -x_140 = x_157; -x_141 = x_156; -x_142 = x_148; +x_140 = x_160; +x_141 = x_157; +x_142 = x_154; goto block_143; } else { -lean_dec(x_148); +lean_dec(x_154); x_129 = x_144; -x_130 = x_160; -x_131 = x_145; -x_132 = x_146; -x_133 = x_149; -x_134 = x_150; -x_135 = x_163; -x_136 = x_151; -x_137 = x_152; -x_138 = x_154; +x_130 = x_145; +x_131 = x_146; +x_132 = x_163; +x_133 = x_147; +x_134 = x_148; +x_135 = x_151; +x_136 = x_152; +x_137 = x_153; +x_138 = x_156; x_139 = x_155; -x_140 = x_157; -x_141 = x_156; +x_140 = x_160; +x_141 = x_157; x_142 = x_164; goto block_143; } @@ -55853,10 +55857,10 @@ goto block_143; block_183: { uint8_t x_182; -x_182 = lean_nat_dec_le(x_171, x_169); +x_182 = lean_nat_dec_le(x_177, x_175); if (x_182 == 0) { -lean_inc(x_169); +lean_inc(x_175); x_144 = x_167; x_145 = x_168; x_146 = x_169; @@ -55869,15 +55873,15 @@ x_152 = x_175; x_153 = x_176; x_154 = x_177; x_155 = x_178; -x_156 = x_180; -x_157 = x_179; +x_156 = x_179; +x_157 = x_180; x_158 = x_181; -x_159 = x_169; +x_159 = x_175; goto block_166; } else { -lean_inc(x_171); +lean_inc(x_177); x_144 = x_167; x_145 = x_168; x_146 = x_169; @@ -55890,58 +55894,58 @@ x_152 = x_175; x_153 = x_176; x_154 = x_177; x_155 = x_178; -x_156 = x_180; -x_157 = x_179; +x_156 = x_179; +x_157 = x_180; x_158 = x_181; -x_159 = x_171; +x_159 = x_177; goto block_166; } } block_215: { lean_object* x_211; lean_object* x_212; lean_object* x_213; uint8_t x_214; -lean_inc_ref(x_207); -x_211 = l_Array_toSubarray___redArg(x_207, x_209, x_210); -x_212 = lean_array_get(x_194, x_207, x_200); -lean_dec(x_200); +lean_inc_ref(x_205); +x_211 = l_Array_toSubarray___redArg(x_205, x_209, x_210); +x_212 = lean_array_get(x_194, x_205, x_207); +lean_dec(x_207); x_213 = lean_unsigned_to_nat(0u); -x_214 = lean_nat_dec_le(x_199, x_213); +x_214 = lean_nat_dec_le(x_197, x_213); if (x_214 == 0) { x_167 = x_195; -x_168 = x_196; -x_169 = x_197; -x_170 = x_198; -x_171 = x_201; -x_172 = x_212; -x_173 = x_202; -x_174 = x_203; -x_175 = x_204; -x_176 = x_205; -x_177 = x_211; -x_178 = x_206; -x_179 = x_208; -x_180 = x_207; -x_181 = x_199; +x_168 = x_212; +x_169 = x_196; +x_170 = x_211; +x_171 = x_198; +x_172 = x_199; +x_173 = x_200; +x_174 = x_201; +x_175 = x_202; +x_176 = x_203; +x_177 = x_204; +x_178 = x_205; +x_179 = x_206; +x_180 = x_208; +x_181 = x_197; goto block_183; } else { -lean_dec(x_199); +lean_dec(x_197); x_167 = x_195; -x_168 = x_196; -x_169 = x_197; -x_170 = x_198; -x_171 = x_201; -x_172 = x_212; -x_173 = x_202; -x_174 = x_203; -x_175 = x_204; -x_176 = x_205; -x_177 = x_211; -x_178 = x_206; -x_179 = x_208; -x_180 = x_207; +x_168 = x_212; +x_169 = x_196; +x_170 = x_211; +x_171 = x_198; +x_172 = x_199; +x_173 = x_200; +x_174 = x_201; +x_175 = x_202; +x_176 = x_203; +x_177 = x_204; +x_178 = x_205; +x_179 = x_206; +x_180 = x_208; x_181 = x_213; goto block_183; } @@ -55963,1198 +55967,7 @@ return x_428; } } } -LEAN_EXPORT lean_object* l_panic___at___Lean_Tactic_FunInd_buildInductionBody_spec__15(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; lean_object* x_10; uint8_t x_11; -x_9 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__0; -x_10 = l_ReaderT_instMonad___redArg(x_9); -x_11 = !lean_is_exclusive(x_10); -if (x_11 == 0) -{ -lean_object* x_12; lean_object* x_13; uint8_t x_14; -x_12 = lean_ctor_get(x_10, 0); -x_13 = lean_ctor_get(x_10, 1); -lean_dec(x_13); -x_14 = !lean_is_exclusive(x_12); -if (x_14 == 0) -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; -x_15 = lean_ctor_get(x_12, 0); -x_16 = lean_ctor_get(x_12, 2); -x_17 = lean_ctor_get(x_12, 3); -x_18 = lean_ctor_get(x_12, 4); -x_19 = lean_ctor_get(x_12, 1); -lean_dec(x_19); -x_20 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__1; -x_21 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__2; -lean_inc_ref(x_15); -x_22 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_22, 0, x_15); -x_23 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_23, 0, x_15); -x_24 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_24, 0, x_22); -lean_ctor_set(x_24, 1, x_23); -x_25 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_25, 0, x_18); -x_26 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_26, 0, x_17); -x_27 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_27, 0, x_16); -lean_ctor_set(x_12, 4, x_25); -lean_ctor_set(x_12, 3, x_26); -lean_ctor_set(x_12, 2, x_27); -lean_ctor_set(x_12, 1, x_20); -lean_ctor_set(x_12, 0, x_24); -lean_ctor_set(x_10, 1, x_21); -x_28 = l_ReaderT_instMonad___redArg(x_10); -x_29 = !lean_is_exclusive(x_28); -if (x_29 == 0) -{ -lean_object* x_30; lean_object* x_31; uint8_t x_32; -x_30 = lean_ctor_get(x_28, 0); -x_31 = lean_ctor_get(x_28, 1); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_30); -if (x_32 == 0) -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; -x_33 = lean_ctor_get(x_30, 0); -x_34 = lean_ctor_get(x_30, 2); -x_35 = lean_ctor_get(x_30, 3); -x_36 = lean_ctor_get(x_30, 4); -x_37 = lean_ctor_get(x_30, 1); -lean_dec(x_37); -x_38 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; -x_39 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__4; -lean_inc_ref(x_33); -x_40 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_40, 0, x_33); -x_41 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_41, 0, x_33); -x_42 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_42, 0, x_40); -lean_ctor_set(x_42, 1, x_41); -x_43 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_43, 0, x_36); -x_44 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_44, 0, x_35); -x_45 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_45, 0, x_34); -lean_ctor_set(x_30, 4, x_43); -lean_ctor_set(x_30, 3, x_44); -lean_ctor_set(x_30, 2, x_45); -lean_ctor_set(x_30, 1, x_38); -lean_ctor_set(x_30, 0, x_42); -lean_ctor_set(x_28, 1, x_39); -lean_inc_ref(x_28); -x_46 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_46, 0, x_28); -lean_inc_ref(x_28); -x_47 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_47, 0, x_28); -lean_inc_ref(x_28); -x_48 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__7), 6, 1); -lean_closure_set(x_48, 0, x_28); -lean_inc_ref(x_28); -x_49 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__9), 6, 1); -lean_closure_set(x_49, 0, x_28); -lean_inc_ref(x_28); -x_50 = lean_alloc_closure((void*)(l_StateT_map), 8, 3); -lean_closure_set(x_50, 0, lean_box(0)); -lean_closure_set(x_50, 1, lean_box(0)); -lean_closure_set(x_50, 2, x_28); -x_51 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set(x_51, 1, x_46); -lean_inc_ref(x_28); -x_52 = lean_alloc_closure((void*)(l_StateT_pure), 6, 3); -lean_closure_set(x_52, 0, lean_box(0)); -lean_closure_set(x_52, 1, lean_box(0)); -lean_closure_set(x_52, 2, x_28); -x_53 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_53, 0, x_51); -lean_ctor_set(x_53, 1, x_52); -lean_ctor_set(x_53, 2, x_47); -lean_ctor_set(x_53, 3, x_48); -lean_ctor_set(x_53, 4, x_49); -x_54 = lean_alloc_closure((void*)(l_StateT_bind), 8, 3); -lean_closure_set(x_54, 0, lean_box(0)); -lean_closure_set(x_54, 1, lean_box(0)); -lean_closure_set(x_54, 2, x_28); -x_55 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_55, 0, x_53); -lean_ctor_set(x_55, 1, x_54); -lean_inc_ref(x_55); -x_56 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_56, 0, x_55); -lean_inc_ref(x_55); -x_57 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_57, 0, x_55); -lean_inc_ref(x_55); -x_58 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__7), 6, 1); -lean_closure_set(x_58, 0, x_55); -lean_inc_ref(x_55); -x_59 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__9), 6, 1); -lean_closure_set(x_59, 0, x_55); -lean_inc_ref(x_55); -x_60 = lean_alloc_closure((void*)(l_StateT_map), 8, 3); -lean_closure_set(x_60, 0, lean_box(0)); -lean_closure_set(x_60, 1, lean_box(0)); -lean_closure_set(x_60, 2, x_55); -x_61 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_61, 0, x_60); -lean_ctor_set(x_61, 1, x_56); -lean_inc_ref(x_55); -x_62 = lean_alloc_closure((void*)(l_StateT_pure), 6, 3); -lean_closure_set(x_62, 0, lean_box(0)); -lean_closure_set(x_62, 1, lean_box(0)); -lean_closure_set(x_62, 2, x_55); -x_63 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_63, 0, x_61); -lean_ctor_set(x_63, 1, x_62); -lean_ctor_set(x_63, 2, x_57); -lean_ctor_set(x_63, 3, x_58); -lean_ctor_set(x_63, 4, x_59); -x_64 = lean_alloc_closure((void*)(l_StateT_bind), 8, 3); -lean_closure_set(x_64, 0, lean_box(0)); -lean_closure_set(x_64, 1, lean_box(0)); -lean_closure_set(x_64, 2, x_55); -x_65 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_65, 0, x_63); -lean_ctor_set(x_65, 1, x_64); -x_66 = l_Lean_instInhabitedExpr; -x_67 = l_instInhabitedOfMonad___redArg(x_65, x_66); -x_68 = lean_panic_fn(x_67, x_1); -x_69 = lean_apply_7(x_68, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_69; -} -else -{ -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; -x_70 = lean_ctor_get(x_30, 0); -x_71 = lean_ctor_get(x_30, 2); -x_72 = lean_ctor_get(x_30, 3); -x_73 = lean_ctor_get(x_30, 4); -lean_inc(x_73); -lean_inc(x_72); -lean_inc(x_71); -lean_inc(x_70); -lean_dec(x_30); -x_74 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; -x_75 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__4; -lean_inc_ref(x_70); -x_76 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_76, 0, x_70); -x_77 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_77, 0, x_70); -x_78 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -x_79 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_79, 0, x_73); -x_80 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_80, 0, x_72); -x_81 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_81, 0, x_71); -x_82 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_82, 0, x_78); -lean_ctor_set(x_82, 1, x_74); -lean_ctor_set(x_82, 2, x_81); -lean_ctor_set(x_82, 3, x_80); -lean_ctor_set(x_82, 4, x_79); -lean_ctor_set(x_28, 1, x_75); -lean_ctor_set(x_28, 0, x_82); -lean_inc_ref(x_28); -x_83 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_83, 0, x_28); -lean_inc_ref(x_28); -x_84 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_84, 0, x_28); -lean_inc_ref(x_28); -x_85 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__7), 6, 1); -lean_closure_set(x_85, 0, x_28); -lean_inc_ref(x_28); -x_86 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__9), 6, 1); -lean_closure_set(x_86, 0, x_28); -lean_inc_ref(x_28); -x_87 = lean_alloc_closure((void*)(l_StateT_map), 8, 3); -lean_closure_set(x_87, 0, lean_box(0)); -lean_closure_set(x_87, 1, lean_box(0)); -lean_closure_set(x_87, 2, x_28); -x_88 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_88, 0, x_87); -lean_ctor_set(x_88, 1, x_83); -lean_inc_ref(x_28); -x_89 = lean_alloc_closure((void*)(l_StateT_pure), 6, 3); -lean_closure_set(x_89, 0, lean_box(0)); -lean_closure_set(x_89, 1, lean_box(0)); -lean_closure_set(x_89, 2, x_28); -x_90 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_90, 0, x_88); -lean_ctor_set(x_90, 1, x_89); -lean_ctor_set(x_90, 2, x_84); -lean_ctor_set(x_90, 3, x_85); -lean_ctor_set(x_90, 4, x_86); -x_91 = lean_alloc_closure((void*)(l_StateT_bind), 8, 3); -lean_closure_set(x_91, 0, lean_box(0)); -lean_closure_set(x_91, 1, lean_box(0)); -lean_closure_set(x_91, 2, x_28); -x_92 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_92, 0, x_90); -lean_ctor_set(x_92, 1, x_91); -lean_inc_ref(x_92); -x_93 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_93, 0, x_92); -lean_inc_ref(x_92); -x_94 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_94, 0, x_92); -lean_inc_ref(x_92); -x_95 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__7), 6, 1); -lean_closure_set(x_95, 0, x_92); -lean_inc_ref(x_92); -x_96 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__9), 6, 1); -lean_closure_set(x_96, 0, x_92); -lean_inc_ref(x_92); -x_97 = lean_alloc_closure((void*)(l_StateT_map), 8, 3); -lean_closure_set(x_97, 0, lean_box(0)); -lean_closure_set(x_97, 1, lean_box(0)); -lean_closure_set(x_97, 2, x_92); -x_98 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_98, 0, x_97); -lean_ctor_set(x_98, 1, x_93); -lean_inc_ref(x_92); -x_99 = lean_alloc_closure((void*)(l_StateT_pure), 6, 3); -lean_closure_set(x_99, 0, lean_box(0)); -lean_closure_set(x_99, 1, lean_box(0)); -lean_closure_set(x_99, 2, x_92); -x_100 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_100, 0, x_98); -lean_ctor_set(x_100, 1, x_99); -lean_ctor_set(x_100, 2, x_94); -lean_ctor_set(x_100, 3, x_95); -lean_ctor_set(x_100, 4, x_96); -x_101 = lean_alloc_closure((void*)(l_StateT_bind), 8, 3); -lean_closure_set(x_101, 0, lean_box(0)); -lean_closure_set(x_101, 1, lean_box(0)); -lean_closure_set(x_101, 2, x_92); -x_102 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_102, 0, x_100); -lean_ctor_set(x_102, 1, x_101); -x_103 = l_Lean_instInhabitedExpr; -x_104 = l_instInhabitedOfMonad___redArg(x_102, x_103); -x_105 = lean_panic_fn(x_104, x_1); -x_106 = lean_apply_7(x_105, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_106; -} -} -else -{ -lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; -x_107 = lean_ctor_get(x_28, 0); -lean_inc(x_107); -lean_dec(x_28); -x_108 = lean_ctor_get(x_107, 0); -lean_inc_ref(x_108); -x_109 = lean_ctor_get(x_107, 2); -lean_inc_ref(x_109); -x_110 = lean_ctor_get(x_107, 3); -lean_inc_ref(x_110); -x_111 = lean_ctor_get(x_107, 4); -lean_inc_ref(x_111); -if (lean_is_exclusive(x_107)) { - lean_ctor_release(x_107, 0); - lean_ctor_release(x_107, 1); - lean_ctor_release(x_107, 2); - lean_ctor_release(x_107, 3); - lean_ctor_release(x_107, 4); - x_112 = x_107; -} else { - lean_dec_ref(x_107); - x_112 = lean_box(0); -} -x_113 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; -x_114 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__4; -lean_inc_ref(x_108); -x_115 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_115, 0, x_108); -x_116 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_116, 0, x_108); -x_117 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_117, 0, x_115); -lean_ctor_set(x_117, 1, x_116); -x_118 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_118, 0, x_111); -x_119 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_119, 0, x_110); -x_120 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_120, 0, x_109); -if (lean_is_scalar(x_112)) { - x_121 = lean_alloc_ctor(0, 5, 0); -} else { - x_121 = x_112; -} -lean_ctor_set(x_121, 0, x_117); -lean_ctor_set(x_121, 1, x_113); -lean_ctor_set(x_121, 2, x_120); -lean_ctor_set(x_121, 3, x_119); -lean_ctor_set(x_121, 4, x_118); -x_122 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_122, 0, x_121); -lean_ctor_set(x_122, 1, x_114); -lean_inc_ref(x_122); -x_123 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_123, 0, x_122); -lean_inc_ref(x_122); -x_124 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_124, 0, x_122); -lean_inc_ref(x_122); -x_125 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__7), 6, 1); -lean_closure_set(x_125, 0, x_122); -lean_inc_ref(x_122); -x_126 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__9), 6, 1); -lean_closure_set(x_126, 0, x_122); -lean_inc_ref(x_122); -x_127 = lean_alloc_closure((void*)(l_StateT_map), 8, 3); -lean_closure_set(x_127, 0, lean_box(0)); -lean_closure_set(x_127, 1, lean_box(0)); -lean_closure_set(x_127, 2, x_122); -x_128 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_128, 0, x_127); -lean_ctor_set(x_128, 1, x_123); -lean_inc_ref(x_122); -x_129 = lean_alloc_closure((void*)(l_StateT_pure), 6, 3); -lean_closure_set(x_129, 0, lean_box(0)); -lean_closure_set(x_129, 1, lean_box(0)); -lean_closure_set(x_129, 2, x_122); -x_130 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_130, 0, x_128); -lean_ctor_set(x_130, 1, x_129); -lean_ctor_set(x_130, 2, x_124); -lean_ctor_set(x_130, 3, x_125); -lean_ctor_set(x_130, 4, x_126); -x_131 = lean_alloc_closure((void*)(l_StateT_bind), 8, 3); -lean_closure_set(x_131, 0, lean_box(0)); -lean_closure_set(x_131, 1, lean_box(0)); -lean_closure_set(x_131, 2, x_122); -x_132 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_132, 0, x_130); -lean_ctor_set(x_132, 1, x_131); -lean_inc_ref(x_132); -x_133 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_133, 0, x_132); -lean_inc_ref(x_132); -x_134 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_134, 0, x_132); -lean_inc_ref(x_132); -x_135 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__7), 6, 1); -lean_closure_set(x_135, 0, x_132); -lean_inc_ref(x_132); -x_136 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__9), 6, 1); -lean_closure_set(x_136, 0, x_132); -lean_inc_ref(x_132); -x_137 = lean_alloc_closure((void*)(l_StateT_map), 8, 3); -lean_closure_set(x_137, 0, lean_box(0)); -lean_closure_set(x_137, 1, lean_box(0)); -lean_closure_set(x_137, 2, x_132); -x_138 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_138, 0, x_137); -lean_ctor_set(x_138, 1, x_133); -lean_inc_ref(x_132); -x_139 = lean_alloc_closure((void*)(l_StateT_pure), 6, 3); -lean_closure_set(x_139, 0, lean_box(0)); -lean_closure_set(x_139, 1, lean_box(0)); -lean_closure_set(x_139, 2, x_132); -x_140 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_140, 0, x_138); -lean_ctor_set(x_140, 1, x_139); -lean_ctor_set(x_140, 2, x_134); -lean_ctor_set(x_140, 3, x_135); -lean_ctor_set(x_140, 4, x_136); -x_141 = lean_alloc_closure((void*)(l_StateT_bind), 8, 3); -lean_closure_set(x_141, 0, lean_box(0)); -lean_closure_set(x_141, 1, lean_box(0)); -lean_closure_set(x_141, 2, x_132); -x_142 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_142, 0, x_140); -lean_ctor_set(x_142, 1, x_141); -x_143 = l_Lean_instInhabitedExpr; -x_144 = l_instInhabitedOfMonad___redArg(x_142, x_143); -x_145 = lean_panic_fn(x_144, x_1); -x_146 = lean_apply_7(x_145, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_146; -} -} -else -{ -lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; -x_147 = lean_ctor_get(x_12, 0); -x_148 = lean_ctor_get(x_12, 2); -x_149 = lean_ctor_get(x_12, 3); -x_150 = lean_ctor_get(x_12, 4); -lean_inc(x_150); -lean_inc(x_149); -lean_inc(x_148); -lean_inc(x_147); -lean_dec(x_12); -x_151 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__1; -x_152 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__2; -lean_inc_ref(x_147); -x_153 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_153, 0, x_147); -x_154 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_154, 0, x_147); -x_155 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_155, 0, x_153); -lean_ctor_set(x_155, 1, x_154); -x_156 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_156, 0, x_150); -x_157 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_157, 0, x_149); -x_158 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_158, 0, x_148); -x_159 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_159, 0, x_155); -lean_ctor_set(x_159, 1, x_151); -lean_ctor_set(x_159, 2, x_158); -lean_ctor_set(x_159, 3, x_157); -lean_ctor_set(x_159, 4, x_156); -lean_ctor_set(x_10, 1, x_152); -lean_ctor_set(x_10, 0, x_159); -x_160 = l_ReaderT_instMonad___redArg(x_10); -x_161 = lean_ctor_get(x_160, 0); -lean_inc_ref(x_161); -if (lean_is_exclusive(x_160)) { - lean_ctor_release(x_160, 0); - lean_ctor_release(x_160, 1); - x_162 = x_160; -} else { - lean_dec_ref(x_160); - x_162 = lean_box(0); -} -x_163 = lean_ctor_get(x_161, 0); -lean_inc_ref(x_163); -x_164 = lean_ctor_get(x_161, 2); -lean_inc_ref(x_164); -x_165 = lean_ctor_get(x_161, 3); -lean_inc_ref(x_165); -x_166 = lean_ctor_get(x_161, 4); -lean_inc_ref(x_166); -if (lean_is_exclusive(x_161)) { - lean_ctor_release(x_161, 0); - lean_ctor_release(x_161, 1); - lean_ctor_release(x_161, 2); - lean_ctor_release(x_161, 3); - lean_ctor_release(x_161, 4); - x_167 = x_161; -} else { - lean_dec_ref(x_161); - x_167 = lean_box(0); -} -x_168 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; -x_169 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__4; -lean_inc_ref(x_163); -x_170 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_170, 0, x_163); -x_171 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_171, 0, x_163); -x_172 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_172, 0, x_170); -lean_ctor_set(x_172, 1, x_171); -x_173 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_173, 0, x_166); -x_174 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_174, 0, x_165); -x_175 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_175, 0, x_164); -if (lean_is_scalar(x_167)) { - x_176 = lean_alloc_ctor(0, 5, 0); -} else { - x_176 = x_167; -} -lean_ctor_set(x_176, 0, x_172); -lean_ctor_set(x_176, 1, x_168); -lean_ctor_set(x_176, 2, x_175); -lean_ctor_set(x_176, 3, x_174); -lean_ctor_set(x_176, 4, x_173); -if (lean_is_scalar(x_162)) { - x_177 = lean_alloc_ctor(0, 2, 0); -} else { - x_177 = x_162; -} -lean_ctor_set(x_177, 0, x_176); -lean_ctor_set(x_177, 1, x_169); -lean_inc_ref(x_177); -x_178 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_178, 0, x_177); -lean_inc_ref(x_177); -x_179 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_179, 0, x_177); -lean_inc_ref(x_177); -x_180 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__7), 6, 1); -lean_closure_set(x_180, 0, x_177); -lean_inc_ref(x_177); -x_181 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__9), 6, 1); -lean_closure_set(x_181, 0, x_177); -lean_inc_ref(x_177); -x_182 = lean_alloc_closure((void*)(l_StateT_map), 8, 3); -lean_closure_set(x_182, 0, lean_box(0)); -lean_closure_set(x_182, 1, lean_box(0)); -lean_closure_set(x_182, 2, x_177); -x_183 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_183, 0, x_182); -lean_ctor_set(x_183, 1, x_178); -lean_inc_ref(x_177); -x_184 = lean_alloc_closure((void*)(l_StateT_pure), 6, 3); -lean_closure_set(x_184, 0, lean_box(0)); -lean_closure_set(x_184, 1, lean_box(0)); -lean_closure_set(x_184, 2, x_177); -x_185 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_185, 0, x_183); -lean_ctor_set(x_185, 1, x_184); -lean_ctor_set(x_185, 2, x_179); -lean_ctor_set(x_185, 3, x_180); -lean_ctor_set(x_185, 4, x_181); -x_186 = lean_alloc_closure((void*)(l_StateT_bind), 8, 3); -lean_closure_set(x_186, 0, lean_box(0)); -lean_closure_set(x_186, 1, lean_box(0)); -lean_closure_set(x_186, 2, x_177); -x_187 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_187, 0, x_185); -lean_ctor_set(x_187, 1, x_186); -lean_inc_ref(x_187); -x_188 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_188, 0, x_187); -lean_inc_ref(x_187); -x_189 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_189, 0, x_187); -lean_inc_ref(x_187); -x_190 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__7), 6, 1); -lean_closure_set(x_190, 0, x_187); -lean_inc_ref(x_187); -x_191 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__9), 6, 1); -lean_closure_set(x_191, 0, x_187); -lean_inc_ref(x_187); -x_192 = lean_alloc_closure((void*)(l_StateT_map), 8, 3); -lean_closure_set(x_192, 0, lean_box(0)); -lean_closure_set(x_192, 1, lean_box(0)); -lean_closure_set(x_192, 2, x_187); -x_193 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_193, 0, x_192); -lean_ctor_set(x_193, 1, x_188); -lean_inc_ref(x_187); -x_194 = lean_alloc_closure((void*)(l_StateT_pure), 6, 3); -lean_closure_set(x_194, 0, lean_box(0)); -lean_closure_set(x_194, 1, lean_box(0)); -lean_closure_set(x_194, 2, x_187); -x_195 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_195, 0, x_193); -lean_ctor_set(x_195, 1, x_194); -lean_ctor_set(x_195, 2, x_189); -lean_ctor_set(x_195, 3, x_190); -lean_ctor_set(x_195, 4, x_191); -x_196 = lean_alloc_closure((void*)(l_StateT_bind), 8, 3); -lean_closure_set(x_196, 0, lean_box(0)); -lean_closure_set(x_196, 1, lean_box(0)); -lean_closure_set(x_196, 2, x_187); -x_197 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_197, 0, x_195); -lean_ctor_set(x_197, 1, x_196); -x_198 = l_Lean_instInhabitedExpr; -x_199 = l_instInhabitedOfMonad___redArg(x_197, x_198); -x_200 = lean_panic_fn(x_199, x_1); -x_201 = lean_apply_7(x_200, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_201; -} -} -else -{ -lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; -x_202 = lean_ctor_get(x_10, 0); -lean_inc(x_202); -lean_dec(x_10); -x_203 = lean_ctor_get(x_202, 0); -lean_inc_ref(x_203); -x_204 = lean_ctor_get(x_202, 2); -lean_inc_ref(x_204); -x_205 = lean_ctor_get(x_202, 3); -lean_inc_ref(x_205); -x_206 = lean_ctor_get(x_202, 4); -lean_inc_ref(x_206); -if (lean_is_exclusive(x_202)) { - lean_ctor_release(x_202, 0); - lean_ctor_release(x_202, 1); - lean_ctor_release(x_202, 2); - lean_ctor_release(x_202, 3); - lean_ctor_release(x_202, 4); - x_207 = x_202; -} else { - lean_dec_ref(x_202); - x_207 = lean_box(0); -} -x_208 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__1; -x_209 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__2; -lean_inc_ref(x_203); -x_210 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_210, 0, x_203); -x_211 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_211, 0, x_203); -x_212 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_212, 0, x_210); -lean_ctor_set(x_212, 1, x_211); -x_213 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_213, 0, x_206); -x_214 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_214, 0, x_205); -x_215 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_215, 0, x_204); -if (lean_is_scalar(x_207)) { - x_216 = lean_alloc_ctor(0, 5, 0); -} else { - x_216 = x_207; -} -lean_ctor_set(x_216, 0, x_212); -lean_ctor_set(x_216, 1, x_208); -lean_ctor_set(x_216, 2, x_215); -lean_ctor_set(x_216, 3, x_214); -lean_ctor_set(x_216, 4, x_213); -x_217 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_217, 0, x_216); -lean_ctor_set(x_217, 1, x_209); -x_218 = l_ReaderT_instMonad___redArg(x_217); -x_219 = lean_ctor_get(x_218, 0); -lean_inc_ref(x_219); -if (lean_is_exclusive(x_218)) { - lean_ctor_release(x_218, 0); - lean_ctor_release(x_218, 1); - x_220 = x_218; -} else { - lean_dec_ref(x_218); - x_220 = lean_box(0); -} -x_221 = lean_ctor_get(x_219, 0); -lean_inc_ref(x_221); -x_222 = lean_ctor_get(x_219, 2); -lean_inc_ref(x_222); -x_223 = lean_ctor_get(x_219, 3); -lean_inc_ref(x_223); -x_224 = lean_ctor_get(x_219, 4); -lean_inc_ref(x_224); -if (lean_is_exclusive(x_219)) { - lean_ctor_release(x_219, 0); - lean_ctor_release(x_219, 1); - lean_ctor_release(x_219, 2); - lean_ctor_release(x_219, 3); - lean_ctor_release(x_219, 4); - x_225 = x_219; -} else { - lean_dec_ref(x_219); - x_225 = lean_box(0); -} -x_226 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; -x_227 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__4; -lean_inc_ref(x_221); -x_228 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_228, 0, x_221); -x_229 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_229, 0, x_221); -x_230 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_230, 0, x_228); -lean_ctor_set(x_230, 1, x_229); -x_231 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_231, 0, x_224); -x_232 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_232, 0, x_223); -x_233 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_233, 0, x_222); -if (lean_is_scalar(x_225)) { - x_234 = lean_alloc_ctor(0, 5, 0); -} else { - x_234 = x_225; -} -lean_ctor_set(x_234, 0, x_230); -lean_ctor_set(x_234, 1, x_226); -lean_ctor_set(x_234, 2, x_233); -lean_ctor_set(x_234, 3, x_232); -lean_ctor_set(x_234, 4, x_231); -if (lean_is_scalar(x_220)) { - x_235 = lean_alloc_ctor(0, 2, 0); -} else { - x_235 = x_220; -} -lean_ctor_set(x_235, 0, x_234); -lean_ctor_set(x_235, 1, x_227); -lean_inc_ref(x_235); -x_236 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_236, 0, x_235); -lean_inc_ref(x_235); -x_237 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_237, 0, x_235); -lean_inc_ref(x_235); -x_238 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__7), 6, 1); -lean_closure_set(x_238, 0, x_235); -lean_inc_ref(x_235); -x_239 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__9), 6, 1); -lean_closure_set(x_239, 0, x_235); -lean_inc_ref(x_235); -x_240 = lean_alloc_closure((void*)(l_StateT_map), 8, 3); -lean_closure_set(x_240, 0, lean_box(0)); -lean_closure_set(x_240, 1, lean_box(0)); -lean_closure_set(x_240, 2, x_235); -x_241 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_241, 0, x_240); -lean_ctor_set(x_241, 1, x_236); -lean_inc_ref(x_235); -x_242 = lean_alloc_closure((void*)(l_StateT_pure), 6, 3); -lean_closure_set(x_242, 0, lean_box(0)); -lean_closure_set(x_242, 1, lean_box(0)); -lean_closure_set(x_242, 2, x_235); -x_243 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_243, 0, x_241); -lean_ctor_set(x_243, 1, x_242); -lean_ctor_set(x_243, 2, x_237); -lean_ctor_set(x_243, 3, x_238); -lean_ctor_set(x_243, 4, x_239); -x_244 = lean_alloc_closure((void*)(l_StateT_bind), 8, 3); -lean_closure_set(x_244, 0, lean_box(0)); -lean_closure_set(x_244, 1, lean_box(0)); -lean_closure_set(x_244, 2, x_235); -x_245 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_245, 0, x_243); -lean_ctor_set(x_245, 1, x_244); -lean_inc_ref(x_245); -x_246 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_246, 0, x_245); -lean_inc_ref(x_245); -x_247 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_247, 0, x_245); -lean_inc_ref(x_245); -x_248 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__7), 6, 1); -lean_closure_set(x_248, 0, x_245); -lean_inc_ref(x_245); -x_249 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__9), 6, 1); -lean_closure_set(x_249, 0, x_245); -lean_inc_ref(x_245); -x_250 = lean_alloc_closure((void*)(l_StateT_map), 8, 3); -lean_closure_set(x_250, 0, lean_box(0)); -lean_closure_set(x_250, 1, lean_box(0)); -lean_closure_set(x_250, 2, x_245); -x_251 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_251, 0, x_250); -lean_ctor_set(x_251, 1, x_246); -lean_inc_ref(x_245); -x_252 = lean_alloc_closure((void*)(l_StateT_pure), 6, 3); -lean_closure_set(x_252, 0, lean_box(0)); -lean_closure_set(x_252, 1, lean_box(0)); -lean_closure_set(x_252, 2, x_245); -x_253 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_253, 0, x_251); -lean_ctor_set(x_253, 1, x_252); -lean_ctor_set(x_253, 2, x_247); -lean_ctor_set(x_253, 3, x_248); -lean_ctor_set(x_253, 4, x_249); -x_254 = lean_alloc_closure((void*)(l_StateT_bind), 8, 3); -lean_closure_set(x_254, 0, lean_box(0)); -lean_closure_set(x_254, 1, lean_box(0)); -lean_closure_set(x_254, 2, x_245); -x_255 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_255, 0, x_253); -lean_ctor_set(x_255, 1, x_254); -x_256 = l_Lean_instInhabitedExpr; -x_257 = l_instInhabitedOfMonad___redArg(x_255, x_256); -x_258 = lean_panic_fn(x_257, x_1); -x_259 = lean_apply_7(x_258, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_259; -} -} -} -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__16(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; uint8_t x_10; -x_10 = lean_usize_dec_eq(x_2, x_3); -if (x_10 == 0) -{ -lean_object* x_11; lean_object* x_12; -x_11 = lean_array_uget(x_1, x_2); -x_12 = l_Lean_Expr_fvarId_x3f(x_11); -lean_dec_ref(x_11); -if (lean_obj_tag(x_12) == 0) -{ -x_5 = x_4; -goto block_9; -} -else -{ -lean_object* x_13; lean_object* x_14; -x_13 = lean_ctor_get(x_12, 0); -lean_inc(x_13); -lean_dec_ref(x_12); -x_14 = lean_array_push(x_4, x_13); -x_5 = x_14; -goto block_9; -} -} -else -{ -return x_4; -} -block_9: -{ -size_t x_6; size_t x_7; -x_6 = 1; -x_7 = lean_usize_add(x_2, x_6); -x_2 = x_7; -x_4 = x_5; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l_Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__16(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; uint8_t x_5; -x_4 = l_Lean_Tactic_FunInd_M2_run___redArg___closed__0; -x_5 = lean_nat_dec_lt(x_2, x_3); -if (x_5 == 0) -{ -return x_4; -} -else -{ -lean_object* x_6; uint8_t x_7; -x_6 = lean_array_get_size(x_1); -x_7 = lean_nat_dec_le(x_3, x_6); -lean_dec(x_6); -if (x_7 == 0) -{ -return x_4; -} -else -{ -size_t x_8; size_t x_9; lean_object* x_10; -x_8 = lean_usize_of_nat(x_2); -x_9 = lean_usize_of_nat(x_3); -x_10 = l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__16(x_1, x_8, x_9, x_4); -return x_10; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = lean_apply_9(x_1, x_4, x_5, x_2, x_3, x_6, x_7, x_8, x_9, x_10); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; lean_object* x_14; -x_13 = lean_alloc_closure((void*)(l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg___lam__0), 10, 3); -lean_closure_set(x_13, 0, x_3); -lean_closure_set(x_13, 1, x_6); -lean_closure_set(x_13, 2, x_7); -x_14 = l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAux___redArg(x_1, x_2, x_13, x_4, x_5, x_8, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -x_15 = !lean_is_exclusive(x_14); -if (x_15 == 0) -{ -lean_object* x_16; uint8_t x_17; -x_16 = lean_ctor_get(x_14, 0); -x_17 = !lean_is_exclusive(x_16); -if (x_17 == 0) -{ -return x_14; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_16, 0); -x_19 = lean_ctor_get(x_16, 1); -lean_inc(x_19); -lean_inc(x_18); -lean_dec(x_16); -x_20 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_20, 0, x_18); -lean_ctor_set(x_20, 1, x_19); -lean_ctor_set(x_14, 0, x_20); -return x_14; -} -} -else -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_21 = lean_ctor_get(x_14, 0); -x_22 = lean_ctor_get(x_14, 1); -lean_inc(x_22); -lean_inc(x_21); -lean_dec(x_14); -x_23 = lean_ctor_get(x_21, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_21, 1); -lean_inc(x_24); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - x_25 = x_21; -} else { - lean_dec_ref(x_21); - x_25 = lean_box(0); -} -if (lean_is_scalar(x_25)) { - x_26 = lean_alloc_ctor(0, 2, 0); -} else { - x_26 = x_25; -} -lean_ctor_set(x_26, 0, x_23); -lean_ctor_set(x_26, 1, x_24); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_26); -lean_ctor_set(x_27, 1, x_22); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_14); -if (x_28 == 0) -{ -return x_14; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_14, 0); -x_30 = lean_ctor_get(x_14, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_14); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_12, lean_object* x_13) { -_start: -{ -lean_object* x_14; -x_14 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_14; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19_spec__19___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; uint8_t x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; -x_12 = lean_alloc_closure((void*)(l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg___lam__0), 10, 3); -lean_closure_set(x_12, 0, x_3); -lean_closure_set(x_12, 1, x_5); -lean_closure_set(x_12, 2, x_6); -x_13 = 1; -x_14 = 0; -x_15 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_15, 0, x_2); -x_16 = l___private_Lean_Meta_Basic_0__Lean_Meta_lambdaTelescopeImp(lean_box(0), x_1, x_13, x_14, x_13, x_14, x_15, x_12, x_4, x_7, x_8, x_9, x_10, x_11); -lean_dec_ref(x_15); -if (lean_obj_tag(x_16) == 0) -{ -uint8_t x_17; -x_17 = !lean_is_exclusive(x_16); -if (x_17 == 0) -{ -lean_object* x_18; uint8_t x_19; -x_18 = lean_ctor_get(x_16, 0); -x_19 = !lean_is_exclusive(x_18); -if (x_19 == 0) -{ -return x_16; -} -else -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_20 = lean_ctor_get(x_18, 0); -x_21 = lean_ctor_get(x_18, 1); -lean_inc(x_21); -lean_inc(x_20); -lean_dec(x_18); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_20); -lean_ctor_set(x_22, 1, x_21); -lean_ctor_set(x_16, 0, x_22); -return x_16; -} -} -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_23 = lean_ctor_get(x_16, 0); -x_24 = lean_ctor_get(x_16, 1); -lean_inc(x_24); -lean_inc(x_23); -lean_dec(x_16); -x_25 = lean_ctor_get(x_23, 0); -lean_inc(x_25); -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - lean_ctor_release(x_23, 1); - x_27 = x_23; -} else { - lean_dec_ref(x_23); - x_27 = lean_box(0); -} -if (lean_is_scalar(x_27)) { - x_28 = lean_alloc_ctor(0, 2, 0); -} else { - x_28 = x_27; -} -lean_ctor_set(x_28, 0, x_25); -lean_ctor_set(x_28, 1, x_26); -x_29 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_29, 0, x_28); -lean_ctor_set(x_29, 1, x_24); -return x_29; -} -} -else -{ -uint8_t x_30; -x_30 = !lean_is_exclusive(x_16); -if (x_30 == 0) -{ -return x_16; -} -else -{ -lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_31 = lean_ctor_get(x_16, 0); -x_32 = lean_ctor_get(x_16, 1); -lean_inc(x_32); -lean_inc(x_31); -lean_dec(x_16); -x_33 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_33, 0, x_31); -lean_ctor_set(x_33, 1, x_32); -return x_33; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19_spec__19(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; -x_13 = l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19_spec__19___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -return x_13; -} -} -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_13 = lean_unsigned_to_nat(0u); -x_14 = lean_array_get(x_1, x_2, x_13); -x_15 = l_Lean_Expr_fvarId_x21(x_14); -lean_dec_ref(x_14); -x_16 = lean_apply_9(x_3, x_15, x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -return x_16; -} -} -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -lean_object* x_14; uint8_t x_15; -x_14 = lean_array_get_size(x_5); -x_15 = lean_nat_dec_eq(x_14, x_3); -lean_dec(x_14); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_16 = l_Lean_Tactic_FunInd_lambdaTelescope1___redArg___lam__3___closed__1; -x_17 = l_Lean_MessageData_ofExpr(x_4); -x_18 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_18, 0, x_16); -lean_ctor_set(x_18, 1, x_17); -x_19 = l_Lean_Tactic_FunInd_lambdaTelescope1___redArg___lam__3___closed__3; -x_20 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_20, 0, x_18); -lean_ctor_set(x_20, 1, x_19); -x_21 = l_Lean_throwError___at___Lean_Tactic_FunInd_buildInductionBody_spec__0___redArg(x_20, x_9, x_10, x_11, x_12, x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -x_22 = !lean_is_exclusive(x_21); -if (x_22 == 0) -{ -return x_21; -} -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_21, 0); -x_24 = lean_ctor_get(x_21, 1); -lean_inc(x_24); -lean_inc(x_23); -lean_dec(x_21); -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 -{ -lean_object* x_26; lean_object* x_27; -lean_dec_ref(x_4); -x_26 = lean_box(0); -x_27 = l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19___redArg___lam__0(x_1, x_5, x_2, x_6, x_26, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_27; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19___redArg(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_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; -x_10 = l_Lean_instInhabitedExpr; -x_11 = lean_unsigned_to_nat(1u); -lean_inc_ref(x_1); -x_12 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19___redArg___lam__1___boxed), 13, 4); -lean_closure_set(x_12, 0, x_10); -lean_closure_set(x_12, 1, x_2); -lean_closure_set(x_12, 2, x_11); -lean_closure_set(x_12, 3, x_1); -x_13 = 0; -x_14 = l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19_spec__19___redArg(x_1, x_11, x_12, x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_14; -} -} -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__21___redArg(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__15___redArg(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { uint8_t x_10; @@ -57229,15 +56042,15 @@ return x_28; } } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__21(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__15(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__21___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_8, x_9, x_10); +x_11 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__15___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_8, x_9, x_10); return x_11; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__22(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__16(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { uint8_t x_12; @@ -57332,7 +56145,7 @@ return x_33; } } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__23(uint8_t x_1, lean_object* x_2, size_t x_3, size_t 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_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__17(uint8_t x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_29; @@ -58422,11 +57235,19 @@ return x_27; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__24___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__18___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = lean_apply_9(x_1, x_4, x_5, x_2, x_3, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__18___redArg(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; uint8_t x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; -x_11 = lean_alloc_closure((void*)(l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg___lam__0), 10, 3); +x_11 = lean_alloc_closure((void*)(l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__18___redArg___lam__0), 10, 3); lean_closure_set(x_11, 0, x_2); lean_closure_set(x_11, 1, x_4); lean_closure_set(x_11, 2, x_5); @@ -58519,15 +57340,15 @@ return x_32; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__24(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__18(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__24___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__18___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_12; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__25(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__19(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_20; @@ -58901,7 +57722,7 @@ goto _start; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__26___redArg___lam__0(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_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__20___redArg___lam__0(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; @@ -58909,11 +57730,11 @@ x_9 = lean_apply_7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__26___redArg(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_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__20___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; lean_object* x_12; -x_11 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__26___redArg___lam__0), 8, 3); +x_11 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__20___redArg___lam__0), 8, 3); lean_closure_set(x_11, 0, x_3); lean_closure_set(x_11, 1, x_4); lean_closure_set(x_11, 2, x_5); @@ -59003,25 +57824,127 @@ return x_29; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__26(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__20(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__26___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__20___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_12; } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__0(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_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_alloc_closure((void*)(l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__18___redArg___lam__0), 10, 3); +lean_closure_set(x_13, 0, x_3); +lean_closure_set(x_13, 1, x_6); +lean_closure_set(x_13, 2, x_7); +x_14 = l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAux___redArg(x_1, x_2, x_13, x_4, x_5, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_14) == 0) +{ +uint8_t x_15; +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +lean_object* x_16; uint8_t x_17; +x_16 = lean_ctor_get(x_14, 0); +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) +{ +return x_14; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_16, 0); +x_19 = lean_ctor_get(x_16, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_16); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +lean_ctor_set(x_14, 0, x_20); +return x_14; +} +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_21 = lean_ctor_get(x_14, 0); +x_22 = lean_ctor_get(x_14, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_14); +x_23 = lean_ctor_get(x_21, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_21, 1); +lean_inc(x_24); +if (lean_is_exclusive(x_21)) { + lean_ctor_release(x_21, 0); + lean_ctor_release(x_21, 1); + x_25 = x_21; +} else { + lean_dec_ref(x_21); + x_25 = lean_box(0); +} +if (lean_is_scalar(x_25)) { + x_26 = lean_alloc_ctor(0, 2, 0); +} else { + x_26 = x_25; +} +lean_ctor_set(x_26, 0, x_23); +lean_ctor_set(x_26, 1, x_24); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_22); +return x_27; +} +} +else +{ +uint8_t x_28; +x_28 = !lean_is_exclusive(x_14); +if (x_28 == 0) +{ +return x_14; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_14, 0); +x_30 = lean_ctor_get(x_14, 1); +lean_inc(x_30); +lean_inc(x_29); +lean_dec(x_14); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_29); +lean_ctor_set(x_31, 1, x_30); +return x_31; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__0(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: { size_t x_10; size_t x_11; lean_object* x_12; x_10 = lean_array_size(x_1); x_11 = 0; -x_12 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__21___redArg(x_10, x_11, x_1, x_3, x_4, x_5, x_7, x_8, x_9); +x_12 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__15___redArg(x_10, x_11, x_1, x_3, x_4, x_5, x_7, x_8, x_9); return x_12; } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__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, uint8_t x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__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, uint8_t x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_16; @@ -59042,7 +57965,8 @@ lean_inc(x_14); lean_inc_ref(x_13); lean_inc(x_12); lean_inc_ref(x_11); -x_19 = lean_apply_10(x_3, x_4, x_5, x_17, x_9, x_10, x_11, x_12, x_13, x_14, x_18); +lean_inc_ref(x_2); +x_19 = lean_apply_11(x_3, x_4, x_5, x_2, x_17, x_9, x_10, x_11, x_12, x_13, x_14, x_18); if (lean_obj_tag(x_19) == 0) { lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; @@ -59334,7 +58258,7 @@ return x_75; } } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { lean_object* x_17; @@ -59343,7 +58267,7 @@ lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); lean_inc_ref(x_1); -x_17 = l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__24___redArg(x_1, x_2, x_3, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_17 = l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__18___redArg(x_1, x_2, x_3, x_10, x_11, x_12, x_13, x_14, x_15, x_16); if (lean_obj_tag(x_17) == 0) { lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; @@ -59365,7 +58289,7 @@ lean_dec(x_19); x_24 = lean_box(x_3); x_25 = lean_box(x_7); lean_inc_ref(x_4); -x_26 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__1___boxed), 15, 8); +x_26 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__1___boxed), 15, 8); lean_closure_set(x_26, 0, x_1); lean_closure_set(x_26, 1, x_4); lean_closure_set(x_26, 2, x_5); @@ -59374,7 +58298,7 @@ lean_closure_set(x_26, 4, x_9); lean_closure_set(x_26, 5, x_8); lean_closure_set(x_26, 6, x_24); lean_closure_set(x_26, 7, x_25); -x_27 = l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__26___redArg(x_4, x_22, x_26, x_23, x_21, x_12, x_13, x_14, x_15, x_20); +x_27 = l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__20___redArg(x_4, x_22, x_26, x_23, x_21, x_12, x_13, x_14, x_15, x_20); lean_dec(x_22); lean_dec_ref(x_4); return x_27; @@ -59413,13 +58337,13 @@ return x_31; } } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__3(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, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__3(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, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; x_17 = lean_box(x_3); x_18 = lean_box(x_6); -x_19 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__2___boxed), 16, 7); +x_19 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__2___boxed), 16, 7); lean_closure_set(x_19, 0, x_1); lean_closure_set(x_19, 1, x_2); lean_closure_set(x_19, 2, x_17); @@ -59429,11 +58353,11 @@ lean_closure_set(x_19, 5, x_5); lean_closure_set(x_19, 6, x_18); x_20 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_20, 0, x_7); -x_21 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg(x_9, x_20, x_19, x_3, x_3, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_21 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21___redArg(x_9, x_20, x_19, x_3, x_3, x_10, x_11, x_12, x_13, x_14, x_15, x_16); return x_21; } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg(uint8_t x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg(uint8_t x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; @@ -59591,7 +58515,7 @@ x_60 = lean_ctor_get(x_27, 1); lean_dec(x_60); x_61 = lean_ctor_get(x_27, 0); lean_dec(x_61); -x_62 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__0___boxed), 9, 0); +x_62 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__0___boxed), 9, 0); x_63 = lean_array_fget(x_35, x_36); lean_dec(x_36); lean_dec_ref(x_35); @@ -59604,7 +58528,7 @@ x_67 = lean_box(x_3); lean_inc(x_4); lean_inc(x_7); lean_inc_ref(x_2); -x_68 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__3___boxed), 16, 7); +x_68 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__3___boxed), 16, 7); lean_closure_set(x_68, 0, x_65); lean_closure_set(x_68, 1, x_62); lean_closure_set(x_68, 2, x_66); @@ -59618,7 +58542,7 @@ lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -x_70 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg(x_63, x_69, x_68, x_1, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_70 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21___redArg(x_63, x_69, x_68, x_1, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); if (lean_obj_tag(x_70) == 0) { lean_object* x_71; lean_object* x_72; uint8_t x_73; @@ -59904,7 +58828,7 @@ else { 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_dec(x_27); -x_124 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__0___boxed), 9, 0); +x_124 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__0___boxed), 9, 0); x_125 = lean_array_fget(x_35, x_36); lean_dec(x_36); lean_dec_ref(x_35); @@ -59917,7 +58841,7 @@ x_129 = lean_box(x_3); lean_inc(x_4); lean_inc(x_7); lean_inc_ref(x_2); -x_130 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__3___boxed), 16, 7); +x_130 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__3___boxed), 16, 7); lean_closure_set(x_130, 0, x_127); lean_closure_set(x_130, 1, x_124); lean_closure_set(x_130, 2, x_128); @@ -59931,7 +58855,7 @@ lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -x_132 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg(x_125, x_131, x_130, x_1, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_132 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21___redArg(x_125, x_131, x_130, x_1, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); if (lean_obj_tag(x_132) == 0) { lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; uint8_t x_146; @@ -60123,7 +59047,7 @@ if (lean_is_exclusive(x_27)) { lean_dec_ref(x_27); x_161 = lean_box(0); } -x_162 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__0___boxed), 9, 0); +x_162 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__0___boxed), 9, 0); x_163 = lean_array_fget(x_35, x_36); lean_dec(x_36); lean_dec_ref(x_35); @@ -60136,7 +59060,7 @@ x_167 = lean_box(x_3); lean_inc(x_4); lean_inc(x_7); lean_inc_ref(x_2); -x_168 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__3___boxed), 16, 7); +x_168 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__3___boxed), 16, 7); lean_closure_set(x_168, 0, x_165); lean_closure_set(x_168, 1, x_162); lean_closure_set(x_168, 2, x_166); @@ -60150,7 +59074,7 @@ lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -x_170 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg(x_163, x_169, x_168, x_1, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_170 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21___redArg(x_163, x_169, x_168, x_1, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); if (lean_obj_tag(x_170) == 0) { lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; uint8_t x_184; @@ -60401,7 +59325,7 @@ if (lean_is_exclusive(x_27)) { lean_dec_ref(x_27); x_207 = lean_box(0); } -x_208 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__0___boxed), 9, 0); +x_208 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__0___boxed), 9, 0); x_209 = lean_array_fget(x_35, x_36); lean_dec(x_36); lean_dec_ref(x_35); @@ -60414,7 +59338,7 @@ x_213 = lean_box(x_3); lean_inc(x_4); lean_inc(x_7); lean_inc_ref(x_2); -x_214 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__3___boxed), 16, 7); +x_214 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__3___boxed), 16, 7); lean_closure_set(x_214, 0, x_211); lean_closure_set(x_214, 1, x_208); lean_closure_set(x_214, 2, x_212); @@ -60428,7 +59352,7 @@ lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -x_216 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg(x_209, x_215, x_214, x_1, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_216 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21___redArg(x_209, x_215, x_214, x_1, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); if (lean_obj_tag(x_216) == 0) { lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; uint8_t x_230; @@ -60737,7 +59661,7 @@ if (lean_is_exclusive(x_27)) { lean_dec_ref(x_27); x_262 = lean_box(0); } -x_263 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__0___boxed), 9, 0); +x_263 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__0___boxed), 9, 0); x_264 = lean_array_fget(x_240, x_241); lean_dec(x_241); lean_dec_ref(x_240); @@ -60750,7 +59674,7 @@ x_268 = lean_box(x_3); lean_inc(x_4); lean_inc(x_7); lean_inc_ref(x_2); -x_269 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__3___boxed), 16, 7); +x_269 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__3___boxed), 16, 7); lean_closure_set(x_269, 0, x_266); lean_closure_set(x_269, 1, x_263); lean_closure_set(x_269, 2, x_267); @@ -60764,7 +59688,7 @@ lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -x_271 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg(x_264, x_270, x_269, x_1, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_271 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21___redArg(x_264, x_270, x_269, x_1, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); if (lean_obj_tag(x_271) == 0) { lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; uint8_t x_286; @@ -61104,7 +60028,7 @@ if (lean_is_exclusive(x_27)) { lean_dec_ref(x_27); x_323 = lean_box(0); } -x_324 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__0___boxed), 9, 0); +x_324 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__0___boxed), 9, 0); x_325 = lean_array_fget(x_298, x_299); lean_dec(x_299); lean_dec_ref(x_298); @@ -61117,7 +60041,7 @@ x_329 = lean_box(x_3); lean_inc(x_4); lean_inc(x_7); lean_inc_ref(x_2); -x_330 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__3___boxed), 16, 7); +x_330 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__3___boxed), 16, 7); lean_closure_set(x_330, 0, x_327); lean_closure_set(x_330, 1, x_324); lean_closure_set(x_330, 2, x_328); @@ -61131,7 +60055,7 @@ lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -x_332 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg(x_325, x_331, x_330, x_1, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_332 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21___redArg(x_325, x_331, x_330, x_1, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); if (lean_obj_tag(x_332) == 0) { lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; uint8_t x_348; @@ -61505,7 +60429,7 @@ if (lean_is_exclusive(x_357)) { lean_dec_ref(x_357); x_390 = lean_box(0); } -x_391 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__0___boxed), 9, 0); +x_391 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__0___boxed), 9, 0); x_392 = lean_array_fget(x_362, x_363); lean_dec(x_363); lean_dec_ref(x_362); @@ -61518,7 +60442,7 @@ x_396 = lean_box(x_3); lean_inc(x_4); lean_inc(x_7); lean_inc_ref(x_2); -x_397 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__3___boxed), 16, 7); +x_397 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__3___boxed), 16, 7); lean_closure_set(x_397, 0, x_394); lean_closure_set(x_397, 1, x_391); lean_closure_set(x_397, 2, x_395); @@ -61532,7 +60456,7 @@ lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); lean_inc_ref(x_10); -x_399 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg(x_392, x_398, x_397, x_1, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_399 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21___redArg(x_392, x_398, x_397, x_1, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); if (lean_obj_tag(x_399) == 0) { lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; uint8_t x_416; @@ -61709,18 +60633,18 @@ return x_21; } } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27(uint8_t x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22(uint8_t x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { _start: { lean_object* x_22; -x_22 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg(x_1, x_2, x_3, x_4, x_9, x_11, x_12, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +x_22 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg(x_1, x_2, x_3, x_4, x_9, x_11, x_12, x_15, x_16, x_17, x_18, x_19, x_20, x_21); return x_22; } } -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__28_spec__28_spec__28(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t 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_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__23_spec__23_spec__23(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; uint8_t x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_82; uint8_t x_83; lean_object* x_84; lean_object* x_85; uint8_t x_86; lean_object* x_87; uint8_t x_88; lean_object* x_89; lean_object* x_101; uint8_t x_102; lean_object* x_103; uint8_t x_104; lean_object* x_105; uint8_t x_106; lean_object* x_107; lean_object* x_108; lean_object* x_112; uint8_t x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; uint8_t x_117; uint8_t x_118; uint8_t x_124; uint8_t x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; uint8_t x_130; uint8_t x_131; uint8_t x_133; uint8_t x_151; +lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t 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_82; lean_object* x_83; uint8_t x_84; uint8_t x_85; lean_object* x_86; lean_object* x_87; uint8_t x_88; lean_object* x_89; lean_object* x_101; uint8_t x_102; uint8_t x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; lean_object* x_107; lean_object* x_108; lean_object* x_112; uint8_t x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; uint8_t x_117; uint8_t x_118; uint8_t x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; uint8_t x_129; uint8_t x_130; uint8_t x_131; uint8_t x_133; uint8_t x_151; x_124 = 2; x_151 = l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(x_3, x_124); if (x_151 == 0) @@ -61774,15 +60698,15 @@ lean_ctor_set(x_29, 1, x_34); lean_ctor_set(x_29, 0, x_33); x_37 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_37, 0, x_29); -lean_ctor_set(x_37, 1, x_23); +lean_ctor_set(x_37, 1, x_22); x_38 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_38, 0, x_25); -lean_ctor_set(x_38, 1, x_20); -lean_ctor_set(x_38, 2, x_19); -lean_ctor_set(x_38, 3, x_21); +lean_ctor_set(x_38, 0, x_23); +lean_ctor_set(x_38, 1, x_24); +lean_ctor_set(x_38, 2, x_21); +lean_ctor_set(x_38, 3, x_25); lean_ctor_set(x_38, 4, x_37); -lean_ctor_set_uint8(x_38, sizeof(void*)*5, x_24); -lean_ctor_set_uint8(x_38, sizeof(void*)*5 + 1, x_22); +lean_ctor_set_uint8(x_38, sizeof(void*)*5, x_20); +lean_ctor_set_uint8(x_38, sizeof(void*)*5 + 1, x_19); lean_ctor_set_uint8(x_38, sizeof(void*)*5 + 2, x_4); x_39 = l_Lean_MessageLog_add(x_38, x_36); lean_ctor_set(x_31, 6, x_39); @@ -61822,15 +60746,15 @@ lean_ctor_set(x_29, 1, x_34); lean_ctor_set(x_29, 0, x_33); x_52 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_52, 0, x_29); -lean_ctor_set(x_52, 1, x_23); +lean_ctor_set(x_52, 1, x_22); x_53 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_53, 0, x_25); -lean_ctor_set(x_53, 1, x_20); -lean_ctor_set(x_53, 2, x_19); -lean_ctor_set(x_53, 3, x_21); +lean_ctor_set(x_53, 0, x_23); +lean_ctor_set(x_53, 1, x_24); +lean_ctor_set(x_53, 2, x_21); +lean_ctor_set(x_53, 3, x_25); lean_ctor_set(x_53, 4, x_52); -lean_ctor_set_uint8(x_53, sizeof(void*)*5, x_24); -lean_ctor_set_uint8(x_53, sizeof(void*)*5 + 1, x_22); +lean_ctor_set_uint8(x_53, sizeof(void*)*5, x_20); +lean_ctor_set_uint8(x_53, sizeof(void*)*5 + 1, x_19); lean_ctor_set_uint8(x_53, sizeof(void*)*5 + 2, x_4); x_54 = l_Lean_MessageLog_add(x_53, x_49); x_55 = lean_alloc_ctor(0, 9, 0); @@ -61905,15 +60829,15 @@ lean_ctor_set(x_73, 0, x_61); lean_ctor_set(x_73, 1, x_62); x_74 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_74, 0, x_73); -lean_ctor_set(x_74, 1, x_23); +lean_ctor_set(x_74, 1, x_22); x_75 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_75, 0, x_25); -lean_ctor_set(x_75, 1, x_20); -lean_ctor_set(x_75, 2, x_19); -lean_ctor_set(x_75, 3, x_21); +lean_ctor_set(x_75, 0, x_23); +lean_ctor_set(x_75, 1, x_24); +lean_ctor_set(x_75, 2, x_21); +lean_ctor_set(x_75, 3, x_25); lean_ctor_set(x_75, 4, x_74); -lean_ctor_set_uint8(x_75, sizeof(void*)*5, x_24); -lean_ctor_set_uint8(x_75, sizeof(void*)*5 + 1, x_22); +lean_ctor_set_uint8(x_75, sizeof(void*)*5, x_20); +lean_ctor_set_uint8(x_75, sizeof(void*)*5 + 1, x_19); lean_ctor_set_uint8(x_75, sizeof(void*)*5 + 2, x_4); x_76 = l_Lean_MessageLog_add(x_75, x_69); if (lean_is_scalar(x_72)) { @@ -61951,24 +60875,24 @@ lean_inc(x_92); x_93 = lean_ctor_get(x_91, 1); lean_inc(x_93); lean_dec_ref(x_91); -lean_inc_ref(x_84); -x_94 = l_Lean_FileMap_toPosition(x_84, x_85); -lean_dec(x_85); -x_95 = l_Lean_FileMap_toPosition(x_84, x_89); +lean_inc_ref(x_86); +x_94 = l_Lean_FileMap_toPosition(x_86, x_83); +lean_dec(x_83); +x_95 = l_Lean_FileMap_toPosition(x_86, x_89); lean_dec(x_89); x_96 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_96, 0, x_95); x_97 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32_spec__32_spec__32___closed__0; -if (x_83 == 0) +if (x_88 == 0) { lean_dec_ref(x_82); -x_19 = x_96; -x_20 = x_94; -x_21 = x_97; -x_22 = x_86; -x_23 = x_92; -x_24 = x_88; -x_25 = x_87; +x_19 = x_85; +x_20 = x_84; +x_21 = x_96; +x_22 = x_92; +x_23 = x_87; +x_24 = x_94; +x_25 = x_97; x_26 = x_9; x_27 = x_10; x_28 = x_93; @@ -61995,13 +60919,13 @@ goto block_18; } else { -x_19 = x_96; -x_20 = x_94; -x_21 = x_97; -x_22 = x_86; -x_23 = x_92; -x_24 = x_88; -x_25 = x_87; +x_19 = x_85; +x_20 = x_84; +x_21 = x_96; +x_22 = x_92; +x_23 = x_87; +x_24 = x_94; +x_25 = x_97; x_26 = x_9; x_27 = x_10; x_28 = x_93; @@ -62012,17 +60936,17 @@ goto block_81; block_111: { lean_object* x_109; -x_109 = l_Lean_Syntax_getTailPos_x3f(x_105, x_106); -lean_dec(x_105); +x_109 = l_Lean_Syntax_getTailPos_x3f(x_107, x_103); +lean_dec(x_107); if (lean_obj_tag(x_109) == 0) { lean_inc(x_108); x_82 = x_101; -x_83 = x_102; +x_83 = x_108; x_84 = x_103; -x_85 = x_108; +x_85 = x_102; x_86 = x_104; -x_87 = x_107; +x_87 = x_105; x_88 = x_106; x_89 = x_108; goto block_100; @@ -62034,11 +60958,11 @@ x_110 = lean_ctor_get(x_109, 0); lean_inc(x_110); lean_dec_ref(x_109); x_82 = x_101; -x_83 = x_102; +x_83 = x_108; x_84 = x_103; -x_85 = x_108; +x_85 = x_102; x_86 = x_104; -x_87 = x_107; +x_87 = x_105; x_88 = x_106; x_89 = x_110; goto block_100; @@ -62047,20 +60971,20 @@ goto block_100; block_123: { lean_object* x_119; lean_object* x_120; -x_119 = l_Lean_replaceRef(x_1, x_115); -lean_dec(x_115); -x_120 = l_Lean_Syntax_getPos_x3f(x_119, x_117); +x_119 = l_Lean_replaceRef(x_1, x_116); +lean_dec(x_116); +x_120 = l_Lean_Syntax_getPos_x3f(x_119, x_113); if (lean_obj_tag(x_120) == 0) { lean_object* x_121; x_121 = lean_unsigned_to_nat(0u); x_101 = x_112; -x_102 = x_113; -x_103 = x_114; -x_104 = x_118; -x_105 = x_119; +x_102 = x_118; +x_103 = x_113; +x_104 = x_114; +x_105 = x_115; x_106 = x_117; -x_107 = x_116; +x_107 = x_119; x_108 = x_121; goto block_111; } @@ -62071,12 +60995,12 @@ x_122 = lean_ctor_get(x_120, 0); lean_inc(x_122); lean_dec_ref(x_120); x_101 = x_112; -x_102 = x_113; -x_103 = x_114; -x_104 = x_118; -x_105 = x_119; +x_102 = x_118; +x_103 = x_113; +x_104 = x_114; +x_105 = x_115; x_106 = x_117; -x_107 = x_116; +x_107 = x_119; x_108 = x_122; goto block_111; } @@ -62085,23 +61009,23 @@ block_132: { if (x_131 == 0) { -x_112 = x_128; -x_113 = x_125; -x_114 = x_126; +x_112 = x_126; +x_113 = x_130; +x_114 = x_125; x_115 = x_127; -x_116 = x_129; -x_117 = x_130; +x_116 = x_128; +x_117 = x_129; x_118 = x_3; goto block_123; } else { -x_112 = x_128; -x_113 = x_125; -x_114 = x_126; +x_112 = x_126; +x_113 = x_130; +x_114 = x_125; x_115 = x_127; -x_116 = x_129; -x_117 = x_130; +x_116 = x_128; +x_117 = x_129; x_118 = x_124; goto block_123; } @@ -62130,11 +61054,11 @@ x_143 = l_Lean_beqMessageSeverity____x40_Lean_Message___hyg_187_(x_3, x_142); if (x_143 == 0) { lean_dec(x_136); -x_125 = x_138; -x_126 = x_135; -x_127 = x_137; -x_128 = x_141; -x_129 = x_134; +x_125 = x_135; +x_126 = x_141; +x_127 = x_134; +x_128 = x_137; +x_129 = x_138; x_130 = x_133; x_131 = x_143; goto block_132; @@ -62145,11 +61069,11 @@ lean_object* x_144; uint8_t x_145; x_144 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32_spec__32_spec__32___closed__1; x_145 = l_Lean_Option_get___at___Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32_spec__32_spec__32_spec__32(x_136, x_144); lean_dec(x_136); -x_125 = x_138; -x_126 = x_135; -x_127 = x_137; -x_128 = x_141; -x_129 = x_134; +x_125 = x_135; +x_126 = x_141; +x_127 = x_134; +x_128 = x_137; +x_129 = x_138; x_130 = x_133; x_131 = x_145; goto block_132; @@ -62175,28 +61099,28 @@ return x_149; } } } -LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__28_spec__28(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__23_spec__23(lean_object* x_1, uint8_t 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_object* x_12; x_11 = lean_ctor_get(x_8, 5); lean_inc(x_11); -x_12 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__28_spec__28_spec__28(x_11, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__23_spec__23_spec__23(x_11, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_11); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__28(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_EXPORT lean_object* l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__23(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: { uint8_t x_9; uint8_t x_10; lean_object* x_11; x_9 = 2; x_10 = 0; -x_11 = l_Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__28_spec__28(x_1, x_9, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_11 = l_Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__23_spec__23(x_1, x_9, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_11; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; @@ -62204,11 +61128,11 @@ x_13 = lean_apply_9(x_1, x_4, x_5, x_2, x_3, x_8, x_9, x_10, x_11, x_12); return x_13; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; -x_12 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31___redArg___lam__0___boxed), 12, 3); +x_12 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26___redArg___lam__0___boxed), 12, 3); lean_closure_set(x_12, 0, x_4); lean_closure_set(x_12, 1, x_5); lean_closure_set(x_12, 2, x_6); @@ -62298,25 +61222,24 @@ return x_30; } } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_13; } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { _start: { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_83; lean_object* x_84; -x_83 = l_Array_append___redArg(x_8, x_5); +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_84; +x_19 = l_Array_append___redArg(x_1, x_2); lean_inc(x_17); lean_inc_ref(x_16); lean_inc(x_15); lean_inc_ref(x_14); -x_84 = l_Lean_Meta_instantiateLambda(x_9, x_83, x_14, x_15, x_16, x_17, x_18); -lean_dec_ref(x_83); +x_84 = l_Lean_Meta_instantiateLambda(x_9, x_19, x_14, x_15, x_16, x_17, x_18); if (lean_obj_tag(x_84) == 0) { lean_object* x_85; lean_object* x_86; @@ -62325,21 +61248,22 @@ lean_inc(x_85); x_86 = lean_ctor_get(x_84, 1); lean_inc(x_86); lean_dec_ref(x_84); -x_19 = x_85; -x_20 = x_12; -x_21 = x_13; -x_22 = x_86; -goto block_82; +x_20 = x_85; +x_21 = x_12; +x_22 = x_13; +x_23 = x_86; +goto block_83; } else { uint8_t x_87; +lean_dec_ref(x_19); lean_dec_ref(x_13); lean_dec_ref(x_12); lean_dec_ref(x_11); +lean_dec_ref(x_5); +lean_dec(x_4); lean_dec_ref(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); x_87 = !lean_is_exclusive(x_84); if (x_87 == 0) { @@ -62442,264 +61366,264 @@ return x_98; } } } -block_82: +block_83: { -lean_object* x_23; +lean_object* x_24; lean_inc(x_17); lean_inc_ref(x_16); lean_inc(x_15); lean_inc_ref(x_14); -x_23 = lean_apply_10(x_1, x_2, x_11, x_19, x_20, x_21, x_14, x_15, x_16, x_17, x_22); -if (lean_obj_tag(x_23) == 0) +x_24 = lean_apply_11(x_3, x_4, x_11, x_19, x_20, x_21, x_22, x_14, x_15, x_16, x_17, x_23); +if (lean_obj_tag(x_24) == 0) { -lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; -x_24 = lean_ctor_get(x_23, 0); -lean_inc(x_24); +lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; x_25 = lean_ctor_get(x_24, 0); lean_inc(x_25); -x_26 = lean_ctor_get(x_23, 1); +x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); -lean_dec_ref(x_23); -x_27 = !lean_is_exclusive(x_24); -if (x_27 == 0) +x_27 = lean_ctor_get(x_24, 1); +lean_inc(x_27); +lean_dec_ref(x_24); +x_28 = !lean_is_exclusive(x_25); +if (x_28 == 0) { -lean_object* x_28; lean_object* x_29; uint8_t x_30; -x_28 = lean_ctor_get(x_24, 1); -x_29 = lean_ctor_get(x_24, 0); -lean_dec(x_29); -x_30 = !lean_is_exclusive(x_25); -if (x_30 == 0) +lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_29 = lean_ctor_get(x_25, 1); +x_30 = lean_ctor_get(x_25, 0); +lean_dec(x_30); +x_31 = !lean_is_exclusive(x_26); +if (x_31 == 0) { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_object* x_37; -x_31 = lean_ctor_get(x_25, 0); -x_32 = lean_ctor_get(x_25, 1); -x_33 = l_Array_append___redArg(x_3, x_4); -x_34 = l_Array_append___redArg(x_33, x_5); -x_35 = l_Array_append___redArg(x_34, x_10); -x_36 = 1; -x_37 = l_Lean_Meta_mkLambdaFVars(x_35, x_31, x_6, x_7, x_6, x_7, x_36, x_14, x_15, x_16, x_17, x_26); +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; +x_32 = lean_ctor_get(x_26, 0); +x_33 = lean_ctor_get(x_26, 1); +x_34 = l_Array_append___redArg(x_5, x_6); +x_35 = l_Array_append___redArg(x_34, x_2); +x_36 = l_Array_append___redArg(x_35, x_10); +x_37 = 1; +x_38 = l_Lean_Meta_mkLambdaFVars(x_36, x_32, x_7, x_8, x_7, x_8, x_37, x_14, x_15, x_16, x_17, x_27); lean_dec(x_17); lean_dec_ref(x_16); lean_dec(x_15); lean_dec_ref(x_14); -lean_dec_ref(x_35); -if (lean_obj_tag(x_37) == 0) +lean_dec_ref(x_36); +if (lean_obj_tag(x_38) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_39; +x_39 = !lean_is_exclusive(x_38); +if (x_39 == 0) { -lean_object* x_39; -x_39 = lean_ctor_get(x_37, 0); -lean_ctor_set(x_25, 0, x_39); -lean_ctor_set(x_37, 0, x_24); -return x_37; +lean_object* x_40; +x_40 = lean_ctor_get(x_38, 0); +lean_ctor_set(x_26, 0, x_40); +lean_ctor_set(x_38, 0, x_25); +return x_38; } else { -lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_40 = lean_ctor_get(x_37, 0); -x_41 = lean_ctor_get(x_37, 1); +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_38, 0); +x_42 = lean_ctor_get(x_38, 1); +lean_inc(x_42); lean_inc(x_41); -lean_inc(x_40); -lean_dec(x_37); -lean_ctor_set(x_25, 0, x_40); -x_42 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_42, 0, x_24); -lean_ctor_set(x_42, 1, x_41); -return x_42; +lean_dec(x_38); +lean_ctor_set(x_26, 0, x_41); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_25); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_43; +uint8_t x_44; +lean_free_object(x_26); +lean_dec(x_33); lean_free_object(x_25); -lean_dec(x_32); -lean_free_object(x_24); -lean_dec(x_28); -x_43 = !lean_is_exclusive(x_37); -if (x_43 == 0) +lean_dec(x_29); +x_44 = !lean_is_exclusive(x_38); +if (x_44 == 0) { -return x_37; +return x_38; } else { -lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_44 = lean_ctor_get(x_37, 0); -x_45 = lean_ctor_get(x_37, 1); +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_38, 0); +x_46 = lean_ctor_get(x_38, 1); +lean_inc(x_46); lean_inc(x_45); -lean_inc(x_44); -lean_dec(x_37); -x_46 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_46, 0, x_44); -lean_ctor_set(x_46, 1, x_45); -return x_46; +lean_dec(x_38); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -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; -x_47 = lean_ctor_get(x_25, 0); -x_48 = lean_ctor_get(x_25, 1); +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; lean_object* x_54; +x_48 = lean_ctor_get(x_26, 0); +x_49 = lean_ctor_get(x_26, 1); +lean_inc(x_49); lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_25); -x_49 = l_Array_append___redArg(x_3, x_4); -x_50 = l_Array_append___redArg(x_49, x_5); -x_51 = l_Array_append___redArg(x_50, x_10); -x_52 = 1; -x_53 = l_Lean_Meta_mkLambdaFVars(x_51, x_47, x_6, x_7, x_6, x_7, x_52, x_14, x_15, x_16, x_17, x_26); +lean_dec(x_26); +x_50 = l_Array_append___redArg(x_5, x_6); +x_51 = l_Array_append___redArg(x_50, x_2); +x_52 = l_Array_append___redArg(x_51, x_10); +x_53 = 1; +x_54 = l_Lean_Meta_mkLambdaFVars(x_52, x_48, x_7, x_8, x_7, x_8, x_53, x_14, x_15, x_16, x_17, x_27); lean_dec(x_17); lean_dec_ref(x_16); lean_dec(x_15); lean_dec_ref(x_14); -lean_dec_ref(x_51); -if (lean_obj_tag(x_53) == 0) +lean_dec_ref(x_52); +if (lean_obj_tag(x_54) == 0) { -lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_54 = lean_ctor_get(x_53, 0); -lean_inc(x_54); -x_55 = lean_ctor_get(x_53, 1); +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_55 = lean_ctor_get(x_54, 0); lean_inc(x_55); -if (lean_is_exclusive(x_53)) { - lean_ctor_release(x_53, 0); - lean_ctor_release(x_53, 1); - x_56 = x_53; +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_53); - x_56 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -x_57 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_57, 0, x_54); -lean_ctor_set(x_57, 1, x_48); -lean_ctor_set(x_24, 0, x_57); -if (lean_is_scalar(x_56)) { - x_58 = lean_alloc_ctor(0, 2, 0); +x_58 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_49); +lean_ctor_set(x_25, 0, x_58); +if (lean_is_scalar(x_57)) { + x_59 = lean_alloc_ctor(0, 2, 0); } else { - x_58 = x_56; + x_59 = x_57; } -lean_ctor_set(x_58, 0, x_24); -lean_ctor_set(x_58, 1, x_55); -return x_58; +lean_ctor_set(x_59, 0, x_25); +lean_ctor_set(x_59, 1, x_56); +return x_59; } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; -lean_dec(x_48); -lean_free_object(x_24); -lean_dec(x_28); -x_59 = lean_ctor_get(x_53, 0); -lean_inc(x_59); -x_60 = lean_ctor_get(x_53, 1); +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +lean_dec(x_49); +lean_free_object(x_25); +lean_dec(x_29); +x_60 = lean_ctor_get(x_54, 0); lean_inc(x_60); -if (lean_is_exclusive(x_53)) { - lean_ctor_release(x_53, 0); - lean_ctor_release(x_53, 1); - x_61 = x_53; +x_61 = lean_ctor_get(x_54, 1); +lean_inc(x_61); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_62 = x_54; } else { - lean_dec_ref(x_53); - x_61 = lean_box(0); + lean_dec_ref(x_54); + x_62 = lean_box(0); } -if (lean_is_scalar(x_61)) { - x_62 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_62)) { + x_63 = lean_alloc_ctor(1, 2, 0); } else { - x_62 = x_61; + x_63 = x_62; } -lean_ctor_set(x_62, 0, x_59); -lean_ctor_set(x_62, 1, x_60); -return x_62; +lean_ctor_set(x_63, 0, x_60); +lean_ctor_set(x_63, 1, x_61); +return x_63; } } } else { -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; uint8_t x_70; lean_object* x_71; -x_63 = lean_ctor_get(x_24, 1); -lean_inc(x_63); -lean_dec(x_24); -x_64 = lean_ctor_get(x_25, 0); +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; uint8_t x_71; lean_object* x_72; +x_64 = lean_ctor_get(x_25, 1); lean_inc(x_64); -x_65 = lean_ctor_get(x_25, 1); +lean_dec(x_25); +x_65 = lean_ctor_get(x_26, 0); lean_inc(x_65); -if (lean_is_exclusive(x_25)) { - lean_ctor_release(x_25, 0); - lean_ctor_release(x_25, 1); - x_66 = x_25; +x_66 = lean_ctor_get(x_26, 1); +lean_inc(x_66); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + x_67 = x_26; } else { - lean_dec_ref(x_25); - x_66 = lean_box(0); + lean_dec_ref(x_26); + x_67 = lean_box(0); } -x_67 = l_Array_append___redArg(x_3, x_4); -x_68 = l_Array_append___redArg(x_67, x_5); -x_69 = l_Array_append___redArg(x_68, x_10); -x_70 = 1; -x_71 = l_Lean_Meta_mkLambdaFVars(x_69, x_64, x_6, x_7, x_6, x_7, x_70, x_14, x_15, x_16, x_17, x_26); +x_68 = l_Array_append___redArg(x_5, x_6); +x_69 = l_Array_append___redArg(x_68, x_2); +x_70 = l_Array_append___redArg(x_69, x_10); +x_71 = 1; +x_72 = l_Lean_Meta_mkLambdaFVars(x_70, x_65, x_7, x_8, x_7, x_8, x_71, x_14, x_15, x_16, x_17, x_27); lean_dec(x_17); lean_dec_ref(x_16); lean_dec(x_15); lean_dec_ref(x_14); -lean_dec_ref(x_69); -if (lean_obj_tag(x_71) == 0) +lean_dec_ref(x_70); +if (lean_obj_tag(x_72) == 0) { -lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; -x_72 = lean_ctor_get(x_71, 0); -lean_inc(x_72); -x_73 = lean_ctor_get(x_71, 1); +lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_73 = lean_ctor_get(x_72, 0); lean_inc(x_73); -if (lean_is_exclusive(x_71)) { - lean_ctor_release(x_71, 0); - lean_ctor_release(x_71, 1); - x_74 = x_71; +x_74 = lean_ctor_get(x_72, 1); +lean_inc(x_74); +if (lean_is_exclusive(x_72)) { + lean_ctor_release(x_72, 0); + lean_ctor_release(x_72, 1); + x_75 = x_72; } else { - lean_dec_ref(x_71); - x_74 = lean_box(0); + lean_dec_ref(x_72); + x_75 = lean_box(0); } -if (lean_is_scalar(x_66)) { - x_75 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_67)) { + x_76 = lean_alloc_ctor(0, 2, 0); } else { - x_75 = x_66; -} -lean_ctor_set(x_75, 0, x_72); -lean_ctor_set(x_75, 1, x_65); -x_76 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_76, 0, x_75); -lean_ctor_set(x_76, 1, x_63); -if (lean_is_scalar(x_74)) { - x_77 = lean_alloc_ctor(0, 2, 0); -} else { - x_77 = x_74; + x_76 = x_67; } +lean_ctor_set(x_76, 0, x_73); +lean_ctor_set(x_76, 1, x_66); +x_77 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_77, 0, x_76); -lean_ctor_set(x_77, 1, x_73); -return x_77; +lean_ctor_set(x_77, 1, x_64); +if (lean_is_scalar(x_75)) { + x_78 = lean_alloc_ctor(0, 2, 0); +} else { + x_78 = x_75; +} +lean_ctor_set(x_78, 0, x_77); +lean_ctor_set(x_78, 1, x_74); +return x_78; } else { -lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +lean_dec(x_67); lean_dec(x_66); -lean_dec(x_65); -lean_dec(x_63); -x_78 = lean_ctor_get(x_71, 0); -lean_inc(x_78); -x_79 = lean_ctor_get(x_71, 1); +lean_dec(x_64); +x_79 = lean_ctor_get(x_72, 0); lean_inc(x_79); -if (lean_is_exclusive(x_71)) { - lean_ctor_release(x_71, 0); - lean_ctor_release(x_71, 1); - x_80 = x_71; +x_80 = lean_ctor_get(x_72, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_72)) { + lean_ctor_release(x_72, 0); + lean_ctor_release(x_72, 1); + x_81 = x_72; } else { - lean_dec_ref(x_71); - x_80 = lean_box(0); + lean_dec_ref(x_72); + x_81 = lean_box(0); } -if (lean_is_scalar(x_80)) { - x_81 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(1, 2, 0); } else { - x_81 = x_80; + x_82 = x_81; } -lean_ctor_set(x_81, 0, x_78); -lean_ctor_set(x_81, 1, x_79); -return x_81; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } } } @@ -62709,19 +61633,41 @@ lean_dec(x_17); lean_dec_ref(x_16); lean_dec(x_15); lean_dec_ref(x_14); -lean_dec_ref(x_3); +lean_dec_ref(x_5); +return x_24; +} +} +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +_start: +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = lean_box(x_6); +x_20 = lean_box(x_7); +x_21 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__0___boxed), 18, 9); +lean_closure_set(x_21, 0, x_1); +lean_closure_set(x_21, 1, x_10); +lean_closure_set(x_21, 2, x_2); +lean_closure_set(x_21, 3, x_3); +lean_closure_set(x_21, 4, x_4); +lean_closure_set(x_21, 5, x_5); +lean_closure_set(x_21, 6, x_19); +lean_closure_set(x_21, 7, x_20); +lean_closure_set(x_21, 8, x_8); +x_22 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_22, 0, x_9); +x_23 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21___redArg(x_11, x_22, x_21, x_6, x_6, x_12, x_13, x_14, x_15, x_16, x_17, x_18); return x_23; } } -} -} -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, 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) { _start: { lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; x_19 = lean_box(x_5); x_20 = lean_box(x_6); -x_21 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__0___boxed), 18, 9); +x_21 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__1___boxed), 18, 9); lean_closure_set(x_21, 0, x_1); lean_closure_set(x_21, 1, x_2); lean_closure_set(x_21, 2, x_3); @@ -62733,33 +61679,11 @@ lean_closure_set(x_21, 7, x_7); lean_closure_set(x_21, 8, x_8); x_22 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_22, 0, x_9); -x_23 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg(x_11, x_22, x_21, x_5, x_5, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +x_23 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21___redArg(x_11, x_22, x_21, x_5, x_5, x_12, x_13, x_14, x_15, x_16, x_17, x_18); return x_23; } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { -_start: -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_19 = lean_box(x_4); -x_20 = lean_box(x_5); -x_21 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__1___boxed), 18, 9); -lean_closure_set(x_21, 0, x_1); -lean_closure_set(x_21, 1, x_2); -lean_closure_set(x_21, 2, x_3); -lean_closure_set(x_21, 3, x_10); -lean_closure_set(x_21, 4, x_19); -lean_closure_set(x_21, 5, x_20); -lean_closure_set(x_21, 6, x_6); -lean_closure_set(x_21, 7, x_7); -lean_closure_set(x_21, 8, x_8); -x_22 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_22, 0, x_9); -x_23 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg(x_11, x_22, x_21, x_4, x_4, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -return x_23; -} -} -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { _start: { lean_object* x_19; @@ -62779,13 +61703,13 @@ lean_dec_ref(x_19); x_22 = lean_box(x_4); x_23 = lean_box(x_5); lean_inc_ref(x_10); -x_24 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__2___boxed), 18, 9); -lean_closure_set(x_24, 0, x_2); -lean_closure_set(x_24, 1, x_3); -lean_closure_set(x_24, 2, x_10); -lean_closure_set(x_24, 3, x_22); -lean_closure_set(x_24, 4, x_23); -lean_closure_set(x_24, 5, x_11); +x_24 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__2___boxed), 18, 9); +lean_closure_set(x_24, 0, x_11); +lean_closure_set(x_24, 1, x_2); +lean_closure_set(x_24, 2, x_3); +lean_closure_set(x_24, 3, x_10); +lean_closure_set(x_24, 4, x_22); +lean_closure_set(x_24, 5, x_23); lean_closure_set(x_24, 6, x_6); lean_closure_set(x_24, 7, x_7); lean_closure_set(x_24, 8, x_8); @@ -62795,7 +61719,7 @@ x_26 = lean_nat_sub(x_9, x_25); lean_dec(x_25); x_27 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_27, 0, x_26); -x_28 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg(x_20, x_27, x_24, x_4, x_4, x_12, x_13, x_14, x_15, x_16, x_17, x_21); +x_28 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21___redArg(x_20, x_27, x_24, x_4, x_4, x_12, x_13, x_14, x_15, x_16, x_17, x_21); return x_28; } else @@ -62835,7 +61759,7 @@ return x_32; } } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; @@ -63136,7 +62060,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_9); lean_inc_ref(x_1); -x_97 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__3___boxed), 18, 9); +x_97 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__3___boxed), 18, 9); lean_closure_set(x_97, 0, x_90); lean_closure_set(x_97, 1, x_1); lean_closure_set(x_97, 2, x_9); @@ -63153,7 +62077,7 @@ lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_6); -x_99 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31___redArg(x_91, x_98, x_6, x_97, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_99 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26___redArg(x_91, x_98, x_6, x_97, x_10, x_11, x_12, x_13, x_14, x_15, x_16); if (lean_obj_tag(x_99) == 0) { lean_object* x_100; lean_object* x_101; uint8_t x_102; @@ -63472,7 +62396,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_9); lean_inc_ref(x_1); -x_160 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__3___boxed), 18, 9); +x_160 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__3___boxed), 18, 9); lean_closure_set(x_160, 0, x_153); lean_closure_set(x_160, 1, x_1); lean_closure_set(x_160, 2, x_9); @@ -63489,7 +62413,7 @@ lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_6); -x_162 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31___redArg(x_154, x_161, x_6, x_160, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_162 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26___redArg(x_154, x_161, x_6, x_160, x_10, x_11, x_12, x_13, x_14, x_15, x_16); if (lean_obj_tag(x_162) == 0) { lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; uint8_t x_176; @@ -63714,7 +62638,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_9); lean_inc_ref(x_1); -x_199 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__3___boxed), 18, 9); +x_199 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__3___boxed), 18, 9); lean_closure_set(x_199, 0, x_192); lean_closure_set(x_199, 1, x_1); lean_closure_set(x_199, 2, x_9); @@ -63731,7 +62655,7 @@ lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_6); -x_201 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31___redArg(x_193, x_200, x_6, x_199, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_201 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26___redArg(x_193, x_200, x_6, x_199, x_10, x_11, x_12, x_13, x_14, x_15, x_16); if (lean_obj_tag(x_201) == 0) { lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; uint8_t x_215; @@ -64020,7 +62944,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_9); lean_inc_ref(x_1); -x_245 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__3___boxed), 18, 9); +x_245 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__3___boxed), 18, 9); lean_closure_set(x_245, 0, x_238); lean_closure_set(x_245, 1, x_1); lean_closure_set(x_245, 2, x_9); @@ -64037,7 +62961,7 @@ lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_6); -x_247 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31___redArg(x_239, x_246, x_6, x_245, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_247 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26___redArg(x_239, x_246, x_6, x_245, x_10, x_11, x_12, x_13, x_14, x_15, x_16); if (lean_obj_tag(x_247) == 0) { lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; uint8_t x_261; @@ -64384,7 +63308,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_9); lean_inc_ref(x_1); -x_298 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__3___boxed), 18, 9); +x_298 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__3___boxed), 18, 9); lean_closure_set(x_298, 0, x_291); lean_closure_set(x_298, 1, x_1); lean_closure_set(x_298, 2, x_9); @@ -64401,7 +63325,7 @@ lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_6); -x_300 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31___redArg(x_292, x_299, x_6, x_298, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_300 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26___redArg(x_292, x_299, x_6, x_298, x_10, x_11, x_12, x_13, x_14, x_15, x_16); if (lean_obj_tag(x_300) == 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; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; uint8_t x_314; @@ -64806,7 +63730,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_9); lean_inc_ref(x_1); -x_359 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__3___boxed), 18, 9); +x_359 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__3___boxed), 18, 9); lean_closure_set(x_359, 0, x_352); lean_closure_set(x_359, 1, x_1); lean_closure_set(x_359, 2, x_9); @@ -64823,7 +63747,7 @@ lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_6); -x_361 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31___redArg(x_353, x_360, x_6, x_359, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_361 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26___redArg(x_353, x_360, x_6, x_359, x_10, x_11, x_12, x_13, x_14, x_15, x_16); if (lean_obj_tag(x_361) == 0) { lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; @@ -65296,7 +64220,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_9); lean_inc_ref(x_1); -x_431 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__3___boxed), 18, 9); +x_431 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__3___boxed), 18, 9); lean_closure_set(x_431, 0, x_424); lean_closure_set(x_431, 1, x_1); lean_closure_set(x_431, 2, x_9); @@ -65313,7 +64237,7 @@ lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_6); -x_433 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31___redArg(x_425, x_432, x_6, x_431, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_433 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26___redArg(x_425, x_432, x_6, x_431, x_10, x_11, x_12, x_13, x_14, x_15, x_16); if (lean_obj_tag(x_433) == 0) { lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; uint8_t x_448; @@ -65829,7 +64753,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_9); lean_inc_ref(x_1); -x_511 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__3___boxed), 18, 9); +x_511 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__3___boxed), 18, 9); lean_closure_set(x_511, 0, x_504); lean_closure_set(x_511, 1, x_1); lean_closure_set(x_511, 2, x_9); @@ -65846,7 +64770,7 @@ lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_6); -x_513 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31___redArg(x_505, x_512, x_6, x_511, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_513 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26___redArg(x_505, x_512, x_6, x_511, x_10, x_11, x_12, x_13, x_14, x_15, x_16); if (lean_obj_tag(x_513) == 0) { lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; uint8_t x_529; @@ -66411,7 +65335,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_9); lean_inc_ref(x_1); -x_599 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__3___boxed), 18, 9); +x_599 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__3___boxed), 18, 9); lean_closure_set(x_599, 0, x_592); lean_closure_set(x_599, 1, x_1); lean_closure_set(x_599, 2, x_9); @@ -66428,7 +65352,7 @@ lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_6); -x_601 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31___redArg(x_593, x_600, x_6, x_599, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_601 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26___redArg(x_593, x_600, x_6, x_599, x_10, x_11, x_12, x_13, x_14, x_15, x_16); if (lean_obj_tag(x_601) == 0) { lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; uint8_t x_618; @@ -67043,7 +65967,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_9); lean_inc_ref(x_1); -x_695 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__3___boxed), 18, 9); +x_695 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__3___boxed), 18, 9); lean_closure_set(x_695, 0, x_688); lean_closure_set(x_695, 1, x_1); lean_closure_set(x_695, 2, x_9); @@ -67060,7 +65984,7 @@ lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_6); -x_697 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31___redArg(x_689, x_696, x_6, x_695, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_697 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26___redArg(x_689, x_696, x_6, x_695, x_10, x_11, x_12, x_13, x_14, x_15, x_16); if (lean_obj_tag(x_697) == 0) { lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; uint8_t x_715; @@ -67721,7 +66645,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_9); lean_inc_ref(x_1); -x_799 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__3___boxed), 18, 9); +x_799 = lean_alloc_closure((void*)(l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__3___boxed), 18, 9); lean_closure_set(x_799, 0, x_792); lean_closure_set(x_799, 1, x_1); lean_closure_set(x_799, 2, x_9); @@ -67738,7 +66662,7 @@ lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_6); -x_801 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31___redArg(x_793, x_800, x_6, x_799, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_801 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26___redArg(x_793, x_800, x_6, x_799, x_10, x_11, x_12, x_13, x_14, x_15, x_16); if (lean_obj_tag(x_801) == 0) { lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; uint8_t x_820; @@ -67939,15 +66863,15 @@ return x_23; } } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23) { _start: { lean_object* x_24; -x_24 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_11, x_13, x_14, x_17, x_18, x_19, x_20, x_21, x_22, x_23); +x_24 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_11, x_13, x_14, x_17, x_18, x_19, x_20, x_21, x_22, x_23); return x_24; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, size_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, size_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_16; @@ -68000,7 +66924,7 @@ lean_inc(x_14); lean_inc_ref(x_13); lean_inc(x_12); lean_inc_ref(x_11); -x_36 = l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__23(x_6, x_2, x_35, x_7, x_34, x_25, x_21, x_11, x_12, x_13, x_14, x_19); +x_36 = l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__17(x_6, x_2, x_35, x_7, x_34, x_25, x_21, x_11, x_12, x_13, x_14, x_19); if (lean_obj_tag(x_36) == 0) { lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; @@ -68485,7 +67409,7 @@ lean_inc(x_14); lean_inc_ref(x_13); lean_inc(x_12); lean_inc_ref(x_11); -x_136 = l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__23(x_6, x_2, x_135, x_7, x_134, x_125, x_21, x_11, x_12, x_13, x_14, x_19); +x_136 = l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__17(x_6, x_2, x_135, x_7, x_134, x_125, x_21, x_11, x_12, x_13, x_14, x_19); if (lean_obj_tag(x_136) == 0) { lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; uint8_t x_150; uint8_t x_151; lean_object* x_152; @@ -68725,7 +67649,7 @@ lean_inc(x_14); lean_inc_ref(x_13); lean_inc(x_12); lean_inc_ref(x_11); -x_189 = l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__23(x_6, x_2, x_188, x_7, x_187, x_177, x_175, x_11, x_12, x_13, x_14, x_19); +x_189 = l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__17(x_6, x_2, x_188, x_7, x_187, x_177, x_175, x_11, x_12, x_13, x_14, x_19); if (lean_obj_tag(x_189) == 0) { lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; uint8_t x_202; uint8_t x_203; uint8_t x_204; lean_object* x_205; @@ -68963,7 +67887,7 @@ return x_232; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_16; lean_object* x_17; uint8_t x_18; @@ -69022,12 +67946,12 @@ else lean_object* x_31; lean_object* x_32; lean_dec(x_17); x_31 = lean_box(0); -x_32 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__0(x_1, x_7, x_8, x_2, x_3, x_4, x_5, x_31, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_32 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__0(x_1, x_7, x_8, x_2, x_3, x_4, x_5, x_31, x_9, x_10, x_11, x_12, x_13, x_14, x_15); return x_32; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, size_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, size_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { _start: { lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; @@ -69254,7 +68178,7 @@ return x_71; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, size_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, uint8_t 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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, size_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, uint8_t 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) { _start: { lean_object* x_29; lean_object* x_30; @@ -69299,7 +68223,7 @@ lean_object* x_42; lean_dec(x_29); lean_dec_ref(x_18); lean_dec(x_15); -x_42 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__2(x_3, x_4, x_20, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_40, x_22, x_23, x_24, x_25, x_26, x_27, x_32); +x_42 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__2(x_3, x_4, x_20, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_40, x_22, x_23, x_24, x_25, x_26, x_27, x_32); lean_dec_ref(x_40); lean_dec(x_6); return x_42; @@ -69312,7 +68236,7 @@ lean_inc_ref(x_26); lean_inc(x_25); lean_inc_ref(x_24); lean_inc(x_6); -x_43 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg(x_17, x_18, x_19, x_6, x_29, x_40, x_15, x_22, x_23, x_24, x_25, x_26, x_27, x_32); +x_43 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg(x_17, x_18, x_19, x_6, x_29, x_40, x_15, x_22, x_23, x_24, x_25, x_26, x_27, x_32); lean_dec(x_29); if (lean_obj_tag(x_43) == 0) { @@ -69332,7 +68256,7 @@ lean_inc(x_48); x_49 = lean_ctor_get(x_45, 1); lean_inc(x_49); lean_dec(x_45); -x_50 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__2(x_3, x_4, x_20, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_48, x_49, x_47, x_24, x_25, x_26, x_27, x_46); +x_50 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__2(x_3, x_4, x_20, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_48, x_49, x_47, x_24, x_25, x_26, x_27, x_46); lean_dec(x_48); lean_dec(x_6); return x_50; @@ -69424,7 +68348,7 @@ return x_58; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, size_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, size_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { _start: { lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; @@ -69653,7 +68577,7 @@ return x_73; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, size_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, uint8_t x_21, uint8_t x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26, lean_object* x_27, lean_object* x_28, lean_object* x_29, lean_object* x_30, lean_object* x_31, lean_object* x_32) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, size_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, uint8_t x_21, uint8_t x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26, lean_object* x_27, lean_object* x_28, lean_object* x_29, lean_object* x_30, lean_object* x_31, lean_object* x_32) { _start: { lean_object* x_33; @@ -69710,7 +68634,7 @@ lean_dec(x_23); lean_dec_ref(x_20); lean_dec(x_16); lean_dec(x_1); -x_51 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__4(x_3, x_4, x_24, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_49, x_26, x_27, x_28, x_29, x_30, x_31, x_35); +x_51 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__4(x_3, x_4, x_24, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_49, x_26, x_27, x_28, x_29, x_30, x_31, x_35); lean_dec_ref(x_49); lean_dec(x_6); return x_51; @@ -69724,7 +68648,7 @@ lean_inc(x_29); lean_inc_ref(x_28); lean_inc(x_16); lean_inc(x_6); -x_52 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg(x_20, x_21, x_22, x_6, x_23, x_16, x_1, x_49, x_16, x_26, x_27, x_28, x_29, x_30, x_31, x_35); +x_52 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg(x_20, x_21, x_22, x_6, x_23, x_16, x_1, x_49, x_16, x_26, x_27, x_28, x_29, x_30, x_31, x_35); lean_dec(x_1); if (lean_obj_tag(x_52) == 0) { @@ -69744,7 +68668,7 @@ lean_inc(x_57); x_58 = lean_ctor_get(x_54, 1); lean_inc(x_58); lean_dec(x_54); -x_59 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__4(x_3, x_4, x_24, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_57, x_58, x_56, x_28, x_29, x_30, x_31, x_55); +x_59 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__4(x_3, x_4, x_24, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_57, x_58, x_56, x_28, x_29, x_30, x_31, x_55); lean_dec(x_57); lean_dec(x_6); return x_59; @@ -69839,7 +68763,7 @@ return x_67; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__6(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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__6(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; @@ -69907,7 +68831,7 @@ return x_22; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__8(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, size_t x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, uint8_t 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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__8(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, size_t x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, uint8_t 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) { _start: { lean_object* x_31; lean_object* x_32; @@ -69970,7 +68894,7 @@ x_47 = lean_ctor_get(x_44, 1); lean_inc(x_47); lean_dec_ref(x_44); lean_inc_ref(x_43); -x_48 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__6), 8, 3); +x_48 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__6), 8, 3); lean_closure_set(x_48, 0, x_43); lean_closure_set(x_48, 1, x_24); lean_closure_set(x_48, 2, x_25); @@ -70009,7 +68933,7 @@ lean_inc(x_60); x_61 = lean_ctor_get(x_57, 1); lean_inc(x_61); lean_dec(x_57); -x_62 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__5(x_31, x_43, x_8, x_9, x_39, x_10, x_11, x_38, x_12, x_13, x_14, x_5, x_6, x_7, x_1, x_15, x_16, x_33, x_17, x_18, x_19, x_20, x_21, x_22, x_60, x_61, x_59, x_26, x_27, x_28, x_29, x_58); +x_62 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__5(x_31, x_43, x_8, x_9, x_39, x_10, x_11, x_38, x_12, x_13, x_14, x_5, x_6, x_7, x_1, x_15, x_16, x_33, x_17, x_18, x_19, x_20, x_21, x_22, x_60, x_61, x_59, x_26, x_27, x_28, x_29, x_58); lean_dec(x_60); return x_62; } @@ -70068,7 +68992,7 @@ x_67 = lean_ctor_get(x_44, 1); lean_inc(x_67); lean_dec_ref(x_44); x_68 = lean_box(0); -x_69 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__5(x_31, x_43, x_8, x_9, x_39, x_10, x_11, x_38, x_12, x_13, x_14, x_5, x_6, x_7, x_1, x_15, x_16, x_33, x_17, x_18, x_19, x_20, x_21, x_22, x_68, x_24, x_25, x_26, x_27, x_28, x_29, x_67); +x_69 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__5(x_31, x_43, x_8, x_9, x_39, x_10, x_11, x_38, x_12, x_13, x_14, x_5, x_6, x_7, x_1, x_15, x_16, x_33, x_17, x_18, x_19, x_20, x_21, x_22, x_68, x_24, x_25, x_26, x_27, x_28, x_29, x_67); return x_69; } } @@ -70219,7 +69143,7 @@ return x_81; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__7(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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__7(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; @@ -70287,7 +69211,7 @@ return x_22; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__10(lean_object* x_1, lean_object* x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, uint8_t x_13, lean_object* x_14, uint8_t x_15, uint8_t x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__10(lean_object* x_1, lean_object* x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, uint8_t x_13, lean_object* x_14, uint8_t x_15, uint8_t x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25) { _start: { 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; size_t x_34; lean_object* x_35; @@ -70307,7 +69231,7 @@ lean_inc(x_24); lean_inc_ref(x_23); lean_inc(x_22); lean_inc_ref(x_21); -x_35 = l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__25(x_31, x_34, x_3, x_33, x_19, x_20, x_21, x_22, x_23, x_24, x_25); +x_35 = l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__19(x_31, x_34, x_3, x_33, x_19, x_20, x_21, x_22, x_23, x_24, x_25); lean_dec_ref(x_31); if (lean_obj_tag(x_35) == 0) { @@ -70400,7 +69324,7 @@ x_95 = lean_ctor_get(x_92, 1); lean_inc(x_95); lean_dec_ref(x_92); lean_inc_ref(x_91); -x_96 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__7), 8, 3); +x_96 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__7), 8, 3); lean_closure_set(x_96, 0, x_91); lean_closure_set(x_96, 1, x_46); lean_closure_set(x_96, 2, x_43); @@ -70438,7 +69362,7 @@ lean_inc(x_106); x_107 = lean_ctor_get(x_103, 1); lean_inc(x_107); lean_dec(x_103); -x_108 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__8(x_7, x_91, x_4, x_87, x_5, x_6, x_2, x_8, x_9, x_48, x_3, x_18, x_11, x_12, x_26, x_10, x_27, x_14, x_13, x_15, x_17, x_49, x_106, x_107, x_105, x_21, x_22, x_23, x_24, x_104); +x_108 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__8(x_7, x_91, x_4, x_87, x_5, x_6, x_2, x_8, x_9, x_48, x_3, x_18, x_11, x_12, x_26, x_10, x_27, x_14, x_13, x_15, x_17, x_49, x_106, x_107, x_105, x_21, x_22, x_23, x_24, x_104); lean_dec(x_106); return x_108; } @@ -70495,7 +69419,7 @@ x_113 = lean_ctor_get(x_92, 1); lean_inc(x_113); lean_dec_ref(x_92); x_114 = lean_box(0); -x_115 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__8(x_7, x_91, x_4, x_87, x_5, x_6, x_2, x_8, x_9, x_48, x_3, x_18, x_11, x_12, x_26, x_10, x_27, x_14, x_13, x_15, x_17, x_49, x_114, x_46, x_43, x_21, x_22, x_23, x_24, x_113); +x_115 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__8(x_7, x_91, x_4, x_87, x_5, x_6, x_2, x_8, x_9, x_48, x_3, x_18, x_11, x_12, x_26, x_10, x_27, x_14, x_13, x_15, x_17, x_49, x_114, x_46, x_43, x_21, x_22, x_23, x_24, x_113); return x_115; } } @@ -70607,7 +69531,7 @@ if (lean_is_scalar(x_40)) { lean_ctor_set(x_65, 0, x_63); lean_ctor_set(x_65, 1, x_64); lean_inc_ref(x_23); -x_66 = l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__28(x_65, x_46, x_43, x_21, x_22, x_23, x_24, x_58); +x_66 = l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__23(x_65, x_46, x_43, x_21, x_22, x_23, x_24, x_58); x_67 = lean_ctor_get(x_66, 0); lean_inc(x_67); x_68 = lean_ctor_get(x_67, 0); @@ -70635,7 +69559,7 @@ lean_inc(x_73); x_74 = lean_ctor_get(x_72, 1); lean_inc(x_74); lean_dec_ref(x_72); -x_75 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__3(x_7, x_55, x_8, x_9, x_10, x_48, x_3, x_4, x_18, x_11, x_12, x_5, x_6, x_2, x_26, x_27, x_13, x_14, x_59, x_49, x_73, x_71, x_70, x_21, x_22, x_23, x_24, x_74); +x_75 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__3(x_7, x_55, x_8, x_9, x_10, x_48, x_3, x_4, x_18, x_11, x_12, x_5, x_6, x_2, x_26, x_27, x_13, x_14, x_59, x_49, x_73, x_71, x_70, x_21, x_22, x_23, x_24, x_74); lean_dec(x_73); return x_75; } @@ -70689,7 +69613,7 @@ lean_object* x_80; lean_object* x_81; lean_dec(x_50); lean_dec(x_40); x_80 = lean_box(0); -x_81 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__3(x_7, x_55, x_8, x_9, x_10, x_48, x_3, x_4, x_18, x_11, x_12, x_5, x_6, x_2, x_26, x_27, x_13, x_14, x_59, x_49, x_80, x_46, x_43, x_21, x_22, x_23, x_24, x_58); +x_81 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__3(x_7, x_55, x_8, x_9, x_10, x_48, x_3, x_4, x_18, x_11, x_12, x_5, x_6, x_2, x_26, x_27, x_13, x_14, x_59, x_49, x_80, x_46, x_43, x_21, x_22, x_23, x_24, x_58); return x_81; } } @@ -70800,7 +69724,7 @@ x_168 = lean_ctor_get(x_165, 1); lean_inc(x_168); lean_dec_ref(x_165); lean_inc_ref(x_164); -x_169 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__7), 8, 3); +x_169 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__7), 8, 3); lean_closure_set(x_169, 0, x_164); lean_closure_set(x_169, 1, x_120); lean_closure_set(x_169, 2, x_43); @@ -70839,7 +69763,7 @@ lean_inc(x_180); x_181 = lean_ctor_get(x_177, 1); lean_inc(x_181); lean_dec(x_177); -x_182 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__8(x_7, x_164, x_4, x_160, x_5, x_6, x_2, x_8, x_9, x_121, x_3, x_18, x_11, x_12, x_26, x_10, x_27, x_14, x_13, x_15, x_17, x_122, x_180, x_181, x_179, x_21, x_22, x_23, x_24, x_178); +x_182 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__8(x_7, x_164, x_4, x_160, x_5, x_6, x_2, x_8, x_9, x_121, x_3, x_18, x_11, x_12, x_26, x_10, x_27, x_14, x_13, x_15, x_17, x_122, x_180, x_181, x_179, x_21, x_22, x_23, x_24, x_178); lean_dec(x_180); return x_182; } @@ -70897,7 +69821,7 @@ x_187 = lean_ctor_get(x_165, 1); lean_inc(x_187); lean_dec_ref(x_165); x_188 = lean_box(0); -x_189 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__8(x_7, x_164, x_4, x_160, x_5, x_6, x_2, x_8, x_9, x_121, x_3, x_18, x_11, x_12, x_26, x_10, x_27, x_14, x_13, x_15, x_17, x_122, x_188, x_120, x_43, x_21, x_22, x_23, x_24, x_187); +x_189 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__8(x_7, x_164, x_4, x_160, x_5, x_6, x_2, x_8, x_9, x_121, x_3, x_18, x_11, x_12, x_26, x_10, x_27, x_14, x_13, x_15, x_17, x_122, x_188, x_120, x_43, x_21, x_22, x_23, x_24, x_187); return x_189; } } @@ -71009,7 +69933,7 @@ if (lean_is_scalar(x_40)) { lean_ctor_set(x_138, 0, x_136); lean_ctor_set(x_138, 1, x_137); lean_inc_ref(x_23); -x_139 = l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__28(x_138, x_120, x_43, x_21, x_22, x_23, x_24, x_131); +x_139 = l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__23(x_138, x_120, x_43, x_21, x_22, x_23, x_24, x_131); x_140 = lean_ctor_get(x_139, 0); lean_inc(x_140); x_141 = lean_ctor_get(x_140, 0); @@ -71037,7 +69961,7 @@ lean_inc(x_146); x_147 = lean_ctor_get(x_145, 1); lean_inc(x_147); lean_dec_ref(x_145); -x_148 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__3(x_7, x_128, x_8, x_9, x_10, x_121, x_3, x_4, x_18, x_11, x_12, x_5, x_6, x_2, x_26, x_27, x_13, x_14, x_132, x_122, x_146, x_144, x_143, x_21, x_22, x_23, x_24, x_147); +x_148 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__3(x_7, x_128, x_8, x_9, x_10, x_121, x_3, x_4, x_18, x_11, x_12, x_5, x_6, x_2, x_26, x_27, x_13, x_14, x_132, x_122, x_146, x_144, x_143, x_21, x_22, x_23, x_24, x_147); lean_dec(x_146); return x_148; } @@ -71093,7 +70017,7 @@ lean_object* x_153; lean_object* x_154; lean_dec(x_123); lean_dec(x_40); x_153 = lean_box(0); -x_154 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__3(x_7, x_128, x_8, x_9, x_10, x_121, x_3, x_4, x_18, x_11, x_12, x_5, x_6, x_2, x_26, x_27, x_13, x_14, x_132, x_122, x_153, x_120, x_43, x_21, x_22, x_23, x_24, x_131); +x_154 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__3(x_7, x_128, x_8, x_9, x_10, x_121, x_3, x_4, x_18, x_11, x_12, x_5, x_6, x_2, x_26, x_27, x_13, x_14, x_132, x_122, x_153, x_120, x_43, x_21, x_22, x_23, x_24, x_131); return x_154; } } @@ -71217,7 +70141,7 @@ x_244 = lean_ctor_get(x_241, 1); lean_inc(x_244); lean_dec_ref(x_241); lean_inc_ref(x_240); -x_245 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__7), 8, 3); +x_245 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__7), 8, 3); lean_closure_set(x_245, 0, x_240); lean_closure_set(x_245, 1, x_195); lean_closure_set(x_245, 2, x_194); @@ -71261,7 +70185,7 @@ lean_inc(x_257); x_258 = lean_ctor_get(x_254, 1); lean_inc(x_258); lean_dec(x_254); -x_259 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__8(x_7, x_240, x_4, x_236, x_5, x_6, x_2, x_8, x_9, x_197, x_3, x_18, x_11, x_12, x_26, x_10, x_27, x_14, x_13, x_15, x_17, x_198, x_257, x_258, x_256, x_21, x_22, x_23, x_24, x_255); +x_259 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__8(x_7, x_240, x_4, x_236, x_5, x_6, x_2, x_8, x_9, x_197, x_3, x_18, x_11, x_12, x_26, x_10, x_27, x_14, x_13, x_15, x_17, x_198, x_257, x_258, x_256, x_21, x_22, x_23, x_24, x_255); lean_dec(x_257); return x_259; } @@ -71319,7 +70243,7 @@ x_264 = lean_ctor_get(x_241, 1); lean_inc(x_264); lean_dec_ref(x_241); x_265 = lean_box(0); -x_266 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__8(x_7, x_240, x_4, x_236, x_5, x_6, x_2, x_8, x_9, x_197, x_3, x_18, x_11, x_12, x_26, x_10, x_27, x_14, x_13, x_15, x_17, x_198, x_265, x_195, x_194, x_21, x_22, x_23, x_24, x_264); +x_266 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__8(x_7, x_240, x_4, x_236, x_5, x_6, x_2, x_8, x_9, x_197, x_3, x_18, x_11, x_12, x_26, x_10, x_27, x_14, x_13, x_15, x_17, x_198, x_265, x_195, x_194, x_21, x_22, x_23, x_24, x_264); return x_266; } } @@ -71431,7 +70355,7 @@ if (lean_is_scalar(x_40)) { lean_ctor_set(x_214, 0, x_212); lean_ctor_set(x_214, 1, x_213); lean_inc_ref(x_23); -x_215 = l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__28(x_214, x_195, x_194, x_21, x_22, x_23, x_24, x_207); +x_215 = l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__23(x_214, x_195, x_194, x_21, x_22, x_23, x_24, x_207); x_216 = lean_ctor_get(x_215, 0); lean_inc(x_216); x_217 = lean_ctor_get(x_216, 0); @@ -71459,7 +70383,7 @@ lean_inc(x_222); x_223 = lean_ctor_get(x_221, 1); lean_inc(x_223); lean_dec_ref(x_221); -x_224 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__3(x_7, x_204, x_8, x_9, x_10, x_197, x_3, x_4, x_18, x_11, x_12, x_5, x_6, x_2, x_26, x_27, x_13, x_14, x_208, x_198, x_222, x_220, x_219, x_21, x_22, x_23, x_24, x_223); +x_224 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__3(x_7, x_204, x_8, x_9, x_10, x_197, x_3, x_4, x_18, x_11, x_12, x_5, x_6, x_2, x_26, x_27, x_13, x_14, x_208, x_198, x_222, x_220, x_219, x_21, x_22, x_23, x_24, x_223); lean_dec(x_222); return x_224; } @@ -71515,7 +70439,7 @@ lean_object* x_229; lean_object* x_230; lean_dec(x_199); lean_dec(x_40); x_229 = lean_box(0); -x_230 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__3(x_7, x_204, x_8, x_9, x_10, x_197, x_3, x_4, x_18, x_11, x_12, x_5, x_6, x_2, x_26, x_27, x_13, x_14, x_208, x_198, x_229, x_195, x_194, x_21, x_22, x_23, x_24, x_207); +x_230 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__3(x_7, x_204, x_8, x_9, x_10, x_197, x_3, x_4, x_18, x_11, x_12, x_5, x_6, x_2, x_26, x_27, x_13, x_14, x_208, x_198, x_229, x_195, x_194, x_21, x_22, x_23, x_24, x_207); return x_230; } } @@ -71610,7 +70534,7 @@ return x_274; } } } -static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__9___boxed__const__1() { +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__9___boxed__const__1() { _start: { size_t x_1; lean_object* x_2; @@ -71619,7 +70543,7 @@ x_2 = lean_box_usize(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__9(lean_object* x_1, lean_object* x_2, lean_object* 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, lean_object* x_12, lean_object* x_13, lean_object* x_14, uint8_t x_15, uint8_t x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__9(lean_object* x_1, lean_object* x_2, lean_object* 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, lean_object* x_12, lean_object* x_13, lean_object* x_14, uint8_t x_15, uint8_t x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25) { _start: { size_t x_26; size_t x_27; lean_object* x_28; @@ -71630,7 +70554,7 @@ lean_inc_ref(x_23); lean_inc(x_22); lean_inc_ref(x_21); lean_inc_ref(x_2); -x_28 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__22(x_2, x_26, x_27, x_1, x_19, x_20, x_21, x_22, x_23, x_24, x_25); +x_28 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__16(x_2, x_26, x_27, x_1, x_19, x_20, x_21, x_22, x_23, x_24, x_25); 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; size_t x_35; lean_object* x_36; @@ -71655,7 +70579,7 @@ lean_inc_ref(x_23); lean_inc(x_22); lean_inc_ref(x_21); lean_inc_ref(x_3); -x_36 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__22(x_2, x_35, x_27, x_3, x_34, x_32, x_21, x_22, x_23, x_24, x_31); +x_36 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__16(x_2, x_35, x_27, x_3, x_34, x_32, x_21, x_22, x_23, x_24, x_31); if (lean_obj_tag(x_36) == 0) { lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; lean_object* x_47; @@ -71675,10 +70599,10 @@ x_42 = lean_ctor_get(x_38, 1); lean_inc(x_42); lean_dec(x_38); x_43 = lean_box(x_6); -x_44 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__9___boxed__const__1; +x_44 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__9___boxed__const__1; lean_inc_ref(x_5); lean_inc(x_41); -x_45 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__1___boxed), 15, 6); +x_45 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__1___boxed), 15, 6); lean_closure_set(x_45, 0, x_4); lean_closure_set(x_45, 1, x_41); lean_closure_set(x_45, 2, x_5); @@ -71690,7 +70614,7 @@ lean_inc(x_24); lean_inc_ref(x_23); lean_inc(x_22); lean_inc_ref(x_21); -x_47 = l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__24___redArg(x_7, x_45, x_46, x_42, x_40, x_21, x_22, x_23, x_24, x_39); +x_47 = l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__18___redArg(x_7, x_45, x_46, x_42, x_40, x_21, x_22, x_23, x_24, x_39); if (lean_obj_tag(x_47) == 0) { lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; @@ -71720,7 +70644,7 @@ lean_dec(x_50); x_56 = lean_ctor_get(x_51, 1); lean_inc(x_56); lean_dec(x_51); -x_57 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__10(x_56, x_41, x_27, x_8, x_33, x_55, x_9, x_10, x_11, x_12, x_13, x_5, x_46, x_14, x_15, x_16, x_18, x_17, x_54, x_53, x_21, x_22, x_23, x_24, x_52); +x_57 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__10(x_56, x_41, x_27, x_8, x_33, x_55, x_9, x_10, x_11, x_12, x_13, x_5, x_46, x_14, x_15, x_16, x_18, x_17, x_54, x_53, x_21, x_22, x_23, x_24, x_52); return x_57; } else @@ -71747,7 +70671,7 @@ x_64 = lean_ctor_get(x_13, 0); lean_inc(x_64); x_65 = lean_array_set(x_17, x_64, x_62); lean_dec(x_64); -x_66 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__10(x_63, x_41, x_27, x_8, x_33, x_61, x_9, x_10, x_11, x_12, x_13, x_5, x_46, x_14, x_15, x_16, x_18, x_65, x_60, x_59, x_21, x_22, x_23, x_24, x_58); +x_66 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__10(x_63, x_41, x_27, x_8, x_33, x_61, x_9, x_10, x_11, x_12, x_13, x_5, x_46, x_14, x_15, x_16, x_18, x_65, x_60, x_59, x_21, x_22, x_23, x_24, x_58); return x_66; } } @@ -71873,7 +70797,7 @@ return x_78; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; @@ -72103,7 +71027,7 @@ lean_inc(x_74); lean_dec_ref(x_33); x_75 = l_Lean_Meta_Match_MatcherInfo_getNumDiscrEqs(x_74); lean_dec(x_74); -x_76 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__9(x_23, x_4, x_25, x_5, x_22, x_3, x_24, x_19, x_27, x_7, x_28, x_26, x_21, x_6, x_2, x_29, x_20, x_75, x_73, x_72, x_10, x_11, x_12, x_13, x_71); +x_76 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__9(x_23, x_4, x_25, x_5, x_22, x_3, x_24, x_19, x_27, x_7, x_28, x_26, x_21, x_6, x_2, x_29, x_20, x_75, x_73, x_72, x_10, x_11, x_12, x_13, x_71); return x_76; } } @@ -72111,11 +71035,1092 @@ else { lean_object* x_77; lean_object* x_78; x_77 = lean_unsigned_to_nat(0u); -x_78 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__9(x_23, x_4, x_25, x_5, x_22, x_3, x_24, x_19, x_27, x_7, x_28, x_26, x_21, x_6, x_2, x_29, x_20, x_77, x_8, x_9, x_10, x_11, x_12, x_13, x_17); +x_78 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__9(x_23, x_4, x_25, x_5, x_22, x_3, x_24, x_19, x_27, x_7, x_28, x_26, x_21, x_6, x_2, x_29, x_20, x_77, x_8, x_9, x_10, x_11, x_12, x_13, x_17); return x_78; } } } +LEAN_EXPORT lean_object* l_panic___at___Lean_Tactic_FunInd_buildInductionBody_spec__29(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; lean_object* x_10; uint8_t x_11; +x_9 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__0; +x_10 = l_ReaderT_instMonad___redArg(x_9); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_12 = lean_ctor_get(x_10, 0); +x_13 = lean_ctor_get(x_10, 1); +lean_dec(x_13); +x_14 = !lean_is_exclusive(x_12); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; +x_15 = lean_ctor_get(x_12, 0); +x_16 = lean_ctor_get(x_12, 2); +x_17 = lean_ctor_get(x_12, 3); +x_18 = lean_ctor_get(x_12, 4); +x_19 = lean_ctor_get(x_12, 1); +lean_dec(x_19); +x_20 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__1; +x_21 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__2; +lean_inc_ref(x_15); +x_22 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_22, 0, x_15); +x_23 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_23, 0, x_15); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_23); +x_25 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_25, 0, x_18); +x_26 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_26, 0, x_17); +x_27 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_27, 0, x_16); +lean_ctor_set(x_12, 4, x_25); +lean_ctor_set(x_12, 3, x_26); +lean_ctor_set(x_12, 2, x_27); +lean_ctor_set(x_12, 1, x_20); +lean_ctor_set(x_12, 0, x_24); +lean_ctor_set(x_10, 1, x_21); +x_28 = l_ReaderT_instMonad___redArg(x_10); +x_29 = !lean_is_exclusive(x_28); +if (x_29 == 0) +{ +lean_object* x_30; lean_object* x_31; uint8_t x_32; +x_30 = lean_ctor_get(x_28, 0); +x_31 = lean_ctor_get(x_28, 1); +lean_dec(x_31); +x_32 = !lean_is_exclusive(x_30); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_33 = lean_ctor_get(x_30, 0); +x_34 = lean_ctor_get(x_30, 2); +x_35 = lean_ctor_get(x_30, 3); +x_36 = lean_ctor_get(x_30, 4); +x_37 = lean_ctor_get(x_30, 1); +lean_dec(x_37); +x_38 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; +x_39 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__4; +lean_inc_ref(x_33); +x_40 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_40, 0, x_33); +x_41 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_41, 0, x_33); +x_42 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +x_43 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_43, 0, x_36); +x_44 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_44, 0, x_35); +x_45 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_45, 0, x_34); +lean_ctor_set(x_30, 4, x_43); +lean_ctor_set(x_30, 3, x_44); +lean_ctor_set(x_30, 2, x_45); +lean_ctor_set(x_30, 1, x_38); +lean_ctor_set(x_30, 0, x_42); +lean_ctor_set(x_28, 1, x_39); +lean_inc_ref(x_28); +x_46 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_46, 0, x_28); +lean_inc_ref(x_28); +x_47 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_47, 0, x_28); +lean_inc_ref(x_28); +x_48 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__7), 6, 1); +lean_closure_set(x_48, 0, x_28); +lean_inc_ref(x_28); +x_49 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__9), 6, 1); +lean_closure_set(x_49, 0, x_28); +lean_inc_ref(x_28); +x_50 = lean_alloc_closure((void*)(l_StateT_map), 8, 3); +lean_closure_set(x_50, 0, lean_box(0)); +lean_closure_set(x_50, 1, lean_box(0)); +lean_closure_set(x_50, 2, x_28); +x_51 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_46); +lean_inc_ref(x_28); +x_52 = lean_alloc_closure((void*)(l_StateT_pure), 6, 3); +lean_closure_set(x_52, 0, lean_box(0)); +lean_closure_set(x_52, 1, lean_box(0)); +lean_closure_set(x_52, 2, x_28); +x_53 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +lean_ctor_set(x_53, 2, x_47); +lean_ctor_set(x_53, 3, x_48); +lean_ctor_set(x_53, 4, x_49); +x_54 = lean_alloc_closure((void*)(l_StateT_bind), 8, 3); +lean_closure_set(x_54, 0, lean_box(0)); +lean_closure_set(x_54, 1, lean_box(0)); +lean_closure_set(x_54, 2, x_28); +x_55 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_54); +lean_inc_ref(x_55); +x_56 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_56, 0, x_55); +lean_inc_ref(x_55); +x_57 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_57, 0, x_55); +lean_inc_ref(x_55); +x_58 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__7), 6, 1); +lean_closure_set(x_58, 0, x_55); +lean_inc_ref(x_55); +x_59 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__9), 6, 1); +lean_closure_set(x_59, 0, x_55); +lean_inc_ref(x_55); +x_60 = lean_alloc_closure((void*)(l_StateT_map), 8, 3); +lean_closure_set(x_60, 0, lean_box(0)); +lean_closure_set(x_60, 1, lean_box(0)); +lean_closure_set(x_60, 2, x_55); +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_56); +lean_inc_ref(x_55); +x_62 = lean_alloc_closure((void*)(l_StateT_pure), 6, 3); +lean_closure_set(x_62, 0, lean_box(0)); +lean_closure_set(x_62, 1, lean_box(0)); +lean_closure_set(x_62, 2, x_55); +x_63 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_63, 0, x_61); +lean_ctor_set(x_63, 1, x_62); +lean_ctor_set(x_63, 2, x_57); +lean_ctor_set(x_63, 3, x_58); +lean_ctor_set(x_63, 4, x_59); +x_64 = lean_alloc_closure((void*)(l_StateT_bind), 8, 3); +lean_closure_set(x_64, 0, lean_box(0)); +lean_closure_set(x_64, 1, lean_box(0)); +lean_closure_set(x_64, 2, x_55); +x_65 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_65, 0, x_63); +lean_ctor_set(x_65, 1, x_64); +x_66 = l_Lean_instInhabitedExpr; +x_67 = l_instInhabitedOfMonad___redArg(x_65, x_66); +x_68 = lean_panic_fn(x_67, x_1); +x_69 = lean_apply_7(x_68, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_69; +} +else +{ +lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; +x_70 = lean_ctor_get(x_30, 0); +x_71 = lean_ctor_get(x_30, 2); +x_72 = lean_ctor_get(x_30, 3); +x_73 = lean_ctor_get(x_30, 4); +lean_inc(x_73); +lean_inc(x_72); +lean_inc(x_71); +lean_inc(x_70); +lean_dec(x_30); +x_74 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; +x_75 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__4; +lean_inc_ref(x_70); +x_76 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_76, 0, x_70); +x_77 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_77, 0, x_70); +x_78 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_78, 0, x_76); +lean_ctor_set(x_78, 1, x_77); +x_79 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_79, 0, x_73); +x_80 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_80, 0, x_72); +x_81 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_81, 0, x_71); +x_82 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_82, 0, x_78); +lean_ctor_set(x_82, 1, x_74); +lean_ctor_set(x_82, 2, x_81); +lean_ctor_set(x_82, 3, x_80); +lean_ctor_set(x_82, 4, x_79); +lean_ctor_set(x_28, 1, x_75); +lean_ctor_set(x_28, 0, x_82); +lean_inc_ref(x_28); +x_83 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_83, 0, x_28); +lean_inc_ref(x_28); +x_84 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_84, 0, x_28); +lean_inc_ref(x_28); +x_85 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__7), 6, 1); +lean_closure_set(x_85, 0, x_28); +lean_inc_ref(x_28); +x_86 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__9), 6, 1); +lean_closure_set(x_86, 0, x_28); +lean_inc_ref(x_28); +x_87 = lean_alloc_closure((void*)(l_StateT_map), 8, 3); +lean_closure_set(x_87, 0, lean_box(0)); +lean_closure_set(x_87, 1, lean_box(0)); +lean_closure_set(x_87, 2, x_28); +x_88 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_88, 0, x_87); +lean_ctor_set(x_88, 1, x_83); +lean_inc_ref(x_28); +x_89 = lean_alloc_closure((void*)(l_StateT_pure), 6, 3); +lean_closure_set(x_89, 0, lean_box(0)); +lean_closure_set(x_89, 1, lean_box(0)); +lean_closure_set(x_89, 2, x_28); +x_90 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_90, 0, x_88); +lean_ctor_set(x_90, 1, x_89); +lean_ctor_set(x_90, 2, x_84); +lean_ctor_set(x_90, 3, x_85); +lean_ctor_set(x_90, 4, x_86); +x_91 = lean_alloc_closure((void*)(l_StateT_bind), 8, 3); +lean_closure_set(x_91, 0, lean_box(0)); +lean_closure_set(x_91, 1, lean_box(0)); +lean_closure_set(x_91, 2, x_28); +x_92 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_92, 0, x_90); +lean_ctor_set(x_92, 1, x_91); +lean_inc_ref(x_92); +x_93 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_93, 0, x_92); +lean_inc_ref(x_92); +x_94 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_94, 0, x_92); +lean_inc_ref(x_92); +x_95 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__7), 6, 1); +lean_closure_set(x_95, 0, x_92); +lean_inc_ref(x_92); +x_96 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__9), 6, 1); +lean_closure_set(x_96, 0, x_92); +lean_inc_ref(x_92); +x_97 = lean_alloc_closure((void*)(l_StateT_map), 8, 3); +lean_closure_set(x_97, 0, lean_box(0)); +lean_closure_set(x_97, 1, lean_box(0)); +lean_closure_set(x_97, 2, x_92); +x_98 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_98, 0, x_97); +lean_ctor_set(x_98, 1, x_93); +lean_inc_ref(x_92); +x_99 = lean_alloc_closure((void*)(l_StateT_pure), 6, 3); +lean_closure_set(x_99, 0, lean_box(0)); +lean_closure_set(x_99, 1, lean_box(0)); +lean_closure_set(x_99, 2, x_92); +x_100 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_100, 0, x_98); +lean_ctor_set(x_100, 1, x_99); +lean_ctor_set(x_100, 2, x_94); +lean_ctor_set(x_100, 3, x_95); +lean_ctor_set(x_100, 4, x_96); +x_101 = lean_alloc_closure((void*)(l_StateT_bind), 8, 3); +lean_closure_set(x_101, 0, lean_box(0)); +lean_closure_set(x_101, 1, lean_box(0)); +lean_closure_set(x_101, 2, x_92); +x_102 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_102, 0, x_100); +lean_ctor_set(x_102, 1, x_101); +x_103 = l_Lean_instInhabitedExpr; +x_104 = l_instInhabitedOfMonad___redArg(x_102, x_103); +x_105 = lean_panic_fn(x_104, x_1); +x_106 = lean_apply_7(x_105, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_106; +} +} +else +{ +lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; +x_107 = lean_ctor_get(x_28, 0); +lean_inc(x_107); +lean_dec(x_28); +x_108 = lean_ctor_get(x_107, 0); +lean_inc_ref(x_108); +x_109 = lean_ctor_get(x_107, 2); +lean_inc_ref(x_109); +x_110 = lean_ctor_get(x_107, 3); +lean_inc_ref(x_110); +x_111 = lean_ctor_get(x_107, 4); +lean_inc_ref(x_111); +if (lean_is_exclusive(x_107)) { + lean_ctor_release(x_107, 0); + lean_ctor_release(x_107, 1); + lean_ctor_release(x_107, 2); + lean_ctor_release(x_107, 3); + lean_ctor_release(x_107, 4); + x_112 = x_107; +} else { + lean_dec_ref(x_107); + x_112 = lean_box(0); +} +x_113 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; +x_114 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__4; +lean_inc_ref(x_108); +x_115 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_115, 0, x_108); +x_116 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_116, 0, x_108); +x_117 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_117, 0, x_115); +lean_ctor_set(x_117, 1, x_116); +x_118 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_118, 0, x_111); +x_119 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_119, 0, x_110); +x_120 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_120, 0, x_109); +if (lean_is_scalar(x_112)) { + x_121 = lean_alloc_ctor(0, 5, 0); +} else { + x_121 = x_112; +} +lean_ctor_set(x_121, 0, x_117); +lean_ctor_set(x_121, 1, x_113); +lean_ctor_set(x_121, 2, x_120); +lean_ctor_set(x_121, 3, x_119); +lean_ctor_set(x_121, 4, x_118); +x_122 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_122, 0, x_121); +lean_ctor_set(x_122, 1, x_114); +lean_inc_ref(x_122); +x_123 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_123, 0, x_122); +lean_inc_ref(x_122); +x_124 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_124, 0, x_122); +lean_inc_ref(x_122); +x_125 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__7), 6, 1); +lean_closure_set(x_125, 0, x_122); +lean_inc_ref(x_122); +x_126 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__9), 6, 1); +lean_closure_set(x_126, 0, x_122); +lean_inc_ref(x_122); +x_127 = lean_alloc_closure((void*)(l_StateT_map), 8, 3); +lean_closure_set(x_127, 0, lean_box(0)); +lean_closure_set(x_127, 1, lean_box(0)); +lean_closure_set(x_127, 2, x_122); +x_128 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_128, 0, x_127); +lean_ctor_set(x_128, 1, x_123); +lean_inc_ref(x_122); +x_129 = lean_alloc_closure((void*)(l_StateT_pure), 6, 3); +lean_closure_set(x_129, 0, lean_box(0)); +lean_closure_set(x_129, 1, lean_box(0)); +lean_closure_set(x_129, 2, x_122); +x_130 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_130, 0, x_128); +lean_ctor_set(x_130, 1, x_129); +lean_ctor_set(x_130, 2, x_124); +lean_ctor_set(x_130, 3, x_125); +lean_ctor_set(x_130, 4, x_126); +x_131 = lean_alloc_closure((void*)(l_StateT_bind), 8, 3); +lean_closure_set(x_131, 0, lean_box(0)); +lean_closure_set(x_131, 1, lean_box(0)); +lean_closure_set(x_131, 2, x_122); +x_132 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_132, 0, x_130); +lean_ctor_set(x_132, 1, x_131); +lean_inc_ref(x_132); +x_133 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_133, 0, x_132); +lean_inc_ref(x_132); +x_134 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_134, 0, x_132); +lean_inc_ref(x_132); +x_135 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__7), 6, 1); +lean_closure_set(x_135, 0, x_132); +lean_inc_ref(x_132); +x_136 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__9), 6, 1); +lean_closure_set(x_136, 0, x_132); +lean_inc_ref(x_132); +x_137 = lean_alloc_closure((void*)(l_StateT_map), 8, 3); +lean_closure_set(x_137, 0, lean_box(0)); +lean_closure_set(x_137, 1, lean_box(0)); +lean_closure_set(x_137, 2, x_132); +x_138 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_138, 0, x_137); +lean_ctor_set(x_138, 1, x_133); +lean_inc_ref(x_132); +x_139 = lean_alloc_closure((void*)(l_StateT_pure), 6, 3); +lean_closure_set(x_139, 0, lean_box(0)); +lean_closure_set(x_139, 1, lean_box(0)); +lean_closure_set(x_139, 2, x_132); +x_140 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_140, 0, x_138); +lean_ctor_set(x_140, 1, x_139); +lean_ctor_set(x_140, 2, x_134); +lean_ctor_set(x_140, 3, x_135); +lean_ctor_set(x_140, 4, x_136); +x_141 = lean_alloc_closure((void*)(l_StateT_bind), 8, 3); +lean_closure_set(x_141, 0, lean_box(0)); +lean_closure_set(x_141, 1, lean_box(0)); +lean_closure_set(x_141, 2, x_132); +x_142 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_142, 0, x_140); +lean_ctor_set(x_142, 1, x_141); +x_143 = l_Lean_instInhabitedExpr; +x_144 = l_instInhabitedOfMonad___redArg(x_142, x_143); +x_145 = lean_panic_fn(x_144, x_1); +x_146 = lean_apply_7(x_145, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_146; +} +} +else +{ +lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; +x_147 = lean_ctor_get(x_12, 0); +x_148 = lean_ctor_get(x_12, 2); +x_149 = lean_ctor_get(x_12, 3); +x_150 = lean_ctor_get(x_12, 4); +lean_inc(x_150); +lean_inc(x_149); +lean_inc(x_148); +lean_inc(x_147); +lean_dec(x_12); +x_151 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__1; +x_152 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__2; +lean_inc_ref(x_147); +x_153 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_153, 0, x_147); +x_154 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_154, 0, x_147); +x_155 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_155, 0, x_153); +lean_ctor_set(x_155, 1, x_154); +x_156 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_156, 0, x_150); +x_157 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_157, 0, x_149); +x_158 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_158, 0, x_148); +x_159 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_159, 0, x_155); +lean_ctor_set(x_159, 1, x_151); +lean_ctor_set(x_159, 2, x_158); +lean_ctor_set(x_159, 3, x_157); +lean_ctor_set(x_159, 4, x_156); +lean_ctor_set(x_10, 1, x_152); +lean_ctor_set(x_10, 0, x_159); +x_160 = l_ReaderT_instMonad___redArg(x_10); +x_161 = lean_ctor_get(x_160, 0); +lean_inc_ref(x_161); +if (lean_is_exclusive(x_160)) { + lean_ctor_release(x_160, 0); + lean_ctor_release(x_160, 1); + x_162 = x_160; +} else { + lean_dec_ref(x_160); + x_162 = lean_box(0); +} +x_163 = lean_ctor_get(x_161, 0); +lean_inc_ref(x_163); +x_164 = lean_ctor_get(x_161, 2); +lean_inc_ref(x_164); +x_165 = lean_ctor_get(x_161, 3); +lean_inc_ref(x_165); +x_166 = lean_ctor_get(x_161, 4); +lean_inc_ref(x_166); +if (lean_is_exclusive(x_161)) { + lean_ctor_release(x_161, 0); + lean_ctor_release(x_161, 1); + lean_ctor_release(x_161, 2); + lean_ctor_release(x_161, 3); + lean_ctor_release(x_161, 4); + x_167 = x_161; +} else { + lean_dec_ref(x_161); + x_167 = lean_box(0); +} +x_168 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; +x_169 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__4; +lean_inc_ref(x_163); +x_170 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_170, 0, x_163); +x_171 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_171, 0, x_163); +x_172 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_172, 0, x_170); +lean_ctor_set(x_172, 1, x_171); +x_173 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_173, 0, x_166); +x_174 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_174, 0, x_165); +x_175 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_175, 0, x_164); +if (lean_is_scalar(x_167)) { + x_176 = lean_alloc_ctor(0, 5, 0); +} else { + x_176 = x_167; +} +lean_ctor_set(x_176, 0, x_172); +lean_ctor_set(x_176, 1, x_168); +lean_ctor_set(x_176, 2, x_175); +lean_ctor_set(x_176, 3, x_174); +lean_ctor_set(x_176, 4, x_173); +if (lean_is_scalar(x_162)) { + x_177 = lean_alloc_ctor(0, 2, 0); +} else { + x_177 = x_162; +} +lean_ctor_set(x_177, 0, x_176); +lean_ctor_set(x_177, 1, x_169); +lean_inc_ref(x_177); +x_178 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_178, 0, x_177); +lean_inc_ref(x_177); +x_179 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_179, 0, x_177); +lean_inc_ref(x_177); +x_180 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__7), 6, 1); +lean_closure_set(x_180, 0, x_177); +lean_inc_ref(x_177); +x_181 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__9), 6, 1); +lean_closure_set(x_181, 0, x_177); +lean_inc_ref(x_177); +x_182 = lean_alloc_closure((void*)(l_StateT_map), 8, 3); +lean_closure_set(x_182, 0, lean_box(0)); +lean_closure_set(x_182, 1, lean_box(0)); +lean_closure_set(x_182, 2, x_177); +x_183 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_183, 0, x_182); +lean_ctor_set(x_183, 1, x_178); +lean_inc_ref(x_177); +x_184 = lean_alloc_closure((void*)(l_StateT_pure), 6, 3); +lean_closure_set(x_184, 0, lean_box(0)); +lean_closure_set(x_184, 1, lean_box(0)); +lean_closure_set(x_184, 2, x_177); +x_185 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_185, 0, x_183); +lean_ctor_set(x_185, 1, x_184); +lean_ctor_set(x_185, 2, x_179); +lean_ctor_set(x_185, 3, x_180); +lean_ctor_set(x_185, 4, x_181); +x_186 = lean_alloc_closure((void*)(l_StateT_bind), 8, 3); +lean_closure_set(x_186, 0, lean_box(0)); +lean_closure_set(x_186, 1, lean_box(0)); +lean_closure_set(x_186, 2, x_177); +x_187 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_187, 0, x_185); +lean_ctor_set(x_187, 1, x_186); +lean_inc_ref(x_187); +x_188 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_188, 0, x_187); +lean_inc_ref(x_187); +x_189 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_189, 0, x_187); +lean_inc_ref(x_187); +x_190 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__7), 6, 1); +lean_closure_set(x_190, 0, x_187); +lean_inc_ref(x_187); +x_191 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__9), 6, 1); +lean_closure_set(x_191, 0, x_187); +lean_inc_ref(x_187); +x_192 = lean_alloc_closure((void*)(l_StateT_map), 8, 3); +lean_closure_set(x_192, 0, lean_box(0)); +lean_closure_set(x_192, 1, lean_box(0)); +lean_closure_set(x_192, 2, x_187); +x_193 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_193, 0, x_192); +lean_ctor_set(x_193, 1, x_188); +lean_inc_ref(x_187); +x_194 = lean_alloc_closure((void*)(l_StateT_pure), 6, 3); +lean_closure_set(x_194, 0, lean_box(0)); +lean_closure_set(x_194, 1, lean_box(0)); +lean_closure_set(x_194, 2, x_187); +x_195 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_195, 0, x_193); +lean_ctor_set(x_195, 1, x_194); +lean_ctor_set(x_195, 2, x_189); +lean_ctor_set(x_195, 3, x_190); +lean_ctor_set(x_195, 4, x_191); +x_196 = lean_alloc_closure((void*)(l_StateT_bind), 8, 3); +lean_closure_set(x_196, 0, lean_box(0)); +lean_closure_set(x_196, 1, lean_box(0)); +lean_closure_set(x_196, 2, x_187); +x_197 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_197, 0, x_195); +lean_ctor_set(x_197, 1, x_196); +x_198 = l_Lean_instInhabitedExpr; +x_199 = l_instInhabitedOfMonad___redArg(x_197, x_198); +x_200 = lean_panic_fn(x_199, x_1); +x_201 = lean_apply_7(x_200, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_201; +} +} +else +{ +lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; +x_202 = lean_ctor_get(x_10, 0); +lean_inc(x_202); +lean_dec(x_10); +x_203 = lean_ctor_get(x_202, 0); +lean_inc_ref(x_203); +x_204 = lean_ctor_get(x_202, 2); +lean_inc_ref(x_204); +x_205 = lean_ctor_get(x_202, 3); +lean_inc_ref(x_205); +x_206 = lean_ctor_get(x_202, 4); +lean_inc_ref(x_206); +if (lean_is_exclusive(x_202)) { + lean_ctor_release(x_202, 0); + lean_ctor_release(x_202, 1); + lean_ctor_release(x_202, 2); + lean_ctor_release(x_202, 3); + lean_ctor_release(x_202, 4); + x_207 = x_202; +} else { + lean_dec_ref(x_202); + x_207 = lean_box(0); +} +x_208 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__1; +x_209 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__2; +lean_inc_ref(x_203); +x_210 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_210, 0, x_203); +x_211 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_211, 0, x_203); +x_212 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_212, 0, x_210); +lean_ctor_set(x_212, 1, x_211); +x_213 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_213, 0, x_206); +x_214 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_214, 0, x_205); +x_215 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_215, 0, x_204); +if (lean_is_scalar(x_207)) { + x_216 = lean_alloc_ctor(0, 5, 0); +} else { + x_216 = x_207; +} +lean_ctor_set(x_216, 0, x_212); +lean_ctor_set(x_216, 1, x_208); +lean_ctor_set(x_216, 2, x_215); +lean_ctor_set(x_216, 3, x_214); +lean_ctor_set(x_216, 4, x_213); +x_217 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_217, 0, x_216); +lean_ctor_set(x_217, 1, x_209); +x_218 = l_ReaderT_instMonad___redArg(x_217); +x_219 = lean_ctor_get(x_218, 0); +lean_inc_ref(x_219); +if (lean_is_exclusive(x_218)) { + lean_ctor_release(x_218, 0); + lean_ctor_release(x_218, 1); + x_220 = x_218; +} else { + lean_dec_ref(x_218); + x_220 = lean_box(0); +} +x_221 = lean_ctor_get(x_219, 0); +lean_inc_ref(x_221); +x_222 = lean_ctor_get(x_219, 2); +lean_inc_ref(x_222); +x_223 = lean_ctor_get(x_219, 3); +lean_inc_ref(x_223); +x_224 = lean_ctor_get(x_219, 4); +lean_inc_ref(x_224); +if (lean_is_exclusive(x_219)) { + lean_ctor_release(x_219, 0); + lean_ctor_release(x_219, 1); + lean_ctor_release(x_219, 2); + lean_ctor_release(x_219, 3); + lean_ctor_release(x_219, 4); + x_225 = x_219; +} else { + lean_dec_ref(x_219); + x_225 = lean_box(0); +} +x_226 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__3; +x_227 = l_panic___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__11___closed__4; +lean_inc_ref(x_221); +x_228 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_228, 0, x_221); +x_229 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_229, 0, x_221); +x_230 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_230, 0, x_228); +lean_ctor_set(x_230, 1, x_229); +x_231 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_231, 0, x_224); +x_232 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_232, 0, x_223); +x_233 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_233, 0, x_222); +if (lean_is_scalar(x_225)) { + x_234 = lean_alloc_ctor(0, 5, 0); +} else { + x_234 = x_225; +} +lean_ctor_set(x_234, 0, x_230); +lean_ctor_set(x_234, 1, x_226); +lean_ctor_set(x_234, 2, x_233); +lean_ctor_set(x_234, 3, x_232); +lean_ctor_set(x_234, 4, x_231); +if (lean_is_scalar(x_220)) { + x_235 = lean_alloc_ctor(0, 2, 0); +} else { + x_235 = x_220; +} +lean_ctor_set(x_235, 0, x_234); +lean_ctor_set(x_235, 1, x_227); +lean_inc_ref(x_235); +x_236 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_236, 0, x_235); +lean_inc_ref(x_235); +x_237 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_237, 0, x_235); +lean_inc_ref(x_235); +x_238 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__7), 6, 1); +lean_closure_set(x_238, 0, x_235); +lean_inc_ref(x_235); +x_239 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__9), 6, 1); +lean_closure_set(x_239, 0, x_235); +lean_inc_ref(x_235); +x_240 = lean_alloc_closure((void*)(l_StateT_map), 8, 3); +lean_closure_set(x_240, 0, lean_box(0)); +lean_closure_set(x_240, 1, lean_box(0)); +lean_closure_set(x_240, 2, x_235); +x_241 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_241, 0, x_240); +lean_ctor_set(x_241, 1, x_236); +lean_inc_ref(x_235); +x_242 = lean_alloc_closure((void*)(l_StateT_pure), 6, 3); +lean_closure_set(x_242, 0, lean_box(0)); +lean_closure_set(x_242, 1, lean_box(0)); +lean_closure_set(x_242, 2, x_235); +x_243 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_243, 0, x_241); +lean_ctor_set(x_243, 1, x_242); +lean_ctor_set(x_243, 2, x_237); +lean_ctor_set(x_243, 3, x_238); +lean_ctor_set(x_243, 4, x_239); +x_244 = lean_alloc_closure((void*)(l_StateT_bind), 8, 3); +lean_closure_set(x_244, 0, lean_box(0)); +lean_closure_set(x_244, 1, lean_box(0)); +lean_closure_set(x_244, 2, x_235); +x_245 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_245, 0, x_243); +lean_ctor_set(x_245, 1, x_244); +lean_inc_ref(x_245); +x_246 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_246, 0, x_245); +lean_inc_ref(x_245); +x_247 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_247, 0, x_245); +lean_inc_ref(x_245); +x_248 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__7), 6, 1); +lean_closure_set(x_248, 0, x_245); +lean_inc_ref(x_245); +x_249 = lean_alloc_closure((void*)(l_StateT_instMonad___redArg___lam__9), 6, 1); +lean_closure_set(x_249, 0, x_245); +lean_inc_ref(x_245); +x_250 = lean_alloc_closure((void*)(l_StateT_map), 8, 3); +lean_closure_set(x_250, 0, lean_box(0)); +lean_closure_set(x_250, 1, lean_box(0)); +lean_closure_set(x_250, 2, x_245); +x_251 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_251, 0, x_250); +lean_ctor_set(x_251, 1, x_246); +lean_inc_ref(x_245); +x_252 = lean_alloc_closure((void*)(l_StateT_pure), 6, 3); +lean_closure_set(x_252, 0, lean_box(0)); +lean_closure_set(x_252, 1, lean_box(0)); +lean_closure_set(x_252, 2, x_245); +x_253 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_253, 0, x_251); +lean_ctor_set(x_253, 1, x_252); +lean_ctor_set(x_253, 2, x_247); +lean_ctor_set(x_253, 3, x_248); +lean_ctor_set(x_253, 4, x_249); +x_254 = lean_alloc_closure((void*)(l_StateT_bind), 8, 3); +lean_closure_set(x_254, 0, lean_box(0)); +lean_closure_set(x_254, 1, lean_box(0)); +lean_closure_set(x_254, 2, x_245); +x_255 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_255, 0, x_253); +lean_ctor_set(x_255, 1, x_254); +x_256 = l_Lean_instInhabitedExpr; +x_257 = l_instInhabitedOfMonad___redArg(x_255, x_256); +x_258 = lean_panic_fn(x_257, x_1); +x_259 = lean_apply_7(x_258, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_259; +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__30_spec__30(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; uint8_t x_10; +x_10 = lean_usize_dec_eq(x_2, x_3); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_array_uget(x_1, x_2); +x_12 = l_Lean_Expr_fvarId_x3f(x_11); +lean_dec_ref(x_11); +if (lean_obj_tag(x_12) == 0) +{ +x_5 = x_4; +goto block_9; +} +else +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +lean_dec_ref(x_12); +x_14 = lean_array_push(x_4, x_13); +x_5 = x_14; +goto block_9; +} +} +else +{ +return x_4; +} +block_9: +{ +size_t x_6; size_t x_7; +x_6 = 1; +x_7 = lean_usize_add(x_2, x_6); +x_2 = x_7; +x_4 = x_5; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__30(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = l_Lean_Tactic_FunInd_M2_run___redArg___closed__0; +x_5 = lean_nat_dec_lt(x_2, x_3); +if (x_5 == 0) +{ +return x_4; +} +else +{ +lean_object* x_6; uint8_t x_7; +x_6 = lean_array_get_size(x_1); +x_7 = lean_nat_dec_le(x_3, x_6); +lean_dec(x_6); +if (x_7 == 0) +{ +return x_4; +} +else +{ +size_t x_8; size_t x_9; lean_object* x_10; +x_8 = lean_usize_of_nat(x_2); +x_9 = lean_usize_of_nat(x_3); +x_10 = l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__30_spec__30(x_1, x_8, x_9, x_4); +return x_10; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32_spec__32___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; uint8_t x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; +x_12 = lean_alloc_closure((void*)(l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__18___redArg___lam__0), 10, 3); +lean_closure_set(x_12, 0, x_3); +lean_closure_set(x_12, 1, x_5); +lean_closure_set(x_12, 2, x_6); +x_13 = 1; +x_14 = 0; +x_15 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_15, 0, x_2); +x_16 = l___private_Lean_Meta_Basic_0__Lean_Meta_lambdaTelescopeImp(lean_box(0), x_1, x_13, x_14, x_13, x_14, x_15, x_12, x_4, x_7, x_8, x_9, x_10, x_11); +lean_dec_ref(x_15); +if (lean_obj_tag(x_16) == 0) +{ +uint8_t x_17; +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) +{ +lean_object* x_18; uint8_t x_19; +x_18 = lean_ctor_get(x_16, 0); +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_16; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_18, 0); +x_21 = lean_ctor_get(x_18, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_18); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +lean_ctor_set(x_16, 0, x_22); +return x_16; +} +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_23 = lean_ctor_get(x_16, 0); +x_24 = lean_ctor_get(x_16, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_16); +x_25 = lean_ctor_get(x_23, 0); +lean_inc(x_25); +x_26 = lean_ctor_get(x_23, 1); +lean_inc(x_26); +if (lean_is_exclusive(x_23)) { + lean_ctor_release(x_23, 0); + lean_ctor_release(x_23, 1); + x_27 = x_23; +} else { + lean_dec_ref(x_23); + x_27 = lean_box(0); +} +if (lean_is_scalar(x_27)) { + x_28 = lean_alloc_ctor(0, 2, 0); +} else { + x_28 = x_27; +} +lean_ctor_set(x_28, 0, x_25); +lean_ctor_set(x_28, 1, x_26); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_24); +return x_29; +} +} +else +{ +uint8_t x_30; +x_30 = !lean_is_exclusive(x_16); +if (x_30 == 0) +{ +return x_16; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_16, 0); +x_32 = lean_ctor_get(x_16, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_16); +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +return x_33; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32_spec__32(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32_spec__32___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_array_get(x_1, x_2, x_13); +x_15 = l_Lean_Expr_fvarId_x21(x_14); +lean_dec_ref(x_14); +x_16 = lean_apply_9(x_3, x_15, x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32___redArg___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; uint8_t x_15; +x_14 = lean_array_get_size(x_5); +x_15 = lean_nat_dec_eq(x_14, x_3); +lean_dec(x_14); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_16 = l_Lean_Tactic_FunInd_lambdaTelescope1___redArg___lam__3___closed__1; +x_17 = l_Lean_MessageData_ofExpr(x_4); +x_18 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_18, 0, x_16); +lean_ctor_set(x_18, 1, x_17); +x_19 = l_Lean_Tactic_FunInd_lambdaTelescope1___redArg___lam__3___closed__3; +x_20 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +x_21 = l_Lean_throwError___at___Lean_Tactic_FunInd_buildInductionBody_spec__0___redArg(x_20, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +x_22 = !lean_is_exclusive(x_21); +if (x_22 == 0) +{ +return x_21; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_21, 0); +x_24 = lean_ctor_get(x_21, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_21); +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 +{ +lean_object* x_26; lean_object* x_27; +lean_dec_ref(x_4); +x_26 = lean_box(0); +x_27 = l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32___redArg___lam__0(x_1, x_5, x_2, x_6, x_26, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_27; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32___redArg(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_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; +x_10 = l_Lean_instInhabitedExpr; +x_11 = lean_unsigned_to_nat(1u); +lean_inc_ref(x_1); +x_12 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32___redArg___lam__1___boxed), 13, 4); +lean_closure_set(x_12, 0, x_10); +lean_closure_set(x_12, 1, x_2); +lean_closure_set(x_12, 2, x_11); +lean_closure_set(x_12, 3, x_1); +x_13 = 0; +x_14 = l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32_spec__32___redArg(x_1, x_11, x_12, x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__0(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: { @@ -72355,25 +72360,25 @@ x_15 = l_Lean_Tactic_FunInd_buildInductionBody(x_1, x_2, x_7, x_3, x_4, x_5, x_6 return x_15; } } -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_16 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__5), 14, 6); -lean_closure_set(x_16, 0, x_1); -lean_closure_set(x_16, 1, x_2); -lean_closure_set(x_16, 2, x_3); -lean_closure_set(x_16, 3, x_4); -lean_closure_set(x_16, 4, x_5); -lean_closure_set(x_16, 5, x_8); -x_17 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_rwMatcher), 7, 1); -lean_closure_set(x_17, 0, x_6); -x_18 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_withRewrittenMotiveArg), 10, 3); -lean_closure_set(x_18, 0, x_7); -lean_closure_set(x_18, 1, x_17); -lean_closure_set(x_18, 2, x_16); -x_19 = l_Lean_Tactic_FunInd_M2_branch___redArg(x_18, x_9, x_10, x_11, x_12, x_13, x_14, x_15); -return x_19; +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_17 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__5), 14, 6); +lean_closure_set(x_17, 0, x_1); +lean_closure_set(x_17, 1, x_2); +lean_closure_set(x_17, 2, x_3); +lean_closure_set(x_17, 3, x_4); +lean_closure_set(x_17, 4, x_5); +lean_closure_set(x_17, 5, x_9); +x_18 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_rwMatcher), 7, 1); +lean_closure_set(x_18, 0, x_6); +x_19 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_withRewrittenMotiveArg), 10, 3); +lean_closure_set(x_19, 0, x_7); +lean_closure_set(x_19, 1, x_18); +lean_closure_set(x_19, 2, x_17); +x_20 = l_Lean_Tactic_FunInd_M2_branch___redArg(x_19, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { @@ -73024,25 +73029,7 @@ x_23 = l_Lean_Tactic_FunInd_M2_branch___redArg(x_22, x_11, x_12, x_13, x_14, x_1 return x_23; } } -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__12(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_12 = l_Lean_Tactic_FunInd_maskArray___redArg(x_1, x_3); -x_13 = l_Lean_Expr_beta(x_2, x_12); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_5); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_14); -lean_ctor_set(x_15, 1, x_6); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_15); -lean_ctor_set(x_16, 1, x_11); -return x_16; -} -} -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__14(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__12(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { lean_object* x_15; @@ -73098,7 +73085,7 @@ lean_dec_ref(x_5); lean_dec_ref(x_3); lean_dec(x_2); x_21 = l_Lean_Tactic_FunInd_buildInductionBody___lam__13___closed__1; -x_22 = l_panic___at___Lean_Tactic_FunInd_buildInductionBody_spec__15(x_21, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +x_22 = l_panic___at___Lean_Tactic_FunInd_buildInductionBody_spec__29(x_21, x_12, x_13, x_14, x_15, x_16, x_17, x_18); return x_22; } else @@ -73115,11 +73102,11 @@ x_28 = lean_array_push(x_27, x_25); x_29 = l_Array_append___redArg(x_3, x_28); lean_dec_ref(x_28); x_30 = lean_array_get_size(x_4); -x_31 = l_Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__16(x_4, x_23, x_30); +x_31 = l_Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__30(x_4, x_23, x_30); lean_dec(x_30); x_32 = l_Array_append___redArg(x_5, x_31); lean_dec_ref(x_31); -x_33 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__14), 14, 6); +x_33 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__12), 14, 6); lean_closure_set(x_33, 0, x_29); lean_closure_set(x_33, 1, x_32); lean_closure_set(x_33, 2, x_2); @@ -73398,7 +73385,7 @@ return x_35; } } } -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__15(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__14(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; @@ -73417,33 +73404,51 @@ lean_closure_set(x_19, 8, x_18); x_20 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_20, 0, x_1); x_21 = 0; -x_22 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg(x_8, x_20, x_19, x_21, x_21, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_22 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21___redArg(x_8, x_20, x_19, x_21, x_21, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_22; } } -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__16(lean_object* x_1, lean_object* x_2, lean_object* 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, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__15(lean_object* x_1, lean_object* x_2, lean_object* 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, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_17 = lean_box(x_6); -x_18 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__15___boxed), 17, 8); -lean_closure_set(x_18, 0, x_1); -lean_closure_set(x_18, 1, x_2); -lean_closure_set(x_18, 2, x_3); -lean_closure_set(x_18, 3, x_4); -lean_closure_set(x_18, 4, x_5); -lean_closure_set(x_18, 5, x_7); -lean_closure_set(x_18, 6, x_17); -lean_closure_set(x_18, 7, x_8); -x_19 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19), 10, 3); -lean_closure_set(x_19, 0, lean_box(0)); -lean_closure_set(x_19, 1, x_9); -lean_closure_set(x_19, 2, x_18); -x_20 = l_Lean_Tactic_FunInd_M2_branch___redArg(x_19, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -return x_20; +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_18 = lean_box(x_6); +x_19 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__14___boxed), 17, 8); +lean_closure_set(x_19, 0, x_1); +lean_closure_set(x_19, 1, x_2); +lean_closure_set(x_19, 2, x_3); +lean_closure_set(x_19, 3, x_4); +lean_closure_set(x_19, 4, x_5); +lean_closure_set(x_19, 5, x_7); +lean_closure_set(x_19, 6, x_18); +lean_closure_set(x_19, 7, x_8); +x_20 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32), 10, 3); +lean_closure_set(x_20, 0, lean_box(0)); +lean_closure_set(x_20, 1, x_10); +lean_closure_set(x_20, 2, x_19); +x_21 = l_Lean_Tactic_FunInd_M2_branch___redArg(x_20, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +return x_21; } } -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__17(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__16(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_12 = l_Lean_Tactic_FunInd_maskArray___redArg(x_1, x_3); +x_13 = l_Lean_Expr_beta(x_2, x_12); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_5); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_6); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_11); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__18(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { lean_object* x_15; @@ -73451,7 +73456,7 @@ x_15 = l_Lean_Tactic_FunInd_buildInductionBody(x_1, x_2, x_7, x_3, x_4, x_5, x_6 return x_15; } } -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__18(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__17(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_12, lean_object* x_13) { _start: { lean_object* x_14; @@ -73730,7 +73735,7 @@ x_13 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_rwIfWith), 7, 1); lean_closure_set(x_13, 0, x_5); x_14 = lean_box(x_3); x_15 = lean_box(x_4); -x_16 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__18___boxed), 13, 6); +x_16 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__17___boxed), 13, 6); lean_closure_set(x_16, 0, x_1); lean_closure_set(x_16, 1, x_13); lean_closure_set(x_16, 2, x_2); @@ -74591,146 +74596,146 @@ return x_3; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__28(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { _start: { -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_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t 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_120; lean_object* x_121; uint8_t 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; uint8_t x_134; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; uint8_t x_434; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_597; +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_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t 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_120; uint8_t 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; uint8_t x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; uint8_t x_133; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; uint8_t x_433; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_596; lean_inc_ref(x_1); -x_597 = l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(x_1, x_18, x_21); -if (lean_obj_tag(x_597) == 0) +x_596 = l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(x_1, x_18, x_21); +if (lean_obj_tag(x_596) == 0) { -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_657; uint8_t x_658; -x_598 = lean_ctor_get(x_597, 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_656; uint8_t x_657; +x_597 = lean_ctor_get(x_596, 0); +lean_inc(x_597); +x_598 = lean_ctor_get(x_596, 1); lean_inc(x_598); -x_599 = lean_ctor_get(x_597, 1); -lean_inc(x_599); -lean_dec_ref(x_597); -x_657 = l_Lean_Expr_cleanupAnnotations(x_598); -x_658 = l_Lean_Expr_isApp(x_657); -if (x_658 == 0) +lean_dec_ref(x_596); +x_656 = l_Lean_Expr_cleanupAnnotations(x_597); +x_657 = l_Lean_Expr_isApp(x_656); +if (x_657 == 0) { -lean_dec_ref(x_657); -x_600 = x_15; -x_601 = x_16; -x_602 = x_17; -x_603 = x_18; -x_604 = x_19; -x_605 = x_20; -goto block_656; +lean_dec_ref(x_656); +x_599 = x_15; +x_600 = x_16; +x_601 = x_17; +x_602 = x_18; +x_603 = x_19; +x_604 = x_20; +goto block_655; } else { -lean_object* x_659; lean_object* x_660; uint8_t x_661; -x_659 = lean_ctor_get(x_657, 1); -lean_inc_ref(x_659); -x_660 = l_Lean_Expr_appFnCleanup___redArg(x_657); -x_661 = l_Lean_Expr_isApp(x_660); -if (x_661 == 0) +lean_object* x_658; lean_object* x_659; uint8_t x_660; +x_658 = lean_ctor_get(x_656, 1); +lean_inc_ref(x_658); +x_659 = l_Lean_Expr_appFnCleanup___redArg(x_656); +x_660 = l_Lean_Expr_isApp(x_659); +if (x_660 == 0) { -lean_dec_ref(x_660); lean_dec_ref(x_659); -x_600 = x_15; -x_601 = x_16; -x_602 = x_17; -x_603 = x_18; -x_604 = x_19; -x_605 = x_20; -goto block_656; +lean_dec_ref(x_658); +x_599 = x_15; +x_600 = x_16; +x_601 = x_17; +x_602 = x_18; +x_603 = x_19; +x_604 = x_20; +goto block_655; } else { -lean_object* x_662; lean_object* x_663; uint8_t x_664; -x_662 = lean_ctor_get(x_660, 1); -lean_inc_ref(x_662); -x_663 = l_Lean_Expr_appFnCleanup___redArg(x_660); -x_664 = l_Lean_Expr_isApp(x_663); -if (x_664 == 0) +lean_object* x_661; lean_object* x_662; uint8_t x_663; +x_661 = lean_ctor_get(x_659, 1); +lean_inc_ref(x_661); +x_662 = l_Lean_Expr_appFnCleanup___redArg(x_659); +x_663 = l_Lean_Expr_isApp(x_662); +if (x_663 == 0) { -lean_dec_ref(x_663); lean_dec_ref(x_662); -lean_dec_ref(x_659); -x_600 = x_15; -x_601 = x_16; -x_602 = x_17; -x_603 = x_18; -x_604 = x_19; -x_605 = x_20; -goto block_656; +lean_dec_ref(x_661); +lean_dec_ref(x_658); +x_599 = x_15; +x_600 = x_16; +x_601 = x_17; +x_602 = x_18; +x_603 = x_19; +x_604 = x_20; +goto block_655; } else { -lean_object* x_665; lean_object* x_666; uint8_t x_667; -x_665 = lean_ctor_get(x_663, 1); -lean_inc_ref(x_665); -x_666 = l_Lean_Expr_appFnCleanup___redArg(x_663); -x_667 = l_Lean_Expr_isApp(x_666); -if (x_667 == 0) +lean_object* x_664; lean_object* x_665; uint8_t x_666; +x_664 = lean_ctor_get(x_662, 1); +lean_inc_ref(x_664); +x_665 = l_Lean_Expr_appFnCleanup___redArg(x_662); +x_666 = l_Lean_Expr_isApp(x_665); +if (x_666 == 0) { -lean_dec_ref(x_666); lean_dec_ref(x_665); -lean_dec_ref(x_662); -lean_dec_ref(x_659); -x_600 = x_15; -x_601 = x_16; -x_602 = x_17; -x_603 = x_18; -x_604 = x_19; -x_605 = x_20; -goto block_656; +lean_dec_ref(x_664); +lean_dec_ref(x_661); +lean_dec_ref(x_658); +x_599 = x_15; +x_600 = x_16; +x_601 = x_17; +x_602 = x_18; +x_603 = x_19; +x_604 = x_20; +goto block_655; } else { -lean_object* x_668; lean_object* x_669; lean_object* x_670; uint8_t x_671; -x_668 = lean_ctor_get(x_666, 1); -lean_inc_ref(x_668); -x_669 = l_Lean_Expr_appFnCleanup___redArg(x_666); -x_670 = l_Lean_Tactic_FunInd_rwIfWith___closed__1; -x_671 = l_Lean_Expr_isConstOf(x_669, x_670); +lean_object* x_667; lean_object* x_668; lean_object* x_669; uint8_t x_670; +x_667 = lean_ctor_get(x_665, 1); +lean_inc_ref(x_667); +x_668 = l_Lean_Expr_appFnCleanup___redArg(x_665); +x_669 = l_Lean_Tactic_FunInd_rwIfWith___closed__1; +x_670 = l_Lean_Expr_isConstOf(x_668, x_669); +if (x_670 == 0) +{ +uint8_t x_671; +x_671 = l_Lean_Expr_isApp(x_668); if (x_671 == 0) { -uint8_t x_672; -x_672 = l_Lean_Expr_isApp(x_669); -if (x_672 == 0) -{ -lean_dec_ref(x_669); lean_dec_ref(x_668); -lean_dec_ref(x_665); -lean_dec_ref(x_662); -lean_dec_ref(x_659); -x_600 = x_15; -x_601 = x_16; -x_602 = x_17; -x_603 = x_18; -x_604 = x_19; -x_605 = x_20; -goto block_656; +lean_dec_ref(x_667); +lean_dec_ref(x_664); +lean_dec_ref(x_661); +lean_dec_ref(x_658); +x_599 = x_15; +x_600 = x_16; +x_601 = x_17; +x_602 = x_18; +x_603 = x_19; +x_604 = x_20; +goto block_655; } else { -lean_object* x_673; lean_object* x_674; uint8_t x_675; -x_673 = l_Lean_Expr_appFnCleanup___redArg(x_669); -x_674 = l_Lean_Tactic_FunInd_rwIfWith___closed__3; -x_675 = l_Lean_Expr_isConstOf(x_673, x_674); -if (x_675 == 0) +lean_object* x_672; lean_object* x_673; uint8_t x_674; +x_672 = l_Lean_Expr_appFnCleanup___redArg(x_668); +x_673 = l_Lean_Tactic_FunInd_rwIfWith___closed__3; +x_674 = l_Lean_Expr_isConstOf(x_672, x_673); +if (x_674 == 0) { -lean_object* x_676; uint8_t x_677; -x_676 = l_Lean_Tactic_FunInd_rwIfWith___closed__5; -x_677 = l_Lean_Expr_isConstOf(x_673, x_676); -lean_dec_ref(x_673); -if (x_677 == 0) +lean_object* x_675; uint8_t x_676; +x_675 = l_Lean_Tactic_FunInd_rwIfWith___closed__5; +x_676 = l_Lean_Expr_isConstOf(x_672, x_675); +lean_dec_ref(x_672); +if (x_676 == 0) { -lean_dec_ref(x_668); -lean_dec_ref(x_665); -lean_dec_ref(x_662); -lean_dec_ref(x_659); -x_600 = x_15; -x_601 = x_16; -x_602 = x_17; -x_603 = x_18; -x_604 = x_19; -x_605 = x_20; -goto block_656; +lean_dec_ref(x_667); +lean_dec_ref(x_664); +lean_dec_ref(x_661); +lean_dec_ref(x_658); +x_599 = x_15; +x_600 = x_16; +x_601 = x_17; +x_602 = x_18; +x_603 = x_19; +x_604 = x_20; +goto block_655; } else { -lean_object* x_678; +lean_object* x_677; lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -74746,20 +74751,20 @@ lean_inc_ref(x_17); lean_inc_ref(x_4); lean_inc(x_3); lean_inc(x_2); -x_678 = l_Lean_Tactic_FunInd_foldAndCollect(x_2, x_3, x_4, x_668, x_16, x_17, x_18, x_19, x_20, x_599); -if (lean_obj_tag(x_678) == 0) +x_677 = l_Lean_Tactic_FunInd_foldAndCollect(x_2, x_3, x_4, x_667, x_16, x_17, x_18, x_19, x_20, x_598); +if (lean_obj_tag(x_677) == 0) { -lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; -x_679 = lean_ctor_get(x_678, 0); +lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; +x_678 = lean_ctor_get(x_677, 0); +lean_inc(x_678); +x_679 = lean_ctor_get(x_677, 1); lean_inc(x_679); -x_680 = lean_ctor_get(x_678, 1); +lean_dec_ref(x_677); +x_680 = lean_ctor_get(x_678, 0); lean_inc(x_680); -lean_dec_ref(x_678); -x_681 = lean_ctor_get(x_679, 0); +x_681 = lean_ctor_get(x_678, 1); lean_inc(x_681); -x_682 = lean_ctor_get(x_679, 1); -lean_inc(x_682); -lean_dec(x_679); +lean_dec(x_678); lean_inc(x_20); lean_inc_ref(x_19); lean_inc(x_18); @@ -74767,491 +74772,491 @@ lean_inc_ref(x_17); lean_inc_ref(x_4); lean_inc(x_3); lean_inc(x_2); -x_683 = l_Lean_Tactic_FunInd_foldAndCollect(x_2, x_3, x_4, x_665, x_682, x_17, x_18, x_19, x_20, x_680); -if (lean_obj_tag(x_683) == 0) +x_682 = l_Lean_Tactic_FunInd_foldAndCollect(x_2, x_3, x_4, x_664, x_681, x_17, x_18, x_19, x_20, x_679); +if (lean_obj_tag(x_682) == 0) { -lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; uint8_t x_693; uint8_t x_694; lean_object* x_695; -x_684 = lean_ctor_get(x_683, 0); +lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; uint8_t x_692; uint8_t x_693; lean_object* x_694; +x_683 = lean_ctor_get(x_682, 0); +lean_inc(x_683); +x_684 = lean_ctor_get(x_682, 1); lean_inc(x_684); -x_685 = lean_ctor_get(x_683, 1); +lean_dec_ref(x_682); +x_685 = lean_ctor_get(x_683, 0); lean_inc(x_685); -lean_dec_ref(x_683); -x_686 = lean_ctor_get(x_684, 0); +x_686 = lean_ctor_get(x_683, 1); lean_inc(x_686); -x_687 = lean_ctor_get(x_684, 1); -lean_inc(x_687); -lean_dec(x_684); +lean_dec(x_683); lean_inc_ref(x_4); lean_inc(x_3); lean_inc(x_2); lean_inc_ref(x_6); lean_inc_ref(x_5); -x_688 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__17), 14, 6); -lean_closure_set(x_688, 0, x_5); -lean_closure_set(x_688, 1, x_6); -lean_closure_set(x_688, 2, x_2); -lean_closure_set(x_688, 3, x_3); -lean_closure_set(x_688, 4, x_4); -lean_closure_set(x_688, 5, x_662); -x_689 = lean_box(x_675); -x_690 = lean_box(x_677); +x_687 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__18), 14, 6); +lean_closure_set(x_687, 0, x_5); +lean_closure_set(x_687, 1, x_6); +lean_closure_set(x_687, 2, x_2); +lean_closure_set(x_687, 3, x_3); +lean_closure_set(x_687, 4, x_4); +lean_closure_set(x_687, 5, x_661); +x_688 = lean_box(x_674); +x_689 = lean_box(x_676); lean_inc_ref(x_7); -x_691 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__19___boxed), 12, 4); -lean_closure_set(x_691, 0, x_7); -lean_closure_set(x_691, 1, x_688); -lean_closure_set(x_691, 2, x_689); -lean_closure_set(x_691, 3, x_690); -x_692 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__20; +x_690 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__19___boxed), 12, 4); +lean_closure_set(x_690, 0, x_7); +lean_closure_set(x_690, 1, x_687); +lean_closure_set(x_690, 2, x_688); +lean_closure_set(x_690, 3, x_689); +x_691 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__20; +x_692 = 0; x_693 = 0; -x_694 = 0; lean_inc(x_20); lean_inc_ref(x_19); lean_inc(x_18); lean_inc_ref(x_17); -lean_inc(x_681); -x_695 = l_Lean_Meta_withLocalDecl___at___Lean_Tactic_FunInd_buildInductionBody_spec__2___redArg(x_692, x_693, x_681, x_691, x_694, x_15, x_687, x_17, x_18, x_19, x_20, x_685); -if (lean_obj_tag(x_695) == 0) +lean_inc(x_680); +x_694 = l_Lean_Meta_withLocalDecl___at___Lean_Tactic_FunInd_buildInductionBody_spec__2___redArg(x_691, x_692, x_680, x_690, x_693, x_15, x_686, x_17, x_18, x_19, x_20, x_684); +if (lean_obj_tag(x_694) == 0) { -lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; +lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; +x_695 = lean_ctor_get(x_694, 0); +lean_inc(x_695); x_696 = lean_ctor_get(x_695, 0); lean_inc(x_696); -x_697 = lean_ctor_get(x_696, 0); +x_697 = lean_ctor_get(x_694, 1); lean_inc(x_697); +lean_dec_ref(x_694); x_698 = lean_ctor_get(x_695, 1); lean_inc(x_698); -lean_dec_ref(x_695); -x_699 = lean_ctor_get(x_696, 1); +lean_dec(x_695); +x_699 = lean_ctor_get(x_696, 0); lean_inc(x_699); -lean_dec(x_696); -x_700 = lean_ctor_get(x_697, 0); +x_700 = lean_ctor_get(x_696, 1); lean_inc(x_700); -x_701 = lean_ctor_get(x_697, 1); -lean_inc(x_701); -lean_dec(x_697); -x_702 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__17), 14, 6); -lean_closure_set(x_702, 0, x_5); -lean_closure_set(x_702, 1, x_6); -lean_closure_set(x_702, 2, x_2); -lean_closure_set(x_702, 3, x_3); -lean_closure_set(x_702, 4, x_4); -lean_closure_set(x_702, 5, x_659); -x_703 = lean_box(x_675); -x_704 = lean_box(x_677); +lean_dec(x_696); +x_701 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__18), 14, 6); +lean_closure_set(x_701, 0, x_5); +lean_closure_set(x_701, 1, x_6); +lean_closure_set(x_701, 2, x_2); +lean_closure_set(x_701, 3, x_3); +lean_closure_set(x_701, 4, x_4); +lean_closure_set(x_701, 5, x_658); +x_702 = lean_box(x_674); +x_703 = lean_box(x_676); lean_inc_ref(x_7); -x_705 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__19___boxed), 12, 4); -lean_closure_set(x_705, 0, x_7); -lean_closure_set(x_705, 1, x_702); -lean_closure_set(x_705, 2, x_703); -lean_closure_set(x_705, 3, x_704); -lean_inc(x_681); -x_706 = l_Lean_mkNot(x_681); +x_704 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__19___boxed), 12, 4); +lean_closure_set(x_704, 0, x_7); +lean_closure_set(x_704, 1, x_701); +lean_closure_set(x_704, 2, x_702); +lean_closure_set(x_704, 3, x_703); +lean_inc(x_680); +x_705 = l_Lean_mkNot(x_680); lean_inc(x_20); lean_inc_ref(x_19); lean_inc(x_18); lean_inc_ref(x_17); -x_707 = l_Lean_Meta_withLocalDecl___at___Lean_Tactic_FunInd_buildInductionBody_spec__2___redArg(x_692, x_693, x_706, x_705, x_694, x_701, x_699, x_17, x_18, x_19, x_20, x_698); -if (lean_obj_tag(x_707) == 0) +x_706 = l_Lean_Meta_withLocalDecl___at___Lean_Tactic_FunInd_buildInductionBody_spec__2___redArg(x_691, x_692, x_705, x_704, x_693, x_700, x_698, x_17, x_18, x_19, x_20, x_697); +if (lean_obj_tag(x_706) == 0) { -lean_object* x_708; lean_object* x_709; uint8_t x_710; +lean_object* x_707; lean_object* x_708; uint8_t x_709; +x_707 = lean_ctor_get(x_706, 0); +lean_inc(x_707); x_708 = lean_ctor_get(x_707, 0); lean_inc(x_708); -x_709 = lean_ctor_get(x_708, 0); -lean_inc(x_709); -x_710 = !lean_is_exclusive(x_707); -if (x_710 == 0) +x_709 = !lean_is_exclusive(x_706); +if (x_709 == 0) { -lean_object* x_711; lean_object* x_712; uint8_t x_713; -x_711 = lean_ctor_get(x_707, 1); -x_712 = lean_ctor_get(x_707, 0); -lean_dec(x_712); -x_713 = !lean_is_exclusive(x_708); -if (x_713 == 0) +lean_object* x_710; lean_object* x_711; uint8_t x_712; +x_710 = lean_ctor_get(x_706, 1); +x_711 = lean_ctor_get(x_706, 0); +lean_dec(x_711); +x_712 = !lean_is_exclusive(x_707); +if (x_712 == 0) { -lean_object* x_714; lean_object* x_715; uint8_t x_716; -x_714 = lean_ctor_get(x_708, 1); -x_715 = lean_ctor_get(x_708, 0); -lean_dec(x_715); -x_716 = !lean_is_exclusive(x_709); -if (x_716 == 0) +lean_object* x_713; lean_object* x_714; uint8_t x_715; +x_713 = lean_ctor_get(x_707, 1); +x_714 = lean_ctor_get(x_707, 0); +lean_dec(x_714); +x_715 = !lean_is_exclusive(x_708); +if (x_715 == 0) { -lean_object* x_717; lean_object* x_718; lean_object* x_719; -x_717 = lean_ctor_get(x_709, 0); -x_718 = lean_ctor_get(x_709, 1); +lean_object* x_716; lean_object* x_717; lean_object* x_718; +x_716 = lean_ctor_get(x_708, 0); +x_717 = lean_ctor_get(x_708, 1); lean_inc_ref(x_7); -x_719 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_711); -if (lean_obj_tag(x_719) == 0) +x_718 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_710); +if (lean_obj_tag(x_718) == 0) { -uint8_t x_720; -x_720 = !lean_is_exclusive(x_719); -if (x_720 == 0) +uint8_t x_719; +x_719 = !lean_is_exclusive(x_718); +if (x_719 == 0) { -lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; -x_721 = lean_ctor_get(x_719, 0); -x_722 = lean_box(0); -lean_ctor_set_tag(x_707, 1); -lean_ctor_set(x_707, 1, x_722); -lean_ctor_set(x_707, 0, x_721); -x_723 = l_Lean_Expr_const___override(x_674, x_707); -x_724 = l_Lean_mkApp5(x_723, x_7, x_681, x_686, x_700, x_717); -lean_ctor_set(x_709, 0, x_724); -lean_ctor_set(x_719, 0, x_708); -return x_719; +lean_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; +x_720 = lean_ctor_get(x_718, 0); +x_721 = lean_box(0); +lean_ctor_set_tag(x_706, 1); +lean_ctor_set(x_706, 1, x_721); +lean_ctor_set(x_706, 0, x_720); +x_722 = l_Lean_Expr_const___override(x_673, x_706); +x_723 = l_Lean_mkApp5(x_722, x_7, x_680, x_685, x_699, x_716); +lean_ctor_set(x_708, 0, x_723); +lean_ctor_set(x_718, 0, x_707); +return x_718; } else { -lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; -x_725 = lean_ctor_get(x_719, 0); -x_726 = lean_ctor_get(x_719, 1); -lean_inc(x_726); +lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; +x_724 = lean_ctor_get(x_718, 0); +x_725 = lean_ctor_get(x_718, 1); lean_inc(x_725); -lean_dec(x_719); -x_727 = lean_box(0); -lean_ctor_set_tag(x_707, 1); -lean_ctor_set(x_707, 1, x_727); -lean_ctor_set(x_707, 0, x_725); -x_728 = l_Lean_Expr_const___override(x_674, x_707); -x_729 = l_Lean_mkApp5(x_728, x_7, x_681, x_686, x_700, x_717); -lean_ctor_set(x_709, 0, x_729); -x_730 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_730, 0, x_708); -lean_ctor_set(x_730, 1, x_726); -return x_730; -} -} -else -{ -uint8_t x_731; -lean_free_object(x_709); +lean_inc(x_724); lean_dec(x_718); +x_726 = lean_box(0); +lean_ctor_set_tag(x_706, 1); +lean_ctor_set(x_706, 1, x_726); +lean_ctor_set(x_706, 0, x_724); +x_727 = l_Lean_Expr_const___override(x_673, x_706); +x_728 = l_Lean_mkApp5(x_727, x_7, x_680, x_685, x_699, x_716); +lean_ctor_set(x_708, 0, x_728); +x_729 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_729, 0, x_707); +lean_ctor_set(x_729, 1, x_725); +return x_729; +} +} +else +{ +uint8_t x_730; +lean_free_object(x_708); lean_dec(x_717); -lean_free_object(x_708); -lean_dec(x_714); +lean_dec(x_716); lean_free_object(x_707); -lean_dec(x_700); -lean_dec(x_686); -lean_dec(x_681); +lean_dec(x_713); +lean_free_object(x_706); +lean_dec(x_699); +lean_dec(x_685); +lean_dec(x_680); lean_dec_ref(x_7); -x_731 = !lean_is_exclusive(x_719); -if (x_731 == 0) +x_730 = !lean_is_exclusive(x_718); +if (x_730 == 0) { -return x_719; +return x_718; } else { -lean_object* x_732; lean_object* x_733; lean_object* x_734; -x_732 = lean_ctor_get(x_719, 0); -x_733 = lean_ctor_get(x_719, 1); -lean_inc(x_733); +lean_object* x_731; lean_object* x_732; lean_object* x_733; +x_731 = lean_ctor_get(x_718, 0); +x_732 = lean_ctor_get(x_718, 1); lean_inc(x_732); -lean_dec(x_719); -x_734 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_734, 0, x_732); -lean_ctor_set(x_734, 1, x_733); -return x_734; +lean_inc(x_731); +lean_dec(x_718); +x_733 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_733, 0, x_731); +lean_ctor_set(x_733, 1, x_732); +return x_733; } } } else { -lean_object* x_735; lean_object* x_736; lean_object* x_737; -x_735 = lean_ctor_get(x_709, 0); -x_736 = lean_ctor_get(x_709, 1); -lean_inc(x_736); +lean_object* x_734; lean_object* x_735; lean_object* x_736; +x_734 = lean_ctor_get(x_708, 0); +x_735 = lean_ctor_get(x_708, 1); lean_inc(x_735); -lean_dec(x_709); -lean_inc_ref(x_7); -x_737 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_711); -if (lean_obj_tag(x_737) == 0) -{ -lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; -x_738 = lean_ctor_get(x_737, 0); -lean_inc(x_738); -x_739 = lean_ctor_get(x_737, 1); -lean_inc(x_739); -if (lean_is_exclusive(x_737)) { - lean_ctor_release(x_737, 0); - lean_ctor_release(x_737, 1); - x_740 = x_737; -} else { - lean_dec_ref(x_737); - x_740 = lean_box(0); -} -x_741 = lean_box(0); -lean_ctor_set_tag(x_707, 1); -lean_ctor_set(x_707, 1, x_741); -lean_ctor_set(x_707, 0, x_738); -x_742 = l_Lean_Expr_const___override(x_674, x_707); -x_743 = l_Lean_mkApp5(x_742, x_7, x_681, x_686, x_700, x_735); -x_744 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_744, 0, x_743); -lean_ctor_set(x_744, 1, x_736); -lean_ctor_set(x_708, 0, x_744); -if (lean_is_scalar(x_740)) { - x_745 = lean_alloc_ctor(0, 2, 0); -} else { - x_745 = x_740; -} -lean_ctor_set(x_745, 0, x_708); -lean_ctor_set(x_745, 1, x_739); -return x_745; -} -else -{ -lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; -lean_dec(x_736); -lean_dec(x_735); -lean_free_object(x_708); -lean_dec(x_714); -lean_free_object(x_707); -lean_dec(x_700); -lean_dec(x_686); -lean_dec(x_681); -lean_dec_ref(x_7); -x_746 = lean_ctor_get(x_737, 0); -lean_inc(x_746); -x_747 = lean_ctor_get(x_737, 1); -lean_inc(x_747); -if (lean_is_exclusive(x_737)) { - lean_ctor_release(x_737, 0); - lean_ctor_release(x_737, 1); - x_748 = x_737; -} else { - lean_dec_ref(x_737); - x_748 = lean_box(0); -} -if (lean_is_scalar(x_748)) { - x_749 = lean_alloc_ctor(1, 2, 0); -} else { - x_749 = x_748; -} -lean_ctor_set(x_749, 0, x_746); -lean_ctor_set(x_749, 1, x_747); -return x_749; -} -} -} -else -{ -lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; -x_750 = lean_ctor_get(x_708, 1); -lean_inc(x_750); +lean_inc(x_734); lean_dec(x_708); -x_751 = lean_ctor_get(x_709, 0); -lean_inc(x_751); -x_752 = lean_ctor_get(x_709, 1); -lean_inc(x_752); -if (lean_is_exclusive(x_709)) { - lean_ctor_release(x_709, 0); - lean_ctor_release(x_709, 1); - x_753 = x_709; -} else { - lean_dec_ref(x_709); - x_753 = lean_box(0); -} lean_inc_ref(x_7); -x_754 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_711); -if (lean_obj_tag(x_754) == 0) +x_736 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_710); +if (lean_obj_tag(x_736) == 0) { -lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; -x_755 = lean_ctor_get(x_754, 0); -lean_inc(x_755); -x_756 = lean_ctor_get(x_754, 1); -lean_inc(x_756); -if (lean_is_exclusive(x_754)) { - lean_ctor_release(x_754, 0); - lean_ctor_release(x_754, 1); - x_757 = x_754; +lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; +x_737 = lean_ctor_get(x_736, 0); +lean_inc(x_737); +x_738 = lean_ctor_get(x_736, 1); +lean_inc(x_738); +if (lean_is_exclusive(x_736)) { + lean_ctor_release(x_736, 0); + lean_ctor_release(x_736, 1); + x_739 = x_736; } else { - lean_dec_ref(x_754); - x_757 = lean_box(0); + lean_dec_ref(x_736); + x_739 = lean_box(0); } -x_758 = lean_box(0); -lean_ctor_set_tag(x_707, 1); -lean_ctor_set(x_707, 1, x_758); -lean_ctor_set(x_707, 0, x_755); -x_759 = l_Lean_Expr_const___override(x_674, x_707); -x_760 = l_Lean_mkApp5(x_759, x_7, x_681, x_686, x_700, x_751); -if (lean_is_scalar(x_753)) { - x_761 = lean_alloc_ctor(0, 2, 0); +x_740 = lean_box(0); +lean_ctor_set_tag(x_706, 1); +lean_ctor_set(x_706, 1, x_740); +lean_ctor_set(x_706, 0, x_737); +x_741 = l_Lean_Expr_const___override(x_673, x_706); +x_742 = l_Lean_mkApp5(x_741, x_7, x_680, x_685, x_699, x_734); +x_743 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_743, 0, x_742); +lean_ctor_set(x_743, 1, x_735); +lean_ctor_set(x_707, 0, x_743); +if (lean_is_scalar(x_739)) { + x_744 = lean_alloc_ctor(0, 2, 0); } else { - x_761 = x_753; + x_744 = x_739; } -lean_ctor_set(x_761, 0, x_760); -lean_ctor_set(x_761, 1, x_752); -x_762 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_762, 0, x_761); -lean_ctor_set(x_762, 1, x_750); -if (lean_is_scalar(x_757)) { - x_763 = lean_alloc_ctor(0, 2, 0); -} else { - x_763 = x_757; -} -lean_ctor_set(x_763, 0, x_762); -lean_ctor_set(x_763, 1, x_756); -return x_763; +lean_ctor_set(x_744, 0, x_707); +lean_ctor_set(x_744, 1, x_738); +return x_744; } else { -lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; -lean_dec(x_753); -lean_dec(x_752); -lean_dec(x_751); -lean_dec(x_750); +lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; +lean_dec(x_735); +lean_dec(x_734); lean_free_object(x_707); -lean_dec(x_700); -lean_dec(x_686); -lean_dec(x_681); +lean_dec(x_713); +lean_free_object(x_706); +lean_dec(x_699); +lean_dec(x_685); +lean_dec(x_680); lean_dec_ref(x_7); -x_764 = lean_ctor_get(x_754, 0); -lean_inc(x_764); -x_765 = lean_ctor_get(x_754, 1); -lean_inc(x_765); -if (lean_is_exclusive(x_754)) { - lean_ctor_release(x_754, 0); - lean_ctor_release(x_754, 1); - x_766 = x_754; +x_745 = lean_ctor_get(x_736, 0); +lean_inc(x_745); +x_746 = lean_ctor_get(x_736, 1); +lean_inc(x_746); +if (lean_is_exclusive(x_736)) { + lean_ctor_release(x_736, 0); + lean_ctor_release(x_736, 1); + x_747 = x_736; } else { - lean_dec_ref(x_754); - x_766 = lean_box(0); + lean_dec_ref(x_736); + x_747 = lean_box(0); } -if (lean_is_scalar(x_766)) { - x_767 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_747)) { + x_748 = lean_alloc_ctor(1, 2, 0); } else { - x_767 = x_766; + x_748 = x_747; } -lean_ctor_set(x_767, 0, x_764); -lean_ctor_set(x_767, 1, x_765); -return x_767; +lean_ctor_set(x_748, 0, x_745); +lean_ctor_set(x_748, 1, x_746); +return x_748; } } } else { -lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; -x_768 = lean_ctor_get(x_707, 1); -lean_inc(x_768); +lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; +x_749 = lean_ctor_get(x_707, 1); +lean_inc(x_749); lean_dec(x_707); -x_769 = lean_ctor_get(x_708, 1); -lean_inc(x_769); +x_750 = lean_ctor_get(x_708, 0); +lean_inc(x_750); +x_751 = lean_ctor_get(x_708, 1); +lean_inc(x_751); if (lean_is_exclusive(x_708)) { lean_ctor_release(x_708, 0); lean_ctor_release(x_708, 1); - x_770 = x_708; + x_752 = x_708; } else { lean_dec_ref(x_708); - x_770 = lean_box(0); -} -x_771 = lean_ctor_get(x_709, 0); -lean_inc(x_771); -x_772 = lean_ctor_get(x_709, 1); -lean_inc(x_772); -if (lean_is_exclusive(x_709)) { - lean_ctor_release(x_709, 0); - lean_ctor_release(x_709, 1); - x_773 = x_709; -} else { - lean_dec_ref(x_709); - x_773 = lean_box(0); + x_752 = lean_box(0); } lean_inc_ref(x_7); -x_774 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_768); -if (lean_obj_tag(x_774) == 0) +x_753 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_710); +if (lean_obj_tag(x_753) == 0) { -lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; -x_775 = lean_ctor_get(x_774, 0); -lean_inc(x_775); -x_776 = lean_ctor_get(x_774, 1); -lean_inc(x_776); -if (lean_is_exclusive(x_774)) { - lean_ctor_release(x_774, 0); - lean_ctor_release(x_774, 1); - x_777 = x_774; +lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; +x_754 = lean_ctor_get(x_753, 0); +lean_inc(x_754); +x_755 = lean_ctor_get(x_753, 1); +lean_inc(x_755); +if (lean_is_exclusive(x_753)) { + lean_ctor_release(x_753, 0); + lean_ctor_release(x_753, 1); + x_756 = x_753; } else { - lean_dec_ref(x_774); - x_777 = lean_box(0); + lean_dec_ref(x_753); + x_756 = lean_box(0); } -x_778 = lean_box(0); -x_779 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_779, 0, x_775); -lean_ctor_set(x_779, 1, x_778); -x_780 = l_Lean_Expr_const___override(x_674, x_779); -x_781 = l_Lean_mkApp5(x_780, x_7, x_681, x_686, x_700, x_771); -if (lean_is_scalar(x_773)) { - x_782 = lean_alloc_ctor(0, 2, 0); +x_757 = lean_box(0); +lean_ctor_set_tag(x_706, 1); +lean_ctor_set(x_706, 1, x_757); +lean_ctor_set(x_706, 0, x_754); +x_758 = l_Lean_Expr_const___override(x_673, x_706); +x_759 = l_Lean_mkApp5(x_758, x_7, x_680, x_685, x_699, x_750); +if (lean_is_scalar(x_752)) { + x_760 = lean_alloc_ctor(0, 2, 0); } else { - x_782 = x_773; + x_760 = x_752; } -lean_ctor_set(x_782, 0, x_781); -lean_ctor_set(x_782, 1, x_772); -if (lean_is_scalar(x_770)) { - x_783 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_760, 0, x_759); +lean_ctor_set(x_760, 1, x_751); +x_761 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_761, 0, x_760); +lean_ctor_set(x_761, 1, x_749); +if (lean_is_scalar(x_756)) { + x_762 = lean_alloc_ctor(0, 2, 0); } else { - x_783 = x_770; + x_762 = x_756; } -lean_ctor_set(x_783, 0, x_782); -lean_ctor_set(x_783, 1, x_769); -if (lean_is_scalar(x_777)) { - x_784 = lean_alloc_ctor(0, 2, 0); -} else { - x_784 = x_777; -} -lean_ctor_set(x_784, 0, x_783); -lean_ctor_set(x_784, 1, x_776); -return x_784; +lean_ctor_set(x_762, 0, x_761); +lean_ctor_set(x_762, 1, x_755); +return x_762; } else { -lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; -lean_dec(x_773); +lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; +lean_dec(x_752); +lean_dec(x_751); +lean_dec(x_750); +lean_dec(x_749); +lean_free_object(x_706); +lean_dec(x_699); +lean_dec(x_685); +lean_dec(x_680); +lean_dec_ref(x_7); +x_763 = lean_ctor_get(x_753, 0); +lean_inc(x_763); +x_764 = lean_ctor_get(x_753, 1); +lean_inc(x_764); +if (lean_is_exclusive(x_753)) { + lean_ctor_release(x_753, 0); + lean_ctor_release(x_753, 1); + x_765 = x_753; +} else { + lean_dec_ref(x_753); + x_765 = lean_box(0); +} +if (lean_is_scalar(x_765)) { + x_766 = lean_alloc_ctor(1, 2, 0); +} else { + x_766 = x_765; +} +lean_ctor_set(x_766, 0, x_763); +lean_ctor_set(x_766, 1, x_764); +return x_766; +} +} +} +else +{ +lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; +x_767 = lean_ctor_get(x_706, 1); +lean_inc(x_767); +lean_dec(x_706); +x_768 = lean_ctor_get(x_707, 1); +lean_inc(x_768); +if (lean_is_exclusive(x_707)) { + lean_ctor_release(x_707, 0); + lean_ctor_release(x_707, 1); + x_769 = x_707; +} else { + lean_dec_ref(x_707); + x_769 = lean_box(0); +} +x_770 = lean_ctor_get(x_708, 0); +lean_inc(x_770); +x_771 = lean_ctor_get(x_708, 1); +lean_inc(x_771); +if (lean_is_exclusive(x_708)) { + lean_ctor_release(x_708, 0); + lean_ctor_release(x_708, 1); + x_772 = x_708; +} else { + lean_dec_ref(x_708); + x_772 = lean_box(0); +} +lean_inc_ref(x_7); +x_773 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_767); +if (lean_obj_tag(x_773) == 0) +{ +lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; +x_774 = lean_ctor_get(x_773, 0); +lean_inc(x_774); +x_775 = lean_ctor_get(x_773, 1); +lean_inc(x_775); +if (lean_is_exclusive(x_773)) { + lean_ctor_release(x_773, 0); + lean_ctor_release(x_773, 1); + x_776 = x_773; +} else { + lean_dec_ref(x_773); + x_776 = lean_box(0); +} +x_777 = lean_box(0); +x_778 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_778, 0, x_774); +lean_ctor_set(x_778, 1, x_777); +x_779 = l_Lean_Expr_const___override(x_673, x_778); +x_780 = l_Lean_mkApp5(x_779, x_7, x_680, x_685, x_699, x_770); +if (lean_is_scalar(x_772)) { + x_781 = lean_alloc_ctor(0, 2, 0); +} else { + x_781 = x_772; +} +lean_ctor_set(x_781, 0, x_780); +lean_ctor_set(x_781, 1, x_771); +if (lean_is_scalar(x_769)) { + x_782 = lean_alloc_ctor(0, 2, 0); +} else { + x_782 = x_769; +} +lean_ctor_set(x_782, 0, x_781); +lean_ctor_set(x_782, 1, x_768); +if (lean_is_scalar(x_776)) { + x_783 = lean_alloc_ctor(0, 2, 0); +} else { + x_783 = x_776; +} +lean_ctor_set(x_783, 0, x_782); +lean_ctor_set(x_783, 1, x_775); +return x_783; +} +else +{ +lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_dec(x_772); lean_dec(x_771); lean_dec(x_770); lean_dec(x_769); -lean_dec(x_700); -lean_dec(x_686); -lean_dec(x_681); +lean_dec(x_768); +lean_dec(x_699); +lean_dec(x_685); +lean_dec(x_680); lean_dec_ref(x_7); -x_785 = lean_ctor_get(x_774, 0); +x_784 = lean_ctor_get(x_773, 0); +lean_inc(x_784); +x_785 = lean_ctor_get(x_773, 1); lean_inc(x_785); -x_786 = lean_ctor_get(x_774, 1); -lean_inc(x_786); -if (lean_is_exclusive(x_774)) { - lean_ctor_release(x_774, 0); - lean_ctor_release(x_774, 1); - x_787 = x_774; +if (lean_is_exclusive(x_773)) { + lean_ctor_release(x_773, 0); + lean_ctor_release(x_773, 1); + x_786 = x_773; } else { - lean_dec_ref(x_774); - x_787 = lean_box(0); + lean_dec_ref(x_773); + x_786 = lean_box(0); } -if (lean_is_scalar(x_787)) { - x_788 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_786)) { + x_787 = lean_alloc_ctor(1, 2, 0); } else { - x_788 = x_787; + x_787 = x_786; } -lean_ctor_set(x_788, 0, x_785); -lean_ctor_set(x_788, 1, x_786); -return x_788; +lean_ctor_set(x_787, 0, x_784); +lean_ctor_set(x_787, 1, x_785); +return x_787; } } } else { -lean_dec(x_700); -lean_dec(x_686); -lean_dec(x_681); +lean_dec(x_699); +lean_dec(x_685); +lean_dec(x_680); lean_dec(x_20); lean_dec_ref(x_19); lean_dec(x_18); lean_dec_ref(x_17); lean_dec_ref(x_7); -return x_707; +return x_706; } } else { -lean_dec(x_686); -lean_dec(x_681); -lean_dec_ref(x_659); +lean_dec(x_685); +lean_dec(x_680); +lean_dec_ref(x_658); lean_dec(x_20); lean_dec_ref(x_19); lean_dec(x_18); @@ -75262,15 +75267,15 @@ lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); -return x_695; +return x_694; } } else { -uint8_t x_789; -lean_dec(x_681); -lean_dec_ref(x_662); -lean_dec_ref(x_659); +uint8_t x_788; +lean_dec(x_680); +lean_dec_ref(x_661); +lean_dec_ref(x_658); lean_dec(x_20); lean_dec_ref(x_19); lean_dec(x_18); @@ -75282,32 +75287,32 @@ lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); -x_789 = !lean_is_exclusive(x_683); -if (x_789 == 0) +x_788 = !lean_is_exclusive(x_682); +if (x_788 == 0) { -return x_683; +return x_682; } else { -lean_object* x_790; lean_object* x_791; lean_object* x_792; -x_790 = lean_ctor_get(x_683, 0); -x_791 = lean_ctor_get(x_683, 1); -lean_inc(x_791); +lean_object* x_789; lean_object* x_790; lean_object* x_791; +x_789 = lean_ctor_get(x_682, 0); +x_790 = lean_ctor_get(x_682, 1); lean_inc(x_790); -lean_dec(x_683); -x_792 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_792, 0, x_790); -lean_ctor_set(x_792, 1, x_791); -return x_792; +lean_inc(x_789); +lean_dec(x_682); +x_791 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_791, 0, x_789); +lean_ctor_set(x_791, 1, x_790); +return x_791; } } } else { -uint8_t x_793; -lean_dec_ref(x_665); -lean_dec_ref(x_662); -lean_dec_ref(x_659); +uint8_t x_792; +lean_dec_ref(x_664); +lean_dec_ref(x_661); +lean_dec_ref(x_658); lean_dec(x_20); lean_dec_ref(x_19); lean_dec(x_18); @@ -75319,31 +75324,31 @@ lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); -x_793 = !lean_is_exclusive(x_678); -if (x_793 == 0) +x_792 = !lean_is_exclusive(x_677); +if (x_792 == 0) { -return x_678; +return x_677; } else { -lean_object* x_794; lean_object* x_795; lean_object* x_796; -x_794 = lean_ctor_get(x_678, 0); -x_795 = lean_ctor_get(x_678, 1); -lean_inc(x_795); +lean_object* x_793; lean_object* x_794; lean_object* x_795; +x_793 = lean_ctor_get(x_677, 0); +x_794 = lean_ctor_get(x_677, 1); lean_inc(x_794); -lean_dec(x_678); -x_796 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_796, 0, x_794); -lean_ctor_set(x_796, 1, x_795); -return x_796; +lean_inc(x_793); +lean_dec(x_677); +x_795 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_795, 0, x_793); +lean_ctor_set(x_795, 1, x_794); +return x_795; } } } } else { -lean_object* x_797; -lean_dec_ref(x_673); +lean_object* x_796; +lean_dec_ref(x_672); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -75359,20 +75364,20 @@ lean_inc_ref(x_17); lean_inc_ref(x_4); lean_inc(x_3); lean_inc(x_2); -x_797 = l_Lean_Tactic_FunInd_foldAndCollect(x_2, x_3, x_4, x_668, x_16, x_17, x_18, x_19, x_20, x_599); -if (lean_obj_tag(x_797) == 0) +x_796 = l_Lean_Tactic_FunInd_foldAndCollect(x_2, x_3, x_4, x_667, x_16, x_17, x_18, x_19, x_20, x_598); +if (lean_obj_tag(x_796) == 0) { -lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; -x_798 = lean_ctor_get(x_797, 0); +lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; +x_797 = lean_ctor_get(x_796, 0); +lean_inc(x_797); +x_798 = lean_ctor_get(x_796, 1); lean_inc(x_798); -x_799 = lean_ctor_get(x_797, 1); +lean_dec_ref(x_796); +x_799 = lean_ctor_get(x_797, 0); lean_inc(x_799); -lean_dec_ref(x_797); -x_800 = lean_ctor_get(x_798, 0); +x_800 = lean_ctor_get(x_797, 1); lean_inc(x_800); -x_801 = lean_ctor_get(x_798, 1); -lean_inc(x_801); -lean_dec(x_798); +lean_dec(x_797); lean_inc(x_20); lean_inc_ref(x_19); lean_inc(x_18); @@ -75380,487 +75385,487 @@ lean_inc_ref(x_17); lean_inc_ref(x_4); lean_inc(x_3); lean_inc(x_2); -x_802 = l_Lean_Tactic_FunInd_foldAndCollect(x_2, x_3, x_4, x_665, x_801, x_17, x_18, x_19, x_20, x_799); -if (lean_obj_tag(x_802) == 0) +x_801 = l_Lean_Tactic_FunInd_foldAndCollect(x_2, x_3, x_4, x_664, x_800, x_17, x_18, x_19, x_20, x_798); +if (lean_obj_tag(x_801) == 0) { -lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; uint8_t x_811; uint8_t x_812; lean_object* x_813; -x_803 = lean_ctor_get(x_802, 0); +lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; uint8_t x_810; uint8_t x_811; lean_object* x_812; +x_802 = lean_ctor_get(x_801, 0); +lean_inc(x_802); +x_803 = lean_ctor_get(x_801, 1); lean_inc(x_803); -x_804 = lean_ctor_get(x_802, 1); +lean_dec_ref(x_801); +x_804 = lean_ctor_get(x_802, 0); lean_inc(x_804); -lean_dec_ref(x_802); -x_805 = lean_ctor_get(x_803, 0); +x_805 = lean_ctor_get(x_802, 1); lean_inc(x_805); -x_806 = lean_ctor_get(x_803, 1); -lean_inc(x_806); -lean_dec(x_803); -x_807 = lean_box(x_671); -x_808 = lean_box(x_675); +lean_dec(x_802); +x_806 = lean_box(x_670); +x_807 = lean_box(x_674); lean_inc_ref(x_7); lean_inc_ref(x_4); lean_inc(x_3); lean_inc(x_2); lean_inc_ref(x_6); lean_inc_ref(x_5); -x_809 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__21___boxed), 17, 9); -lean_closure_set(x_809, 0, x_662); -lean_closure_set(x_809, 1, x_5); -lean_closure_set(x_809, 2, x_6); -lean_closure_set(x_809, 3, x_2); -lean_closure_set(x_809, 4, x_3); -lean_closure_set(x_809, 5, x_4); -lean_closure_set(x_809, 6, x_7); -lean_closure_set(x_809, 7, x_807); -lean_closure_set(x_809, 8, x_808); -x_810 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__20; +x_808 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__21___boxed), 17, 9); +lean_closure_set(x_808, 0, x_661); +lean_closure_set(x_808, 1, x_5); +lean_closure_set(x_808, 2, x_6); +lean_closure_set(x_808, 3, x_2); +lean_closure_set(x_808, 4, x_3); +lean_closure_set(x_808, 5, x_4); +lean_closure_set(x_808, 6, x_7); +lean_closure_set(x_808, 7, x_806); +lean_closure_set(x_808, 8, x_807); +x_809 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__20; +x_810 = 0; x_811 = 0; -x_812 = 0; lean_inc(x_20); lean_inc_ref(x_19); lean_inc(x_18); lean_inc_ref(x_17); -lean_inc(x_800); -x_813 = l_Lean_Meta_withLocalDecl___at___Lean_Tactic_FunInd_buildInductionBody_spec__2___redArg(x_810, x_811, x_800, x_809, x_812, x_15, x_806, x_17, x_18, x_19, x_20, x_804); -if (lean_obj_tag(x_813) == 0) +lean_inc(x_799); +x_812 = l_Lean_Meta_withLocalDecl___at___Lean_Tactic_FunInd_buildInductionBody_spec__2___redArg(x_809, x_810, x_799, x_808, x_811, x_15, x_805, x_17, x_18, x_19, x_20, x_803); +if (lean_obj_tag(x_812) == 0) { -lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; +lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; +x_813 = lean_ctor_get(x_812, 0); +lean_inc(x_813); x_814 = lean_ctor_get(x_813, 0); lean_inc(x_814); -x_815 = lean_ctor_get(x_814, 0); +x_815 = lean_ctor_get(x_812, 1); lean_inc(x_815); +lean_dec_ref(x_812); x_816 = lean_ctor_get(x_813, 1); lean_inc(x_816); -lean_dec_ref(x_813); -x_817 = lean_ctor_get(x_814, 1); +lean_dec(x_813); +x_817 = lean_ctor_get(x_814, 0); lean_inc(x_817); -lean_dec(x_814); -x_818 = lean_ctor_get(x_815, 0); +x_818 = lean_ctor_get(x_814, 1); lean_inc(x_818); -x_819 = lean_ctor_get(x_815, 1); -lean_inc(x_819); -lean_dec(x_815); -x_820 = lean_box(x_671); -x_821 = lean_box(x_675); +lean_dec(x_814); +x_819 = lean_box(x_670); +x_820 = lean_box(x_674); lean_inc_ref(x_7); -x_822 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__21___boxed), 17, 9); -lean_closure_set(x_822, 0, x_659); -lean_closure_set(x_822, 1, x_5); -lean_closure_set(x_822, 2, x_6); -lean_closure_set(x_822, 3, x_2); -lean_closure_set(x_822, 4, x_3); -lean_closure_set(x_822, 5, x_4); -lean_closure_set(x_822, 6, x_7); -lean_closure_set(x_822, 7, x_820); -lean_closure_set(x_822, 8, x_821); -lean_inc(x_800); -x_823 = l_Lean_mkNot(x_800); +x_821 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__21___boxed), 17, 9); +lean_closure_set(x_821, 0, x_658); +lean_closure_set(x_821, 1, x_5); +lean_closure_set(x_821, 2, x_6); +lean_closure_set(x_821, 3, x_2); +lean_closure_set(x_821, 4, x_3); +lean_closure_set(x_821, 5, x_4); +lean_closure_set(x_821, 6, x_7); +lean_closure_set(x_821, 7, x_819); +lean_closure_set(x_821, 8, x_820); +lean_inc(x_799); +x_822 = l_Lean_mkNot(x_799); lean_inc(x_20); lean_inc_ref(x_19); lean_inc(x_18); lean_inc_ref(x_17); -x_824 = l_Lean_Meta_withLocalDecl___at___Lean_Tactic_FunInd_buildInductionBody_spec__2___redArg(x_810, x_811, x_823, x_822, x_812, x_819, x_817, x_17, x_18, x_19, x_20, x_816); -if (lean_obj_tag(x_824) == 0) +x_823 = l_Lean_Meta_withLocalDecl___at___Lean_Tactic_FunInd_buildInductionBody_spec__2___redArg(x_809, x_810, x_822, x_821, x_811, x_818, x_816, x_17, x_18, x_19, x_20, x_815); +if (lean_obj_tag(x_823) == 0) { -lean_object* x_825; lean_object* x_826; uint8_t x_827; +lean_object* x_824; lean_object* x_825; uint8_t x_826; +x_824 = lean_ctor_get(x_823, 0); +lean_inc(x_824); x_825 = lean_ctor_get(x_824, 0); lean_inc(x_825); -x_826 = lean_ctor_get(x_825, 0); -lean_inc(x_826); -x_827 = !lean_is_exclusive(x_824); -if (x_827 == 0) +x_826 = !lean_is_exclusive(x_823); +if (x_826 == 0) { -lean_object* x_828; lean_object* x_829; uint8_t x_830; -x_828 = lean_ctor_get(x_824, 1); -x_829 = lean_ctor_get(x_824, 0); -lean_dec(x_829); -x_830 = !lean_is_exclusive(x_825); -if (x_830 == 0) +lean_object* x_827; lean_object* x_828; uint8_t x_829; +x_827 = lean_ctor_get(x_823, 1); +x_828 = lean_ctor_get(x_823, 0); +lean_dec(x_828); +x_829 = !lean_is_exclusive(x_824); +if (x_829 == 0) { -lean_object* x_831; lean_object* x_832; uint8_t x_833; -x_831 = lean_ctor_get(x_825, 1); -x_832 = lean_ctor_get(x_825, 0); -lean_dec(x_832); -x_833 = !lean_is_exclusive(x_826); -if (x_833 == 0) +lean_object* x_830; lean_object* x_831; uint8_t x_832; +x_830 = lean_ctor_get(x_824, 1); +x_831 = lean_ctor_get(x_824, 0); +lean_dec(x_831); +x_832 = !lean_is_exclusive(x_825); +if (x_832 == 0) { -lean_object* x_834; lean_object* x_835; lean_object* x_836; -x_834 = lean_ctor_get(x_826, 0); -x_835 = lean_ctor_get(x_826, 1); +lean_object* x_833; lean_object* x_834; lean_object* x_835; +x_833 = lean_ctor_get(x_825, 0); +x_834 = lean_ctor_get(x_825, 1); lean_inc_ref(x_7); -x_836 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_828); -if (lean_obj_tag(x_836) == 0) +x_835 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_827); +if (lean_obj_tag(x_835) == 0) { -uint8_t x_837; -x_837 = !lean_is_exclusive(x_836); -if (x_837 == 0) +uint8_t x_836; +x_836 = !lean_is_exclusive(x_835); +if (x_836 == 0) { -lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; -x_838 = lean_ctor_get(x_836, 0); -x_839 = lean_box(0); -lean_ctor_set_tag(x_824, 1); -lean_ctor_set(x_824, 1, x_839); -lean_ctor_set(x_824, 0, x_838); -x_840 = l_Lean_Expr_const___override(x_674, x_824); -x_841 = l_Lean_mkApp5(x_840, x_7, x_800, x_805, x_818, x_834); -lean_ctor_set(x_826, 0, x_841); -lean_ctor_set(x_836, 0, x_825); -return x_836; +lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; +x_837 = lean_ctor_get(x_835, 0); +x_838 = lean_box(0); +lean_ctor_set_tag(x_823, 1); +lean_ctor_set(x_823, 1, x_838); +lean_ctor_set(x_823, 0, x_837); +x_839 = l_Lean_Expr_const___override(x_673, x_823); +x_840 = l_Lean_mkApp5(x_839, x_7, x_799, x_804, x_817, x_833); +lean_ctor_set(x_825, 0, x_840); +lean_ctor_set(x_835, 0, x_824); +return x_835; } else { -lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; -x_842 = lean_ctor_get(x_836, 0); -x_843 = lean_ctor_get(x_836, 1); -lean_inc(x_843); +lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; +x_841 = lean_ctor_get(x_835, 0); +x_842 = lean_ctor_get(x_835, 1); lean_inc(x_842); -lean_dec(x_836); -x_844 = lean_box(0); -lean_ctor_set_tag(x_824, 1); -lean_ctor_set(x_824, 1, x_844); -lean_ctor_set(x_824, 0, x_842); -x_845 = l_Lean_Expr_const___override(x_674, x_824); -x_846 = l_Lean_mkApp5(x_845, x_7, x_800, x_805, x_818, x_834); -lean_ctor_set(x_826, 0, x_846); -x_847 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_847, 0, x_825); -lean_ctor_set(x_847, 1, x_843); -return x_847; -} -} -else -{ -uint8_t x_848; -lean_free_object(x_826); +lean_inc(x_841); lean_dec(x_835); +x_843 = lean_box(0); +lean_ctor_set_tag(x_823, 1); +lean_ctor_set(x_823, 1, x_843); +lean_ctor_set(x_823, 0, x_841); +x_844 = l_Lean_Expr_const___override(x_673, x_823); +x_845 = l_Lean_mkApp5(x_844, x_7, x_799, x_804, x_817, x_833); +lean_ctor_set(x_825, 0, x_845); +x_846 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_846, 0, x_824); +lean_ctor_set(x_846, 1, x_842); +return x_846; +} +} +else +{ +uint8_t x_847; +lean_free_object(x_825); lean_dec(x_834); -lean_free_object(x_825); -lean_dec(x_831); +lean_dec(x_833); lean_free_object(x_824); -lean_dec(x_818); -lean_dec(x_805); -lean_dec(x_800); +lean_dec(x_830); +lean_free_object(x_823); +lean_dec(x_817); +lean_dec(x_804); +lean_dec(x_799); lean_dec_ref(x_7); -x_848 = !lean_is_exclusive(x_836); -if (x_848 == 0) +x_847 = !lean_is_exclusive(x_835); +if (x_847 == 0) { -return x_836; +return x_835; } else { -lean_object* x_849; lean_object* x_850; lean_object* x_851; -x_849 = lean_ctor_get(x_836, 0); -x_850 = lean_ctor_get(x_836, 1); -lean_inc(x_850); +lean_object* x_848; lean_object* x_849; lean_object* x_850; +x_848 = lean_ctor_get(x_835, 0); +x_849 = lean_ctor_get(x_835, 1); lean_inc(x_849); -lean_dec(x_836); -x_851 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_851, 0, x_849); -lean_ctor_set(x_851, 1, x_850); -return x_851; +lean_inc(x_848); +lean_dec(x_835); +x_850 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_850, 0, x_848); +lean_ctor_set(x_850, 1, x_849); +return x_850; } } } else { -lean_object* x_852; lean_object* x_853; lean_object* x_854; -x_852 = lean_ctor_get(x_826, 0); -x_853 = lean_ctor_get(x_826, 1); -lean_inc(x_853); +lean_object* x_851; lean_object* x_852; lean_object* x_853; +x_851 = lean_ctor_get(x_825, 0); +x_852 = lean_ctor_get(x_825, 1); lean_inc(x_852); -lean_dec(x_826); -lean_inc_ref(x_7); -x_854 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_828); -if (lean_obj_tag(x_854) == 0) -{ -lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; -x_855 = lean_ctor_get(x_854, 0); -lean_inc(x_855); -x_856 = lean_ctor_get(x_854, 1); -lean_inc(x_856); -if (lean_is_exclusive(x_854)) { - lean_ctor_release(x_854, 0); - lean_ctor_release(x_854, 1); - x_857 = x_854; -} else { - lean_dec_ref(x_854); - x_857 = lean_box(0); -} -x_858 = lean_box(0); -lean_ctor_set_tag(x_824, 1); -lean_ctor_set(x_824, 1, x_858); -lean_ctor_set(x_824, 0, x_855); -x_859 = l_Lean_Expr_const___override(x_674, x_824); -x_860 = l_Lean_mkApp5(x_859, x_7, x_800, x_805, x_818, x_852); -x_861 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_861, 0, x_860); -lean_ctor_set(x_861, 1, x_853); -lean_ctor_set(x_825, 0, x_861); -if (lean_is_scalar(x_857)) { - x_862 = lean_alloc_ctor(0, 2, 0); -} else { - x_862 = x_857; -} -lean_ctor_set(x_862, 0, x_825); -lean_ctor_set(x_862, 1, x_856); -return x_862; -} -else -{ -lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; -lean_dec(x_853); -lean_dec(x_852); -lean_free_object(x_825); -lean_dec(x_831); -lean_free_object(x_824); -lean_dec(x_818); -lean_dec(x_805); -lean_dec(x_800); -lean_dec_ref(x_7); -x_863 = lean_ctor_get(x_854, 0); -lean_inc(x_863); -x_864 = lean_ctor_get(x_854, 1); -lean_inc(x_864); -if (lean_is_exclusive(x_854)) { - lean_ctor_release(x_854, 0); - lean_ctor_release(x_854, 1); - x_865 = x_854; -} else { - lean_dec_ref(x_854); - x_865 = lean_box(0); -} -if (lean_is_scalar(x_865)) { - x_866 = lean_alloc_ctor(1, 2, 0); -} else { - x_866 = x_865; -} -lean_ctor_set(x_866, 0, x_863); -lean_ctor_set(x_866, 1, x_864); -return x_866; -} -} -} -else -{ -lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; -x_867 = lean_ctor_get(x_825, 1); -lean_inc(x_867); +lean_inc(x_851); lean_dec(x_825); -x_868 = lean_ctor_get(x_826, 0); -lean_inc(x_868); -x_869 = lean_ctor_get(x_826, 1); -lean_inc(x_869); -if (lean_is_exclusive(x_826)) { - lean_ctor_release(x_826, 0); - lean_ctor_release(x_826, 1); - x_870 = x_826; -} else { - lean_dec_ref(x_826); - x_870 = lean_box(0); -} lean_inc_ref(x_7); -x_871 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_828); -if (lean_obj_tag(x_871) == 0) +x_853 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_827); +if (lean_obj_tag(x_853) == 0) { -lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; -x_872 = lean_ctor_get(x_871, 0); -lean_inc(x_872); -x_873 = lean_ctor_get(x_871, 1); -lean_inc(x_873); -if (lean_is_exclusive(x_871)) { - lean_ctor_release(x_871, 0); - lean_ctor_release(x_871, 1); - x_874 = x_871; +lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; +x_854 = lean_ctor_get(x_853, 0); +lean_inc(x_854); +x_855 = lean_ctor_get(x_853, 1); +lean_inc(x_855); +if (lean_is_exclusive(x_853)) { + lean_ctor_release(x_853, 0); + lean_ctor_release(x_853, 1); + x_856 = x_853; } else { - lean_dec_ref(x_871); - x_874 = lean_box(0); + lean_dec_ref(x_853); + x_856 = lean_box(0); } -x_875 = lean_box(0); -lean_ctor_set_tag(x_824, 1); -lean_ctor_set(x_824, 1, x_875); -lean_ctor_set(x_824, 0, x_872); -x_876 = l_Lean_Expr_const___override(x_674, x_824); -x_877 = l_Lean_mkApp5(x_876, x_7, x_800, x_805, x_818, x_868); -if (lean_is_scalar(x_870)) { - x_878 = lean_alloc_ctor(0, 2, 0); +x_857 = lean_box(0); +lean_ctor_set_tag(x_823, 1); +lean_ctor_set(x_823, 1, x_857); +lean_ctor_set(x_823, 0, x_854); +x_858 = l_Lean_Expr_const___override(x_673, x_823); +x_859 = l_Lean_mkApp5(x_858, x_7, x_799, x_804, x_817, x_851); +x_860 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_860, 0, x_859); +lean_ctor_set(x_860, 1, x_852); +lean_ctor_set(x_824, 0, x_860); +if (lean_is_scalar(x_856)) { + x_861 = lean_alloc_ctor(0, 2, 0); } else { - x_878 = x_870; + x_861 = x_856; } -lean_ctor_set(x_878, 0, x_877); -lean_ctor_set(x_878, 1, x_869); -x_879 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_879, 0, x_878); -lean_ctor_set(x_879, 1, x_867); -if (lean_is_scalar(x_874)) { - x_880 = lean_alloc_ctor(0, 2, 0); -} else { - x_880 = x_874; -} -lean_ctor_set(x_880, 0, x_879); -lean_ctor_set(x_880, 1, x_873); -return x_880; +lean_ctor_set(x_861, 0, x_824); +lean_ctor_set(x_861, 1, x_855); +return x_861; } else { -lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; -lean_dec(x_870); -lean_dec(x_869); -lean_dec(x_868); -lean_dec(x_867); +lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; +lean_dec(x_852); +lean_dec(x_851); lean_free_object(x_824); -lean_dec(x_818); -lean_dec(x_805); -lean_dec(x_800); +lean_dec(x_830); +lean_free_object(x_823); +lean_dec(x_817); +lean_dec(x_804); +lean_dec(x_799); lean_dec_ref(x_7); -x_881 = lean_ctor_get(x_871, 0); -lean_inc(x_881); -x_882 = lean_ctor_get(x_871, 1); -lean_inc(x_882); -if (lean_is_exclusive(x_871)) { - lean_ctor_release(x_871, 0); - lean_ctor_release(x_871, 1); - x_883 = x_871; +x_862 = lean_ctor_get(x_853, 0); +lean_inc(x_862); +x_863 = lean_ctor_get(x_853, 1); +lean_inc(x_863); +if (lean_is_exclusive(x_853)) { + lean_ctor_release(x_853, 0); + lean_ctor_release(x_853, 1); + x_864 = x_853; } else { - lean_dec_ref(x_871); - x_883 = lean_box(0); + lean_dec_ref(x_853); + x_864 = lean_box(0); } -if (lean_is_scalar(x_883)) { - x_884 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_864)) { + x_865 = lean_alloc_ctor(1, 2, 0); } else { - x_884 = x_883; + x_865 = x_864; } -lean_ctor_set(x_884, 0, x_881); -lean_ctor_set(x_884, 1, x_882); -return x_884; +lean_ctor_set(x_865, 0, x_862); +lean_ctor_set(x_865, 1, x_863); +return x_865; } } } else { -lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; -x_885 = lean_ctor_get(x_824, 1); -lean_inc(x_885); +lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; +x_866 = lean_ctor_get(x_824, 1); +lean_inc(x_866); lean_dec(x_824); -x_886 = lean_ctor_get(x_825, 1); -lean_inc(x_886); +x_867 = lean_ctor_get(x_825, 0); +lean_inc(x_867); +x_868 = lean_ctor_get(x_825, 1); +lean_inc(x_868); if (lean_is_exclusive(x_825)) { lean_ctor_release(x_825, 0); lean_ctor_release(x_825, 1); - x_887 = x_825; + x_869 = x_825; } else { lean_dec_ref(x_825); - x_887 = lean_box(0); -} -x_888 = lean_ctor_get(x_826, 0); -lean_inc(x_888); -x_889 = lean_ctor_get(x_826, 1); -lean_inc(x_889); -if (lean_is_exclusive(x_826)) { - lean_ctor_release(x_826, 0); - lean_ctor_release(x_826, 1); - x_890 = x_826; -} else { - lean_dec_ref(x_826); - x_890 = lean_box(0); + x_869 = lean_box(0); } lean_inc_ref(x_7); -x_891 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_885); -if (lean_obj_tag(x_891) == 0) +x_870 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_827); +if (lean_obj_tag(x_870) == 0) { -lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; -x_892 = lean_ctor_get(x_891, 0); -lean_inc(x_892); -x_893 = lean_ctor_get(x_891, 1); -lean_inc(x_893); -if (lean_is_exclusive(x_891)) { - lean_ctor_release(x_891, 0); - lean_ctor_release(x_891, 1); - x_894 = x_891; +lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; +x_871 = lean_ctor_get(x_870, 0); +lean_inc(x_871); +x_872 = lean_ctor_get(x_870, 1); +lean_inc(x_872); +if (lean_is_exclusive(x_870)) { + lean_ctor_release(x_870, 0); + lean_ctor_release(x_870, 1); + x_873 = x_870; } else { - lean_dec_ref(x_891); - x_894 = lean_box(0); + lean_dec_ref(x_870); + x_873 = lean_box(0); } -x_895 = lean_box(0); -x_896 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_896, 0, x_892); -lean_ctor_set(x_896, 1, x_895); -x_897 = l_Lean_Expr_const___override(x_674, x_896); -x_898 = l_Lean_mkApp5(x_897, x_7, x_800, x_805, x_818, x_888); -if (lean_is_scalar(x_890)) { - x_899 = lean_alloc_ctor(0, 2, 0); +x_874 = lean_box(0); +lean_ctor_set_tag(x_823, 1); +lean_ctor_set(x_823, 1, x_874); +lean_ctor_set(x_823, 0, x_871); +x_875 = l_Lean_Expr_const___override(x_673, x_823); +x_876 = l_Lean_mkApp5(x_875, x_7, x_799, x_804, x_817, x_867); +if (lean_is_scalar(x_869)) { + x_877 = lean_alloc_ctor(0, 2, 0); } else { - x_899 = x_890; + x_877 = x_869; } -lean_ctor_set(x_899, 0, x_898); -lean_ctor_set(x_899, 1, x_889); -if (lean_is_scalar(x_887)) { - x_900 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_877, 0, x_876); +lean_ctor_set(x_877, 1, x_868); +x_878 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_878, 0, x_877); +lean_ctor_set(x_878, 1, x_866); +if (lean_is_scalar(x_873)) { + x_879 = lean_alloc_ctor(0, 2, 0); } else { - x_900 = x_887; + x_879 = x_873; } -lean_ctor_set(x_900, 0, x_899); -lean_ctor_set(x_900, 1, x_886); -if (lean_is_scalar(x_894)) { - x_901 = lean_alloc_ctor(0, 2, 0); -} else { - x_901 = x_894; -} -lean_ctor_set(x_901, 0, x_900); -lean_ctor_set(x_901, 1, x_893); -return x_901; +lean_ctor_set(x_879, 0, x_878); +lean_ctor_set(x_879, 1, x_872); +return x_879; } else { -lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; -lean_dec(x_890); +lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; +lean_dec(x_869); +lean_dec(x_868); +lean_dec(x_867); +lean_dec(x_866); +lean_free_object(x_823); +lean_dec(x_817); +lean_dec(x_804); +lean_dec(x_799); +lean_dec_ref(x_7); +x_880 = lean_ctor_get(x_870, 0); +lean_inc(x_880); +x_881 = lean_ctor_get(x_870, 1); +lean_inc(x_881); +if (lean_is_exclusive(x_870)) { + lean_ctor_release(x_870, 0); + lean_ctor_release(x_870, 1); + x_882 = x_870; +} else { + lean_dec_ref(x_870); + x_882 = lean_box(0); +} +if (lean_is_scalar(x_882)) { + x_883 = lean_alloc_ctor(1, 2, 0); +} else { + x_883 = x_882; +} +lean_ctor_set(x_883, 0, x_880); +lean_ctor_set(x_883, 1, x_881); +return x_883; +} +} +} +else +{ +lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; +x_884 = lean_ctor_get(x_823, 1); +lean_inc(x_884); +lean_dec(x_823); +x_885 = lean_ctor_get(x_824, 1); +lean_inc(x_885); +if (lean_is_exclusive(x_824)) { + lean_ctor_release(x_824, 0); + lean_ctor_release(x_824, 1); + x_886 = x_824; +} else { + lean_dec_ref(x_824); + x_886 = lean_box(0); +} +x_887 = lean_ctor_get(x_825, 0); +lean_inc(x_887); +x_888 = lean_ctor_get(x_825, 1); +lean_inc(x_888); +if (lean_is_exclusive(x_825)) { + lean_ctor_release(x_825, 0); + lean_ctor_release(x_825, 1); + x_889 = x_825; +} else { + lean_dec_ref(x_825); + x_889 = lean_box(0); +} +lean_inc_ref(x_7); +x_890 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_884); +if (lean_obj_tag(x_890) == 0) +{ +lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; +x_891 = lean_ctor_get(x_890, 0); +lean_inc(x_891); +x_892 = lean_ctor_get(x_890, 1); +lean_inc(x_892); +if (lean_is_exclusive(x_890)) { + lean_ctor_release(x_890, 0); + lean_ctor_release(x_890, 1); + x_893 = x_890; +} else { + lean_dec_ref(x_890); + x_893 = lean_box(0); +} +x_894 = lean_box(0); +x_895 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_895, 0, x_891); +lean_ctor_set(x_895, 1, x_894); +x_896 = l_Lean_Expr_const___override(x_673, x_895); +x_897 = l_Lean_mkApp5(x_896, x_7, x_799, x_804, x_817, x_887); +if (lean_is_scalar(x_889)) { + x_898 = lean_alloc_ctor(0, 2, 0); +} else { + x_898 = x_889; +} +lean_ctor_set(x_898, 0, x_897); +lean_ctor_set(x_898, 1, x_888); +if (lean_is_scalar(x_886)) { + x_899 = lean_alloc_ctor(0, 2, 0); +} else { + x_899 = x_886; +} +lean_ctor_set(x_899, 0, x_898); +lean_ctor_set(x_899, 1, x_885); +if (lean_is_scalar(x_893)) { + x_900 = lean_alloc_ctor(0, 2, 0); +} else { + x_900 = x_893; +} +lean_ctor_set(x_900, 0, x_899); +lean_ctor_set(x_900, 1, x_892); +return x_900; +} +else +{ +lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_dec(x_889); lean_dec(x_888); lean_dec(x_887); lean_dec(x_886); -lean_dec(x_818); -lean_dec(x_805); -lean_dec(x_800); +lean_dec(x_885); +lean_dec(x_817); +lean_dec(x_804); +lean_dec(x_799); lean_dec_ref(x_7); -x_902 = lean_ctor_get(x_891, 0); +x_901 = lean_ctor_get(x_890, 0); +lean_inc(x_901); +x_902 = lean_ctor_get(x_890, 1); lean_inc(x_902); -x_903 = lean_ctor_get(x_891, 1); -lean_inc(x_903); -if (lean_is_exclusive(x_891)) { - lean_ctor_release(x_891, 0); - lean_ctor_release(x_891, 1); - x_904 = x_891; +if (lean_is_exclusive(x_890)) { + lean_ctor_release(x_890, 0); + lean_ctor_release(x_890, 1); + x_903 = x_890; } else { - lean_dec_ref(x_891); - x_904 = lean_box(0); + lean_dec_ref(x_890); + x_903 = lean_box(0); } -if (lean_is_scalar(x_904)) { - x_905 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_903)) { + x_904 = lean_alloc_ctor(1, 2, 0); } else { - x_905 = x_904; + x_904 = x_903; } -lean_ctor_set(x_905, 0, x_902); -lean_ctor_set(x_905, 1, x_903); -return x_905; +lean_ctor_set(x_904, 0, x_901); +lean_ctor_set(x_904, 1, x_902); +return x_904; } } } else { -lean_dec(x_818); -lean_dec(x_805); -lean_dec(x_800); +lean_dec(x_817); +lean_dec(x_804); +lean_dec(x_799); lean_dec(x_20); lean_dec_ref(x_19); lean_dec(x_18); lean_dec_ref(x_17); lean_dec_ref(x_7); -return x_824; +return x_823; } } else { -lean_dec(x_805); -lean_dec(x_800); -lean_dec_ref(x_659); +lean_dec(x_804); +lean_dec(x_799); +lean_dec_ref(x_658); lean_dec(x_20); lean_dec_ref(x_19); lean_dec(x_18); @@ -75871,15 +75876,15 @@ lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); -return x_813; +return x_812; } } else { -uint8_t x_906; -lean_dec(x_800); -lean_dec_ref(x_662); -lean_dec_ref(x_659); +uint8_t x_905; +lean_dec(x_799); +lean_dec_ref(x_661); +lean_dec_ref(x_658); lean_dec(x_20); lean_dec_ref(x_19); lean_dec(x_18); @@ -75891,32 +75896,32 @@ lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); -x_906 = !lean_is_exclusive(x_802); -if (x_906 == 0) +x_905 = !lean_is_exclusive(x_801); +if (x_905 == 0) { -return x_802; +return x_801; } else { -lean_object* x_907; lean_object* x_908; lean_object* x_909; -x_907 = lean_ctor_get(x_802, 0); -x_908 = lean_ctor_get(x_802, 1); -lean_inc(x_908); +lean_object* x_906; lean_object* x_907; lean_object* x_908; +x_906 = lean_ctor_get(x_801, 0); +x_907 = lean_ctor_get(x_801, 1); lean_inc(x_907); -lean_dec(x_802); -x_909 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_909, 0, x_907); -lean_ctor_set(x_909, 1, x_908); -return x_909; +lean_inc(x_906); +lean_dec(x_801); +x_908 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_908, 0, x_906); +lean_ctor_set(x_908, 1, x_907); +return x_908; } } } else { -uint8_t x_910; -lean_dec_ref(x_665); -lean_dec_ref(x_662); -lean_dec_ref(x_659); +uint8_t x_909; +lean_dec_ref(x_664); +lean_dec_ref(x_661); +lean_dec_ref(x_658); lean_dec(x_20); lean_dec_ref(x_19); lean_dec(x_18); @@ -75928,23 +75933,23 @@ lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); -x_910 = !lean_is_exclusive(x_797); -if (x_910 == 0) +x_909 = !lean_is_exclusive(x_796); +if (x_909 == 0) { -return x_797; +return x_796; } else { -lean_object* x_911; lean_object* x_912; lean_object* x_913; -x_911 = lean_ctor_get(x_797, 0); -x_912 = lean_ctor_get(x_797, 1); -lean_inc(x_912); +lean_object* x_910; lean_object* x_911; lean_object* x_912; +x_910 = lean_ctor_get(x_796, 0); +x_911 = lean_ctor_get(x_796, 1); lean_inc(x_911); -lean_dec(x_797); -x_913 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_913, 0, x_911); -lean_ctor_set(x_913, 1, x_912); -return x_913; +lean_inc(x_910); +lean_dec(x_796); +x_912 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_912, 0, x_910); +lean_ctor_set(x_912, 1, x_911); +return x_912; } } } @@ -75952,9 +75957,9 @@ return x_913; } else { -lean_object* x_914; -lean_dec_ref(x_669); +lean_object* x_913; lean_dec_ref(x_668); +lean_dec_ref(x_667); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -75970,513 +75975,513 @@ lean_inc_ref(x_17); lean_inc_ref(x_4); lean_inc(x_3); lean_inc(x_2); -x_914 = l_Lean_Tactic_FunInd_foldAndCollect(x_2, x_3, x_4, x_665, x_16, x_17, x_18, x_19, x_20, x_599); -if (lean_obj_tag(x_914) == 0) +x_913 = l_Lean_Tactic_FunInd_foldAndCollect(x_2, x_3, x_4, x_664, x_16, x_17, x_18, x_19, x_20, x_598); +if (lean_obj_tag(x_913) == 0) { -lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; -x_915 = lean_ctor_get(x_914, 0); +lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; +x_914 = lean_ctor_get(x_913, 0); +lean_inc(x_914); +x_915 = lean_ctor_get(x_913, 1); lean_inc(x_915); -x_916 = lean_ctor_get(x_914, 1); +lean_dec_ref(x_913); +x_916 = lean_ctor_get(x_914, 0); lean_inc(x_916); -lean_dec_ref(x_914); -x_917 = lean_ctor_get(x_915, 0); +x_917 = lean_ctor_get(x_914, 1); lean_inc(x_917); -x_918 = lean_ctor_get(x_915, 1); -lean_inc(x_918); -lean_dec(x_915); -x_919 = lean_box(0); -x_920 = l_Lean_Tactic_FunInd_rwIfWith___closed__18; +lean_dec(x_914); +x_918 = lean_box(0); +x_919 = l_Lean_Tactic_FunInd_rwIfWith___closed__18; lean_inc(x_20); lean_inc_ref(x_19); lean_inc(x_18); lean_inc_ref(x_17); -lean_inc(x_917); -x_921 = l_Lean_Meta_mkEq(x_917, x_920, x_17, x_18, x_19, x_20, x_916); -if (lean_obj_tag(x_921) == 0) +lean_inc(x_916); +x_920 = l_Lean_Meta_mkEq(x_916, x_919, x_17, x_18, x_19, x_20, x_915); +if (lean_obj_tag(x_920) == 0) { -lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; uint8_t x_928; uint8_t x_929; lean_object* x_930; -x_922 = lean_ctor_get(x_921, 0); +lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; uint8_t x_927; uint8_t x_928; lean_object* x_929; +x_921 = lean_ctor_get(x_920, 0); +lean_inc(x_921); +x_922 = lean_ctor_get(x_920, 1); lean_inc(x_922); -x_923 = lean_ctor_get(x_921, 1); -lean_inc(x_923); -lean_dec_ref(x_921); +lean_dec_ref(x_920); lean_inc_ref(x_4); lean_inc(x_3); lean_inc(x_2); lean_inc_ref(x_6); lean_inc_ref(x_5); -x_924 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__17), 14, 6); -lean_closure_set(x_924, 0, x_5); -lean_closure_set(x_924, 1, x_6); -lean_closure_set(x_924, 2, x_2); -lean_closure_set(x_924, 3, x_3); -lean_closure_set(x_924, 4, x_4); -lean_closure_set(x_924, 5, x_662); -x_925 = lean_box(x_671); +x_923 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__18), 14, 6); +lean_closure_set(x_923, 0, x_5); +lean_closure_set(x_923, 1, x_6); +lean_closure_set(x_923, 2, x_2); +lean_closure_set(x_923, 3, x_3); +lean_closure_set(x_923, 4, x_4); +lean_closure_set(x_923, 5, x_661); +x_924 = lean_box(x_670); lean_inc_ref(x_7); -x_926 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__22___boxed), 11, 3); -lean_closure_set(x_926, 0, x_7); -lean_closure_set(x_926, 1, x_924); -lean_closure_set(x_926, 2, x_925); -x_927 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__20; +x_925 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__22___boxed), 11, 3); +lean_closure_set(x_925, 0, x_7); +lean_closure_set(x_925, 1, x_923); +lean_closure_set(x_925, 2, x_924); +x_926 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__20; +x_927 = 0; x_928 = 0; -x_929 = 0; lean_inc(x_20); lean_inc_ref(x_19); lean_inc(x_18); lean_inc_ref(x_17); -x_930 = l_Lean_Meta_withLocalDecl___at___Lean_Tactic_FunInd_buildInductionBody_spec__2___redArg(x_927, x_928, x_922, x_926, x_929, x_15, x_918, x_17, x_18, x_19, x_20, x_923); -if (lean_obj_tag(x_930) == 0) +x_929 = l_Lean_Meta_withLocalDecl___at___Lean_Tactic_FunInd_buildInductionBody_spec__2___redArg(x_926, x_927, x_921, x_925, x_928, x_15, x_917, x_17, x_18, x_19, x_20, x_922); +if (lean_obj_tag(x_929) == 0) { -lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; +lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; +x_930 = lean_ctor_get(x_929, 0); +lean_inc(x_930); x_931 = lean_ctor_get(x_930, 0); lean_inc(x_931); -x_932 = lean_ctor_get(x_931, 0); +x_932 = lean_ctor_get(x_929, 1); lean_inc(x_932); +lean_dec_ref(x_929); x_933 = lean_ctor_get(x_930, 1); lean_inc(x_933); -lean_dec_ref(x_930); -x_934 = lean_ctor_get(x_931, 1); +lean_dec(x_930); +x_934 = lean_ctor_get(x_931, 0); lean_inc(x_934); -lean_dec(x_931); -x_935 = lean_ctor_get(x_932, 0); +x_935 = lean_ctor_get(x_931, 1); lean_inc(x_935); -x_936 = lean_ctor_get(x_932, 1); -lean_inc(x_936); -lean_dec(x_932); -x_937 = l_Lean_Tactic_FunInd_rwIfWith___closed__21; +lean_dec(x_931); +x_936 = l_Lean_Tactic_FunInd_rwIfWith___closed__21; lean_inc(x_20); lean_inc_ref(x_19); lean_inc(x_18); lean_inc_ref(x_17); -lean_inc(x_917); -x_938 = l_Lean_Meta_mkEq(x_917, x_937, x_17, x_18, x_19, x_20, x_933); -if (lean_obj_tag(x_938) == 0) +lean_inc(x_916); +x_937 = l_Lean_Meta_mkEq(x_916, x_936, x_17, x_18, x_19, x_20, x_932); +if (lean_obj_tag(x_937) == 0) { -lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; -x_939 = lean_ctor_get(x_938, 0); +lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; +x_938 = lean_ctor_get(x_937, 0); +lean_inc(x_938); +x_939 = lean_ctor_get(x_937, 1); lean_inc(x_939); -x_940 = lean_ctor_get(x_938, 1); -lean_inc(x_940); -lean_dec_ref(x_938); -x_941 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__17), 14, 6); -lean_closure_set(x_941, 0, x_5); -lean_closure_set(x_941, 1, x_6); -lean_closure_set(x_941, 2, x_2); -lean_closure_set(x_941, 3, x_3); -lean_closure_set(x_941, 4, x_4); -lean_closure_set(x_941, 5, x_659); -x_942 = lean_box(x_671); +lean_dec_ref(x_937); +x_940 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__18), 14, 6); +lean_closure_set(x_940, 0, x_5); +lean_closure_set(x_940, 1, x_6); +lean_closure_set(x_940, 2, x_2); +lean_closure_set(x_940, 3, x_3); +lean_closure_set(x_940, 4, x_4); +lean_closure_set(x_940, 5, x_658); +x_941 = lean_box(x_670); lean_inc_ref(x_7); -x_943 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__22___boxed), 11, 3); -lean_closure_set(x_943, 0, x_7); -lean_closure_set(x_943, 1, x_941); -lean_closure_set(x_943, 2, x_942); +x_942 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__22___boxed), 11, 3); +lean_closure_set(x_942, 0, x_7); +lean_closure_set(x_942, 1, x_940); +lean_closure_set(x_942, 2, x_941); lean_inc(x_20); lean_inc_ref(x_19); lean_inc(x_18); lean_inc_ref(x_17); -x_944 = l_Lean_Meta_withLocalDecl___at___Lean_Tactic_FunInd_buildInductionBody_spec__2___redArg(x_927, x_928, x_939, x_943, x_929, x_936, x_934, x_17, x_18, x_19, x_20, x_940); -if (lean_obj_tag(x_944) == 0) +x_943 = l_Lean_Meta_withLocalDecl___at___Lean_Tactic_FunInd_buildInductionBody_spec__2___redArg(x_926, x_927, x_938, x_942, x_928, x_935, x_933, x_17, x_18, x_19, x_20, x_939); +if (lean_obj_tag(x_943) == 0) { -lean_object* x_945; lean_object* x_946; uint8_t x_947; +lean_object* x_944; lean_object* x_945; uint8_t x_946; +x_944 = lean_ctor_get(x_943, 0); +lean_inc(x_944); x_945 = lean_ctor_get(x_944, 0); lean_inc(x_945); -x_946 = lean_ctor_get(x_945, 0); -lean_inc(x_946); -x_947 = !lean_is_exclusive(x_944); -if (x_947 == 0) +x_946 = !lean_is_exclusive(x_943); +if (x_946 == 0) { -lean_object* x_948; lean_object* x_949; uint8_t x_950; -x_948 = lean_ctor_get(x_944, 1); -x_949 = lean_ctor_get(x_944, 0); -lean_dec(x_949); -x_950 = !lean_is_exclusive(x_945); -if (x_950 == 0) +lean_object* x_947; lean_object* x_948; uint8_t x_949; +x_947 = lean_ctor_get(x_943, 1); +x_948 = lean_ctor_get(x_943, 0); +lean_dec(x_948); +x_949 = !lean_is_exclusive(x_944); +if (x_949 == 0) { -lean_object* x_951; lean_object* x_952; uint8_t x_953; -x_951 = lean_ctor_get(x_945, 1); -x_952 = lean_ctor_get(x_945, 0); -lean_dec(x_952); -x_953 = !lean_is_exclusive(x_946); -if (x_953 == 0) +lean_object* x_950; lean_object* x_951; uint8_t x_952; +x_950 = lean_ctor_get(x_944, 1); +x_951 = lean_ctor_get(x_944, 0); +lean_dec(x_951); +x_952 = !lean_is_exclusive(x_945); +if (x_952 == 0) { -lean_object* x_954; lean_object* x_955; lean_object* x_956; -x_954 = lean_ctor_get(x_946, 0); -x_955 = lean_ctor_get(x_946, 1); +lean_object* x_953; lean_object* x_954; lean_object* x_955; +x_953 = lean_ctor_get(x_945, 0); +x_954 = lean_ctor_get(x_945, 1); lean_inc_ref(x_7); -x_956 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_948); -if (lean_obj_tag(x_956) == 0) +x_955 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_947); +if (lean_obj_tag(x_955) == 0) { -uint8_t x_957; -x_957 = !lean_is_exclusive(x_956); -if (x_957 == 0) +uint8_t x_956; +x_956 = !lean_is_exclusive(x_955); +if (x_956 == 0) { -lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; -x_958 = lean_ctor_get(x_956, 0); -x_959 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__22; -lean_ctor_set_tag(x_944, 1); -lean_ctor_set(x_944, 1, x_919); -lean_ctor_set(x_944, 0, x_958); -x_960 = l_Lean_Expr_const___override(x_959, x_944); -x_961 = l_Lean_mkApp4(x_960, x_7, x_917, x_935, x_954); -lean_ctor_set(x_946, 0, x_961); -lean_ctor_set(x_956, 0, x_945); -return x_956; +lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; +x_957 = lean_ctor_get(x_955, 0); +x_958 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__22; +lean_ctor_set_tag(x_943, 1); +lean_ctor_set(x_943, 1, x_918); +lean_ctor_set(x_943, 0, x_957); +x_959 = l_Lean_Expr_const___override(x_958, x_943); +x_960 = l_Lean_mkApp4(x_959, x_7, x_916, x_934, x_953); +lean_ctor_set(x_945, 0, x_960); +lean_ctor_set(x_955, 0, x_944); +return x_955; } else { -lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; -x_962 = lean_ctor_get(x_956, 0); -x_963 = lean_ctor_get(x_956, 1); -lean_inc(x_963); +lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; +x_961 = lean_ctor_get(x_955, 0); +x_962 = lean_ctor_get(x_955, 1); lean_inc(x_962); -lean_dec(x_956); -x_964 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__22; -lean_ctor_set_tag(x_944, 1); -lean_ctor_set(x_944, 1, x_919); -lean_ctor_set(x_944, 0, x_962); -x_965 = l_Lean_Expr_const___override(x_964, x_944); -x_966 = l_Lean_mkApp4(x_965, x_7, x_917, x_935, x_954); -lean_ctor_set(x_946, 0, x_966); -x_967 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_967, 0, x_945); -lean_ctor_set(x_967, 1, x_963); -return x_967; -} -} -else -{ -uint8_t x_968; -lean_free_object(x_946); +lean_inc(x_961); lean_dec(x_955); +x_963 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__22; +lean_ctor_set_tag(x_943, 1); +lean_ctor_set(x_943, 1, x_918); +lean_ctor_set(x_943, 0, x_961); +x_964 = l_Lean_Expr_const___override(x_963, x_943); +x_965 = l_Lean_mkApp4(x_964, x_7, x_916, x_934, x_953); +lean_ctor_set(x_945, 0, x_965); +x_966 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_966, 0, x_944); +lean_ctor_set(x_966, 1, x_962); +return x_966; +} +} +else +{ +uint8_t x_967; +lean_free_object(x_945); lean_dec(x_954); -lean_free_object(x_945); -lean_dec(x_951); +lean_dec(x_953); lean_free_object(x_944); -lean_dec(x_935); -lean_dec(x_917); +lean_dec(x_950); +lean_free_object(x_943); +lean_dec(x_934); +lean_dec(x_916); lean_dec_ref(x_7); -x_968 = !lean_is_exclusive(x_956); -if (x_968 == 0) +x_967 = !lean_is_exclusive(x_955); +if (x_967 == 0) { -return x_956; +return x_955; } else { -lean_object* x_969; lean_object* x_970; lean_object* x_971; -x_969 = lean_ctor_get(x_956, 0); -x_970 = lean_ctor_get(x_956, 1); -lean_inc(x_970); +lean_object* x_968; lean_object* x_969; lean_object* x_970; +x_968 = lean_ctor_get(x_955, 0); +x_969 = lean_ctor_get(x_955, 1); lean_inc(x_969); -lean_dec(x_956); -x_971 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_971, 0, x_969); -lean_ctor_set(x_971, 1, x_970); -return x_971; +lean_inc(x_968); +lean_dec(x_955); +x_970 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_970, 0, x_968); +lean_ctor_set(x_970, 1, x_969); +return x_970; } } } else { -lean_object* x_972; lean_object* x_973; lean_object* x_974; -x_972 = lean_ctor_get(x_946, 0); -x_973 = lean_ctor_get(x_946, 1); -lean_inc(x_973); +lean_object* x_971; lean_object* x_972; lean_object* x_973; +x_971 = lean_ctor_get(x_945, 0); +x_972 = lean_ctor_get(x_945, 1); lean_inc(x_972); -lean_dec(x_946); -lean_inc_ref(x_7); -x_974 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_948); -if (lean_obj_tag(x_974) == 0) -{ -lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; -x_975 = lean_ctor_get(x_974, 0); -lean_inc(x_975); -x_976 = lean_ctor_get(x_974, 1); -lean_inc(x_976); -if (lean_is_exclusive(x_974)) { - lean_ctor_release(x_974, 0); - lean_ctor_release(x_974, 1); - x_977 = x_974; -} else { - lean_dec_ref(x_974); - x_977 = lean_box(0); -} -x_978 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__22; -lean_ctor_set_tag(x_944, 1); -lean_ctor_set(x_944, 1, x_919); -lean_ctor_set(x_944, 0, x_975); -x_979 = l_Lean_Expr_const___override(x_978, x_944); -x_980 = l_Lean_mkApp4(x_979, x_7, x_917, x_935, x_972); -x_981 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_981, 0, x_980); -lean_ctor_set(x_981, 1, x_973); -lean_ctor_set(x_945, 0, x_981); -if (lean_is_scalar(x_977)) { - x_982 = lean_alloc_ctor(0, 2, 0); -} else { - x_982 = x_977; -} -lean_ctor_set(x_982, 0, x_945); -lean_ctor_set(x_982, 1, x_976); -return x_982; -} -else -{ -lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; -lean_dec(x_973); -lean_dec(x_972); -lean_free_object(x_945); -lean_dec(x_951); -lean_free_object(x_944); -lean_dec(x_935); -lean_dec(x_917); -lean_dec_ref(x_7); -x_983 = lean_ctor_get(x_974, 0); -lean_inc(x_983); -x_984 = lean_ctor_get(x_974, 1); -lean_inc(x_984); -if (lean_is_exclusive(x_974)) { - lean_ctor_release(x_974, 0); - lean_ctor_release(x_974, 1); - x_985 = x_974; -} else { - lean_dec_ref(x_974); - x_985 = lean_box(0); -} -if (lean_is_scalar(x_985)) { - x_986 = lean_alloc_ctor(1, 2, 0); -} else { - x_986 = x_985; -} -lean_ctor_set(x_986, 0, x_983); -lean_ctor_set(x_986, 1, x_984); -return x_986; -} -} -} -else -{ -lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; -x_987 = lean_ctor_get(x_945, 1); -lean_inc(x_987); +lean_inc(x_971); lean_dec(x_945); -x_988 = lean_ctor_get(x_946, 0); -lean_inc(x_988); -x_989 = lean_ctor_get(x_946, 1); -lean_inc(x_989); -if (lean_is_exclusive(x_946)) { - lean_ctor_release(x_946, 0); - lean_ctor_release(x_946, 1); - x_990 = x_946; -} else { - lean_dec_ref(x_946); - x_990 = lean_box(0); -} lean_inc_ref(x_7); -x_991 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_948); -if (lean_obj_tag(x_991) == 0) +x_973 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_947); +if (lean_obj_tag(x_973) == 0) { -lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; -x_992 = lean_ctor_get(x_991, 0); -lean_inc(x_992); -x_993 = lean_ctor_get(x_991, 1); -lean_inc(x_993); -if (lean_is_exclusive(x_991)) { - lean_ctor_release(x_991, 0); - lean_ctor_release(x_991, 1); - x_994 = x_991; +lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; +x_974 = lean_ctor_get(x_973, 0); +lean_inc(x_974); +x_975 = lean_ctor_get(x_973, 1); +lean_inc(x_975); +if (lean_is_exclusive(x_973)) { + lean_ctor_release(x_973, 0); + lean_ctor_release(x_973, 1); + x_976 = x_973; } else { - lean_dec_ref(x_991); - x_994 = lean_box(0); + lean_dec_ref(x_973); + x_976 = lean_box(0); } -x_995 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__22; -lean_ctor_set_tag(x_944, 1); -lean_ctor_set(x_944, 1, x_919); -lean_ctor_set(x_944, 0, x_992); -x_996 = l_Lean_Expr_const___override(x_995, x_944); -x_997 = l_Lean_mkApp4(x_996, x_7, x_917, x_935, x_988); -if (lean_is_scalar(x_990)) { - x_998 = lean_alloc_ctor(0, 2, 0); +x_977 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__22; +lean_ctor_set_tag(x_943, 1); +lean_ctor_set(x_943, 1, x_918); +lean_ctor_set(x_943, 0, x_974); +x_978 = l_Lean_Expr_const___override(x_977, x_943); +x_979 = l_Lean_mkApp4(x_978, x_7, x_916, x_934, x_971); +x_980 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_980, 0, x_979); +lean_ctor_set(x_980, 1, x_972); +lean_ctor_set(x_944, 0, x_980); +if (lean_is_scalar(x_976)) { + x_981 = lean_alloc_ctor(0, 2, 0); } else { - x_998 = x_990; + x_981 = x_976; } -lean_ctor_set(x_998, 0, x_997); -lean_ctor_set(x_998, 1, x_989); -x_999 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_999, 0, x_998); -lean_ctor_set(x_999, 1, x_987); -if (lean_is_scalar(x_994)) { - x_1000 = lean_alloc_ctor(0, 2, 0); -} else { - x_1000 = x_994; -} -lean_ctor_set(x_1000, 0, x_999); -lean_ctor_set(x_1000, 1, x_993); -return x_1000; +lean_ctor_set(x_981, 0, x_944); +lean_ctor_set(x_981, 1, x_975); +return x_981; } else { -lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; -lean_dec(x_990); -lean_dec(x_989); -lean_dec(x_988); -lean_dec(x_987); +lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; +lean_dec(x_972); +lean_dec(x_971); lean_free_object(x_944); -lean_dec(x_935); -lean_dec(x_917); +lean_dec(x_950); +lean_free_object(x_943); +lean_dec(x_934); +lean_dec(x_916); lean_dec_ref(x_7); -x_1001 = lean_ctor_get(x_991, 0); -lean_inc(x_1001); -x_1002 = lean_ctor_get(x_991, 1); -lean_inc(x_1002); -if (lean_is_exclusive(x_991)) { - lean_ctor_release(x_991, 0); - lean_ctor_release(x_991, 1); - x_1003 = x_991; +x_982 = lean_ctor_get(x_973, 0); +lean_inc(x_982); +x_983 = lean_ctor_get(x_973, 1); +lean_inc(x_983); +if (lean_is_exclusive(x_973)) { + lean_ctor_release(x_973, 0); + lean_ctor_release(x_973, 1); + x_984 = x_973; } else { - lean_dec_ref(x_991); - x_1003 = lean_box(0); + lean_dec_ref(x_973); + x_984 = lean_box(0); } -if (lean_is_scalar(x_1003)) { - x_1004 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_984)) { + x_985 = lean_alloc_ctor(1, 2, 0); } else { - x_1004 = x_1003; + x_985 = x_984; } -lean_ctor_set(x_1004, 0, x_1001); -lean_ctor_set(x_1004, 1, x_1002); -return x_1004; +lean_ctor_set(x_985, 0, x_982); +lean_ctor_set(x_985, 1, x_983); +return x_985; } } } else { -lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; -x_1005 = lean_ctor_get(x_944, 1); -lean_inc(x_1005); +lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; +x_986 = lean_ctor_get(x_944, 1); +lean_inc(x_986); lean_dec(x_944); -x_1006 = lean_ctor_get(x_945, 1); -lean_inc(x_1006); +x_987 = lean_ctor_get(x_945, 0); +lean_inc(x_987); +x_988 = lean_ctor_get(x_945, 1); +lean_inc(x_988); if (lean_is_exclusive(x_945)) { lean_ctor_release(x_945, 0); lean_ctor_release(x_945, 1); - x_1007 = x_945; + x_989 = x_945; } else { lean_dec_ref(x_945); - x_1007 = lean_box(0); -} -x_1008 = lean_ctor_get(x_946, 0); -lean_inc(x_1008); -x_1009 = lean_ctor_get(x_946, 1); -lean_inc(x_1009); -if (lean_is_exclusive(x_946)) { - lean_ctor_release(x_946, 0); - lean_ctor_release(x_946, 1); - x_1010 = x_946; -} else { - lean_dec_ref(x_946); - x_1010 = lean_box(0); + x_989 = lean_box(0); } lean_inc_ref(x_7); -x_1011 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_1005); -if (lean_obj_tag(x_1011) == 0) +x_990 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_947); +if (lean_obj_tag(x_990) == 0) { -lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; -x_1012 = lean_ctor_get(x_1011, 0); -lean_inc(x_1012); -x_1013 = lean_ctor_get(x_1011, 1); -lean_inc(x_1013); -if (lean_is_exclusive(x_1011)) { - lean_ctor_release(x_1011, 0); - lean_ctor_release(x_1011, 1); - x_1014 = x_1011; +lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; +x_991 = lean_ctor_get(x_990, 0); +lean_inc(x_991); +x_992 = lean_ctor_get(x_990, 1); +lean_inc(x_992); +if (lean_is_exclusive(x_990)) { + lean_ctor_release(x_990, 0); + lean_ctor_release(x_990, 1); + x_993 = x_990; } else { - lean_dec_ref(x_1011); - x_1014 = lean_box(0); + lean_dec_ref(x_990); + x_993 = lean_box(0); } -x_1015 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__22; -x_1016 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1016, 0, x_1012); -lean_ctor_set(x_1016, 1, x_919); -x_1017 = l_Lean_Expr_const___override(x_1015, x_1016); -x_1018 = l_Lean_mkApp4(x_1017, x_7, x_917, x_935, x_1008); -if (lean_is_scalar(x_1010)) { - x_1019 = lean_alloc_ctor(0, 2, 0); +x_994 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__22; +lean_ctor_set_tag(x_943, 1); +lean_ctor_set(x_943, 1, x_918); +lean_ctor_set(x_943, 0, x_991); +x_995 = l_Lean_Expr_const___override(x_994, x_943); +x_996 = l_Lean_mkApp4(x_995, x_7, x_916, x_934, x_987); +if (lean_is_scalar(x_989)) { + x_997 = lean_alloc_ctor(0, 2, 0); } else { - x_1019 = x_1010; + x_997 = x_989; } -lean_ctor_set(x_1019, 0, x_1018); -lean_ctor_set(x_1019, 1, x_1009); -if (lean_is_scalar(x_1007)) { - x_1020 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_997, 0, x_996); +lean_ctor_set(x_997, 1, x_988); +x_998 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_998, 0, x_997); +lean_ctor_set(x_998, 1, x_986); +if (lean_is_scalar(x_993)) { + x_999 = lean_alloc_ctor(0, 2, 0); } else { - x_1020 = x_1007; + x_999 = x_993; } -lean_ctor_set(x_1020, 0, x_1019); -lean_ctor_set(x_1020, 1, x_1006); -if (lean_is_scalar(x_1014)) { - x_1021 = lean_alloc_ctor(0, 2, 0); -} else { - x_1021 = x_1014; -} -lean_ctor_set(x_1021, 0, x_1020); -lean_ctor_set(x_1021, 1, x_1013); -return x_1021; +lean_ctor_set(x_999, 0, x_998); +lean_ctor_set(x_999, 1, x_992); +return x_999; } else { -lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; -lean_dec(x_1010); +lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; +lean_dec(x_989); +lean_dec(x_988); +lean_dec(x_987); +lean_dec(x_986); +lean_free_object(x_943); +lean_dec(x_934); +lean_dec(x_916); +lean_dec_ref(x_7); +x_1000 = lean_ctor_get(x_990, 0); +lean_inc(x_1000); +x_1001 = lean_ctor_get(x_990, 1); +lean_inc(x_1001); +if (lean_is_exclusive(x_990)) { + lean_ctor_release(x_990, 0); + lean_ctor_release(x_990, 1); + x_1002 = x_990; +} else { + lean_dec_ref(x_990); + x_1002 = lean_box(0); +} +if (lean_is_scalar(x_1002)) { + x_1003 = lean_alloc_ctor(1, 2, 0); +} else { + x_1003 = x_1002; +} +lean_ctor_set(x_1003, 0, x_1000); +lean_ctor_set(x_1003, 1, x_1001); +return x_1003; +} +} +} +else +{ +lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; +x_1004 = lean_ctor_get(x_943, 1); +lean_inc(x_1004); +lean_dec(x_943); +x_1005 = lean_ctor_get(x_944, 1); +lean_inc(x_1005); +if (lean_is_exclusive(x_944)) { + lean_ctor_release(x_944, 0); + lean_ctor_release(x_944, 1); + x_1006 = x_944; +} else { + lean_dec_ref(x_944); + x_1006 = lean_box(0); +} +x_1007 = lean_ctor_get(x_945, 0); +lean_inc(x_1007); +x_1008 = lean_ctor_get(x_945, 1); +lean_inc(x_1008); +if (lean_is_exclusive(x_945)) { + lean_ctor_release(x_945, 0); + lean_ctor_release(x_945, 1); + x_1009 = x_945; +} else { + lean_dec_ref(x_945); + x_1009 = lean_box(0); +} +lean_inc_ref(x_7); +x_1010 = l_Lean_Meta_getLevel(x_7, x_17, x_18, x_19, x_20, x_1004); +if (lean_obj_tag(x_1010) == 0) +{ +lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; +x_1011 = lean_ctor_get(x_1010, 0); +lean_inc(x_1011); +x_1012 = lean_ctor_get(x_1010, 1); +lean_inc(x_1012); +if (lean_is_exclusive(x_1010)) { + lean_ctor_release(x_1010, 0); + lean_ctor_release(x_1010, 1); + x_1013 = x_1010; +} else { + lean_dec_ref(x_1010); + x_1013 = lean_box(0); +} +x_1014 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__22; +x_1015 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1015, 0, x_1011); +lean_ctor_set(x_1015, 1, x_918); +x_1016 = l_Lean_Expr_const___override(x_1014, x_1015); +x_1017 = l_Lean_mkApp4(x_1016, x_7, x_916, x_934, x_1007); +if (lean_is_scalar(x_1009)) { + x_1018 = lean_alloc_ctor(0, 2, 0); +} else { + x_1018 = x_1009; +} +lean_ctor_set(x_1018, 0, x_1017); +lean_ctor_set(x_1018, 1, x_1008); +if (lean_is_scalar(x_1006)) { + x_1019 = lean_alloc_ctor(0, 2, 0); +} else { + x_1019 = x_1006; +} +lean_ctor_set(x_1019, 0, x_1018); +lean_ctor_set(x_1019, 1, x_1005); +if (lean_is_scalar(x_1013)) { + x_1020 = lean_alloc_ctor(0, 2, 0); +} else { + x_1020 = x_1013; +} +lean_ctor_set(x_1020, 0, x_1019); +lean_ctor_set(x_1020, 1, x_1012); +return x_1020; +} +else +{ +lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_dec(x_1009); lean_dec(x_1008); lean_dec(x_1007); lean_dec(x_1006); -lean_dec(x_935); -lean_dec(x_917); +lean_dec(x_1005); +lean_dec(x_934); +lean_dec(x_916); lean_dec_ref(x_7); -x_1022 = lean_ctor_get(x_1011, 0); +x_1021 = lean_ctor_get(x_1010, 0); +lean_inc(x_1021); +x_1022 = lean_ctor_get(x_1010, 1); lean_inc(x_1022); -x_1023 = lean_ctor_get(x_1011, 1); -lean_inc(x_1023); -if (lean_is_exclusive(x_1011)) { - lean_ctor_release(x_1011, 0); - lean_ctor_release(x_1011, 1); - x_1024 = x_1011; +if (lean_is_exclusive(x_1010)) { + lean_ctor_release(x_1010, 0); + lean_ctor_release(x_1010, 1); + x_1023 = x_1010; } else { - lean_dec_ref(x_1011); - x_1024 = lean_box(0); + lean_dec_ref(x_1010); + x_1023 = lean_box(0); } -if (lean_is_scalar(x_1024)) { - x_1025 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1023)) { + x_1024 = lean_alloc_ctor(1, 2, 0); } else { - x_1025 = x_1024; + x_1024 = x_1023; } -lean_ctor_set(x_1025, 0, x_1022); -lean_ctor_set(x_1025, 1, x_1023); -return x_1025; +lean_ctor_set(x_1024, 0, x_1021); +lean_ctor_set(x_1024, 1, x_1022); +return x_1024; } } } else { -lean_dec(x_935); -lean_dec(x_917); +lean_dec(x_934); +lean_dec(x_916); lean_dec(x_20); lean_dec_ref(x_19); lean_dec(x_18); lean_dec_ref(x_17); lean_dec_ref(x_7); -return x_944; +return x_943; } } else { -uint8_t x_1026; -lean_dec(x_936); +uint8_t x_1025; lean_dec(x_935); lean_dec(x_934); -lean_dec(x_917); -lean_dec_ref(x_659); +lean_dec(x_933); +lean_dec(x_916); +lean_dec_ref(x_658); lean_dec(x_20); lean_dec_ref(x_19); lean_dec(x_18); @@ -76487,30 +76492,30 @@ lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); -x_1026 = !lean_is_exclusive(x_938); -if (x_1026 == 0) +x_1025 = !lean_is_exclusive(x_937); +if (x_1025 == 0) { -return x_938; +return x_937; } else { -lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; -x_1027 = lean_ctor_get(x_938, 0); -x_1028 = lean_ctor_get(x_938, 1); -lean_inc(x_1028); +lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; +x_1026 = lean_ctor_get(x_937, 0); +x_1027 = lean_ctor_get(x_937, 1); lean_inc(x_1027); -lean_dec(x_938); -x_1029 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1029, 0, x_1027); -lean_ctor_set(x_1029, 1, x_1028); -return x_1029; +lean_inc(x_1026); +lean_dec(x_937); +x_1028 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1028, 0, x_1026); +lean_ctor_set(x_1028, 1, x_1027); +return x_1028; } } } else { -lean_dec(x_917); -lean_dec_ref(x_659); +lean_dec(x_916); +lean_dec_ref(x_658); lean_dec(x_20); lean_dec_ref(x_19); lean_dec(x_18); @@ -76521,16 +76526,16 @@ lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); -return x_930; +return x_929; } } else { -uint8_t x_1030; -lean_dec(x_918); +uint8_t x_1029; lean_dec(x_917); -lean_dec_ref(x_662); -lean_dec_ref(x_659); +lean_dec(x_916); +lean_dec_ref(x_661); +lean_dec_ref(x_658); lean_dec(x_20); lean_dec_ref(x_19); lean_dec(x_18); @@ -76542,31 +76547,31 @@ lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); -x_1030 = !lean_is_exclusive(x_921); -if (x_1030 == 0) +x_1029 = !lean_is_exclusive(x_920); +if (x_1029 == 0) { -return x_921; +return x_920; } else { -lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; -x_1031 = lean_ctor_get(x_921, 0); -x_1032 = lean_ctor_get(x_921, 1); -lean_inc(x_1032); +lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; +x_1030 = lean_ctor_get(x_920, 0); +x_1031 = lean_ctor_get(x_920, 1); lean_inc(x_1031); -lean_dec(x_921); -x_1033 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1033, 0, x_1031); -lean_ctor_set(x_1033, 1, x_1032); -return x_1033; +lean_inc(x_1030); +lean_dec(x_920); +x_1032 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1032, 0, x_1030); +lean_ctor_set(x_1032, 1, x_1031); +return x_1032; } } } else { -uint8_t x_1034; -lean_dec_ref(x_662); -lean_dec_ref(x_659); +uint8_t x_1033; +lean_dec_ref(x_661); +lean_dec_ref(x_658); lean_dec(x_20); lean_dec_ref(x_19); lean_dec(x_18); @@ -76578,23 +76583,23 @@ lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); -x_1034 = !lean_is_exclusive(x_914); -if (x_1034 == 0) +x_1033 = !lean_is_exclusive(x_913); +if (x_1033 == 0) { -return x_914; +return x_913; } else { -lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; -x_1035 = lean_ctor_get(x_914, 0); -x_1036 = lean_ctor_get(x_914, 1); -lean_inc(x_1036); +lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; +x_1034 = lean_ctor_get(x_913, 0); +x_1035 = lean_ctor_get(x_913, 1); lean_inc(x_1035); -lean_dec(x_914); -x_1037 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1037, 0, x_1035); -lean_ctor_set(x_1037, 1, x_1036); -return x_1037; +lean_inc(x_1034); +lean_dec(x_913); +x_1036 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1036, 0, x_1034); +lean_ctor_set(x_1036, 1, x_1035); +return x_1036; } } } @@ -76602,121 +76607,121 @@ return x_1037; } } } -block_656: +block_655: { -lean_object* x_606; +lean_object* x_605; lean_inc_ref(x_1); -x_606 = l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(x_1, x_603, x_599); -if (lean_obj_tag(x_606) == 0) +x_605 = l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(x_1, x_602, x_598); +if (lean_obj_tag(x_605) == 0) { -lean_object* x_607; lean_object* x_608; lean_object* x_609; uint8_t x_610; -x_607 = lean_ctor_get(x_606, 0); +lean_object* x_606; lean_object* x_607; lean_object* x_608; uint8_t x_609; +x_606 = lean_ctor_get(x_605, 0); +lean_inc(x_606); +x_607 = lean_ctor_get(x_605, 1); lean_inc(x_607); -x_608 = lean_ctor_get(x_606, 1); -lean_inc(x_608); -lean_dec_ref(x_606); -x_609 = l_Lean_Expr_cleanupAnnotations(x_607); -x_610 = l_Lean_Expr_isApp(x_609); -if (x_610 == 0) +lean_dec_ref(x_605); +x_608 = l_Lean_Expr_cleanupAnnotations(x_606); +x_609 = l_Lean_Expr_isApp(x_608); +if (x_609 == 0) { -lean_dec_ref(x_609); +lean_dec_ref(x_608); +x_581 = x_599; x_582 = x_600; x_583 = x_601; x_584 = x_602; x_585 = x_603; x_586 = x_604; -x_587 = x_605; -x_588 = x_608; -goto block_596; +x_587 = x_607; +goto block_595; } else { -lean_object* x_611; lean_object* x_612; uint8_t x_613; -x_611 = lean_ctor_get(x_609, 1); -lean_inc_ref(x_611); -x_612 = l_Lean_Expr_appFnCleanup___redArg(x_609); -x_613 = l_Lean_Expr_isApp(x_612); -if (x_613 == 0) +lean_object* x_610; lean_object* x_611; uint8_t x_612; +x_610 = lean_ctor_get(x_608, 1); +lean_inc_ref(x_610); +x_611 = l_Lean_Expr_appFnCleanup___redArg(x_608); +x_612 = l_Lean_Expr_isApp(x_611); +if (x_612 == 0) { -lean_dec_ref(x_612); lean_dec_ref(x_611); +lean_dec_ref(x_610); +x_581 = x_599; x_582 = x_600; x_583 = x_601; x_584 = x_602; x_585 = x_603; x_586 = x_604; -x_587 = x_605; -x_588 = x_608; -goto block_596; +x_587 = x_607; +goto block_595; } else { -lean_object* x_614; lean_object* x_615; lean_object* x_616; uint8_t x_617; -x_614 = lean_ctor_get(x_612, 1); -lean_inc_ref(x_614); -x_615 = l_Lean_Expr_appFnCleanup___redArg(x_612); -x_616 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__16; -x_617 = l_Lean_Expr_isConstOf(x_615, x_616); +lean_object* x_613; lean_object* x_614; lean_object* x_615; uint8_t x_616; +x_613 = lean_ctor_get(x_611, 1); +lean_inc_ref(x_613); +x_614 = l_Lean_Expr_appFnCleanup___redArg(x_611); +x_615 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__16; +x_616 = l_Lean_Expr_isConstOf(x_614, x_615); +if (x_616 == 0) +{ +uint8_t x_617; +x_617 = l_Lean_Expr_isApp(x_614); if (x_617 == 0) { -uint8_t x_618; -x_618 = l_Lean_Expr_isApp(x_615); -if (x_618 == 0) -{ -lean_dec_ref(x_615); lean_dec_ref(x_614); -lean_dec_ref(x_611); +lean_dec_ref(x_613); +lean_dec_ref(x_610); +x_581 = x_599; x_582 = x_600; x_583 = x_601; x_584 = x_602; x_585 = x_603; x_586 = x_604; -x_587 = x_605; -x_588 = x_608; -goto block_596; +x_587 = x_607; +goto block_595; } else { -lean_object* x_619; uint8_t x_620; -x_619 = l_Lean_Expr_appFnCleanup___redArg(x_615); -x_620 = l_Lean_Expr_isApp(x_619); -if (x_620 == 0) +lean_object* x_618; uint8_t x_619; +x_618 = l_Lean_Expr_appFnCleanup___redArg(x_614); +x_619 = l_Lean_Expr_isApp(x_618); +if (x_619 == 0) { -lean_dec_ref(x_619); -lean_dec_ref(x_614); -lean_dec_ref(x_611); +lean_dec_ref(x_618); +lean_dec_ref(x_613); +lean_dec_ref(x_610); +x_581 = x_599; x_582 = x_600; x_583 = x_601; x_584 = x_602; x_585 = x_603; x_586 = x_604; -x_587 = x_605; -x_588 = x_608; -goto block_596; +x_587 = x_607; +goto block_595; } else { -lean_object* x_621; lean_object* x_622; uint8_t x_623; -x_621 = l_Lean_Expr_appFnCleanup___redArg(x_619); -x_622 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__18; -x_623 = l_Lean_Expr_isConstOf(x_621, x_622); -lean_dec_ref(x_621); -if (x_623 == 0) +lean_object* x_620; lean_object* x_621; uint8_t x_622; +x_620 = l_Lean_Expr_appFnCleanup___redArg(x_618); +x_621 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__18; +x_622 = l_Lean_Expr_isConstOf(x_620, x_621); +lean_dec_ref(x_620); +if (x_622 == 0) { -lean_dec_ref(x_614); -lean_dec_ref(x_611); +lean_dec_ref(x_613); +lean_dec_ref(x_610); +x_581 = x_599; x_582 = x_600; x_583 = x_601; x_584 = x_602; x_585 = x_603; x_586 = x_604; -x_587 = x_605; -x_588 = x_608; -goto block_596; +x_587 = x_607; +goto block_595; } else { -lean_object* x_624; +lean_object* x_623; lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -76730,66 +76735,66 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_624 = l_Lean_Meta_mkAbsurd(x_7, x_614, x_611, x_602, x_603, x_604, x_605, x_608); -if (lean_obj_tag(x_624) == 0) +x_623 = l_Lean_Meta_mkAbsurd(x_7, x_613, x_610, x_601, x_602, x_603, x_604, x_607); +if (lean_obj_tag(x_623) == 0) { -uint8_t x_625; -x_625 = !lean_is_exclusive(x_624); -if (x_625 == 0) +uint8_t x_624; +x_624 = !lean_is_exclusive(x_623); +if (x_624 == 0) { -lean_object* x_626; lean_object* x_627; lean_object* x_628; -x_626 = lean_ctor_get(x_624, 0); +lean_object* x_625; lean_object* x_626; lean_object* x_627; +x_625 = lean_ctor_get(x_623, 0); +x_626 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_626, 0, x_625); +lean_ctor_set(x_626, 1, x_599); x_627 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_627, 0, x_626); lean_ctor_set(x_627, 1, x_600); -x_628 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_628, 0, x_627); -lean_ctor_set(x_628, 1, x_601); -lean_ctor_set(x_624, 0, x_628); -return x_624; +lean_ctor_set(x_623, 0, x_627); +return x_623; } else { -lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; -x_629 = lean_ctor_get(x_624, 0); -x_630 = lean_ctor_get(x_624, 1); -lean_inc(x_630); +lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; +x_628 = lean_ctor_get(x_623, 0); +x_629 = lean_ctor_get(x_623, 1); lean_inc(x_629); -lean_dec(x_624); +lean_inc(x_628); +lean_dec(x_623); +x_630 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_630, 0, x_628); +lean_ctor_set(x_630, 1, x_599); x_631 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_631, 0, x_629); +lean_ctor_set(x_631, 0, x_630); lean_ctor_set(x_631, 1, x_600); x_632 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_632, 0, x_631); -lean_ctor_set(x_632, 1, x_601); -x_633 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_633, 0, x_632); -lean_ctor_set(x_633, 1, x_630); -return x_633; +lean_ctor_set(x_632, 1, x_629); +return x_632; } } else { -uint8_t x_634; -lean_dec_ref(x_601); +uint8_t x_633; lean_dec_ref(x_600); -x_634 = !lean_is_exclusive(x_624); -if (x_634 == 0) +lean_dec_ref(x_599); +x_633 = !lean_is_exclusive(x_623); +if (x_633 == 0) { -return x_624; +return x_623; } else { -lean_object* x_635; lean_object* x_636; lean_object* x_637; -x_635 = lean_ctor_get(x_624, 0); -x_636 = lean_ctor_get(x_624, 1); -lean_inc(x_636); +lean_object* x_634; lean_object* x_635; lean_object* x_636; +x_634 = lean_ctor_get(x_623, 0); +x_635 = lean_ctor_get(x_623, 1); lean_inc(x_635); -lean_dec(x_624); -x_637 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_637, 0, x_635); -lean_ctor_set(x_637, 1, x_636); -return x_637; +lean_inc(x_634); +lean_dec(x_623); +x_636 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_636, 0, x_634); +lean_ctor_set(x_636, 1, x_635); +return x_636; } } } @@ -76798,9 +76803,9 @@ return x_637; } else { -lean_object* x_638; -lean_dec_ref(x_615); +lean_object* x_637; lean_dec_ref(x_614); +lean_dec_ref(x_613); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -76814,66 +76819,66 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_638 = l_Lean_Meta_mkFalseElim(x_7, x_611, x_602, x_603, x_604, x_605, x_608); -if (lean_obj_tag(x_638) == 0) +x_637 = l_Lean_Meta_mkFalseElim(x_7, x_610, x_601, x_602, x_603, x_604, x_607); +if (lean_obj_tag(x_637) == 0) { -uint8_t x_639; -x_639 = !lean_is_exclusive(x_638); -if (x_639 == 0) +uint8_t x_638; +x_638 = !lean_is_exclusive(x_637); +if (x_638 == 0) { -lean_object* x_640; lean_object* x_641; lean_object* x_642; -x_640 = lean_ctor_get(x_638, 0); +lean_object* x_639; lean_object* x_640; lean_object* x_641; +x_639 = lean_ctor_get(x_637, 0); +x_640 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_640, 0, x_639); +lean_ctor_set(x_640, 1, x_599); x_641 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_641, 0, x_640); lean_ctor_set(x_641, 1, x_600); -x_642 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_642, 0, x_641); -lean_ctor_set(x_642, 1, x_601); -lean_ctor_set(x_638, 0, x_642); -return x_638; +lean_ctor_set(x_637, 0, x_641); +return x_637; } else { -lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; -x_643 = lean_ctor_get(x_638, 0); -x_644 = lean_ctor_get(x_638, 1); -lean_inc(x_644); +lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; +x_642 = lean_ctor_get(x_637, 0); +x_643 = lean_ctor_get(x_637, 1); lean_inc(x_643); -lean_dec(x_638); +lean_inc(x_642); +lean_dec(x_637); +x_644 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_644, 0, x_642); +lean_ctor_set(x_644, 1, x_599); x_645 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_645, 0, x_643); +lean_ctor_set(x_645, 0, x_644); lean_ctor_set(x_645, 1, x_600); x_646 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_646, 0, x_645); -lean_ctor_set(x_646, 1, x_601); -x_647 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_647, 0, x_646); -lean_ctor_set(x_647, 1, x_644); -return x_647; +lean_ctor_set(x_646, 1, x_643); +return x_646; } } else { -uint8_t x_648; -lean_dec_ref(x_601); +uint8_t x_647; lean_dec_ref(x_600); -x_648 = !lean_is_exclusive(x_638); -if (x_648 == 0) +lean_dec_ref(x_599); +x_647 = !lean_is_exclusive(x_637); +if (x_647 == 0) { -return x_638; +return x_637; } else { -lean_object* x_649; lean_object* x_650; lean_object* x_651; -x_649 = lean_ctor_get(x_638, 0); -x_650 = lean_ctor_get(x_638, 1); -lean_inc(x_650); +lean_object* x_648; lean_object* x_649; lean_object* x_650; +x_648 = lean_ctor_get(x_637, 0); +x_649 = lean_ctor_get(x_637, 1); lean_inc(x_649); -lean_dec(x_638); -x_651 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_651, 0, x_649); -lean_ctor_set(x_651, 1, x_650); -return x_651; +lean_inc(x_648); +lean_dec(x_637); +x_650 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_650, 0, x_648); +lean_ctor_set(x_650, 1, x_649); +return x_650; } } } @@ -76882,13 +76887,13 @@ return x_651; } else { -uint8_t x_652; -lean_dec(x_605); -lean_dec_ref(x_604); -lean_dec(x_603); -lean_dec_ref(x_602); +uint8_t x_651; +lean_dec(x_604); +lean_dec_ref(x_603); +lean_dec(x_602); lean_dec_ref(x_601); lean_dec_ref(x_600); +lean_dec_ref(x_599); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -76903,30 +76908,30 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_652 = !lean_is_exclusive(x_606); -if (x_652 == 0) +x_651 = !lean_is_exclusive(x_605); +if (x_651 == 0) { -return x_606; +return x_605; } else { -lean_object* x_653; lean_object* x_654; lean_object* x_655; -x_653 = lean_ctor_get(x_606, 0); -x_654 = lean_ctor_get(x_606, 1); -lean_inc(x_654); +lean_object* x_652; lean_object* x_653; lean_object* x_654; +x_652 = lean_ctor_get(x_605, 0); +x_653 = lean_ctor_get(x_605, 1); lean_inc(x_653); -lean_dec(x_606); -x_655 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_655, 0, x_653); -lean_ctor_set(x_655, 1, x_654); -return x_655; +lean_inc(x_652); +lean_dec(x_605); +x_654 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_654, 0, x_652); +lean_ctor_set(x_654, 1, x_653); +return x_654; } } } } else { -uint8_t x_1038; +uint8_t x_1037; lean_dec(x_20); lean_dec_ref(x_19); lean_dec(x_18); @@ -76947,23 +76952,23 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_1038 = !lean_is_exclusive(x_597); -if (x_1038 == 0) +x_1037 = !lean_is_exclusive(x_596); +if (x_1037 == 0) { -return x_597; +return x_596; } else { -lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; -x_1039 = lean_ctor_get(x_597, 0); -x_1040 = lean_ctor_get(x_597, 1); -lean_inc(x_1040); +lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; +x_1038 = lean_ctor_get(x_596, 0); +x_1039 = lean_ctor_get(x_596, 1); lean_inc(x_1039); -lean_dec(x_597); -x_1041 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1041, 0, x_1039); -lean_ctor_set(x_1041, 1, x_1040); -return x_1041; +lean_inc(x_1038); +lean_dec(x_596); +x_1040 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1040, 0, x_1038); +lean_ctor_set(x_1040, 1, x_1039); +return x_1040; } } block_35: @@ -77348,37 +77353,36 @@ return x_101; } } } -block_216: +block_239: { -if (x_134 == 0) +if (x_133 == 0) { -uint8_t x_135; -lean_dec_ref(x_133); -lean_dec_ref(x_128); +uint8_t x_134; +lean_dec_ref(x_122); lean_dec_ref(x_13); lean_dec_ref(x_12); -x_135 = l_Array_isEmpty___redArg(x_129); -lean_dec_ref(x_129); -if (x_135 == 0) +x_134 = l_Array_isEmpty___redArg(x_123); +lean_dec_ref(x_123); +if (x_134 == 0) { -lean_dec_ref(x_125); -lean_dec_ref(x_121); +lean_dec_ref(x_132); +lean_dec_ref(x_120); lean_dec_ref(x_11); lean_dec_ref(x_10); lean_dec_ref(x_9); -x_44 = x_120; -x_45 = x_132; +x_44 = x_121; +x_45 = x_127; x_46 = x_130; -x_47 = x_123; -x_48 = x_126; -x_49 = x_124; -x_50 = x_127; -x_51 = x_131; +x_47 = x_124; +x_48 = x_129; +x_49 = x_131; +x_50 = x_125; +x_51 = x_126; goto block_119; } else { -lean_object* x_136; +lean_object* x_135; lean_dec_ref(x_8); lean_dec_ref(x_6); lean_dec_ref(x_5); @@ -77386,552 +77390,642 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_136 = l_Lean_Tactic_FunInd_mkLambdaFVarsMasked(x_125, x_7, x_123, x_126, x_124, x_127, x_131); -if (lean_obj_tag(x_136) == 0) +x_135 = l_Lean_Tactic_FunInd_mkLambdaFVarsMasked(x_120, x_7, x_124, x_129, x_131, x_125, x_126); +if (lean_obj_tag(x_135) == 0) { -lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; -x_137 = lean_ctor_get(x_136, 0); +lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; +x_136 = lean_ctor_get(x_135, 0); +lean_inc(x_136); +x_137 = lean_ctor_get(x_135, 1); lean_inc(x_137); -x_138 = lean_ctor_get(x_136, 1); +lean_dec_ref(x_135); +x_138 = lean_ctor_get(x_136, 0); lean_inc(x_138); -lean_dec_ref(x_136); -x_139 = lean_ctor_get(x_137, 0); +x_139 = lean_ctor_get(x_136, 1); lean_inc(x_139); -x_140 = lean_ctor_get(x_137, 1); -lean_inc(x_140); -lean_dec(x_137); -x_141 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__12___boxed), 11, 2); -lean_closure_set(x_141, 0, x_139); -lean_closure_set(x_141, 1, x_140); -x_142 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21(x_121, x_122, x_122, x_9, x_141, x_10, x_11, x_132, x_130, x_123, x_126, x_124, x_127, x_138); -if (lean_obj_tag(x_142) == 0) +lean_dec(x_136); +x_140 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__16___boxed), 11, 2); +lean_closure_set(x_140, 0, x_138); +lean_closure_set(x_140, 1, x_139); +x_141 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15(x_132, x_128, x_128, x_9, x_140, x_10, x_11, x_127, x_130, x_124, x_129, x_131, x_125, x_137); +if (lean_obj_tag(x_141) == 0) { -lean_object* x_143; lean_object* x_144; uint8_t x_145; +lean_object* x_142; lean_object* x_143; uint8_t x_144; +x_142 = lean_ctor_get(x_141, 0); +lean_inc(x_142); x_143 = lean_ctor_get(x_142, 0); lean_inc(x_143); -x_144 = lean_ctor_get(x_143, 0); -lean_inc(x_144); -x_145 = !lean_is_exclusive(x_142); -if (x_145 == 0) +x_144 = !lean_is_exclusive(x_141); +if (x_144 == 0) { -lean_object* x_146; uint8_t x_147; -x_146 = lean_ctor_get(x_142, 0); -lean_dec(x_146); -x_147 = !lean_is_exclusive(x_143); -if (x_147 == 0) +lean_object* x_145; uint8_t x_146; +x_145 = lean_ctor_get(x_141, 0); +lean_dec(x_145); +x_146 = !lean_is_exclusive(x_142); +if (x_146 == 0) { -lean_object* x_148; uint8_t x_149; -x_148 = lean_ctor_get(x_143, 0); -lean_dec(x_148); -x_149 = !lean_is_exclusive(x_144); -if (x_149 == 0) +lean_object* x_147; uint8_t x_148; +x_147 = lean_ctor_get(x_142, 0); +lean_dec(x_147); +x_148 = !lean_is_exclusive(x_143); +if (x_148 == 0) { -lean_object* x_150; lean_object* x_151; -x_150 = lean_ctor_get(x_144, 0); -x_151 = l_Lean_Meta_MatcherApp_toExpr(x_150); -lean_ctor_set(x_144, 0, x_151); -return x_142; +lean_object* x_149; lean_object* x_150; +x_149 = lean_ctor_get(x_143, 0); +x_150 = l_Lean_Meta_MatcherApp_toExpr(x_149); +lean_ctor_set(x_143, 0, x_150); +return x_141; } else { -lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; -x_152 = lean_ctor_get(x_144, 0); -x_153 = lean_ctor_get(x_144, 1); -lean_inc(x_153); +lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; +x_151 = lean_ctor_get(x_143, 0); +x_152 = lean_ctor_get(x_143, 1); lean_inc(x_152); -lean_dec(x_144); -x_154 = l_Lean_Meta_MatcherApp_toExpr(x_152); -x_155 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_155, 0, x_154); -lean_ctor_set(x_155, 1, x_153); -lean_ctor_set(x_143, 0, x_155); -return x_142; -} -} -else -{ -lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; -x_156 = lean_ctor_get(x_143, 1); -lean_inc(x_156); +lean_inc(x_151); lean_dec(x_143); -x_157 = lean_ctor_get(x_144, 0); -lean_inc(x_157); -x_158 = lean_ctor_get(x_144, 1); -lean_inc(x_158); -if (lean_is_exclusive(x_144)) { - lean_ctor_release(x_144, 0); - lean_ctor_release(x_144, 1); - x_159 = x_144; -} else { - lean_dec_ref(x_144); - x_159 = lean_box(0); -} -x_160 = l_Lean_Meta_MatcherApp_toExpr(x_157); -if (lean_is_scalar(x_159)) { - x_161 = lean_alloc_ctor(0, 2, 0); -} else { - x_161 = x_159; -} -lean_ctor_set(x_161, 0, x_160); -lean_ctor_set(x_161, 1, x_158); -x_162 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_162, 0, x_161); -lean_ctor_set(x_162, 1, x_156); -lean_ctor_set(x_142, 0, x_162); -return x_142; +x_153 = l_Lean_Meta_MatcherApp_toExpr(x_151); +x_154 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_154, 0, x_153); +lean_ctor_set(x_154, 1, x_152); +lean_ctor_set(x_142, 0, x_154); +return x_141; } } else { -lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; -x_163 = lean_ctor_get(x_142, 1); -lean_inc(x_163); +lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; +x_155 = lean_ctor_get(x_142, 1); +lean_inc(x_155); lean_dec(x_142); -x_164 = lean_ctor_get(x_143, 1); -lean_inc(x_164); +x_156 = lean_ctor_get(x_143, 0); +lean_inc(x_156); +x_157 = lean_ctor_get(x_143, 1); +lean_inc(x_157); if (lean_is_exclusive(x_143)) { lean_ctor_release(x_143, 0); lean_ctor_release(x_143, 1); - x_165 = x_143; + x_158 = x_143; } else { lean_dec_ref(x_143); - x_165 = lean_box(0); + x_158 = lean_box(0); } -x_166 = lean_ctor_get(x_144, 0); -lean_inc(x_166); -x_167 = lean_ctor_get(x_144, 1); -lean_inc(x_167); -if (lean_is_exclusive(x_144)) { - lean_ctor_release(x_144, 0); - lean_ctor_release(x_144, 1); - x_168 = x_144; +x_159 = l_Lean_Meta_MatcherApp_toExpr(x_156); +if (lean_is_scalar(x_158)) { + x_160 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_144); - x_168 = lean_box(0); + x_160 = x_158; } -x_169 = l_Lean_Meta_MatcherApp_toExpr(x_166); -if (lean_is_scalar(x_168)) { +lean_ctor_set(x_160, 0, x_159); +lean_ctor_set(x_160, 1, x_157); +x_161 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_161, 0, x_160); +lean_ctor_set(x_161, 1, x_155); +lean_ctor_set(x_141, 0, x_161); +return x_141; +} +} +else +{ +lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; +x_162 = lean_ctor_get(x_141, 1); +lean_inc(x_162); +lean_dec(x_141); +x_163 = lean_ctor_get(x_142, 1); +lean_inc(x_163); +if (lean_is_exclusive(x_142)) { + lean_ctor_release(x_142, 0); + lean_ctor_release(x_142, 1); + x_164 = x_142; +} else { + lean_dec_ref(x_142); + x_164 = lean_box(0); +} +x_165 = lean_ctor_get(x_143, 0); +lean_inc(x_165); +x_166 = lean_ctor_get(x_143, 1); +lean_inc(x_166); +if (lean_is_exclusive(x_143)) { + lean_ctor_release(x_143, 0); + lean_ctor_release(x_143, 1); + x_167 = x_143; +} else { + lean_dec_ref(x_143); + x_167 = lean_box(0); +} +x_168 = l_Lean_Meta_MatcherApp_toExpr(x_165); +if (lean_is_scalar(x_167)) { + x_169 = lean_alloc_ctor(0, 2, 0); +} else { + x_169 = x_167; +} +lean_ctor_set(x_169, 0, x_168); +lean_ctor_set(x_169, 1, x_166); +if (lean_is_scalar(x_164)) { x_170 = lean_alloc_ctor(0, 2, 0); } else { - x_170 = x_168; + x_170 = x_164; } lean_ctor_set(x_170, 0, x_169); -lean_ctor_set(x_170, 1, x_167); -if (lean_is_scalar(x_165)) { - x_171 = lean_alloc_ctor(0, 2, 0); -} else { - x_171 = x_165; -} +lean_ctor_set(x_170, 1, x_163); +x_171 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_171, 0, x_170); -lean_ctor_set(x_171, 1, x_164); -x_172 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_172, 0, x_171); -lean_ctor_set(x_172, 1, x_163); -return x_172; +lean_ctor_set(x_171, 1, x_162); +return x_171; } } else { -uint8_t x_173; -x_173 = !lean_is_exclusive(x_142); -if (x_173 == 0) +uint8_t x_172; +x_172 = !lean_is_exclusive(x_141); +if (x_172 == 0) { -return x_142; +return x_141; } else { -lean_object* x_174; lean_object* x_175; lean_object* x_176; -x_174 = lean_ctor_get(x_142, 0); -x_175 = lean_ctor_get(x_142, 1); -lean_inc(x_175); +lean_object* x_173; lean_object* x_174; lean_object* x_175; +x_173 = lean_ctor_get(x_141, 0); +x_174 = lean_ctor_get(x_141, 1); lean_inc(x_174); -lean_dec(x_142); -x_176 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_176, 0, x_174); -lean_ctor_set(x_176, 1, x_175); -return x_176; +lean_inc(x_173); +lean_dec(x_141); +x_175 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_175, 0, x_173); +lean_ctor_set(x_175, 1, x_174); +return x_175; } } } else { -uint8_t x_177; +uint8_t x_176; lean_dec_ref(x_132); +lean_dec_ref(x_131); lean_dec_ref(x_130); -lean_dec(x_127); -lean_dec(x_126); +lean_dec(x_129); +lean_dec_ref(x_127); +lean_dec(x_125); lean_dec_ref(x_124); -lean_dec_ref(x_123); -lean_dec_ref(x_121); lean_dec_ref(x_11); lean_dec_ref(x_10); lean_dec_ref(x_9); -x_177 = !lean_is_exclusive(x_136); -if (x_177 == 0) +x_176 = !lean_is_exclusive(x_135); +if (x_176 == 0) { -return x_136; +return x_135; } else { -lean_object* x_178; lean_object* x_179; lean_object* x_180; -x_178 = lean_ctor_get(x_136, 0); -x_179 = lean_ctor_get(x_136, 1); -lean_inc(x_179); +lean_object* x_177; lean_object* x_178; lean_object* x_179; +x_177 = lean_ctor_get(x_135, 0); +x_178 = lean_ctor_get(x_135, 1); lean_inc(x_178); -lean_dec(x_136); -x_180 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_180, 0, x_178); -lean_ctor_set(x_180, 1, x_179); -return x_180; +lean_inc(x_177); +lean_dec(x_135); +x_179 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_179, 0, x_177); +lean_ctor_set(x_179, 1, x_178); +return x_179; } } } } else { -lean_object* x_181; -lean_dec_ref(x_129); -lean_dec_ref(x_125); +lean_object* x_180; +lean_dec_ref(x_123); lean_dec_ref(x_11); lean_dec_ref(x_10); lean_dec_ref(x_9); lean_dec_ref(x_8); -lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); -lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_181 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21(x_121, x_122, x_122, x_12, x_128, x_133, x_13, x_132, x_130, x_123, x_126, x_124, x_127, x_131); -if (lean_obj_tag(x_181) == 0) +lean_inc_ref(x_124); +x_180 = l_Lean_FVarId_getType___redArg(x_3, x_124, x_131, x_125, x_126); +if (lean_obj_tag(x_180) == 0) { -lean_object* x_182; lean_object* x_183; uint8_t x_184; -x_182 = lean_ctor_get(x_181, 0); +lean_object* x_181; lean_object* x_182; lean_object* x_183; +x_181 = lean_ctor_get(x_180, 0); +lean_inc(x_181); +x_182 = lean_ctor_get(x_180, 1); lean_inc(x_182); -x_183 = lean_ctor_get(x_182, 0); -lean_inc(x_183); -x_184 = !lean_is_exclusive(x_181); -if (x_184 == 0) +lean_dec_ref(x_180); +x_183 = l_Lean_mkArrow___redArg(x_181, x_7, x_125, x_182); +if (lean_obj_tag(x_183) == 0) { -lean_object* x_185; uint8_t x_186; -x_185 = lean_ctor_get(x_181, 0); -lean_dec(x_185); -x_186 = !lean_is_exclusive(x_182); -if (x_186 == 0) +lean_object* x_184; lean_object* x_185; lean_object* x_186; +x_184 = lean_ctor_get(x_183, 0); +lean_inc(x_184); +x_185 = lean_ctor_get(x_183, 1); +lean_inc(x_185); +lean_dec_ref(x_183); +x_186 = l_Lean_Tactic_FunInd_mkLambdaFVarsMasked(x_120, x_184, x_124, x_129, x_131, x_125, x_185); +if (lean_obj_tag(x_186) == 0) { -lean_object* x_187; uint8_t x_188; -x_187 = lean_ctor_get(x_182, 0); +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_187 = lean_ctor_get(x_186, 0); +lean_inc(x_187); +x_188 = lean_ctor_get(x_186, 1); +lean_inc(x_188); +lean_dec_ref(x_186); +x_189 = lean_ctor_get(x_187, 0); +lean_inc(x_189); +x_190 = lean_ctor_get(x_187, 1); +lean_inc(x_190); lean_dec(x_187); -x_188 = !lean_is_exclusive(x_183); -if (x_188 == 0) +x_191 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__16___boxed), 11, 2); +lean_closure_set(x_191, 0, x_189); +lean_closure_set(x_191, 1, x_190); +x_192 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15(x_132, x_128, x_128, x_12, x_191, x_122, x_13, x_127, x_130, x_124, x_129, x_131, x_125, x_188); +if (lean_obj_tag(x_192) == 0) { -lean_object* x_189; lean_object* x_190; -x_189 = lean_ctor_get(x_183, 0); -x_190 = l_Lean_Meta_MatcherApp_toExpr(x_189); -lean_ctor_set(x_183, 0, x_190); -return x_181; +lean_object* x_193; lean_object* x_194; uint8_t x_195; +x_193 = lean_ctor_get(x_192, 0); +lean_inc(x_193); +x_194 = lean_ctor_get(x_193, 0); +lean_inc(x_194); +x_195 = !lean_is_exclusive(x_192); +if (x_195 == 0) +{ +lean_object* x_196; uint8_t x_197; +x_196 = lean_ctor_get(x_192, 0); +lean_dec(x_196); +x_197 = !lean_is_exclusive(x_193); +if (x_197 == 0) +{ +lean_object* x_198; uint8_t x_199; +x_198 = lean_ctor_get(x_193, 0); +lean_dec(x_198); +x_199 = !lean_is_exclusive(x_194); +if (x_199 == 0) +{ +lean_object* x_200; lean_object* x_201; +x_200 = lean_ctor_get(x_194, 0); +x_201 = l_Lean_Meta_MatcherApp_toExpr(x_200); +lean_ctor_set(x_194, 0, x_201); +return x_192; } else { -lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; -x_191 = lean_ctor_get(x_183, 0); -x_192 = lean_ctor_get(x_183, 1); -lean_inc(x_192); -lean_inc(x_191); -lean_dec(x_183); -x_193 = l_Lean_Meta_MatcherApp_toExpr(x_191); -x_194 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_194, 0, x_193); -lean_ctor_set(x_194, 1, x_192); -lean_ctor_set(x_182, 0, x_194); -return x_181; -} -} -else -{ -lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; -x_195 = lean_ctor_get(x_182, 1); -lean_inc(x_195); -lean_dec(x_182); -x_196 = lean_ctor_get(x_183, 0); -lean_inc(x_196); -x_197 = lean_ctor_get(x_183, 1); -lean_inc(x_197); -if (lean_is_exclusive(x_183)) { - lean_ctor_release(x_183, 0); - lean_ctor_release(x_183, 1); - x_198 = x_183; -} else { - lean_dec_ref(x_183); - x_198 = lean_box(0); -} -x_199 = l_Lean_Meta_MatcherApp_toExpr(x_196); -if (lean_is_scalar(x_198)) { - x_200 = lean_alloc_ctor(0, 2, 0); -} else { - x_200 = x_198; -} -lean_ctor_set(x_200, 0, x_199); -lean_ctor_set(x_200, 1, x_197); -x_201 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_201, 0, x_200); -lean_ctor_set(x_201, 1, x_195); -lean_ctor_set(x_181, 0, x_201); -return x_181; -} -} -else -{ -lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; -x_202 = lean_ctor_get(x_181, 1); -lean_inc(x_202); -lean_dec(x_181); -x_203 = lean_ctor_get(x_182, 1); +lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; +x_202 = lean_ctor_get(x_194, 0); +x_203 = lean_ctor_get(x_194, 1); lean_inc(x_203); -if (lean_is_exclusive(x_182)) { - lean_ctor_release(x_182, 0); - lean_ctor_release(x_182, 1); - x_204 = x_182; -} else { - lean_dec_ref(x_182); - x_204 = lean_box(0); +lean_inc(x_202); +lean_dec(x_194); +x_204 = l_Lean_Meta_MatcherApp_toExpr(x_202); +x_205 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_205, 0, x_204); +lean_ctor_set(x_205, 1, x_203); +lean_ctor_set(x_193, 0, x_205); +return x_192; } -x_205 = lean_ctor_get(x_183, 0); -lean_inc(x_205); -x_206 = lean_ctor_get(x_183, 1); +} +else +{ +lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; +x_206 = lean_ctor_get(x_193, 1); lean_inc(x_206); -if (lean_is_exclusive(x_183)) { - lean_ctor_release(x_183, 0); - lean_ctor_release(x_183, 1); - x_207 = x_183; +lean_dec(x_193); +x_207 = lean_ctor_get(x_194, 0); +lean_inc(x_207); +x_208 = lean_ctor_get(x_194, 1); +lean_inc(x_208); +if (lean_is_exclusive(x_194)) { + lean_ctor_release(x_194, 0); + lean_ctor_release(x_194, 1); + x_209 = x_194; } else { - lean_dec_ref(x_183); - x_207 = lean_box(0); + lean_dec_ref(x_194); + x_209 = lean_box(0); } -x_208 = l_Lean_Meta_MatcherApp_toExpr(x_205); -if (lean_is_scalar(x_207)) { - x_209 = lean_alloc_ctor(0, 2, 0); +x_210 = l_Lean_Meta_MatcherApp_toExpr(x_207); +if (lean_is_scalar(x_209)) { + x_211 = lean_alloc_ctor(0, 2, 0); } else { - x_209 = x_207; + x_211 = x_209; } -lean_ctor_set(x_209, 0, x_208); -lean_ctor_set(x_209, 1, x_206); -if (lean_is_scalar(x_204)) { - x_210 = lean_alloc_ctor(0, 2, 0); -} else { - x_210 = x_204; -} -lean_ctor_set(x_210, 0, x_209); -lean_ctor_set(x_210, 1, x_203); -x_211 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_211, 0, x_210); -lean_ctor_set(x_211, 1, x_202); -return x_211; +lean_ctor_set(x_211, 1, x_208); +x_212 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_212, 0, x_211); +lean_ctor_set(x_212, 1, x_206); +lean_ctor_set(x_192, 0, x_212); +return x_192; } } else { -uint8_t x_212; -x_212 = !lean_is_exclusive(x_181); -if (x_212 == 0) -{ -return x_181; -} -else -{ -lean_object* x_213; lean_object* x_214; lean_object* x_215; -x_213 = lean_ctor_get(x_181, 0); -x_214 = lean_ctor_get(x_181, 1); -lean_inc(x_214); +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; +x_213 = lean_ctor_get(x_192, 1); lean_inc(x_213); -lean_dec(x_181); -x_215 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_215, 0, x_213); -lean_ctor_set(x_215, 1, x_214); -return x_215; +lean_dec(x_192); +x_214 = lean_ctor_get(x_193, 1); +lean_inc(x_214); +if (lean_is_exclusive(x_193)) { + lean_ctor_release(x_193, 0); + lean_ctor_release(x_193, 1); + x_215 = x_193; +} else { + lean_dec_ref(x_193); + x_215 = lean_box(0); +} +x_216 = lean_ctor_get(x_194, 0); +lean_inc(x_216); +x_217 = lean_ctor_get(x_194, 1); +lean_inc(x_217); +if (lean_is_exclusive(x_194)) { + lean_ctor_release(x_194, 0); + lean_ctor_release(x_194, 1); + x_218 = x_194; +} else { + lean_dec_ref(x_194); + x_218 = lean_box(0); +} +x_219 = l_Lean_Meta_MatcherApp_toExpr(x_216); +if (lean_is_scalar(x_218)) { + x_220 = lean_alloc_ctor(0, 2, 0); +} else { + x_220 = x_218; +} +lean_ctor_set(x_220, 0, x_219); +lean_ctor_set(x_220, 1, x_217); +if (lean_is_scalar(x_215)) { + x_221 = lean_alloc_ctor(0, 2, 0); +} else { + x_221 = x_215; +} +lean_ctor_set(x_221, 0, x_220); +lean_ctor_set(x_221, 1, x_214); +x_222 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_222, 0, x_221); +lean_ctor_set(x_222, 1, x_213); +return x_222; } } -} -} -block_274: +else { -uint8_t x_224; lean_object* x_225; -x_224 = 1; -lean_inc(x_222); -lean_inc_ref(x_221); -lean_inc(x_220); -lean_inc_ref(x_219); -lean_inc_ref(x_1); -x_225 = l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4(x_1, x_224, x_217, x_218, x_219, x_220, x_221, x_222, x_223); -if (lean_obj_tag(x_225) == 0) +uint8_t x_223; +x_223 = !lean_is_exclusive(x_192); +if (x_223 == 0) { -lean_object* x_226; lean_object* x_227; lean_object* x_228; -x_226 = lean_ctor_get(x_225, 0); -lean_inc(x_226); -x_227 = lean_ctor_get(x_226, 0); -lean_inc(x_227); -x_228 = lean_ctor_get(x_227, 0); +return x_192; +} +else +{ +lean_object* x_224; lean_object* x_225; lean_object* x_226; +x_224 = lean_ctor_get(x_192, 0); +x_225 = lean_ctor_get(x_192, 1); +lean_inc(x_225); +lean_inc(x_224); +lean_dec(x_192); +x_226 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_226, 0, x_224); +lean_ctor_set(x_226, 1, x_225); +return x_226; +} +} +} +else +{ +uint8_t x_227; +lean_dec_ref(x_132); +lean_dec_ref(x_131); +lean_dec_ref(x_130); +lean_dec(x_129); +lean_dec_ref(x_127); +lean_dec(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_122); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +x_227 = !lean_is_exclusive(x_186); +if (x_227 == 0) +{ +return x_186; +} +else +{ +lean_object* x_228; lean_object* x_229; lean_object* x_230; +x_228 = lean_ctor_get(x_186, 0); +x_229 = lean_ctor_get(x_186, 1); +lean_inc(x_229); lean_inc(x_228); -if (lean_obj_tag(x_228) == 0) +lean_dec(x_186); +x_230 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_230, 0, x_228); +lean_ctor_set(x_230, 1, x_229); +return x_230; +} +} +} +else { -lean_object* x_229; lean_object* x_230; lean_object* x_231; +uint8_t x_231; +lean_dec_ref(x_132); +lean_dec_ref(x_131); +lean_dec_ref(x_130); +lean_dec(x_129); +lean_dec_ref(x_127); +lean_dec(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_122); +lean_dec_ref(x_120); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +x_231 = !lean_is_exclusive(x_183); +if (x_231 == 0) +{ +return x_183; +} +else +{ +lean_object* x_232; lean_object* x_233; lean_object* x_234; +x_232 = lean_ctor_get(x_183, 0); +x_233 = lean_ctor_get(x_183, 1); +lean_inc(x_233); +lean_inc(x_232); +lean_dec(x_183); +x_234 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_234, 0, x_232); +lean_ctor_set(x_234, 1, x_233); +return x_234; +} +} +} +else +{ +uint8_t x_235; +lean_dec_ref(x_132); +lean_dec_ref(x_131); +lean_dec_ref(x_130); +lean_dec(x_129); +lean_dec_ref(x_127); +lean_dec(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_122); +lean_dec_ref(x_120); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_7); +x_235 = !lean_is_exclusive(x_180); +if (x_235 == 0) +{ +return x_180; +} +else +{ +lean_object* x_236; lean_object* x_237; lean_object* x_238; +x_236 = lean_ctor_get(x_180, 0); +x_237 = lean_ctor_get(x_180, 1); +lean_inc(x_237); +lean_inc(x_236); +lean_dec(x_180); +x_238 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_238, 0, x_236); +lean_ctor_set(x_238, 1, x_237); +return x_238; +} +} +} +} +block_273: +{ +uint8_t x_247; lean_object* x_248; +x_247 = 1; +lean_inc(x_245); +lean_inc_ref(x_244); +lean_inc(x_243); +lean_inc_ref(x_242); +lean_inc_ref(x_1); +x_248 = l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionBody_spec__4(x_1, x_247, x_240, x_241, x_242, x_243, x_244, x_245, x_246); +if (lean_obj_tag(x_248) == 0) +{ +lean_object* x_249; lean_object* x_250; lean_object* x_251; +x_249 = lean_ctor_get(x_248, 0); +lean_inc(x_249); +x_250 = lean_ctor_get(x_249, 0); +lean_inc(x_250); +x_251 = lean_ctor_get(x_250, 0); +lean_inc(x_251); +if (lean_obj_tag(x_251) == 0) +{ +lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); lean_dec_ref(x_11); lean_dec_ref(x_10); lean_dec_ref(x_9); -x_229 = lean_ctor_get(x_225, 1); -lean_inc(x_229); -lean_dec_ref(x_225); -x_230 = lean_ctor_get(x_226, 1); -lean_inc(x_230); -lean_dec(x_226); -x_231 = lean_ctor_get(x_227, 1); -lean_inc(x_231); -lean_dec(x_227); -x_44 = x_224; -x_45 = x_231; -x_46 = x_230; -x_47 = x_219; -x_48 = x_220; -x_49 = x_221; -x_50 = x_222; -x_51 = x_229; +x_252 = lean_ctor_get(x_248, 1); +lean_inc(x_252); +lean_dec_ref(x_248); +x_253 = lean_ctor_get(x_249, 1); +lean_inc(x_253); +lean_dec(x_249); +x_254 = lean_ctor_get(x_250, 1); +lean_inc(x_254); +lean_dec(x_250); +x_44 = x_247; +x_45 = x_254; +x_46 = x_253; +x_47 = x_242; +x_48 = x_243; +x_49 = x_244; +x_50 = x_245; +x_51 = x_252; goto block_119; } else { -lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_dec_ref(x_225); -x_233 = lean_ctor_get(x_226, 1); -lean_inc(x_233); -lean_dec(x_226); -x_234 = lean_ctor_get(x_227, 1); -lean_inc(x_234); -lean_dec(x_227); -x_235 = lean_ctor_get(x_228, 0); -lean_inc(x_235); -lean_dec_ref(x_228); -lean_inc_ref(x_219); -lean_inc(x_3); -x_236 = l_Lean_FVarId_getType___redArg(x_3, x_219, x_221, x_222, x_232); -if (lean_obj_tag(x_236) == 0) -{ -lean_object* x_237; lean_object* x_238; lean_object* x_239; -x_237 = lean_ctor_get(x_236, 0); -lean_inc(x_237); -x_238 = lean_ctor_get(x_236, 1); -lean_inc(x_238); -lean_dec_ref(x_236); -lean_inc_ref(x_7); -x_239 = l_Lean_mkArrow___redArg(x_237, x_7, x_222, x_238); -if (lean_obj_tag(x_239) == 0) -{ -lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_240 = lean_ctor_get(x_239, 0); -lean_inc(x_240); -x_241 = lean_ctor_get(x_239, 1); -lean_inc(x_241); -lean_dec_ref(x_239); -x_242 = lean_ctor_get(x_235, 6); -lean_inc_ref(x_242); -x_243 = lean_ctor_get(x_235, 9); -lean_inc_ref(x_243); -lean_inc_ref(x_242); -x_244 = l_Lean_Tactic_FunInd_mkLambdaFVarsMasked(x_242, x_240, x_219, x_220, x_221, x_222, x_241); -if (lean_obj_tag(x_244) == 0) -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; uint8_t x_254; -x_245 = lean_ctor_get(x_244, 0); -lean_inc(x_245); -x_246 = lean_ctor_get(x_244, 1); -lean_inc(x_246); -lean_dec_ref(x_244); -x_247 = lean_ctor_get(x_245, 0); -lean_inc(x_247); -x_248 = lean_ctor_get(x_245, 1); -lean_inc(x_248); -lean_dec(x_245); -x_249 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__12___boxed), 11, 2); -lean_closure_set(x_249, 0, x_247); -lean_closure_set(x_249, 1, x_248); -x_250 = lean_array_get_size(x_243); -x_251 = lean_unsigned_to_nat(1u); -x_252 = lean_box(x_224); +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; uint8_t x_265; +x_255 = lean_ctor_get(x_251, 0); +lean_inc(x_255); +lean_dec_ref(x_251); +x_256 = lean_ctor_get(x_248, 1); +lean_inc(x_256); +lean_dec_ref(x_248); +x_257 = lean_ctor_get(x_249, 1); +lean_inc(x_257); +lean_dec(x_249); +x_258 = lean_ctor_get(x_250, 1); +lean_inc(x_258); +lean_dec(x_250); +x_259 = lean_ctor_get(x_255, 6); +lean_inc_ref(x_259); +x_260 = lean_ctor_get(x_255, 9); +lean_inc_ref(x_260); +x_261 = lean_array_get_size(x_260); +x_262 = lean_unsigned_to_nat(1u); +x_263 = lean_box(x_247); lean_inc_ref(x_4); lean_inc_ref(x_6); -lean_inc_ref(x_242); +lean_inc_ref(x_259); lean_inc_ref(x_5); -x_253 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__16___boxed), 16, 6); -lean_closure_set(x_253, 0, x_251); -lean_closure_set(x_253, 1, x_5); -lean_closure_set(x_253, 2, x_242); -lean_closure_set(x_253, 3, x_6); -lean_closure_set(x_253, 4, x_4); -lean_closure_set(x_253, 5, x_252); -x_254 = lean_nat_dec_eq(x_250, x_251); -lean_dec(x_250); -if (x_254 == 0) +x_264 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__15___boxed), 17, 6); +lean_closure_set(x_264, 0, x_262); +lean_closure_set(x_264, 1, x_5); +lean_closure_set(x_264, 2, x_259); +lean_closure_set(x_264, 3, x_6); +lean_closure_set(x_264, 4, x_4); +lean_closure_set(x_264, 5, x_263); +x_265 = lean_nat_dec_eq(x_261, x_262); +lean_dec(x_261); +if (x_265 == 0) { lean_dec_ref(x_14); -x_120 = x_224; -x_121 = x_235; -x_122 = x_224; -x_123 = x_219; -x_124 = x_221; -x_125 = x_242; -x_126 = x_220; -x_127 = x_222; -x_128 = x_249; +x_120 = x_259; +x_121 = x_247; +x_122 = x_264; +x_123 = x_260; +x_124 = x_242; +x_125 = x_245; +x_126 = x_256; +x_127 = x_258; +x_128 = x_247; x_129 = x_243; -x_130 = x_233; -x_131 = x_246; -x_132 = x_234; -x_133 = x_253; -x_134 = x_254; -goto block_216; +x_130 = x_257; +x_131 = x_244; +x_132 = x_255; +x_133 = x_265; +goto block_239; } else { -lean_object* x_255; lean_object* x_256; uint8_t x_257; -x_255 = lean_unsigned_to_nat(0u); -x_256 = lean_array_get(x_14, x_243, x_255); -x_257 = l_Lean_Expr_isFVarOf(x_256, x_2); -lean_dec_ref(x_256); -x_120 = x_224; -x_121 = x_235; -x_122 = x_224; -x_123 = x_219; -x_124 = x_221; -x_125 = x_242; -x_126 = x_220; -x_127 = x_222; -x_128 = x_249; +lean_object* x_266; lean_object* x_267; uint8_t x_268; +x_266 = lean_unsigned_to_nat(0u); +x_267 = lean_array_get(x_14, x_260, x_266); +x_268 = l_Lean_Expr_isFVarOf(x_267, x_2); +lean_dec_ref(x_267); +x_120 = x_259; +x_121 = x_247; +x_122 = x_264; +x_123 = x_260; +x_124 = x_242; +x_125 = x_245; +x_126 = x_256; +x_127 = x_258; +x_128 = x_247; x_129 = x_243; -x_130 = x_233; -x_131 = x_246; -x_132 = x_234; -x_133 = x_253; -x_134 = x_257; -goto block_216; +x_130 = x_257; +x_131 = x_244; +x_132 = x_255; +x_133 = x_268; +goto block_239; +} } } else { -uint8_t x_258; -lean_dec_ref(x_243); +uint8_t x_269; +lean_dec(x_245); +lean_dec_ref(x_244); +lean_dec(x_243); lean_dec_ref(x_242); -lean_dec(x_235); -lean_dec(x_234); -lean_dec(x_233); -lean_dec(x_222); -lean_dec_ref(x_221); -lean_dec(x_220); -lean_dec_ref(x_219); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -77946,235 +78040,105 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_258 = !lean_is_exclusive(x_244); -if (x_258 == 0) +x_269 = !lean_is_exclusive(x_248); +if (x_269 == 0) { -return x_244; +return x_248; } else { -lean_object* x_259; lean_object* x_260; lean_object* x_261; -x_259 = lean_ctor_get(x_244, 0); -x_260 = lean_ctor_get(x_244, 1); -lean_inc(x_260); -lean_inc(x_259); -lean_dec(x_244); -x_261 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_261, 0, x_259); -lean_ctor_set(x_261, 1, x_260); -return x_261; -} -} -} -else -{ -uint8_t x_262; -lean_dec(x_235); -lean_dec(x_234); -lean_dec(x_233); -lean_dec(x_222); -lean_dec_ref(x_221); -lean_dec(x_220); -lean_dec_ref(x_219); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -x_262 = !lean_is_exclusive(x_239); -if (x_262 == 0) -{ -return x_239; -} -else -{ -lean_object* x_263; lean_object* x_264; lean_object* x_265; -x_263 = lean_ctor_get(x_239, 0); -x_264 = lean_ctor_get(x_239, 1); -lean_inc(x_264); -lean_inc(x_263); -lean_dec(x_239); -x_265 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_265, 0, x_263); -lean_ctor_set(x_265, 1, x_264); -return x_265; -} -} -} -else -{ -uint8_t x_266; -lean_dec(x_235); -lean_dec(x_234); -lean_dec(x_233); -lean_dec(x_222); -lean_dec_ref(x_221); -lean_dec(x_220); -lean_dec_ref(x_219); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -x_266 = !lean_is_exclusive(x_236); -if (x_266 == 0) -{ -return x_236; -} -else -{ -lean_object* x_267; lean_object* x_268; lean_object* x_269; -x_267 = lean_ctor_get(x_236, 0); -x_268 = lean_ctor_get(x_236, 1); -lean_inc(x_268); -lean_inc(x_267); -lean_dec(x_236); -x_269 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_269, 0, x_267); -lean_ctor_set(x_269, 1, x_268); -return x_269; -} -} -} -} -else -{ -uint8_t x_270; -lean_dec(x_222); -lean_dec_ref(x_221); -lean_dec(x_220); -lean_dec_ref(x_219); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -x_270 = !lean_is_exclusive(x_225); -if (x_270 == 0) -{ -return x_225; -} -else -{ -lean_object* x_271; lean_object* x_272; lean_object* x_273; -x_271 = lean_ctor_get(x_225, 0); -x_272 = lean_ctor_get(x_225, 1); -lean_inc(x_272); +lean_object* x_270; lean_object* x_271; lean_object* x_272; +x_270 = lean_ctor_get(x_248, 0); +x_271 = lean_ctor_get(x_248, 1); lean_inc(x_271); -lean_dec(x_225); -x_273 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_273, 0, x_271); -lean_ctor_set(x_273, 1, x_272); -return x_273; +lean_inc(x_270); +lean_dec(x_248); +x_272 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_272, 0, x_270); +lean_ctor_set(x_272, 1, x_271); +return x_272; } } } -block_425: +block_424: { -lean_object* x_282; +lean_object* x_281; lean_inc_ref(x_7); -x_282 = l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(x_7, x_278, x_281); -if (lean_obj_tag(x_282) == 0) +x_281 = l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(x_7, x_277, x_280); +if (lean_obj_tag(x_281) == 0) { -uint8_t x_283; -x_283 = !lean_is_exclusive(x_282); -if (x_283 == 0) +uint8_t x_282; +x_282 = !lean_is_exclusive(x_281); +if (x_282 == 0) { -lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; uint8_t x_288; -x_284 = lean_ctor_get(x_282, 0); -x_285 = lean_ctor_get(x_282, 1); -x_286 = l_Lean_Expr_cleanupAnnotations(x_284); -x_287 = l_Lean_Tactic_FunInd_foldAndCollect___lam__16___closed__1; -x_288 = l_Lean_Expr_isConstOf(x_286, x_287); +lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; uint8_t x_287; +x_283 = lean_ctor_get(x_281, 0); +x_284 = lean_ctor_get(x_281, 1); +x_285 = l_Lean_Expr_cleanupAnnotations(x_283); +x_286 = l_Lean_Tactic_FunInd_foldAndCollect___lam__16___closed__1; +x_287 = l_Lean_Expr_isConstOf(x_285, x_286); +if (x_287 == 0) +{ +uint8_t x_288; +lean_free_object(x_281); +x_288 = l_Lean_Expr_isApp(x_285); if (x_288 == 0) { -uint8_t x_289; -lean_free_object(x_282); -x_289 = l_Lean_Expr_isApp(x_286); -if (x_289 == 0) -{ -lean_dec_ref(x_286); -x_217 = x_275; -x_218 = x_276; -x_219 = x_277; -x_220 = x_278; -x_221 = x_279; -x_222 = x_280; -x_223 = x_285; -goto block_274; +lean_dec_ref(x_285); +x_240 = x_274; +x_241 = x_275; +x_242 = x_276; +x_243 = x_277; +x_244 = x_278; +x_245 = x_279; +x_246 = x_284; +goto block_273; } else { -lean_object* x_290; lean_object* x_291; uint8_t x_292; -x_290 = lean_ctor_get(x_286, 1); -lean_inc_ref(x_290); -x_291 = l_Lean_Expr_appFnCleanup___redArg(x_286); -x_292 = l_Lean_Expr_isApp(x_291); -if (x_292 == 0) +lean_object* x_289; lean_object* x_290; uint8_t x_291; +x_289 = lean_ctor_get(x_285, 1); +lean_inc_ref(x_289); +x_290 = l_Lean_Expr_appFnCleanup___redArg(x_285); +x_291 = l_Lean_Expr_isApp(x_290); +if (x_291 == 0) { -lean_dec_ref(x_291); lean_dec_ref(x_290); -x_217 = x_275; -x_218 = x_276; -x_219 = x_277; -x_220 = x_278; -x_221 = x_279; -x_222 = x_280; -x_223 = x_285; -goto block_274; +lean_dec_ref(x_289); +x_240 = x_274; +x_241 = x_275; +x_242 = x_276; +x_243 = x_277; +x_244 = x_278; +x_245 = x_279; +x_246 = x_284; +goto block_273; } else { -lean_object* x_293; lean_object* x_294; lean_object* x_295; uint8_t x_296; -x_293 = lean_ctor_get(x_291, 1); -lean_inc_ref(x_293); -x_294 = l_Lean_Expr_appFnCleanup___redArg(x_291); -x_295 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__8; -x_296 = l_Lean_Expr_isConstOf(x_294, x_295); -lean_dec_ref(x_294); -if (x_296 == 0) -{ +lean_object* x_292; lean_object* x_293; lean_object* x_294; uint8_t x_295; +x_292 = lean_ctor_get(x_290, 1); +lean_inc_ref(x_292); +x_293 = l_Lean_Expr_appFnCleanup___redArg(x_290); +x_294 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__8; +x_295 = l_Lean_Expr_isConstOf(x_293, x_294); lean_dec_ref(x_293); -lean_dec_ref(x_290); -x_217 = x_275; -x_218 = x_276; -x_219 = x_277; -x_220 = x_278; -x_221 = x_279; -x_222 = x_280; -x_223 = x_285; -goto block_274; +if (x_295 == 0) +{ +lean_dec_ref(x_292); +lean_dec_ref(x_289); +x_240 = x_274; +x_241 = x_275; +x_242 = x_276; +x_243 = x_277; +x_244 = x_278; +x_245 = x_279; +x_246 = x_284; +goto block_273; } else { -lean_object* x_297; +lean_object* x_296; lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -78184,332 +78148,332 @@ lean_dec_ref(x_9); lean_dec_ref(x_8); lean_dec_ref(x_7); lean_inc_ref(x_1); -x_297 = l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(x_1, x_278, x_285); -if (lean_obj_tag(x_297) == 0) +x_296 = l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(x_1, x_277, x_284); +if (lean_obj_tag(x_296) == 0) { -lean_object* x_298; lean_object* x_299; lean_object* x_300; uint8_t x_301; -x_298 = lean_ctor_get(x_297, 0); +lean_object* x_297; lean_object* x_298; lean_object* x_299; uint8_t x_300; +x_297 = lean_ctor_get(x_296, 0); +lean_inc(x_297); +x_298 = lean_ctor_get(x_296, 1); lean_inc(x_298); -x_299 = lean_ctor_get(x_297, 1); -lean_inc(x_299); -lean_dec_ref(x_297); -x_300 = l_Lean_Expr_cleanupAnnotations(x_298); -x_301 = l_Lean_Expr_isApp(x_300); -if (x_301 == 0) +lean_dec_ref(x_296); +x_299 = l_Lean_Expr_cleanupAnnotations(x_297); +x_300 = l_Lean_Expr_isApp(x_299); +if (x_300 == 0) { -lean_dec_ref(x_300); -lean_dec_ref(x_293); -lean_dec_ref(x_290); +lean_dec_ref(x_299); +lean_dec_ref(x_292); +lean_dec_ref(x_289); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); -x_22 = x_275; -x_23 = x_276; -x_24 = x_277; -x_25 = x_278; -x_26 = x_279; -x_27 = x_280; -x_28 = x_299; +x_22 = x_274; +x_23 = x_275; +x_24 = x_276; +x_25 = x_277; +x_26 = x_278; +x_27 = x_279; +x_28 = x_298; goto block_35; } else { -lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_302 = lean_ctor_get(x_300, 1); -lean_inc_ref(x_302); -x_303 = l_Lean_Expr_appFnCleanup___redArg(x_300); -x_304 = l_Lean_Expr_isApp(x_303); -if (x_304 == 0) +lean_object* x_301; lean_object* x_302; uint8_t x_303; +x_301 = lean_ctor_get(x_299, 1); +lean_inc_ref(x_301); +x_302 = l_Lean_Expr_appFnCleanup___redArg(x_299); +x_303 = l_Lean_Expr_isApp(x_302); +if (x_303 == 0) { -lean_dec_ref(x_303); lean_dec_ref(x_302); -lean_dec_ref(x_293); -lean_dec_ref(x_290); +lean_dec_ref(x_301); +lean_dec_ref(x_292); +lean_dec_ref(x_289); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); -x_22 = x_275; -x_23 = x_276; -x_24 = x_277; -x_25 = x_278; -x_26 = x_279; -x_27 = x_280; -x_28 = x_299; +x_22 = x_274; +x_23 = x_275; +x_24 = x_276; +x_25 = x_277; +x_26 = x_278; +x_27 = x_279; +x_28 = x_298; goto block_35; } else { -lean_object* x_305; lean_object* x_306; uint8_t x_307; -x_305 = lean_ctor_get(x_303, 1); -lean_inc_ref(x_305); -x_306 = l_Lean_Expr_appFnCleanup___redArg(x_303); -x_307 = l_Lean_Expr_isApp(x_306); -if (x_307 == 0) -{ -lean_dec_ref(x_306); -lean_dec_ref(x_305); -lean_dec_ref(x_302); -lean_dec_ref(x_293); -lean_dec_ref(x_290); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_22 = x_275; -x_23 = x_276; -x_24 = x_277; -x_25 = x_278; -x_26 = x_279; -x_27 = x_280; -x_28 = x_299; -goto block_35; -} -else -{ -lean_object* x_308; uint8_t x_309; -x_308 = l_Lean_Expr_appFnCleanup___redArg(x_306); -x_309 = l_Lean_Expr_isApp(x_308); -if (x_309 == 0) -{ -lean_dec_ref(x_308); -lean_dec_ref(x_305); -lean_dec_ref(x_302); -lean_dec_ref(x_293); -lean_dec_ref(x_290); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_22 = x_275; -x_23 = x_276; -x_24 = x_277; -x_25 = x_278; -x_26 = x_279; -x_27 = x_280; -x_28 = x_299; -goto block_35; -} -else -{ -lean_object* x_310; lean_object* x_311; uint8_t x_312; -x_310 = l_Lean_Expr_appFnCleanup___redArg(x_308); -x_311 = l_Lean_Tactic_FunInd_inProdLambdaLastArg___closed__1; -x_312 = l_Lean_Expr_isConstOf(x_310, x_311); -lean_dec_ref(x_310); -if (x_312 == 0) +lean_object* x_304; lean_object* x_305; uint8_t x_306; +x_304 = lean_ctor_get(x_302, 1); +lean_inc_ref(x_304); +x_305 = l_Lean_Expr_appFnCleanup___redArg(x_302); +x_306 = l_Lean_Expr_isApp(x_305); +if (x_306 == 0) { lean_dec_ref(x_305); -lean_dec_ref(x_302); -lean_dec_ref(x_293); -lean_dec_ref(x_290); +lean_dec_ref(x_304); +lean_dec_ref(x_301); +lean_dec_ref(x_292); +lean_dec_ref(x_289); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); -x_22 = x_275; -x_23 = x_276; -x_24 = x_277; -x_25 = x_278; -x_26 = x_279; -x_27 = x_280; -x_28 = x_299; +x_22 = x_274; +x_23 = x_275; +x_24 = x_276; +x_25 = x_277; +x_26 = x_278; +x_27 = x_279; +x_28 = x_298; goto block_35; } else { -lean_object* x_313; +lean_object* x_307; uint8_t x_308; +x_307 = l_Lean_Expr_appFnCleanup___redArg(x_305); +x_308 = l_Lean_Expr_isApp(x_307); +if (x_308 == 0) +{ +lean_dec_ref(x_307); +lean_dec_ref(x_304); +lean_dec_ref(x_301); +lean_dec_ref(x_292); +lean_dec_ref(x_289); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_22 = x_274; +x_23 = x_275; +x_24 = x_276; +x_25 = x_277; +x_26 = x_278; +x_27 = x_279; +x_28 = x_298; +goto block_35; +} +else +{ +lean_object* x_309; lean_object* x_310; uint8_t x_311; +x_309 = l_Lean_Expr_appFnCleanup___redArg(x_307); +x_310 = l_Lean_Tactic_FunInd_inProdLambdaLastArg___closed__1; +x_311 = l_Lean_Expr_isConstOf(x_309, x_310); +lean_dec_ref(x_309); +if (x_311 == 0) +{ +lean_dec_ref(x_304); +lean_dec_ref(x_301); +lean_dec_ref(x_292); +lean_dec_ref(x_289); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_22 = x_274; +x_23 = x_275; +x_24 = x_276; +x_25 = x_277; +x_26 = x_278; +x_27 = x_279; +x_28 = x_298; +goto block_35; +} +else +{ +lean_object* x_312; lean_dec_ref(x_1); -lean_inc(x_280); -lean_inc_ref(x_279); -lean_inc(x_278); -lean_inc_ref(x_277); +lean_inc(x_279); +lean_inc_ref(x_278); +lean_inc(x_277); +lean_inc_ref(x_276); lean_inc_ref(x_4); lean_inc(x_3); lean_inc(x_2); -lean_inc_ref(x_293); +lean_inc_ref(x_292); lean_inc_ref(x_6); lean_inc_ref(x_5); -x_313 = l_Lean_Tactic_FunInd_buildInductionBody(x_5, x_6, x_293, x_2, x_3, x_4, x_305, x_275, x_276, x_277, x_278, x_279, x_280, x_299); -if (lean_obj_tag(x_313) == 0) +x_312 = l_Lean_Tactic_FunInd_buildInductionBody(x_5, x_6, x_292, x_2, x_3, x_4, x_304, x_274, x_275, x_276, x_277, x_278, x_279, x_298); +if (lean_obj_tag(x_312) == 0) { -lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; +lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; +x_313 = lean_ctor_get(x_312, 0); +lean_inc(x_313); x_314 = lean_ctor_get(x_313, 0); lean_inc(x_314); -x_315 = lean_ctor_get(x_314, 0); +x_315 = lean_ctor_get(x_312, 1); lean_inc(x_315); +lean_dec_ref(x_312); x_316 = lean_ctor_get(x_313, 1); lean_inc(x_316); -lean_dec_ref(x_313); -x_317 = lean_ctor_get(x_314, 1); +lean_dec(x_313); +x_317 = lean_ctor_get(x_314, 0); lean_inc(x_317); -lean_dec(x_314); -x_318 = lean_ctor_get(x_315, 0); +x_318 = lean_ctor_get(x_314, 1); lean_inc(x_318); -x_319 = lean_ctor_get(x_315, 1); -lean_inc(x_319); -lean_dec(x_315); -lean_inc_ref(x_290); -x_320 = l_Lean_Tactic_FunInd_buildInductionBody(x_5, x_6, x_290, x_2, x_3, x_4, x_302, x_319, x_317, x_277, x_278, x_279, x_280, x_316); -if (lean_obj_tag(x_320) == 0) +lean_dec(x_314); +lean_inc_ref(x_289); +x_319 = l_Lean_Tactic_FunInd_buildInductionBody(x_5, x_6, x_289, x_2, x_3, x_4, x_301, x_318, x_316, x_276, x_277, x_278, x_279, x_315); +if (lean_obj_tag(x_319) == 0) { -lean_object* x_321; lean_object* x_322; uint8_t x_323; +lean_object* x_320; lean_object* x_321; uint8_t x_322; +x_320 = lean_ctor_get(x_319, 0); +lean_inc(x_320); x_321 = lean_ctor_get(x_320, 0); lean_inc(x_321); -x_322 = lean_ctor_get(x_321, 0); -lean_inc(x_322); -x_323 = !lean_is_exclusive(x_320); -if (x_323 == 0) +x_322 = !lean_is_exclusive(x_319); +if (x_322 == 0) { -lean_object* x_324; uint8_t x_325; -x_324 = lean_ctor_get(x_320, 0); -lean_dec(x_324); -x_325 = !lean_is_exclusive(x_321); -if (x_325 == 0) +lean_object* x_323; uint8_t x_324; +x_323 = lean_ctor_get(x_319, 0); +lean_dec(x_323); +x_324 = !lean_is_exclusive(x_320); +if (x_324 == 0) { -lean_object* x_326; uint8_t x_327; -x_326 = lean_ctor_get(x_321, 0); -lean_dec(x_326); -x_327 = !lean_is_exclusive(x_322); -if (x_327 == 0) +lean_object* x_325; uint8_t x_326; +x_325 = lean_ctor_get(x_320, 0); +lean_dec(x_325); +x_326 = !lean_is_exclusive(x_321); +if (x_326 == 0) { -lean_object* x_328; lean_object* x_329; lean_object* x_330; -x_328 = lean_ctor_get(x_322, 0); -x_329 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__11; -x_330 = l_Lean_mkApp4(x_329, x_293, x_290, x_318, x_328); -lean_ctor_set(x_322, 0, x_330); -return x_320; +lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_327 = lean_ctor_get(x_321, 0); +x_328 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__11; +x_329 = l_Lean_mkApp4(x_328, x_292, x_289, x_317, x_327); +lean_ctor_set(x_321, 0, x_329); +return x_319; } else { -lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; -x_331 = lean_ctor_get(x_322, 0); -x_332 = lean_ctor_get(x_322, 1); -lean_inc(x_332); +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; +x_330 = lean_ctor_get(x_321, 0); +x_331 = lean_ctor_get(x_321, 1); lean_inc(x_331); -lean_dec(x_322); -x_333 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__11; -x_334 = l_Lean_mkApp4(x_333, x_293, x_290, x_318, x_331); -x_335 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_335, 0, x_334); -lean_ctor_set(x_335, 1, x_332); -lean_ctor_set(x_321, 0, x_335); -return x_320; -} -} -else -{ -lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; -x_336 = lean_ctor_get(x_321, 1); -lean_inc(x_336); +lean_inc(x_330); lean_dec(x_321); -x_337 = lean_ctor_get(x_322, 0); -lean_inc(x_337); -x_338 = lean_ctor_get(x_322, 1); -lean_inc(x_338); -if (lean_is_exclusive(x_322)) { - lean_ctor_release(x_322, 0); - lean_ctor_release(x_322, 1); - x_339 = x_322; -} else { - lean_dec_ref(x_322); - x_339 = lean_box(0); -} -x_340 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__11; -x_341 = l_Lean_mkApp4(x_340, x_293, x_290, x_318, x_337); -if (lean_is_scalar(x_339)) { - x_342 = lean_alloc_ctor(0, 2, 0); -} else { - x_342 = x_339; -} -lean_ctor_set(x_342, 0, x_341); -lean_ctor_set(x_342, 1, x_338); -x_343 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_343, 0, x_342); -lean_ctor_set(x_343, 1, x_336); -lean_ctor_set(x_320, 0, x_343); -return x_320; +x_332 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__11; +x_333 = l_Lean_mkApp4(x_332, x_292, x_289, x_317, x_330); +x_334 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_334, 0, x_333); +lean_ctor_set(x_334, 1, x_331); +lean_ctor_set(x_320, 0, x_334); +return x_319; } } else { -lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; -x_344 = lean_ctor_get(x_320, 1); -lean_inc(x_344); +lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; +x_335 = lean_ctor_get(x_320, 1); +lean_inc(x_335); lean_dec(x_320); -x_345 = lean_ctor_get(x_321, 1); -lean_inc(x_345); +x_336 = lean_ctor_get(x_321, 0); +lean_inc(x_336); +x_337 = lean_ctor_get(x_321, 1); +lean_inc(x_337); if (lean_is_exclusive(x_321)) { lean_ctor_release(x_321, 0); lean_ctor_release(x_321, 1); - x_346 = x_321; + x_338 = x_321; } else { lean_dec_ref(x_321); - x_346 = lean_box(0); + x_338 = lean_box(0); } -x_347 = lean_ctor_get(x_322, 0); -lean_inc(x_347); -x_348 = lean_ctor_get(x_322, 1); -lean_inc(x_348); -if (lean_is_exclusive(x_322)) { - lean_ctor_release(x_322, 0); - lean_ctor_release(x_322, 1); - x_349 = x_322; +x_339 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__11; +x_340 = l_Lean_mkApp4(x_339, x_292, x_289, x_317, x_336); +if (lean_is_scalar(x_338)) { + x_341 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_322); - x_349 = lean_box(0); + x_341 = x_338; } -x_350 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__11; -x_351 = l_Lean_mkApp4(x_350, x_293, x_290, x_318, x_347); -if (lean_is_scalar(x_349)) { +lean_ctor_set(x_341, 0, x_340); +lean_ctor_set(x_341, 1, x_337); +x_342 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_342, 0, x_341); +lean_ctor_set(x_342, 1, x_335); +lean_ctor_set(x_319, 0, x_342); +return x_319; +} +} +else +{ +lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; +x_343 = lean_ctor_get(x_319, 1); +lean_inc(x_343); +lean_dec(x_319); +x_344 = lean_ctor_get(x_320, 1); +lean_inc(x_344); +if (lean_is_exclusive(x_320)) { + lean_ctor_release(x_320, 0); + lean_ctor_release(x_320, 1); + x_345 = x_320; +} else { + lean_dec_ref(x_320); + x_345 = lean_box(0); +} +x_346 = lean_ctor_get(x_321, 0); +lean_inc(x_346); +x_347 = lean_ctor_get(x_321, 1); +lean_inc(x_347); +if (lean_is_exclusive(x_321)) { + lean_ctor_release(x_321, 0); + lean_ctor_release(x_321, 1); + x_348 = x_321; +} else { + lean_dec_ref(x_321); + x_348 = lean_box(0); +} +x_349 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__11; +x_350 = l_Lean_mkApp4(x_349, x_292, x_289, x_317, x_346); +if (lean_is_scalar(x_348)) { + x_351 = lean_alloc_ctor(0, 2, 0); +} else { + x_351 = x_348; +} +lean_ctor_set(x_351, 0, x_350); +lean_ctor_set(x_351, 1, x_347); +if (lean_is_scalar(x_345)) { x_352 = lean_alloc_ctor(0, 2, 0); } else { - x_352 = x_349; + x_352 = x_345; } lean_ctor_set(x_352, 0, x_351); -lean_ctor_set(x_352, 1, x_348); -if (lean_is_scalar(x_346)) { - x_353 = lean_alloc_ctor(0, 2, 0); -} else { - x_353 = x_346; -} +lean_ctor_set(x_352, 1, x_344); +x_353 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_353, 0, x_352); -lean_ctor_set(x_353, 1, x_345); -x_354 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_354, 0, x_353); -lean_ctor_set(x_354, 1, x_344); -return x_354; +lean_ctor_set(x_353, 1, x_343); +return x_353; } } else { -lean_dec(x_318); -lean_dec_ref(x_293); -lean_dec_ref(x_290); -return x_320; +lean_dec(x_317); +lean_dec_ref(x_292); +lean_dec_ref(x_289); +return x_319; } } else { -lean_dec_ref(x_302); -lean_dec_ref(x_293); -lean_dec_ref(x_290); -lean_dec(x_280); -lean_dec_ref(x_279); -lean_dec(x_278); -lean_dec_ref(x_277); +lean_dec_ref(x_301); +lean_dec_ref(x_292); +lean_dec_ref(x_289); +lean_dec(x_279); +lean_dec_ref(x_278); +lean_dec(x_277); +lean_dec_ref(x_276); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); -return x_313; +return x_312; } } } @@ -78519,38 +78483,38 @@ return x_313; } else { -uint8_t x_355; -lean_dec_ref(x_293); -lean_dec_ref(x_290); -lean_dec(x_280); -lean_dec_ref(x_279); -lean_dec(x_278); -lean_dec_ref(x_277); +uint8_t x_354; +lean_dec_ref(x_292); +lean_dec_ref(x_289); +lean_dec(x_279); +lean_dec_ref(x_278); +lean_dec(x_277); lean_dec_ref(x_276); lean_dec_ref(x_275); +lean_dec_ref(x_274); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_355 = !lean_is_exclusive(x_297); -if (x_355 == 0) +x_354 = !lean_is_exclusive(x_296); +if (x_354 == 0) { -return x_297; +return x_296; } else { -lean_object* x_356; lean_object* x_357; lean_object* x_358; -x_356 = lean_ctor_get(x_297, 0); -x_357 = lean_ctor_get(x_297, 1); -lean_inc(x_357); +lean_object* x_355; lean_object* x_356; lean_object* x_357; +x_355 = lean_ctor_get(x_296, 0); +x_356 = lean_ctor_get(x_296, 1); lean_inc(x_356); -lean_dec(x_297); -x_358 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_358, 0, x_356); -lean_ctor_set(x_358, 1, x_357); -return x_358; +lean_inc(x_355); +lean_dec(x_296); +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; } } } @@ -78559,12 +78523,12 @@ return x_358; } else { -lean_object* x_359; lean_object* x_360; lean_object* x_361; -lean_dec_ref(x_286); -lean_dec(x_280); -lean_dec_ref(x_279); -lean_dec(x_278); -lean_dec_ref(x_277); +lean_object* x_358; lean_object* x_359; lean_object* x_360; +lean_dec_ref(x_285); +lean_dec(x_279); +lean_dec_ref(x_278); +lean_dec(x_277); +lean_dec_ref(x_276); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -78579,89 +78543,89 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_359 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__13; +x_358 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__13; +x_359 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_359, 0, x_358); +lean_ctor_set(x_359, 1, x_274); x_360 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_360, 0, x_359); lean_ctor_set(x_360, 1, x_275); -x_361 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_361, 0, x_360); -lean_ctor_set(x_361, 1, x_276); -lean_ctor_set(x_282, 0, x_361); -return x_282; +lean_ctor_set(x_281, 0, x_360); +return x_281; } } else { -lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; uint8_t x_366; -x_362 = lean_ctor_get(x_282, 0); -x_363 = lean_ctor_get(x_282, 1); -lean_inc(x_363); +lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; uint8_t x_365; +x_361 = lean_ctor_get(x_281, 0); +x_362 = lean_ctor_get(x_281, 1); lean_inc(x_362); -lean_dec(x_282); -x_364 = l_Lean_Expr_cleanupAnnotations(x_362); -x_365 = l_Lean_Tactic_FunInd_foldAndCollect___lam__16___closed__1; -x_366 = l_Lean_Expr_isConstOf(x_364, x_365); +lean_inc(x_361); +lean_dec(x_281); +x_363 = l_Lean_Expr_cleanupAnnotations(x_361); +x_364 = l_Lean_Tactic_FunInd_foldAndCollect___lam__16___closed__1; +x_365 = l_Lean_Expr_isConstOf(x_363, x_364); +if (x_365 == 0) +{ +uint8_t x_366; +x_366 = l_Lean_Expr_isApp(x_363); if (x_366 == 0) { -uint8_t x_367; -x_367 = l_Lean_Expr_isApp(x_364); -if (x_367 == 0) -{ -lean_dec_ref(x_364); -x_217 = x_275; -x_218 = x_276; -x_219 = x_277; -x_220 = x_278; -x_221 = x_279; -x_222 = x_280; -x_223 = x_363; -goto block_274; +lean_dec_ref(x_363); +x_240 = x_274; +x_241 = x_275; +x_242 = x_276; +x_243 = x_277; +x_244 = x_278; +x_245 = x_279; +x_246 = x_362; +goto block_273; } else { -lean_object* x_368; lean_object* x_369; uint8_t x_370; -x_368 = lean_ctor_get(x_364, 1); -lean_inc_ref(x_368); -x_369 = l_Lean_Expr_appFnCleanup___redArg(x_364); -x_370 = l_Lean_Expr_isApp(x_369); -if (x_370 == 0) +lean_object* x_367; lean_object* x_368; uint8_t x_369; +x_367 = lean_ctor_get(x_363, 1); +lean_inc_ref(x_367); +x_368 = l_Lean_Expr_appFnCleanup___redArg(x_363); +x_369 = l_Lean_Expr_isApp(x_368); +if (x_369 == 0) { -lean_dec_ref(x_369); lean_dec_ref(x_368); -x_217 = x_275; -x_218 = x_276; -x_219 = x_277; -x_220 = x_278; -x_221 = x_279; -x_222 = x_280; -x_223 = x_363; -goto block_274; +lean_dec_ref(x_367); +x_240 = x_274; +x_241 = x_275; +x_242 = x_276; +x_243 = x_277; +x_244 = x_278; +x_245 = x_279; +x_246 = x_362; +goto block_273; } else { -lean_object* x_371; lean_object* x_372; lean_object* x_373; uint8_t x_374; -x_371 = lean_ctor_get(x_369, 1); -lean_inc_ref(x_371); -x_372 = l_Lean_Expr_appFnCleanup___redArg(x_369); -x_373 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__8; -x_374 = l_Lean_Expr_isConstOf(x_372, x_373); -lean_dec_ref(x_372); -if (x_374 == 0) -{ +lean_object* x_370; lean_object* x_371; lean_object* x_372; uint8_t x_373; +x_370 = lean_ctor_get(x_368, 1); +lean_inc_ref(x_370); +x_371 = l_Lean_Expr_appFnCleanup___redArg(x_368); +x_372 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__8; +x_373 = l_Lean_Expr_isConstOf(x_371, x_372); lean_dec_ref(x_371); -lean_dec_ref(x_368); -x_217 = x_275; -x_218 = x_276; -x_219 = x_277; -x_220 = x_278; -x_221 = x_279; -x_222 = x_280; -x_223 = x_363; -goto block_274; +if (x_373 == 0) +{ +lean_dec_ref(x_370); +lean_dec_ref(x_367); +x_240 = x_274; +x_241 = x_275; +x_242 = x_276; +x_243 = x_277; +x_244 = x_278; +x_245 = x_279; +x_246 = x_362; +goto block_273; } else { -lean_object* x_375; +lean_object* x_374; lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -78671,266 +78635,266 @@ lean_dec_ref(x_9); lean_dec_ref(x_8); lean_dec_ref(x_7); lean_inc_ref(x_1); -x_375 = l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(x_1, x_278, x_363); -if (lean_obj_tag(x_375) == 0) +x_374 = l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(x_1, x_277, x_362); +if (lean_obj_tag(x_374) == 0) { -lean_object* x_376; lean_object* x_377; lean_object* x_378; uint8_t x_379; -x_376 = lean_ctor_get(x_375, 0); +lean_object* x_375; lean_object* x_376; lean_object* x_377; uint8_t x_378; +x_375 = lean_ctor_get(x_374, 0); +lean_inc(x_375); +x_376 = lean_ctor_get(x_374, 1); lean_inc(x_376); -x_377 = lean_ctor_get(x_375, 1); -lean_inc(x_377); -lean_dec_ref(x_375); -x_378 = l_Lean_Expr_cleanupAnnotations(x_376); -x_379 = l_Lean_Expr_isApp(x_378); -if (x_379 == 0) +lean_dec_ref(x_374); +x_377 = l_Lean_Expr_cleanupAnnotations(x_375); +x_378 = l_Lean_Expr_isApp(x_377); +if (x_378 == 0) { -lean_dec_ref(x_378); -lean_dec_ref(x_371); -lean_dec_ref(x_368); +lean_dec_ref(x_377); +lean_dec_ref(x_370); +lean_dec_ref(x_367); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); -x_22 = x_275; -x_23 = x_276; -x_24 = x_277; -x_25 = x_278; -x_26 = x_279; -x_27 = x_280; -x_28 = x_377; +x_22 = x_274; +x_23 = x_275; +x_24 = x_276; +x_25 = x_277; +x_26 = x_278; +x_27 = x_279; +x_28 = x_376; goto block_35; } else { -lean_object* x_380; lean_object* x_381; uint8_t x_382; -x_380 = lean_ctor_get(x_378, 1); -lean_inc_ref(x_380); -x_381 = l_Lean_Expr_appFnCleanup___redArg(x_378); -x_382 = l_Lean_Expr_isApp(x_381); -if (x_382 == 0) +lean_object* x_379; lean_object* x_380; uint8_t x_381; +x_379 = lean_ctor_get(x_377, 1); +lean_inc_ref(x_379); +x_380 = l_Lean_Expr_appFnCleanup___redArg(x_377); +x_381 = l_Lean_Expr_isApp(x_380); +if (x_381 == 0) { -lean_dec_ref(x_381); lean_dec_ref(x_380); -lean_dec_ref(x_371); -lean_dec_ref(x_368); +lean_dec_ref(x_379); +lean_dec_ref(x_370); +lean_dec_ref(x_367); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); -x_22 = x_275; -x_23 = x_276; -x_24 = x_277; -x_25 = x_278; -x_26 = x_279; -x_27 = x_280; -x_28 = x_377; +x_22 = x_274; +x_23 = x_275; +x_24 = x_276; +x_25 = x_277; +x_26 = x_278; +x_27 = x_279; +x_28 = x_376; goto block_35; } else { -lean_object* x_383; lean_object* x_384; uint8_t x_385; -x_383 = lean_ctor_get(x_381, 1); -lean_inc_ref(x_383); -x_384 = l_Lean_Expr_appFnCleanup___redArg(x_381); -x_385 = l_Lean_Expr_isApp(x_384); -if (x_385 == 0) -{ -lean_dec_ref(x_384); -lean_dec_ref(x_383); -lean_dec_ref(x_380); -lean_dec_ref(x_371); -lean_dec_ref(x_368); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_22 = x_275; -x_23 = x_276; -x_24 = x_277; -x_25 = x_278; -x_26 = x_279; -x_27 = x_280; -x_28 = x_377; -goto block_35; -} -else -{ -lean_object* x_386; uint8_t x_387; -x_386 = l_Lean_Expr_appFnCleanup___redArg(x_384); -x_387 = l_Lean_Expr_isApp(x_386); -if (x_387 == 0) -{ -lean_dec_ref(x_386); -lean_dec_ref(x_383); -lean_dec_ref(x_380); -lean_dec_ref(x_371); -lean_dec_ref(x_368); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_22 = x_275; -x_23 = x_276; -x_24 = x_277; -x_25 = x_278; -x_26 = x_279; -x_27 = x_280; -x_28 = x_377; -goto block_35; -} -else -{ -lean_object* x_388; lean_object* x_389; uint8_t x_390; -x_388 = l_Lean_Expr_appFnCleanup___redArg(x_386); -x_389 = l_Lean_Tactic_FunInd_inProdLambdaLastArg___closed__1; -x_390 = l_Lean_Expr_isConstOf(x_388, x_389); -lean_dec_ref(x_388); -if (x_390 == 0) +lean_object* x_382; lean_object* x_383; uint8_t x_384; +x_382 = lean_ctor_get(x_380, 1); +lean_inc_ref(x_382); +x_383 = l_Lean_Expr_appFnCleanup___redArg(x_380); +x_384 = l_Lean_Expr_isApp(x_383); +if (x_384 == 0) { lean_dec_ref(x_383); -lean_dec_ref(x_380); -lean_dec_ref(x_371); -lean_dec_ref(x_368); +lean_dec_ref(x_382); +lean_dec_ref(x_379); +lean_dec_ref(x_370); +lean_dec_ref(x_367); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); -x_22 = x_275; -x_23 = x_276; -x_24 = x_277; -x_25 = x_278; -x_26 = x_279; -x_27 = x_280; -x_28 = x_377; +x_22 = x_274; +x_23 = x_275; +x_24 = x_276; +x_25 = x_277; +x_26 = x_278; +x_27 = x_279; +x_28 = x_376; goto block_35; } else { -lean_object* x_391; +lean_object* x_385; uint8_t x_386; +x_385 = l_Lean_Expr_appFnCleanup___redArg(x_383); +x_386 = l_Lean_Expr_isApp(x_385); +if (x_386 == 0) +{ +lean_dec_ref(x_385); +lean_dec_ref(x_382); +lean_dec_ref(x_379); +lean_dec_ref(x_370); +lean_dec_ref(x_367); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_22 = x_274; +x_23 = x_275; +x_24 = x_276; +x_25 = x_277; +x_26 = x_278; +x_27 = x_279; +x_28 = x_376; +goto block_35; +} +else +{ +lean_object* x_387; lean_object* x_388; uint8_t x_389; +x_387 = l_Lean_Expr_appFnCleanup___redArg(x_385); +x_388 = l_Lean_Tactic_FunInd_inProdLambdaLastArg___closed__1; +x_389 = l_Lean_Expr_isConstOf(x_387, x_388); +lean_dec_ref(x_387); +if (x_389 == 0) +{ +lean_dec_ref(x_382); +lean_dec_ref(x_379); +lean_dec_ref(x_370); +lean_dec_ref(x_367); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_22 = x_274; +x_23 = x_275; +x_24 = x_276; +x_25 = x_277; +x_26 = x_278; +x_27 = x_279; +x_28 = x_376; +goto block_35; +} +else +{ +lean_object* x_390; lean_dec_ref(x_1); -lean_inc(x_280); -lean_inc_ref(x_279); -lean_inc(x_278); -lean_inc_ref(x_277); +lean_inc(x_279); +lean_inc_ref(x_278); +lean_inc(x_277); +lean_inc_ref(x_276); lean_inc_ref(x_4); lean_inc(x_3); lean_inc(x_2); -lean_inc_ref(x_371); +lean_inc_ref(x_370); lean_inc_ref(x_6); lean_inc_ref(x_5); -x_391 = l_Lean_Tactic_FunInd_buildInductionBody(x_5, x_6, x_371, x_2, x_3, x_4, x_383, x_275, x_276, x_277, x_278, x_279, x_280, x_377); -if (lean_obj_tag(x_391) == 0) +x_390 = l_Lean_Tactic_FunInd_buildInductionBody(x_5, x_6, x_370, x_2, x_3, x_4, x_382, x_274, x_275, x_276, x_277, x_278, x_279, x_376); +if (lean_obj_tag(x_390) == 0) { -lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; +lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; +x_391 = lean_ctor_get(x_390, 0); +lean_inc(x_391); x_392 = lean_ctor_get(x_391, 0); lean_inc(x_392); -x_393 = lean_ctor_get(x_392, 0); +x_393 = lean_ctor_get(x_390, 1); lean_inc(x_393); +lean_dec_ref(x_390); x_394 = lean_ctor_get(x_391, 1); lean_inc(x_394); -lean_dec_ref(x_391); -x_395 = lean_ctor_get(x_392, 1); +lean_dec(x_391); +x_395 = lean_ctor_get(x_392, 0); lean_inc(x_395); -lean_dec(x_392); -x_396 = lean_ctor_get(x_393, 0); +x_396 = lean_ctor_get(x_392, 1); lean_inc(x_396); -x_397 = lean_ctor_get(x_393, 1); -lean_inc(x_397); -lean_dec(x_393); -lean_inc_ref(x_368); -x_398 = l_Lean_Tactic_FunInd_buildInductionBody(x_5, x_6, x_368, x_2, x_3, x_4, x_380, x_397, x_395, x_277, x_278, x_279, x_280, x_394); -if (lean_obj_tag(x_398) == 0) +lean_dec(x_392); +lean_inc_ref(x_367); +x_397 = l_Lean_Tactic_FunInd_buildInductionBody(x_5, x_6, x_367, x_2, x_3, x_4, x_379, x_396, x_394, x_276, x_277, x_278, x_279, x_393); +if (lean_obj_tag(x_397) == 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; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; +lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; +x_398 = lean_ctor_get(x_397, 0); +lean_inc(x_398); x_399 = lean_ctor_get(x_398, 0); lean_inc(x_399); -x_400 = lean_ctor_get(x_399, 0); +x_400 = lean_ctor_get(x_397, 1); lean_inc(x_400); -x_401 = lean_ctor_get(x_398, 1); -lean_inc(x_401); +if (lean_is_exclusive(x_397)) { + lean_ctor_release(x_397, 0); + lean_ctor_release(x_397, 1); + x_401 = x_397; +} else { + lean_dec_ref(x_397); + x_401 = lean_box(0); +} +x_402 = lean_ctor_get(x_398, 1); +lean_inc(x_402); if (lean_is_exclusive(x_398)) { lean_ctor_release(x_398, 0); lean_ctor_release(x_398, 1); - x_402 = x_398; + x_403 = x_398; } else { lean_dec_ref(x_398); - x_402 = lean_box(0); + x_403 = lean_box(0); } -x_403 = lean_ctor_get(x_399, 1); -lean_inc(x_403); +x_404 = lean_ctor_get(x_399, 0); +lean_inc(x_404); +x_405 = lean_ctor_get(x_399, 1); +lean_inc(x_405); if (lean_is_exclusive(x_399)) { lean_ctor_release(x_399, 0); lean_ctor_release(x_399, 1); - x_404 = x_399; + x_406 = x_399; } else { lean_dec_ref(x_399); - x_404 = lean_box(0); + x_406 = lean_box(0); } -x_405 = lean_ctor_get(x_400, 0); -lean_inc(x_405); -x_406 = lean_ctor_get(x_400, 1); -lean_inc(x_406); -if (lean_is_exclusive(x_400)) { - lean_ctor_release(x_400, 0); - lean_ctor_release(x_400, 1); - x_407 = x_400; +x_407 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__11; +x_408 = l_Lean_mkApp4(x_407, x_370, x_367, x_395, x_404); +if (lean_is_scalar(x_406)) { + x_409 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_400); - x_407 = lean_box(0); + x_409 = x_406; } -x_408 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__11; -x_409 = l_Lean_mkApp4(x_408, x_371, x_368, x_396, x_405); -if (lean_is_scalar(x_407)) { +lean_ctor_set(x_409, 0, x_408); +lean_ctor_set(x_409, 1, x_405); +if (lean_is_scalar(x_403)) { x_410 = lean_alloc_ctor(0, 2, 0); } else { - x_410 = x_407; + x_410 = x_403; } lean_ctor_set(x_410, 0, x_409); -lean_ctor_set(x_410, 1, x_406); -if (lean_is_scalar(x_404)) { +lean_ctor_set(x_410, 1, x_402); +if (lean_is_scalar(x_401)) { x_411 = lean_alloc_ctor(0, 2, 0); } else { - x_411 = x_404; + x_411 = x_401; } lean_ctor_set(x_411, 0, x_410); -lean_ctor_set(x_411, 1, x_403); -if (lean_is_scalar(x_402)) { - x_412 = lean_alloc_ctor(0, 2, 0); -} else { - x_412 = x_402; -} -lean_ctor_set(x_412, 0, x_411); -lean_ctor_set(x_412, 1, x_401); -return x_412; +lean_ctor_set(x_411, 1, x_400); +return x_411; } else { -lean_dec(x_396); -lean_dec_ref(x_371); -lean_dec_ref(x_368); -return x_398; +lean_dec(x_395); +lean_dec_ref(x_370); +lean_dec_ref(x_367); +return x_397; } } else { -lean_dec_ref(x_380); -lean_dec_ref(x_371); -lean_dec_ref(x_368); -lean_dec(x_280); -lean_dec_ref(x_279); -lean_dec(x_278); -lean_dec_ref(x_277); +lean_dec_ref(x_379); +lean_dec_ref(x_370); +lean_dec_ref(x_367); +lean_dec(x_279); +lean_dec_ref(x_278); +lean_dec(x_277); +lean_dec_ref(x_276); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); -return x_391; +return x_390; } } } @@ -78940,41 +78904,41 @@ return x_391; } else { -lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; -lean_dec_ref(x_371); -lean_dec_ref(x_368); -lean_dec(x_280); -lean_dec_ref(x_279); -lean_dec(x_278); -lean_dec_ref(x_277); +lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; +lean_dec_ref(x_370); +lean_dec_ref(x_367); +lean_dec(x_279); +lean_dec_ref(x_278); +lean_dec(x_277); lean_dec_ref(x_276); lean_dec_ref(x_275); +lean_dec_ref(x_274); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_413 = lean_ctor_get(x_375, 0); +x_412 = lean_ctor_get(x_374, 0); +lean_inc(x_412); +x_413 = lean_ctor_get(x_374, 1); lean_inc(x_413); -x_414 = lean_ctor_get(x_375, 1); -lean_inc(x_414); -if (lean_is_exclusive(x_375)) { - lean_ctor_release(x_375, 0); - lean_ctor_release(x_375, 1); - x_415 = x_375; +if (lean_is_exclusive(x_374)) { + lean_ctor_release(x_374, 0); + lean_ctor_release(x_374, 1); + x_414 = x_374; } else { - lean_dec_ref(x_375); - x_415 = lean_box(0); + lean_dec_ref(x_374); + x_414 = lean_box(0); } -if (lean_is_scalar(x_415)) { - x_416 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_414)) { + x_415 = lean_alloc_ctor(1, 2, 0); } else { - x_416 = x_415; + x_415 = x_414; } -lean_ctor_set(x_416, 0, x_413); -lean_ctor_set(x_416, 1, x_414); -return x_416; +lean_ctor_set(x_415, 0, x_412); +lean_ctor_set(x_415, 1, x_413); +return x_415; } } } @@ -78982,12 +78946,12 @@ return x_416; } else { -lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; -lean_dec_ref(x_364); -lean_dec(x_280); -lean_dec_ref(x_279); -lean_dec(x_278); -lean_dec_ref(x_277); +lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; +lean_dec_ref(x_363); +lean_dec(x_279); +lean_dec_ref(x_278); +lean_dec(x_277); +lean_dec_ref(x_276); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -79002,29 +78966,29 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_417 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__13; +x_416 = l_Lean_Tactic_FunInd_buildInductionBody___lam__28___closed__13; +x_417 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_417, 0, x_416); +lean_ctor_set(x_417, 1, x_274); x_418 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_418, 0, x_417); lean_ctor_set(x_418, 1, x_275); x_419 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_419, 0, x_418); -lean_ctor_set(x_419, 1, x_276); -x_420 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_420, 0, x_419); -lean_ctor_set(x_420, 1, x_363); -return x_420; +lean_ctor_set(x_419, 1, x_362); +return x_419; } } } else { -uint8_t x_421; -lean_dec(x_280); -lean_dec_ref(x_279); -lean_dec(x_278); -lean_dec_ref(x_277); +uint8_t x_420; +lean_dec(x_279); +lean_dec_ref(x_278); +lean_dec(x_277); lean_dec_ref(x_276); lean_dec_ref(x_275); +lean_dec_ref(x_274); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -79039,242 +79003,242 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_421 = !lean_is_exclusive(x_282); -if (x_421 == 0) +x_420 = !lean_is_exclusive(x_281); +if (x_420 == 0) { -return x_282; +return x_281; } else { -lean_object* x_422; lean_object* x_423; lean_object* x_424; -x_422 = lean_ctor_get(x_282, 0); -x_423 = lean_ctor_get(x_282, 1); -lean_inc(x_423); +lean_object* x_421; lean_object* x_422; lean_object* x_423; +x_421 = lean_ctor_get(x_281, 0); +x_422 = lean_ctor_get(x_281, 1); lean_inc(x_422); -lean_dec(x_282); -x_424 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_424, 0, x_422); -lean_ctor_set(x_424, 1, x_423); -return x_424; +lean_inc(x_421); +lean_dec(x_281); +x_423 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_423, 0, x_421); +lean_ctor_set(x_423, 1, x_422); +return x_423; } } } -block_581: +block_580: { -if (x_434 == 0) +if (x_433 == 0) { -lean_dec_ref(x_428); -x_275 = x_432; +lean_dec_ref(x_427); +x_274 = x_426; +x_275 = x_425; x_276 = x_429; -x_277 = x_431; -x_278 = x_433; -x_279 = x_427; -x_280 = x_426; -x_281 = x_430; -goto block_425; +x_277 = x_430; +x_278 = x_431; +x_279 = x_428; +x_280 = x_432; +goto block_424; } else { -lean_object* x_435; lean_object* x_436; uint8_t x_437; -x_435 = l_Lean_Expr_getAppFn(x_1); -x_436 = l_Lean_Expr_constName_x21(x_435); -x_437 = lean_is_no_confusion(x_428, x_436); -if (x_437 == 0) +lean_object* x_434; lean_object* x_435; uint8_t x_436; +x_434 = l_Lean_Expr_getAppFn(x_1); +x_435 = l_Lean_Expr_constName_x21(x_434); +x_436 = lean_is_no_confusion(x_427, x_435); +if (x_436 == 0) { -lean_dec_ref(x_435); -x_275 = x_432; +lean_dec_ref(x_434); +x_274 = x_426; +x_275 = x_425; x_276 = x_429; -x_277 = x_431; -x_278 = x_433; -x_279 = x_427; -x_280 = x_426; -x_281 = x_430; -goto block_425; +x_277 = x_430; +x_278 = x_431; +x_279 = x_428; +x_280 = x_432; +goto block_424; } else { -lean_object* x_438; -lean_inc(x_426); -lean_inc_ref(x_427); -lean_inc(x_433); +lean_object* x_437; +lean_inc(x_428); lean_inc_ref(x_431); -x_438 = lean_infer_type(x_435, x_431, x_433, x_427, x_426, x_430); -if (lean_obj_tag(x_438) == 0) +lean_inc(x_430); +lean_inc_ref(x_429); +x_437 = lean_infer_type(x_434, x_429, x_430, x_431, x_428, x_432); +if (lean_obj_tag(x_437) == 0) { -lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; -x_439 = lean_ctor_get(x_438, 0); +lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; +x_438 = lean_ctor_get(x_437, 0); +lean_inc(x_438); +x_439 = lean_ctor_get(x_437, 1); lean_inc(x_439); -x_440 = lean_ctor_get(x_438, 1); -lean_inc(x_440); -lean_dec_ref(x_438); -x_441 = l_Lean_Expr_getNumHeadForalls(x_439); -lean_dec(x_439); -x_442 = lean_unsigned_to_nat(1u); -x_443 = lean_nat_sub(x_441, x_442); -lean_dec(x_441); -x_444 = l_Lean_Expr_getAppNumArgs(x_1); -x_445 = lean_nat_sub(x_444, x_443); +lean_dec_ref(x_437); +x_440 = l_Lean_Expr_getNumHeadForalls(x_438); +lean_dec(x_438); +x_441 = lean_unsigned_to_nat(1u); +x_442 = lean_nat_sub(x_440, x_441); +lean_dec(x_440); +x_443 = l_Lean_Expr_getAppNumArgs(x_1); +x_444 = lean_nat_sub(x_443, x_442); +lean_dec(x_442); lean_dec(x_443); +x_445 = lean_nat_sub(x_444, x_441); lean_dec(x_444); -x_446 = lean_nat_sub(x_445, x_442); -lean_dec(x_445); -x_447 = l_Lean_Expr_getRevArg_x21(x_1, x_446); -lean_inc(x_426); -lean_inc_ref(x_427); -lean_inc(x_433); +x_446 = l_Lean_Expr_getRevArg_x21(x_1, x_445); +lean_inc(x_428); lean_inc_ref(x_431); -lean_inc_ref(x_447); -x_448 = lean_infer_type(x_447, x_431, x_433, x_427, x_426, x_440); -if (lean_obj_tag(x_448) == 0) +lean_inc(x_430); +lean_inc_ref(x_429); +lean_inc_ref(x_446); +x_447 = lean_infer_type(x_446, x_429, x_430, x_431, x_428, x_439); +if (lean_obj_tag(x_447) == 0) { -lean_object* x_449; lean_object* x_450; lean_object* x_451; -x_449 = lean_ctor_get(x_448, 0); +lean_object* x_448; lean_object* x_449; lean_object* x_450; +x_448 = lean_ctor_get(x_447, 0); +lean_inc(x_448); +x_449 = lean_ctor_get(x_447, 1); lean_inc(x_449); -x_450 = lean_ctor_get(x_448, 1); -lean_inc(x_450); -lean_dec_ref(x_448); -lean_inc(x_426); -lean_inc_ref(x_427); -lean_inc(x_433); +lean_dec_ref(x_447); +lean_inc(x_428); lean_inc_ref(x_431); -x_451 = l_Lean_Meta_matchEq_x3f(x_449, x_431, x_433, x_427, x_426, x_450); +lean_inc(x_430); +lean_inc_ref(x_429); +x_450 = l_Lean_Meta_matchEq_x3f(x_448, x_429, x_430, x_431, x_428, x_449); +if (lean_obj_tag(x_450) == 0) +{ +lean_object* x_451; +x_451 = lean_ctor_get(x_450, 0); +lean_inc(x_451); if (lean_obj_tag(x_451) == 0) { lean_object* x_452; -x_452 = lean_ctor_get(x_451, 0); +lean_dec_ref(x_446); +x_452 = lean_ctor_get(x_450, 1); lean_inc(x_452); -if (lean_obj_tag(x_452) == 0) -{ -lean_object* x_453; -lean_dec_ref(x_447); -x_453 = lean_ctor_get(x_451, 1); -lean_inc(x_453); -lean_dec_ref(x_451); -x_275 = x_432; +lean_dec_ref(x_450); +x_274 = x_426; +x_275 = x_425; x_276 = x_429; -x_277 = x_431; -x_278 = x_433; -x_279 = x_427; -x_280 = x_426; -x_281 = x_453; -goto block_425; +x_277 = x_430; +x_278 = x_431; +x_279 = x_428; +x_280 = x_452; +goto block_424; } else { -lean_object* x_454; uint8_t x_455; -x_454 = lean_ctor_get(x_452, 0); -lean_inc(x_454); -lean_dec_ref(x_452); -x_455 = !lean_is_exclusive(x_454); -if (x_455 == 0) -{ -lean_object* x_456; lean_object* x_457; lean_object* x_458; uint8_t x_459; -x_456 = lean_ctor_get(x_454, 1); -x_457 = lean_ctor_get(x_454, 0); -lean_dec(x_457); -x_458 = lean_ctor_get(x_451, 1); -lean_inc(x_458); +lean_object* x_453; uint8_t x_454; +x_453 = lean_ctor_get(x_451, 0); +lean_inc(x_453); lean_dec_ref(x_451); -x_459 = !lean_is_exclusive(x_456); -if (x_459 == 0) +x_454 = !lean_is_exclusive(x_453); +if (x_454 == 0) { -lean_object* x_460; lean_object* x_461; lean_object* x_462; -x_460 = lean_ctor_get(x_456, 0); -x_461 = lean_ctor_get(x_456, 1); -lean_inc(x_426); -lean_inc_ref(x_427); -lean_inc(x_433); +lean_object* x_455; lean_object* x_456; lean_object* x_457; uint8_t x_458; +x_455 = lean_ctor_get(x_453, 1); +x_456 = lean_ctor_get(x_453, 0); +lean_dec(x_456); +x_457 = lean_ctor_get(x_450, 1); +lean_inc(x_457); +lean_dec_ref(x_450); +x_458 = !lean_is_exclusive(x_455); +if (x_458 == 0) +{ +lean_object* x_459; lean_object* x_460; lean_object* x_461; +x_459 = lean_ctor_get(x_455, 0); +x_460 = lean_ctor_get(x_455, 1); +lean_inc(x_428); lean_inc_ref(x_431); -x_462 = l_Lean_Meta_matchConstructorApp_x3f(x_460, x_431, x_433, x_427, x_426, x_458); +lean_inc(x_430); +lean_inc_ref(x_429); +x_461 = l_Lean_Meta_matchConstructorApp_x3f(x_459, x_429, x_430, x_431, x_428, x_457); +if (lean_obj_tag(x_461) == 0) +{ +lean_object* x_462; +x_462 = lean_ctor_get(x_461, 0); +lean_inc(x_462); if (lean_obj_tag(x_462) == 0) { lean_object* x_463; -x_463 = lean_ctor_get(x_462, 0); +lean_free_object(x_455); +lean_dec(x_460); +lean_free_object(x_453); +lean_dec_ref(x_446); +x_463 = lean_ctor_get(x_461, 1); lean_inc(x_463); -if (lean_obj_tag(x_463) == 0) -{ -lean_object* x_464; -lean_free_object(x_456); -lean_dec(x_461); -lean_free_object(x_454); -lean_dec_ref(x_447); -x_464 = lean_ctor_get(x_462, 1); -lean_inc(x_464); -lean_dec_ref(x_462); -x_275 = x_432; +lean_dec_ref(x_461); +x_274 = x_426; +x_275 = x_425; x_276 = x_429; -x_277 = x_431; -x_278 = x_433; -x_279 = x_427; -x_280 = x_426; -x_281 = x_464; -goto block_425; +x_277 = x_430; +x_278 = x_431; +x_279 = x_428; +x_280 = x_463; +goto block_424; } else { -lean_object* x_465; lean_object* x_466; lean_object* x_467; -x_465 = lean_ctor_get(x_462, 1); +lean_object* x_464; lean_object* x_465; lean_object* x_466; +x_464 = lean_ctor_get(x_461, 1); +lean_inc(x_464); +lean_dec_ref(x_461); +x_465 = lean_ctor_get(x_462, 0); lean_inc(x_465); lean_dec_ref(x_462); -x_466 = lean_ctor_get(x_463, 0); -lean_inc(x_466); -lean_dec_ref(x_463); -lean_inc(x_426); -lean_inc_ref(x_427); -lean_inc(x_433); +lean_inc(x_428); lean_inc_ref(x_431); -x_467 = l_Lean_Meta_matchConstructorApp_x3f(x_461, x_431, x_433, x_427, x_426, x_465); +lean_inc(x_430); +lean_inc_ref(x_429); +x_466 = l_Lean_Meta_matchConstructorApp_x3f(x_460, x_429, x_430, x_431, x_428, x_464); +if (lean_obj_tag(x_466) == 0) +{ +lean_object* x_467; +x_467 = lean_ctor_get(x_466, 0); +lean_inc(x_467); if (lean_obj_tag(x_467) == 0) { lean_object* x_468; -x_468 = lean_ctor_get(x_467, 0); +lean_dec(x_465); +lean_free_object(x_455); +lean_free_object(x_453); +lean_dec_ref(x_446); +x_468 = lean_ctor_get(x_466, 1); lean_inc(x_468); -if (lean_obj_tag(x_468) == 0) -{ -lean_object* x_469; -lean_dec(x_466); -lean_free_object(x_456); -lean_free_object(x_454); -lean_dec_ref(x_447); -x_469 = lean_ctor_get(x_467, 1); -lean_inc(x_469); -lean_dec_ref(x_467); -x_275 = x_432; +lean_dec_ref(x_466); +x_274 = x_426; +x_275 = x_425; x_276 = x_429; -x_277 = x_431; -x_278 = x_433; -x_279 = x_427; -x_280 = x_426; -x_281 = x_469; -goto block_425; +x_277 = x_430; +x_278 = x_431; +x_279 = x_428; +x_280 = x_468; +goto block_424; } else { -lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; uint8_t x_476; -x_470 = lean_ctor_get(x_466, 0); -lean_inc_ref(x_470); -lean_dec(x_466); -x_471 = lean_ctor_get(x_468, 0); -lean_inc(x_471); -lean_dec_ref(x_468); -x_472 = lean_ctor_get(x_471, 0); -lean_inc_ref(x_472); -lean_dec(x_471); -x_473 = lean_ctor_get(x_467, 1); +lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; uint8_t x_475; +x_469 = lean_ctor_get(x_465, 0); +lean_inc_ref(x_469); +lean_dec(x_465); +x_470 = lean_ctor_get(x_467, 0); +lean_inc(x_470); +lean_dec_ref(x_467); +x_471 = lean_ctor_get(x_470, 0); +lean_inc_ref(x_471); +lean_dec(x_470); +x_472 = lean_ctor_get(x_466, 1); +lean_inc(x_472); +lean_dec_ref(x_466); +x_473 = lean_ctor_get(x_469, 0); lean_inc(x_473); -lean_dec_ref(x_467); -x_474 = lean_ctor_get(x_470, 0); +lean_dec_ref(x_469); +x_474 = lean_ctor_get(x_471, 0); lean_inc(x_474); -lean_dec_ref(x_470); -x_475 = lean_ctor_get(x_472, 0); -lean_inc(x_475); -lean_dec_ref(x_472); -x_476 = lean_name_eq(x_474, x_475); -lean_dec(x_475); +lean_dec_ref(x_471); +x_475 = lean_name_eq(x_473, x_474); lean_dec(x_474); -if (x_476 == 0) +lean_dec(x_473); +if (x_475 == 0) { -lean_object* x_477; +lean_object* x_476; lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -79288,96 +79252,96 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_477 = l_Lean_Meta_mkNoConfusion(x_7, x_447, x_431, x_433, x_427, x_426, x_473); -if (lean_obj_tag(x_477) == 0) +x_476 = l_Lean_Meta_mkNoConfusion(x_7, x_446, x_429, x_430, x_431, x_428, x_472); +if (lean_obj_tag(x_476) == 0) { -uint8_t x_478; -x_478 = !lean_is_exclusive(x_477); -if (x_478 == 0) +uint8_t x_477; +x_477 = !lean_is_exclusive(x_476); +if (x_477 == 0) { -lean_object* x_479; -x_479 = lean_ctor_get(x_477, 0); -lean_ctor_set(x_456, 1, x_432); -lean_ctor_set(x_456, 0, x_479); -lean_ctor_set(x_454, 1, x_429); -lean_ctor_set(x_454, 0, x_456); -lean_ctor_set(x_477, 0, x_454); -return x_477; +lean_object* x_478; +x_478 = lean_ctor_get(x_476, 0); +lean_ctor_set(x_455, 1, x_426); +lean_ctor_set(x_455, 0, x_478); +lean_ctor_set(x_453, 1, x_425); +lean_ctor_set(x_453, 0, x_455); +lean_ctor_set(x_476, 0, x_453); +return x_476; } else { -lean_object* x_480; lean_object* x_481; lean_object* x_482; -x_480 = lean_ctor_get(x_477, 0); -x_481 = lean_ctor_get(x_477, 1); -lean_inc(x_481); +lean_object* x_479; lean_object* x_480; lean_object* x_481; +x_479 = lean_ctor_get(x_476, 0); +x_480 = lean_ctor_get(x_476, 1); lean_inc(x_480); -lean_dec(x_477); -lean_ctor_set(x_456, 1, x_432); -lean_ctor_set(x_456, 0, x_480); -lean_ctor_set(x_454, 1, x_429); -lean_ctor_set(x_454, 0, x_456); -x_482 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_482, 0, x_454); -lean_ctor_set(x_482, 1, x_481); -return x_482; +lean_inc(x_479); +lean_dec(x_476); +lean_ctor_set(x_455, 1, x_426); +lean_ctor_set(x_455, 0, x_479); +lean_ctor_set(x_453, 1, x_425); +lean_ctor_set(x_453, 0, x_455); +x_481 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_481, 0, x_453); +lean_ctor_set(x_481, 1, x_480); +return x_481; } } else { -uint8_t x_483; -lean_free_object(x_456); -lean_free_object(x_454); -lean_dec_ref(x_432); -lean_dec_ref(x_429); -x_483 = !lean_is_exclusive(x_477); -if (x_483 == 0) +uint8_t x_482; +lean_free_object(x_455); +lean_free_object(x_453); +lean_dec_ref(x_426); +lean_dec_ref(x_425); +x_482 = !lean_is_exclusive(x_476); +if (x_482 == 0) { -return x_477; +return x_476; } else { -lean_object* x_484; lean_object* x_485; lean_object* x_486; -x_484 = lean_ctor_get(x_477, 0); -x_485 = lean_ctor_get(x_477, 1); -lean_inc(x_485); +lean_object* x_483; lean_object* x_484; lean_object* x_485; +x_483 = lean_ctor_get(x_476, 0); +x_484 = lean_ctor_get(x_476, 1); lean_inc(x_484); -lean_dec(x_477); -x_486 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_486, 0, x_484); -lean_ctor_set(x_486, 1, x_485); -return x_486; +lean_inc(x_483); +lean_dec(x_476); +x_485 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_485, 0, x_483); +lean_ctor_set(x_485, 1, x_484); +return x_485; } } } else { -lean_free_object(x_456); -lean_free_object(x_454); -lean_dec_ref(x_447); -x_275 = x_432; +lean_free_object(x_455); +lean_free_object(x_453); +lean_dec_ref(x_446); +x_274 = x_426; +x_275 = x_425; x_276 = x_429; -x_277 = x_431; -x_278 = x_433; -x_279 = x_427; -x_280 = x_426; -x_281 = x_473; -goto block_425; +x_277 = x_430; +x_278 = x_431; +x_279 = x_428; +x_280 = x_472; +goto block_424; } } } else { -uint8_t x_487; -lean_dec(x_466); -lean_free_object(x_456); -lean_free_object(x_454); -lean_dec_ref(x_447); -lean_dec(x_433); -lean_dec_ref(x_432); +uint8_t x_486; +lean_dec(x_465); +lean_free_object(x_455); +lean_free_object(x_453); +lean_dec_ref(x_446); lean_dec_ref(x_431); +lean_dec(x_430); lean_dec_ref(x_429); -lean_dec_ref(x_427); -lean_dec(x_426); +lean_dec(x_428); +lean_dec_ref(x_426); +lean_dec_ref(x_425); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -79392,40 +79356,40 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_487 = !lean_is_exclusive(x_467); -if (x_487 == 0) +x_486 = !lean_is_exclusive(x_466); +if (x_486 == 0) { -return x_467; +return x_466; } else { -lean_object* x_488; lean_object* x_489; lean_object* x_490; -x_488 = lean_ctor_get(x_467, 0); -x_489 = lean_ctor_get(x_467, 1); -lean_inc(x_489); +lean_object* x_487; lean_object* x_488; lean_object* x_489; +x_487 = lean_ctor_get(x_466, 0); +x_488 = lean_ctor_get(x_466, 1); lean_inc(x_488); -lean_dec(x_467); -x_490 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_490, 0, x_488); -lean_ctor_set(x_490, 1, x_489); -return x_490; +lean_inc(x_487); +lean_dec(x_466); +x_489 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_489, 0, x_487); +lean_ctor_set(x_489, 1, x_488); +return x_489; } } } } else { -uint8_t x_491; -lean_free_object(x_456); -lean_dec(x_461); -lean_free_object(x_454); -lean_dec_ref(x_447); -lean_dec(x_433); -lean_dec_ref(x_432); +uint8_t x_490; +lean_free_object(x_455); +lean_dec(x_460); +lean_free_object(x_453); +lean_dec_ref(x_446); lean_dec_ref(x_431); +lean_dec(x_430); lean_dec_ref(x_429); -lean_dec_ref(x_427); -lean_dec(x_426); +lean_dec(x_428); +lean_dec_ref(x_426); +lean_dec_ref(x_425); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -79440,126 +79404,126 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_491 = !lean_is_exclusive(x_462); -if (x_491 == 0) +x_490 = !lean_is_exclusive(x_461); +if (x_490 == 0) { -return x_462; +return x_461; } else { -lean_object* x_492; lean_object* x_493; lean_object* x_494; -x_492 = lean_ctor_get(x_462, 0); -x_493 = lean_ctor_get(x_462, 1); -lean_inc(x_493); +lean_object* x_491; lean_object* x_492; lean_object* x_493; +x_491 = lean_ctor_get(x_461, 0); +x_492 = lean_ctor_get(x_461, 1); lean_inc(x_492); -lean_dec(x_462); -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_inc(x_491); +lean_dec(x_461); +x_493 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_493, 0, x_491); +lean_ctor_set(x_493, 1, x_492); +return x_493; } } } else { -lean_object* x_495; lean_object* x_496; lean_object* x_497; -x_495 = lean_ctor_get(x_456, 0); -x_496 = lean_ctor_get(x_456, 1); -lean_inc(x_496); +lean_object* x_494; lean_object* x_495; lean_object* x_496; +x_494 = lean_ctor_get(x_455, 0); +x_495 = lean_ctor_get(x_455, 1); lean_inc(x_495); -lean_dec(x_456); -lean_inc(x_426); -lean_inc_ref(x_427); -lean_inc(x_433); +lean_inc(x_494); +lean_dec(x_455); +lean_inc(x_428); lean_inc_ref(x_431); -x_497 = l_Lean_Meta_matchConstructorApp_x3f(x_495, x_431, x_433, x_427, x_426, x_458); +lean_inc(x_430); +lean_inc_ref(x_429); +x_496 = l_Lean_Meta_matchConstructorApp_x3f(x_494, x_429, x_430, x_431, x_428, x_457); +if (lean_obj_tag(x_496) == 0) +{ +lean_object* x_497; +x_497 = lean_ctor_get(x_496, 0); +lean_inc(x_497); if (lean_obj_tag(x_497) == 0) { lean_object* x_498; -x_498 = lean_ctor_get(x_497, 0); +lean_dec(x_495); +lean_free_object(x_453); +lean_dec_ref(x_446); +x_498 = lean_ctor_get(x_496, 1); lean_inc(x_498); -if (lean_obj_tag(x_498) == 0) -{ -lean_object* x_499; -lean_dec(x_496); -lean_free_object(x_454); -lean_dec_ref(x_447); -x_499 = lean_ctor_get(x_497, 1); -lean_inc(x_499); -lean_dec_ref(x_497); -x_275 = x_432; +lean_dec_ref(x_496); +x_274 = x_426; +x_275 = x_425; x_276 = x_429; -x_277 = x_431; -x_278 = x_433; -x_279 = x_427; -x_280 = x_426; -x_281 = x_499; -goto block_425; +x_277 = x_430; +x_278 = x_431; +x_279 = x_428; +x_280 = x_498; +goto block_424; } else { -lean_object* x_500; lean_object* x_501; lean_object* x_502; -x_500 = lean_ctor_get(x_497, 1); +lean_object* x_499; lean_object* x_500; lean_object* x_501; +x_499 = lean_ctor_get(x_496, 1); +lean_inc(x_499); +lean_dec_ref(x_496); +x_500 = lean_ctor_get(x_497, 0); lean_inc(x_500); lean_dec_ref(x_497); -x_501 = lean_ctor_get(x_498, 0); -lean_inc(x_501); -lean_dec_ref(x_498); -lean_inc(x_426); -lean_inc_ref(x_427); -lean_inc(x_433); +lean_inc(x_428); lean_inc_ref(x_431); -x_502 = l_Lean_Meta_matchConstructorApp_x3f(x_496, x_431, x_433, x_427, x_426, x_500); +lean_inc(x_430); +lean_inc_ref(x_429); +x_501 = l_Lean_Meta_matchConstructorApp_x3f(x_495, x_429, x_430, x_431, x_428, x_499); +if (lean_obj_tag(x_501) == 0) +{ +lean_object* x_502; +x_502 = lean_ctor_get(x_501, 0); +lean_inc(x_502); if (lean_obj_tag(x_502) == 0) { lean_object* x_503; -x_503 = lean_ctor_get(x_502, 0); +lean_dec(x_500); +lean_free_object(x_453); +lean_dec_ref(x_446); +x_503 = lean_ctor_get(x_501, 1); lean_inc(x_503); -if (lean_obj_tag(x_503) == 0) -{ -lean_object* x_504; -lean_dec(x_501); -lean_free_object(x_454); -lean_dec_ref(x_447); -x_504 = lean_ctor_get(x_502, 1); -lean_inc(x_504); -lean_dec_ref(x_502); -x_275 = x_432; +lean_dec_ref(x_501); +x_274 = x_426; +x_275 = x_425; x_276 = x_429; -x_277 = x_431; -x_278 = x_433; -x_279 = x_427; -x_280 = x_426; -x_281 = x_504; -goto block_425; +x_277 = x_430; +x_278 = x_431; +x_279 = x_428; +x_280 = x_503; +goto block_424; } else { -lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; uint8_t x_511; -x_505 = lean_ctor_get(x_501, 0); -lean_inc_ref(x_505); -lean_dec(x_501); -x_506 = lean_ctor_get(x_503, 0); -lean_inc(x_506); -lean_dec_ref(x_503); -x_507 = lean_ctor_get(x_506, 0); -lean_inc_ref(x_507); -lean_dec(x_506); -x_508 = lean_ctor_get(x_502, 1); +lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; uint8_t x_510; +x_504 = lean_ctor_get(x_500, 0); +lean_inc_ref(x_504); +lean_dec(x_500); +x_505 = lean_ctor_get(x_502, 0); +lean_inc(x_505); +lean_dec_ref(x_502); +x_506 = lean_ctor_get(x_505, 0); +lean_inc_ref(x_506); +lean_dec(x_505); +x_507 = lean_ctor_get(x_501, 1); +lean_inc(x_507); +lean_dec_ref(x_501); +x_508 = lean_ctor_get(x_504, 0); lean_inc(x_508); -lean_dec_ref(x_502); -x_509 = lean_ctor_get(x_505, 0); +lean_dec_ref(x_504); +x_509 = lean_ctor_get(x_506, 0); lean_inc(x_509); -lean_dec_ref(x_505); -x_510 = lean_ctor_get(x_507, 0); -lean_inc(x_510); -lean_dec_ref(x_507); -x_511 = lean_name_eq(x_509, x_510); -lean_dec(x_510); +lean_dec_ref(x_506); +x_510 = lean_name_eq(x_508, x_509); lean_dec(x_509); -if (x_511 == 0) +lean_dec(x_508); +if (x_510 == 0) { -lean_object* x_512; +lean_object* x_511; lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -79573,91 +79537,91 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_512 = l_Lean_Meta_mkNoConfusion(x_7, x_447, x_431, x_433, x_427, x_426, x_508); -if (lean_obj_tag(x_512) == 0) +x_511 = l_Lean_Meta_mkNoConfusion(x_7, x_446, x_429, x_430, x_431, x_428, x_507); +if (lean_obj_tag(x_511) == 0) { -lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; -x_513 = lean_ctor_get(x_512, 0); +lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; +x_512 = lean_ctor_get(x_511, 0); +lean_inc(x_512); +x_513 = lean_ctor_get(x_511, 1); lean_inc(x_513); -x_514 = lean_ctor_get(x_512, 1); -lean_inc(x_514); -if (lean_is_exclusive(x_512)) { - lean_ctor_release(x_512, 0); - lean_ctor_release(x_512, 1); - x_515 = x_512; +if (lean_is_exclusive(x_511)) { + lean_ctor_release(x_511, 0); + lean_ctor_release(x_511, 1); + x_514 = x_511; } else { - lean_dec_ref(x_512); - x_515 = lean_box(0); + lean_dec_ref(x_511); + x_514 = lean_box(0); } -x_516 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_516, 0, x_513); -lean_ctor_set(x_516, 1, x_432); -lean_ctor_set(x_454, 1, x_429); -lean_ctor_set(x_454, 0, x_516); -if (lean_is_scalar(x_515)) { - x_517 = lean_alloc_ctor(0, 2, 0); +x_515 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_515, 0, x_512); +lean_ctor_set(x_515, 1, x_426); +lean_ctor_set(x_453, 1, x_425); +lean_ctor_set(x_453, 0, x_515); +if (lean_is_scalar(x_514)) { + x_516 = lean_alloc_ctor(0, 2, 0); } else { - x_517 = x_515; + x_516 = x_514; } -lean_ctor_set(x_517, 0, x_454); -lean_ctor_set(x_517, 1, x_514); -return x_517; +lean_ctor_set(x_516, 0, x_453); +lean_ctor_set(x_516, 1, x_513); +return x_516; } else { -lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; -lean_free_object(x_454); -lean_dec_ref(x_432); -lean_dec_ref(x_429); -x_518 = lean_ctor_get(x_512, 0); +lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; +lean_free_object(x_453); +lean_dec_ref(x_426); +lean_dec_ref(x_425); +x_517 = lean_ctor_get(x_511, 0); +lean_inc(x_517); +x_518 = lean_ctor_get(x_511, 1); lean_inc(x_518); -x_519 = lean_ctor_get(x_512, 1); -lean_inc(x_519); -if (lean_is_exclusive(x_512)) { - lean_ctor_release(x_512, 0); - lean_ctor_release(x_512, 1); - x_520 = x_512; +if (lean_is_exclusive(x_511)) { + lean_ctor_release(x_511, 0); + lean_ctor_release(x_511, 1); + x_519 = x_511; } else { - lean_dec_ref(x_512); - x_520 = lean_box(0); + lean_dec_ref(x_511); + x_519 = lean_box(0); } -if (lean_is_scalar(x_520)) { - x_521 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_519)) { + x_520 = lean_alloc_ctor(1, 2, 0); } else { - x_521 = x_520; + x_520 = x_519; } -lean_ctor_set(x_521, 0, x_518); -lean_ctor_set(x_521, 1, x_519); -return x_521; +lean_ctor_set(x_520, 0, x_517); +lean_ctor_set(x_520, 1, x_518); +return x_520; } } else { -lean_free_object(x_454); -lean_dec_ref(x_447); -x_275 = x_432; +lean_free_object(x_453); +lean_dec_ref(x_446); +x_274 = x_426; +x_275 = x_425; x_276 = x_429; -x_277 = x_431; -x_278 = x_433; -x_279 = x_427; -x_280 = x_426; -x_281 = x_508; -goto block_425; +x_277 = x_430; +x_278 = x_431; +x_279 = x_428; +x_280 = x_507; +goto block_424; } } } else { -lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; -lean_dec(x_501); -lean_free_object(x_454); -lean_dec_ref(x_447); -lean_dec(x_433); -lean_dec_ref(x_432); +lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; +lean_dec(x_500); +lean_free_object(x_453); +lean_dec_ref(x_446); lean_dec_ref(x_431); +lean_dec(x_430); lean_dec_ref(x_429); -lean_dec_ref(x_427); -lean_dec(x_426); +lean_dec(x_428); +lean_dec_ref(x_426); +lean_dec_ref(x_425); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -79672,41 +79636,41 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_522 = lean_ctor_get(x_502, 0); +x_521 = lean_ctor_get(x_501, 0); +lean_inc(x_521); +x_522 = lean_ctor_get(x_501, 1); lean_inc(x_522); -x_523 = lean_ctor_get(x_502, 1); -lean_inc(x_523); -if (lean_is_exclusive(x_502)) { - lean_ctor_release(x_502, 0); - lean_ctor_release(x_502, 1); - x_524 = x_502; +if (lean_is_exclusive(x_501)) { + lean_ctor_release(x_501, 0); + lean_ctor_release(x_501, 1); + x_523 = x_501; } else { - lean_dec_ref(x_502); - x_524 = lean_box(0); + lean_dec_ref(x_501); + x_523 = lean_box(0); } -if (lean_is_scalar(x_524)) { - x_525 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_523)) { + x_524 = lean_alloc_ctor(1, 2, 0); } else { - x_525 = x_524; + x_524 = x_523; } -lean_ctor_set(x_525, 0, x_522); -lean_ctor_set(x_525, 1, x_523); -return x_525; +lean_ctor_set(x_524, 0, x_521); +lean_ctor_set(x_524, 1, x_522); +return x_524; } } } else { -lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; -lean_dec(x_496); -lean_free_object(x_454); -lean_dec_ref(x_447); -lean_dec(x_433); -lean_dec_ref(x_432); +lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; +lean_dec(x_495); +lean_free_object(x_453); +lean_dec_ref(x_446); lean_dec_ref(x_431); +lean_dec(x_430); lean_dec_ref(x_429); -lean_dec_ref(x_427); -lean_dec(x_426); +lean_dec(x_428); +lean_dec_ref(x_426); +lean_dec_ref(x_425); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -79721,294 +79685,245 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_526 = lean_ctor_get(x_497, 0); +x_525 = lean_ctor_get(x_496, 0); +lean_inc(x_525); +x_526 = lean_ctor_get(x_496, 1); lean_inc(x_526); -x_527 = lean_ctor_get(x_497, 1); -lean_inc(x_527); -if (lean_is_exclusive(x_497)) { - lean_ctor_release(x_497, 0); - lean_ctor_release(x_497, 1); - x_528 = x_497; +if (lean_is_exclusive(x_496)) { + lean_ctor_release(x_496, 0); + lean_ctor_release(x_496, 1); + x_527 = x_496; } else { - lean_dec_ref(x_497); - x_528 = lean_box(0); + lean_dec_ref(x_496); + x_527 = lean_box(0); } -if (lean_is_scalar(x_528)) { - x_529 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_527)) { + x_528 = lean_alloc_ctor(1, 2, 0); } else { - x_529 = x_528; + x_528 = x_527; } -lean_ctor_set(x_529, 0, x_526); -lean_ctor_set(x_529, 1, x_527); -return x_529; +lean_ctor_set(x_528, 0, x_525); +lean_ctor_set(x_528, 1, x_526); +return x_528; } } } else { -lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; -x_530 = lean_ctor_get(x_454, 1); +lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; +x_529 = lean_ctor_get(x_453, 1); +lean_inc(x_529); +lean_dec(x_453); +x_530 = lean_ctor_get(x_450, 1); lean_inc(x_530); -lean_dec(x_454); -x_531 = lean_ctor_get(x_451, 1); +lean_dec_ref(x_450); +x_531 = lean_ctor_get(x_529, 0); lean_inc(x_531); -lean_dec_ref(x_451); -x_532 = lean_ctor_get(x_530, 0); +x_532 = lean_ctor_get(x_529, 1); lean_inc(x_532); -x_533 = lean_ctor_get(x_530, 1); -lean_inc(x_533); -if (lean_is_exclusive(x_530)) { - lean_ctor_release(x_530, 0); - lean_ctor_release(x_530, 1); - x_534 = x_530; +if (lean_is_exclusive(x_529)) { + lean_ctor_release(x_529, 0); + lean_ctor_release(x_529, 1); + x_533 = x_529; } else { - lean_dec_ref(x_530); - x_534 = lean_box(0); + lean_dec_ref(x_529); + x_533 = lean_box(0); } -lean_inc(x_426); -lean_inc_ref(x_427); -lean_inc(x_433); +lean_inc(x_428); lean_inc_ref(x_431); -x_535 = l_Lean_Meta_matchConstructorApp_x3f(x_532, x_431, x_433, x_427, x_426, x_531); +lean_inc(x_430); +lean_inc_ref(x_429); +x_534 = l_Lean_Meta_matchConstructorApp_x3f(x_531, x_429, x_430, x_431, x_428, x_530); +if (lean_obj_tag(x_534) == 0) +{ +lean_object* x_535; +x_535 = lean_ctor_get(x_534, 0); +lean_inc(x_535); if (lean_obj_tag(x_535) == 0) { lean_object* x_536; -x_536 = lean_ctor_get(x_535, 0); -lean_inc(x_536); -if (lean_obj_tag(x_536) == 0) -{ -lean_object* x_537; -lean_dec(x_534); lean_dec(x_533); -lean_dec_ref(x_447); -x_537 = lean_ctor_get(x_535, 1); -lean_inc(x_537); -lean_dec_ref(x_535); -x_275 = x_432; +lean_dec(x_532); +lean_dec_ref(x_446); +x_536 = lean_ctor_get(x_534, 1); +lean_inc(x_536); +lean_dec_ref(x_534); +x_274 = x_426; +x_275 = x_425; x_276 = x_429; -x_277 = x_431; -x_278 = x_433; -x_279 = x_427; -x_280 = x_426; -x_281 = x_537; -goto block_425; +x_277 = x_430; +x_278 = x_431; +x_279 = x_428; +x_280 = x_536; +goto block_424; } else { -lean_object* x_538; lean_object* x_539; lean_object* x_540; -x_538 = lean_ctor_get(x_535, 1); +lean_object* x_537; lean_object* x_538; lean_object* x_539; +x_537 = lean_ctor_get(x_534, 1); +lean_inc(x_537); +lean_dec_ref(x_534); +x_538 = lean_ctor_get(x_535, 0); lean_inc(x_538); lean_dec_ref(x_535); -x_539 = lean_ctor_get(x_536, 0); -lean_inc(x_539); -lean_dec_ref(x_536); -lean_inc(x_426); -lean_inc_ref(x_427); -lean_inc(x_433); +lean_inc(x_428); lean_inc_ref(x_431); -x_540 = l_Lean_Meta_matchConstructorApp_x3f(x_533, x_431, x_433, x_427, x_426, x_538); +lean_inc(x_430); +lean_inc_ref(x_429); +x_539 = l_Lean_Meta_matchConstructorApp_x3f(x_532, x_429, x_430, x_431, x_428, x_537); +if (lean_obj_tag(x_539) == 0) +{ +lean_object* x_540; +x_540 = lean_ctor_get(x_539, 0); +lean_inc(x_540); if (lean_obj_tag(x_540) == 0) { lean_object* x_541; -x_541 = lean_ctor_get(x_540, 0); -lean_inc(x_541); -if (lean_obj_tag(x_541) == 0) -{ -lean_object* x_542; -lean_dec(x_539); -lean_dec(x_534); -lean_dec_ref(x_447); -x_542 = lean_ctor_get(x_540, 1); -lean_inc(x_542); -lean_dec_ref(x_540); -x_275 = x_432; -x_276 = x_429; -x_277 = x_431; -x_278 = x_433; -x_279 = x_427; -x_280 = x_426; -x_281 = x_542; -goto block_425; -} -else -{ -lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; uint8_t x_549; -x_543 = lean_ctor_get(x_539, 0); -lean_inc_ref(x_543); -lean_dec(x_539); -x_544 = lean_ctor_get(x_541, 0); -lean_inc(x_544); -lean_dec_ref(x_541); -x_545 = lean_ctor_get(x_544, 0); -lean_inc_ref(x_545); -lean_dec(x_544); -x_546 = lean_ctor_get(x_540, 1); -lean_inc(x_546); -lean_dec_ref(x_540); -x_547 = lean_ctor_get(x_543, 0); -lean_inc(x_547); -lean_dec_ref(x_543); -x_548 = lean_ctor_get(x_545, 0); -lean_inc(x_548); -lean_dec_ref(x_545); -x_549 = lean_name_eq(x_547, x_548); -lean_dec(x_548); -lean_dec(x_547); -if (x_549 == 0) -{ -lean_object* x_550; -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -x_550 = l_Lean_Meta_mkNoConfusion(x_7, x_447, x_431, x_433, x_427, x_426, x_546); -if (lean_obj_tag(x_550) == 0) -{ -lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; -x_551 = lean_ctor_get(x_550, 0); -lean_inc(x_551); -x_552 = lean_ctor_get(x_550, 1); -lean_inc(x_552); -if (lean_is_exclusive(x_550)) { - lean_ctor_release(x_550, 0); - lean_ctor_release(x_550, 1); - x_553 = x_550; -} else { - lean_dec_ref(x_550); - x_553 = lean_box(0); -} -if (lean_is_scalar(x_534)) { - x_554 = lean_alloc_ctor(0, 2, 0); -} else { - x_554 = x_534; -} -lean_ctor_set(x_554, 0, x_551); -lean_ctor_set(x_554, 1, x_432); -x_555 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_555, 0, x_554); -lean_ctor_set(x_555, 1, x_429); -if (lean_is_scalar(x_553)) { - x_556 = lean_alloc_ctor(0, 2, 0); -} else { - x_556 = x_553; -} -lean_ctor_set(x_556, 0, x_555); -lean_ctor_set(x_556, 1, x_552); -return x_556; -} -else -{ -lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; -lean_dec(x_534); -lean_dec_ref(x_432); -lean_dec_ref(x_429); -x_557 = lean_ctor_get(x_550, 0); -lean_inc(x_557); -x_558 = lean_ctor_get(x_550, 1); -lean_inc(x_558); -if (lean_is_exclusive(x_550)) { - lean_ctor_release(x_550, 0); - lean_ctor_release(x_550, 1); - x_559 = x_550; -} else { - lean_dec_ref(x_550); - x_559 = lean_box(0); -} -if (lean_is_scalar(x_559)) { - x_560 = lean_alloc_ctor(1, 2, 0); -} else { - x_560 = x_559; -} -lean_ctor_set(x_560, 0, x_557); -lean_ctor_set(x_560, 1, x_558); -return x_560; -} -} -else -{ -lean_dec(x_534); -lean_dec_ref(x_447); -x_275 = x_432; -x_276 = x_429; -x_277 = x_431; -x_278 = x_433; -x_279 = x_427; -x_280 = x_426; -x_281 = x_546; -goto block_425; -} -} -} -else -{ -lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; -lean_dec(x_539); -lean_dec(x_534); -lean_dec_ref(x_447); -lean_dec(x_433); -lean_dec_ref(x_432); -lean_dec_ref(x_431); -lean_dec_ref(x_429); -lean_dec_ref(x_427); -lean_dec(x_426); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -x_561 = lean_ctor_get(x_540, 0); -lean_inc(x_561); -x_562 = lean_ctor_get(x_540, 1); -lean_inc(x_562); -if (lean_is_exclusive(x_540)) { - lean_ctor_release(x_540, 0); - lean_ctor_release(x_540, 1); - x_563 = x_540; -} else { - lean_dec_ref(x_540); - x_563 = lean_box(0); -} -if (lean_is_scalar(x_563)) { - x_564 = lean_alloc_ctor(1, 2, 0); -} else { - x_564 = x_563; -} -lean_ctor_set(x_564, 0, x_561); -lean_ctor_set(x_564, 1, x_562); -return x_564; -} -} -} -else -{ -lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; -lean_dec(x_534); +lean_dec(x_538); lean_dec(x_533); -lean_dec_ref(x_447); -lean_dec(x_433); -lean_dec_ref(x_432); +lean_dec_ref(x_446); +x_541 = lean_ctor_get(x_539, 1); +lean_inc(x_541); +lean_dec_ref(x_539); +x_274 = x_426; +x_275 = x_425; +x_276 = x_429; +x_277 = x_430; +x_278 = x_431; +x_279 = x_428; +x_280 = x_541; +goto block_424; +} +else +{ +lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; uint8_t x_548; +x_542 = lean_ctor_get(x_538, 0); +lean_inc_ref(x_542); +lean_dec(x_538); +x_543 = lean_ctor_get(x_540, 0); +lean_inc(x_543); +lean_dec_ref(x_540); +x_544 = lean_ctor_get(x_543, 0); +lean_inc_ref(x_544); +lean_dec(x_543); +x_545 = lean_ctor_get(x_539, 1); +lean_inc(x_545); +lean_dec_ref(x_539); +x_546 = lean_ctor_get(x_542, 0); +lean_inc(x_546); +lean_dec_ref(x_542); +x_547 = lean_ctor_get(x_544, 0); +lean_inc(x_547); +lean_dec_ref(x_544); +x_548 = lean_name_eq(x_546, x_547); +lean_dec(x_547); +lean_dec(x_546); +if (x_548 == 0) +{ +lean_object* x_549; +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_549 = l_Lean_Meta_mkNoConfusion(x_7, x_446, x_429, x_430, x_431, x_428, x_545); +if (lean_obj_tag(x_549) == 0) +{ +lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; +x_550 = lean_ctor_get(x_549, 0); +lean_inc(x_550); +x_551 = lean_ctor_get(x_549, 1); +lean_inc(x_551); +if (lean_is_exclusive(x_549)) { + lean_ctor_release(x_549, 0); + lean_ctor_release(x_549, 1); + x_552 = x_549; +} else { + lean_dec_ref(x_549); + x_552 = lean_box(0); +} +if (lean_is_scalar(x_533)) { + x_553 = lean_alloc_ctor(0, 2, 0); +} else { + x_553 = x_533; +} +lean_ctor_set(x_553, 0, x_550); +lean_ctor_set(x_553, 1, x_426); +x_554 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_554, 0, x_553); +lean_ctor_set(x_554, 1, x_425); +if (lean_is_scalar(x_552)) { + x_555 = lean_alloc_ctor(0, 2, 0); +} else { + x_555 = x_552; +} +lean_ctor_set(x_555, 0, x_554); +lean_ctor_set(x_555, 1, x_551); +return x_555; +} +else +{ +lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; +lean_dec(x_533); +lean_dec_ref(x_426); +lean_dec_ref(x_425); +x_556 = lean_ctor_get(x_549, 0); +lean_inc(x_556); +x_557 = lean_ctor_get(x_549, 1); +lean_inc(x_557); +if (lean_is_exclusive(x_549)) { + lean_ctor_release(x_549, 0); + lean_ctor_release(x_549, 1); + x_558 = x_549; +} else { + lean_dec_ref(x_549); + x_558 = lean_box(0); +} +if (lean_is_scalar(x_558)) { + x_559 = lean_alloc_ctor(1, 2, 0); +} else { + x_559 = x_558; +} +lean_ctor_set(x_559, 0, x_556); +lean_ctor_set(x_559, 1, x_557); +return x_559; +} +} +else +{ +lean_dec(x_533); +lean_dec_ref(x_446); +x_274 = x_426; +x_275 = x_425; +x_276 = x_429; +x_277 = x_430; +x_278 = x_431; +x_279 = x_428; +x_280 = x_545; +goto block_424; +} +} +} +else +{ +lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; +lean_dec(x_538); +lean_dec(x_533); +lean_dec_ref(x_446); lean_dec_ref(x_431); +lean_dec(x_430); lean_dec_ref(x_429); -lean_dec_ref(x_427); -lean_dec(x_426); +lean_dec(x_428); +lean_dec_ref(x_426); +lean_dec_ref(x_425); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -80023,40 +79938,89 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_565 = lean_ctor_get(x_535, 0); +x_560 = lean_ctor_get(x_539, 0); +lean_inc(x_560); +x_561 = lean_ctor_get(x_539, 1); +lean_inc(x_561); +if (lean_is_exclusive(x_539)) { + lean_ctor_release(x_539, 0); + lean_ctor_release(x_539, 1); + x_562 = x_539; +} else { + lean_dec_ref(x_539); + x_562 = lean_box(0); +} +if (lean_is_scalar(x_562)) { + x_563 = lean_alloc_ctor(1, 2, 0); +} else { + x_563 = x_562; +} +lean_ctor_set(x_563, 0, x_560); +lean_ctor_set(x_563, 1, x_561); +return x_563; +} +} +} +else +{ +lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; +lean_dec(x_533); +lean_dec(x_532); +lean_dec_ref(x_446); +lean_dec_ref(x_431); +lean_dec(x_430); +lean_dec_ref(x_429); +lean_dec(x_428); +lean_dec_ref(x_426); +lean_dec_ref(x_425); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_564 = lean_ctor_get(x_534, 0); +lean_inc(x_564); +x_565 = lean_ctor_get(x_534, 1); lean_inc(x_565); -x_566 = lean_ctor_get(x_535, 1); -lean_inc(x_566); -if (lean_is_exclusive(x_535)) { - lean_ctor_release(x_535, 0); - lean_ctor_release(x_535, 1); - x_567 = x_535; +if (lean_is_exclusive(x_534)) { + lean_ctor_release(x_534, 0); + lean_ctor_release(x_534, 1); + x_566 = x_534; } else { - lean_dec_ref(x_535); - x_567 = lean_box(0); + lean_dec_ref(x_534); + x_566 = lean_box(0); } -if (lean_is_scalar(x_567)) { - x_568 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_566)) { + x_567 = lean_alloc_ctor(1, 2, 0); } else { - x_568 = x_567; + x_567 = x_566; } -lean_ctor_set(x_568, 0, x_565); -lean_ctor_set(x_568, 1, x_566); -return x_568; +lean_ctor_set(x_567, 0, x_564); +lean_ctor_set(x_567, 1, x_565); +return x_567; } } } } else { -uint8_t x_569; -lean_dec_ref(x_447); -lean_dec(x_433); -lean_dec_ref(x_432); +uint8_t x_568; +lean_dec_ref(x_446); lean_dec_ref(x_431); +lean_dec(x_430); lean_dec_ref(x_429); -lean_dec_ref(x_427); -lean_dec(x_426); +lean_dec(x_428); +lean_dec_ref(x_426); +lean_dec_ref(x_425); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -80071,36 +80035,36 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_569 = !lean_is_exclusive(x_451); -if (x_569 == 0) +x_568 = !lean_is_exclusive(x_450); +if (x_568 == 0) { -return x_451; +return x_450; } else { -lean_object* x_570; lean_object* x_571; lean_object* x_572; -x_570 = lean_ctor_get(x_451, 0); -x_571 = lean_ctor_get(x_451, 1); -lean_inc(x_571); +lean_object* x_569; lean_object* x_570; lean_object* x_571; +x_569 = lean_ctor_get(x_450, 0); +x_570 = lean_ctor_get(x_450, 1); lean_inc(x_570); -lean_dec(x_451); -x_572 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_572, 0, x_570); -lean_ctor_set(x_572, 1, x_571); -return x_572; +lean_inc(x_569); +lean_dec(x_450); +x_571 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_571, 0, x_569); +lean_ctor_set(x_571, 1, x_570); +return x_571; } } } else { -uint8_t x_573; -lean_dec_ref(x_447); -lean_dec(x_433); -lean_dec_ref(x_432); +uint8_t x_572; +lean_dec_ref(x_446); lean_dec_ref(x_431); +lean_dec(x_430); lean_dec_ref(x_429); -lean_dec_ref(x_427); -lean_dec(x_426); +lean_dec(x_428); +lean_dec_ref(x_426); +lean_dec_ref(x_425); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -80115,35 +80079,35 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_573 = !lean_is_exclusive(x_448); -if (x_573 == 0) +x_572 = !lean_is_exclusive(x_447); +if (x_572 == 0) { -return x_448; +return x_447; } else { -lean_object* x_574; lean_object* x_575; lean_object* x_576; -x_574 = lean_ctor_get(x_448, 0); -x_575 = lean_ctor_get(x_448, 1); -lean_inc(x_575); +lean_object* x_573; lean_object* x_574; lean_object* x_575; +x_573 = lean_ctor_get(x_447, 0); +x_574 = lean_ctor_get(x_447, 1); lean_inc(x_574); -lean_dec(x_448); -x_576 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_576, 0, x_574); -lean_ctor_set(x_576, 1, x_575); -return x_576; +lean_inc(x_573); +lean_dec(x_447); +x_575 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_575, 0, x_573); +lean_ctor_set(x_575, 1, x_574); +return x_575; } } } else { -uint8_t x_577; -lean_dec(x_433); -lean_dec_ref(x_432); +uint8_t x_576; lean_dec_ref(x_431); +lean_dec(x_430); lean_dec_ref(x_429); -lean_dec_ref(x_427); -lean_dec(x_426); +lean_dec(x_428); +lean_dec_ref(x_426); +lean_dec_ref(x_425); lean_dec_ref(x_14); lean_dec_ref(x_13); lean_dec_ref(x_12); @@ -80158,70 +80122,70 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_577 = !lean_is_exclusive(x_438); -if (x_577 == 0) +x_576 = !lean_is_exclusive(x_437); +if (x_576 == 0) { -return x_438; +return x_437; } else { -lean_object* x_578; lean_object* x_579; lean_object* x_580; -x_578 = lean_ctor_get(x_438, 0); -x_579 = lean_ctor_get(x_438, 1); -lean_inc(x_579); +lean_object* x_577; lean_object* x_578; lean_object* x_579; +x_577 = lean_ctor_get(x_437, 0); +x_578 = lean_ctor_get(x_437, 1); lean_inc(x_578); -lean_dec(x_438); -x_580 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_580, 0, x_578); -lean_ctor_set(x_580, 1, x_579); -return x_580; +lean_inc(x_577); +lean_dec(x_437); +x_579 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_579, 0, x_577); +lean_ctor_set(x_579, 1, x_578); +return x_579; } } } } } -block_596: +block_595: { -lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; uint8_t x_593; -x_589 = lean_st_ref_get(x_587, x_588); -x_590 = lean_ctor_get(x_589, 0); +lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; uint8_t x_592; +x_588 = lean_st_ref_get(x_586, x_587); +x_589 = lean_ctor_get(x_588, 0); +lean_inc(x_589); +x_590 = lean_ctor_get(x_588, 1); lean_inc(x_590); -x_591 = lean_ctor_get(x_589, 1); -lean_inc(x_591); -lean_dec_ref(x_589); -x_592 = lean_ctor_get(x_590, 0); -lean_inc_ref(x_592); -lean_dec(x_590); -x_593 = l_Lean_Expr_isApp(x_1); -if (x_593 == 0) +lean_dec_ref(x_588); +x_591 = lean_ctor_get(x_589, 0); +lean_inc_ref(x_591); +lean_dec(x_589); +x_592 = l_Lean_Expr_isApp(x_1); +if (x_592 == 0) { -x_426 = x_587; -x_427 = x_586; -x_428 = x_592; +x_425 = x_582; +x_426 = x_581; +x_427 = x_591; +x_428 = x_586; x_429 = x_583; -x_430 = x_591; -x_431 = x_584; -x_432 = x_582; -x_433 = x_585; -x_434 = x_593; -goto block_581; +x_430 = x_584; +x_431 = x_585; +x_432 = x_590; +x_433 = x_592; +goto block_580; } else { -lean_object* x_594; uint8_t x_595; -x_594 = l_Lean_Expr_getAppFn(x_1); -x_595 = l_Lean_Expr_isConst(x_594); -lean_dec_ref(x_594); -x_426 = x_587; -x_427 = x_586; -x_428 = x_592; +lean_object* x_593; uint8_t x_594; +x_593 = l_Lean_Expr_getAppFn(x_1); +x_594 = l_Lean_Expr_isConst(x_593); +lean_dec_ref(x_593); +x_425 = x_582; +x_426 = x_581; +x_427 = x_591; +x_428 = x_586; x_429 = x_583; -x_430 = x_591; -x_431 = x_584; -x_432 = x_582; -x_433 = x_585; -x_434 = x_595; -goto block_581; +x_430 = x_584; +x_431 = x_585; +x_432 = x_590; +x_433 = x_594; +goto block_580; } } } @@ -80255,7 +80219,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc_ref(x_2); lean_inc_ref(x_1); -x_19 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__4), 15, 5); +x_19 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_buildInductionBody___lam__4___boxed), 16, 5); lean_closure_set(x_19, 0, x_1); lean_closure_set(x_19, 1, x_2); lean_closure_set(x_19, 2, x_4); @@ -80566,88 +80530,7 @@ x_11 = l_Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_buildInductionB return x_11; } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__16___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -size_t x_5; size_t x_6; lean_object* x_7; -x_5 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_6 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_7 = l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__16_spec__16(x_1, x_5, x_6, x_4); -lean_dec_ref(x_1); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__16___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__16(x_1, x_2, x_3); -lean_dec(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -uint8_t x_13; uint8_t x_14; lean_object* x_15; -x_13 = lean_unbox(x_4); -x_14 = lean_unbox(x_5); -x_15 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg(x_1, x_2, x_3, x_13, x_14, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -return x_15; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -uint8_t x_14; uint8_t x_15; lean_object* x_16; -x_14 = lean_unbox(x_5); -x_15 = lean_unbox(x_6); -x_16 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18(x_1, x_2, x_3, x_4, x_14, x_15, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -return x_16; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19_spec__19___redArg___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; lean_object* x_13; -x_12 = lean_unbox(x_4); -x_13 = l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19_spec__19___redArg(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_13; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19_spec__19___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -uint8_t x_13; lean_object* x_14; -x_13 = lean_unbox(x_5); -x_14 = l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19_spec__19(x_1, x_2, x_3, x_4, x_13, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -return x_14; -} -} -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; -x_13 = l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec_ref(x_2); -return x_13; -} -} -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -lean_object* x_14; -x_14 = l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -lean_dec_ref(x_5); -lean_dec(x_3); -return x_14; -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__21___redArg___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_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__15___redArg___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: { size_t x_10; size_t x_11; lean_object* x_12; @@ -80655,13 +80538,13 @@ x_10 = lean_unbox_usize(x_1); lean_dec(x_1); x_11 = lean_unbox_usize(x_2); lean_dec(x_2); -x_12 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__21___redArg(x_10, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_12 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__15___redArg(x_10, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); return x_12; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__21___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_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__15___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { size_t x_11; size_t x_12; lean_object* x_13; @@ -80669,14 +80552,14 @@ x_11 = lean_unbox_usize(x_1); lean_dec(x_1); x_12 = lean_unbox_usize(x_2); lean_dec(x_2); -x_13 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__21(x_11, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__15(x_11, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); return x_13; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__22___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__16___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: { size_t x_12; size_t x_13; lean_object* x_14; @@ -80684,11 +80567,11 @@ x_12 = lean_unbox_usize(x_2); lean_dec(x_2); x_13 = lean_unbox_usize(x_3); lean_dec(x_3); -x_14 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__22(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Array_mapMUnsafe_map___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__16(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_14; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__23___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__17___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { uint8_t x_13; size_t x_14; size_t x_15; lean_object* x_16; @@ -80697,30 +80580,30 @@ x_14 = lean_unbox_usize(x_3); lean_dec(x_3); x_15 = lean_unbox_usize(x_4); lean_dec(x_4); -x_16 = l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__23(x_13, x_2, x_14, x_15, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_16 = l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__17(x_13, x_2, x_14, x_15, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec_ref(x_2); return x_16; } } -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__24___redArg___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_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__18___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; lean_object* x_12; x_11 = lean_unbox(x_3); -x_12 = l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__24___redArg(x_1, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__18___redArg(x_1, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__24___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__18___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; lean_object* x_13; x_12 = lean_unbox(x_4); -x_13 = l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__24(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__18(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_13; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__25___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__19___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: { size_t x_12; size_t x_13; lean_object* x_14; @@ -80728,36 +80611,56 @@ x_12 = lean_unbox_usize(x_2); lean_dec(x_2); x_13 = lean_unbox_usize(x_3); lean_dec(x_3); -x_14 = l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__25(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Array_forIn_x27Unsafe_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__19(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec_ref(x_1); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__26___redArg___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_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__20___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__26___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__20___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec_ref(x_2); lean_dec_ref(x_1); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__26___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__20___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__26(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_Meta_MatcherApp_withUserNames___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__20(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec_ref(x_3); lean_dec_ref(x_2); return x_12; } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__0___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_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; uint8_t x_14; lean_object* x_15; +x_13 = lean_unbox(x_4); +x_14 = lean_unbox(x_5); +x_15 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21___redArg(x_1, x_2, x_3, x_13, x_14, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_unbox(x_5); +x_15 = lean_unbox(x_6); +x_16 = l_Lean_Meta_forallBoundedTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__21(x_1, x_2, x_3, x_4, x_14, x_15, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__0___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: { lean_object* x_10; -x_10 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -80765,49 +80668,49 @@ lean_dec_ref(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { uint8_t x_16; uint8_t x_17; lean_object* x_18; x_16 = lean_unbox(x_7); x_17 = lean_unbox(x_8); -x_18 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_16, x_17, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_18 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_16, x_17, x_9, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec_ref(x_6); return x_18; } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__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, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__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, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { uint8_t x_17; uint8_t x_18; lean_object* x_19; x_17 = lean_unbox(x_3); x_18 = lean_unbox(x_7); -x_19 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__2(x_1, x_2, x_17, x_4, x_5, x_6, x_18, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_19 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__2(x_1, x_2, x_17, x_4, x_5, x_6, x_18, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); return x_19; } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { uint8_t x_17; uint8_t x_18; lean_object* x_19; x_17 = lean_unbox(x_3); x_18 = lean_unbox(x_6); -x_19 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___lam__3(x_1, x_2, x_17, x_4, x_5, x_18, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_19 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___lam__3(x_1, x_2, x_17, x_4, x_5, x_18, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); return x_19; } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { uint8_t x_15; uint8_t x_16; lean_object* x_17; x_15 = lean_unbox(x_1); x_16 = lean_unbox(x_3); -x_17 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___redArg(x_15, x_2, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_17 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___redArg(x_15, x_2, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_5); return x_17; } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -80835,19 +80738,19 @@ uint8_t x_22; uint8_t x_23; uint8_t x_24; lean_object* x_25; x_22 = lean_unbox(x_1); x_23 = lean_unbox(x_3); x_24 = lean_unbox(x_5); -x_25 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__27(x_22, x_2, x_23, x_4, x_24, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +x_25 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__22(x_22, x_2, x_23, x_4, x_24, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); lean_dec(x_10); lean_dec(x_9); return x_25; } } -LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__28_spec__28_spec__28___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__23_spec__23_spec__23___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); x_13 = lean_unbox(x_4); -x_14 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__28_spec__28_spec__28(x_1, x_2, x_12, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__23_spec__23_spec__23(x_1, x_2, x_12, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_10); lean_dec(x_8); lean_dec_ref(x_7); @@ -80855,41 +80758,72 @@ lean_dec(x_1); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__28_spec__28___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_EXPORT lean_object* l_Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__23_spec__23___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; uint8_t x_12; lean_object* x_13; x_11 = lean_unbox(x_2); x_12 = lean_unbox(x_3); -x_13 = l_Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__28_spec__28(x_1, x_11, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__23_spec__23(x_1, x_11, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec(x_7); lean_dec_ref(x_6); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__28___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_EXPORT lean_object* l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__23___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__28(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__23(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec_ref(x_4); return x_9; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__31___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__26___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec_ref(x_7); lean_dec_ref(x_6); return x_13; } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__0___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__0___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +_start: +{ +uint8_t x_19; uint8_t x_20; lean_object* x_21; +x_19 = lean_unbox(x_7); +x_20 = lean_unbox(x_8); +x_21 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_19, x_20, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +lean_dec_ref(x_10); +lean_dec_ref(x_6); +lean_dec_ref(x_2); +return x_21; +} +} +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__1___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -80913,14 +80847,11 @@ _start: uint8_t x_19; uint8_t x_20; lean_object* x_21; x_19 = lean_unbox(x_6); x_20 = lean_unbox(x_7); -x_21 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_19, x_20, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -lean_dec_ref(x_10); -lean_dec_ref(x_5); -lean_dec_ref(x_4); +x_21 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_19, x_20, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); return x_21; } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__1___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__2___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -80944,11 +80875,11 @@ _start: uint8_t x_19; uint8_t x_20; lean_object* x_21; x_19 = lean_unbox(x_5); x_20 = lean_unbox(x_6); -x_21 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__1(x_1, x_2, x_3, x_4, x_19, x_20, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +x_21 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__2(x_1, x_2, x_3, x_4, x_19, x_20, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); return x_21; } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__2___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__3___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -80972,51 +80903,23 @@ _start: uint8_t x_19; uint8_t x_20; lean_object* x_21; x_19 = lean_unbox(x_4); x_20 = lean_unbox(x_5); -x_21 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__2(x_1, x_2, x_3, x_19, x_20, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -return x_21; -} -} -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__3___boxed(lean_object** _args) { -lean_object* x_1 = _args[0]; -lean_object* x_2 = _args[1]; -lean_object* x_3 = _args[2]; -lean_object* x_4 = _args[3]; -lean_object* x_5 = _args[4]; -lean_object* x_6 = _args[5]; -lean_object* x_7 = _args[6]; -lean_object* x_8 = _args[7]; -lean_object* x_9 = _args[8]; -lean_object* x_10 = _args[9]; -lean_object* x_11 = _args[10]; -lean_object* x_12 = _args[11]; -lean_object* x_13 = _args[12]; -lean_object* x_14 = _args[13]; -lean_object* x_15 = _args[14]; -lean_object* x_16 = _args[15]; -lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; -_start: -{ -uint8_t x_19; uint8_t x_20; lean_object* x_21; -x_19 = lean_unbox(x_4); -x_20 = lean_unbox(x_5); -x_21 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___lam__3(x_1, x_2, x_3, x_19, x_20, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +x_21 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___lam__3(x_1, x_2, x_3, x_19, x_20, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); lean_dec(x_9); return x_21; } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { uint8_t x_17; uint8_t x_18; lean_object* x_19; x_17 = lean_unbox(x_2); x_18 = lean_unbox(x_3); -x_19 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___redArg(x_1, x_17, x_18, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_19 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___redArg(x_1, x_17, x_18, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); lean_dec(x_7); return x_19; } } -LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -81046,36 +80949,36 @@ uint8_t x_24; uint8_t x_25; uint8_t x_26; lean_object* x_27; x_24 = lean_unbox(x_2); x_25 = lean_unbox(x_3); x_26 = lean_unbox(x_7); -x_27 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21_spec__32(x_1, x_24, x_25, x_4, x_5, x_6, x_26, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23); +x_27 = l_Std_PRange_RangeIterator_instIteratorLoop_loop___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__27(x_1, x_24, x_25, x_4, x_5, x_6, x_26, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23); lean_dec(x_12); lean_dec(x_11); return x_27; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { uint8_t x_16; size_t x_17; lean_object* x_18; x_16 = lean_unbox(x_6); x_17 = lean_unbox_usize(x_7); lean_dec(x_7); -x_18 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__0(x_1, x_2, x_3, x_4, x_5, x_16, x_17, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_18 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__0(x_1, x_2, x_3, x_4, x_5, x_16, x_17, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); return x_18; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { uint8_t x_16; size_t x_17; lean_object* x_18; x_16 = lean_unbox(x_4); x_17 = lean_unbox_usize(x_5); lean_dec(x_5); -x_18 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__1(x_1, x_2, x_3, x_16, x_17, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_18 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__1(x_1, x_2, x_3, x_16, x_17, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec_ref(x_6); return x_18; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__2___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__2___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -81102,13 +81005,13 @@ _start: size_t x_22; lean_object* x_23; x_22 = lean_unbox_usize(x_6); lean_dec(x_6); -x_23 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__2(x_1, x_2, x_3, x_4, x_5, x_22, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +x_23 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__2(x_1, x_2, x_3, x_4, x_5, x_22, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); lean_dec_ref(x_14); lean_dec(x_5); return x_23; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__3___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__3___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -81144,11 +81047,11 @@ x_29 = lean_unbox_usize(x_7); lean_dec(x_7); x_30 = lean_unbox(x_17); x_31 = lean_unbox(x_19); -x_32 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_29, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_30, x_18, x_31, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28); +x_32 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_29, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_30, x_18, x_31, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28); return x_32; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__4___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__4___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -81175,13 +81078,13 @@ _start: size_t x_22; lean_object* x_23; x_22 = lean_unbox_usize(x_6); lean_dec(x_6); -x_23 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__4(x_1, x_2, x_3, x_4, x_5, x_22, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +x_23 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__4(x_1, x_2, x_3, x_4, x_5, x_22, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); lean_dec_ref(x_14); lean_dec(x_5); return x_23; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__5___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__5___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -81221,11 +81124,11 @@ x_33 = lean_unbox_usize(x_7); lean_dec(x_7); x_34 = lean_unbox(x_21); x_35 = lean_unbox(x_22); -x_36 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_33, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_34, x_35, x_23, x_24, x_25, x_26, x_27, x_28, x_29, x_30, x_31, x_32); +x_36 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_33, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_34, x_35, x_23, x_24, x_25, x_26, x_27, x_28, x_29, x_30, x_31, x_32); return x_36; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__8___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__8___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -81263,11 +81166,11 @@ x_31 = lean_unbox_usize(x_11); lean_dec(x_11); x_32 = lean_unbox(x_19); x_33 = lean_unbox(x_20); -x_34 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_31, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_32, x_33, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28, x_29, x_30); +x_34 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_31, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_32, x_33, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28, x_29, x_30); return x_34; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__10___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__10___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -81301,11 +81204,11 @@ lean_dec(x_3); x_27 = lean_unbox(x_13); x_28 = lean_unbox(x_15); x_29 = lean_unbox(x_16); -x_30 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__10(x_1, x_2, x_26, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_27, x_14, x_28, x_29, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25); +x_30 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__10(x_1, x_2, x_26, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_27, x_14, x_28, x_29, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25); return x_30; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__9___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__9___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -81337,20 +81240,81 @@ uint8_t x_26; uint8_t x_27; uint8_t x_28; lean_object* x_29; x_26 = lean_unbox(x_6); x_27 = lean_unbox(x_15); x_28 = lean_unbox(x_16); -x_29 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__9(x_1, x_2, x_3, x_4, x_5, x_26, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_27, x_28, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25); +x_29 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__9(x_1, x_2, x_3, x_4, x_5, x_26, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_27, x_28, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25); return x_29; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { uint8_t x_15; uint8_t x_16; lean_object* x_17; x_15 = lean_unbox(x_2); x_16 = lean_unbox(x_3); -x_17 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21(x_1, x_15, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_17 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15(x_1, x_15, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); return x_17; } } +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__30_spec__30___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +size_t x_5; size_t x_6; lean_object* x_7; +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_7 = l_Array_foldlMUnsafe_fold___at___Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__30_spec__30(x_1, x_5, x_6, x_4); +lean_dec_ref(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__30___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Array_filterMapM___at___Lean_Tactic_FunInd_buildInductionBody_spec__30(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32_spec__32___redArg___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; lean_object* x_13; +x_12 = lean_unbox(x_4); +x_13 = l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32_spec__32___redArg(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32_spec__32___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; lean_object* x_14; +x_13 = lean_unbox(x_5); +x_14 = l_Lean_Meta_lambdaBoundedTelescope___at___Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32_spec__32(x_1, x_2, x_3, x_4, x_13, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; +x_13 = l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec_ref(x_2); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32___redArg___lam__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec_ref(x_5); +lean_dec(x_3); +return x_14; +} +} LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { @@ -81389,6 +81353,15 @@ lean_dec_ref(x_2); return x_10; } } +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +_start: +{ +lean_object* x_17; +x_17 = l_Lean_Tactic_FunInd_buildInductionBody___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +lean_dec_ref(x_8); +return x_17; +} +} LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { @@ -81484,20 +81457,6 @@ x_20 = l_Lean_Tactic_FunInd_buildInductionBody___lam__11(x_1, x_2, x_3, x_4, x_5 return x_20; } } -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__12___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l_Lean_Tactic_FunInd_buildInductionBody___lam__12(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -return x_12; -} -} LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__13___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; @@ -81528,7 +81487,7 @@ lean_dec(x_1); return x_20; } } -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__15___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__14___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -81550,26 +81509,58 @@ _start: { uint8_t x_18; lean_object* x_19; x_18 = lean_unbox(x_7); -x_19 = l_Lean_Tactic_FunInd_buildInductionBody___lam__15(x_1, x_2, x_3, x_4, x_5, x_6, x_18, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_19 = l_Lean_Tactic_FunInd_buildInductionBody___lam__14(x_1, x_2, x_3, x_4, x_5, x_6, x_18, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_19; } } -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__16___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__15___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; _start: { -uint8_t x_17; lean_object* x_18; -x_17 = lean_unbox(x_6); -x_18 = l_Lean_Tactic_FunInd_buildInductionBody___lam__16(x_1, x_2, x_3, x_4, x_5, x_17, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -return x_18; +uint8_t x_18; lean_object* x_19; +x_18 = lean_unbox(x_6); +x_19 = l_Lean_Tactic_FunInd_buildInductionBody___lam__15(x_1, x_2, x_3, x_4, x_5, x_18, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec_ref(x_9); +return x_19; } } -LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__18___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__16___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_Tactic_FunInd_buildInductionBody___lam__16(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_4); +lean_dec_ref(x_1); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lam__17___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { uint8_t x_14; uint8_t x_15; lean_object* x_16; x_14 = lean_unbox(x_5); x_15 = lean_unbox(x_6); -x_16 = l_Lean_Tactic_FunInd_buildInductionBody___lam__18(x_1, x_2, x_3, x_4, x_14, x_15, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_16 = l_Lean_Tactic_FunInd_buildInductionBody___lam__17(x_1, x_2, x_3, x_4, x_14, x_15, x_7, x_8, x_9, x_10, x_11, x_12, x_13); return x_16; } } @@ -84357,7 +84348,7 @@ return x_2; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_abstractIndependentMVars(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; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; size_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_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_83; +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; size_t x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_83; x_9 = l_Lean_Tactic_FunInd_foldAndCollect___closed__2; x_10 = l_Lean_isTracingEnabledFor___at___Lean_Tactic_FunInd_rwMatcher_spec__5___redArg(x_9, x_6, x_8); x_11 = lean_ctor_get(x_10, 0); @@ -84427,9 +84418,9 @@ goto block_82; block_36: { size_t x_24; lean_object* x_25; -x_24 = lean_array_size(x_18); -lean_inc_ref(x_18); -x_25 = l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__15(x_24, x_17, x_18, x_19, x_20, x_21, x_22, x_23); +x_24 = lean_array_size(x_16); +lean_inc_ref(x_16); +x_25 = l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__15(x_24, x_18, x_16, x_19, x_20, x_21, x_22, x_23); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; @@ -84438,13 +84429,13 @@ lean_inc(x_26); x_27 = lean_ctor_get(x_25, 1); lean_inc(x_27); lean_dec_ref(x_25); -x_28 = lean_array_get_size(x_18); -lean_dec_ref(x_18); +x_28 = lean_array_get_size(x_16); +lean_dec_ref(x_16); x_29 = l_Array_ofFn___redArg(x_28, x_14); x_30 = l_Array_zip___redArg(x_29, x_26); lean_dec(x_26); lean_dec_ref(x_29); -x_31 = l_Lean_Meta_withLocalDeclsDND___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__16___redArg(x_15, x_30, x_16, x_19, x_20, x_21, x_22, x_27); +x_31 = l_Lean_Meta_withLocalDeclsDND___at___Lean_Tactic_FunInd_abstractIndependentMVars_spec__16___redArg(x_15, x_30, x_17, x_19, x_20, x_21, x_22, x_27); return x_31; } else @@ -84454,7 +84445,7 @@ lean_dec(x_22); lean_dec_ref(x_21); lean_dec(x_20); lean_dec_ref(x_19); -lean_dec_ref(x_18); +lean_dec_ref(x_17); lean_dec_ref(x_16); lean_dec_ref(x_14); x_32 = !lean_is_exclusive(x_25); @@ -84514,9 +84505,9 @@ if (x_53 == 0) { lean_free_object(x_47); lean_dec(x_13); -x_16 = x_52; -x_17 = x_43; -x_18 = x_45; +x_16 = x_45; +x_17 = x_52; +x_18 = x_43; x_19 = x_37; x_20 = x_38; x_21 = x_39; @@ -84549,9 +84540,9 @@ x_61 = l_Lean_addTrace___at___Lean_Tactic_FunInd_rwMatcher_spec__6(x_9, x_60, x_ x_62 = lean_ctor_get(x_61, 1); lean_inc(x_62); lean_dec_ref(x_61); -x_16 = x_52; -x_17 = x_43; -x_18 = x_45; +x_16 = x_45; +x_17 = x_52; +x_18 = x_43; x_19 = x_37; x_20 = x_38; x_21 = x_39; @@ -84579,9 +84570,9 @@ lean_dec(x_63); if (x_67 == 0) { lean_dec(x_13); -x_16 = x_66; -x_17 = x_43; -x_18 = x_45; +x_16 = x_45; +x_17 = x_66; +x_18 = x_43; x_19 = x_37; x_20 = x_38; x_21 = x_39; @@ -84614,9 +84605,9 @@ x_76 = l_Lean_addTrace___at___Lean_Tactic_FunInd_rwMatcher_spec__6(x_9, x_75, x_ x_77 = lean_ctor_get(x_76, 1); lean_inc(x_77); lean_dec_ref(x_76); -x_16 = x_66; -x_17 = x_43; -x_18 = x_45; +x_16 = x_45; +x_17 = x_66; +x_18 = x_43; x_19 = x_37; x_20 = x_38; x_21 = x_39; @@ -85896,7 +85887,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___Lean_Tactic_FunInd_d _start: { lean_object* x_11; uint8_t x_12; lean_object* x_13; lean_object* x_14; -x_11 = lean_alloc_closure((void*)(l_Lean_Meta_forallBoundedTelescope___at___Lean_Tactic_FunInd_buildInductionBody_spec__18___redArg___lam__0), 10, 3); +x_11 = lean_alloc_closure((void*)(l_Lean_Meta_lambdaTelescope___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15_spec__18___redArg___lam__0), 10, 3); lean_closure_set(x_11, 0, x_2); lean_closure_set(x_11, 1, x_4); lean_closure_set(x_11, 2, x_5); @@ -87355,7 +87346,7 @@ lean_closure_set(x_32, 6, x_8); lean_closure_set(x_32, 7, x_30); lean_closure_set(x_32, 8, x_31); lean_closure_set(x_32, 9, x_24); -x_33 = l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19___redArg(x_26, x_32, x_9, x_10, x_11, x_12, x_13, x_14, x_27); +x_33 = l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32___redArg(x_26, x_32, x_9, x_10, x_11, x_12, x_13, x_14, x_27); return x_33; } else @@ -87725,15 +87716,15 @@ lean_dec_ref(x_110); x_113 = lean_ctor_get(x_111, 0); lean_inc(x_113); lean_dec(x_111); -x_22 = x_103; +x_22 = x_101; x_23 = x_105; -x_24 = x_83; -x_25 = x_81; -x_26 = x_101; -x_27 = x_82; -x_28 = x_107; +x_24 = x_82; +x_25 = x_107; +x_26 = x_103; +x_27 = x_83; +x_28 = x_112; x_29 = x_84; -x_30 = x_112; +x_30 = x_81; x_31 = x_113; goto block_71; } @@ -87903,10 +87894,10 @@ block_71: { lean_object* x_32; lean_inc(x_29); -lean_inc_ref(x_24); -lean_inc(x_27); -lean_inc_ref(x_25); -x_32 = l_Lean_Tactic_FunInd_abstractIndependentMVars(x_26, x_31, x_28, x_25, x_27, x_24, x_29, x_30); +lean_inc_ref(x_27); +lean_inc(x_24); +lean_inc_ref(x_30); +x_32 = l_Lean_Tactic_FunInd_abstractIndependentMVars(x_22, x_31, x_25, x_30, x_24, x_27, x_29, x_28); if (lean_obj_tag(x_32) == 0) { lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; @@ -87915,8 +87906,8 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_32, 1); lean_inc(x_34); lean_dec_ref(x_32); -x_35 = lean_array_push(x_22, x_16); -x_36 = l_Lean_Meta_mkLambdaFVars(x_35, x_33, x_2, x_3, x_2, x_3, x_23, x_25, x_27, x_24, x_29, x_34); +x_35 = lean_array_push(x_26, x_16); +x_36 = l_Lean_Meta_mkLambdaFVars(x_35, x_33, x_2, x_3, x_2, x_3, x_23, x_30, x_24, x_27, x_29, x_34); lean_dec_ref(x_35); if (lean_obj_tag(x_36) == 0) { @@ -87926,10 +87917,10 @@ lean_inc(x_37); x_38 = lean_ctor_get(x_36, 1); lean_inc(x_38); lean_dec_ref(x_36); -x_39 = l_Lean_Tactic_FunInd_mkLambdaFVarsMasked(x_4, x_37, x_25, x_27, x_24, x_29, x_38); +x_39 = l_Lean_Tactic_FunInd_mkLambdaFVarsMasked(x_4, x_37, x_30, x_24, x_27, x_29, x_38); lean_dec(x_29); -lean_dec_ref(x_24); -lean_dec_ref(x_25); +lean_dec_ref(x_27); +lean_dec_ref(x_30); if (lean_obj_tag(x_39) == 0) { lean_object* x_40; lean_object* x_41; uint8_t x_42; @@ -87944,8 +87935,8 @@ if (x_42 == 0) lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; x_43 = lean_ctor_get(x_40, 0); x_44 = lean_ctor_get(x_40, 1); -x_45 = l_Lean_instantiateMVars___at___Lean_Tactic_FunInd_rwMatcher_spec__8___redArg(x_44, x_27, x_41); -lean_dec(x_27); +x_45 = l_Lean_instantiateMVars___at___Lean_Tactic_FunInd_rwMatcher_spec__8___redArg(x_44, x_24, x_41); +lean_dec(x_24); x_46 = !lean_is_exclusive(x_45); if (x_46 == 0) { @@ -87980,8 +87971,8 @@ x_52 = lean_ctor_get(x_40, 1); lean_inc(x_52); lean_inc(x_51); lean_dec(x_40); -x_53 = l_Lean_instantiateMVars___at___Lean_Tactic_FunInd_rwMatcher_spec__8___redArg(x_52, x_27, x_41); -lean_dec(x_27); +x_53 = l_Lean_instantiateMVars___at___Lean_Tactic_FunInd_rwMatcher_spec__8___redArg(x_52, x_24, x_41); +lean_dec(x_24); x_54 = lean_ctor_get(x_53, 0); lean_inc(x_54); x_55 = lean_ctor_get(x_53, 1); @@ -88010,7 +88001,7 @@ return x_58; else { uint8_t x_59; -lean_dec(x_27); +lean_dec(x_24); x_59 = !lean_is_exclusive(x_39); if (x_59 == 0) { @@ -88034,10 +88025,10 @@ return x_62; else { uint8_t x_63; +lean_dec_ref(x_30); lean_dec(x_29); -lean_dec(x_27); -lean_dec_ref(x_25); -lean_dec_ref(x_24); +lean_dec_ref(x_27); +lean_dec(x_24); lean_dec_ref(x_4); x_63 = !lean_is_exclusive(x_36); if (x_63 == 0) @@ -88062,11 +88053,11 @@ return x_66; else { uint8_t x_67; +lean_dec_ref(x_30); lean_dec(x_29); -lean_dec(x_27); -lean_dec_ref(x_25); -lean_dec_ref(x_24); -lean_dec_ref(x_22); +lean_dec_ref(x_27); +lean_dec_ref(x_26); +lean_dec(x_24); lean_dec_ref(x_16); lean_dec_ref(x_4); x_67 = !lean_is_exclusive(x_32); @@ -92840,20 +92831,20 @@ return x_14; block_98: { lean_object* x_27; -lean_inc_ref(x_18); -x_27 = l_Lean_Meta_ArgsPacker_unpack(x_22, x_18); -lean_dec_ref(x_22); +lean_inc_ref(x_20); +x_27 = l_Lean_Meta_ArgsPacker_unpack(x_23, x_20); +lean_dec_ref(x_23); if (lean_obj_tag(x_27) == 0) { lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_dec_ref(x_26); -lean_dec_ref(x_20); +lean_dec_ref(x_24); +lean_dec_ref(x_21); lean_dec_ref(x_19); -lean_dec_ref(x_16); lean_dec_ref(x_4); lean_dec_ref(x_1); x_28 = l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__0_spec__0___closed__1; -x_29 = l_Lean_indentExpr(x_18); +x_29 = l_Lean_indentExpr(x_20); x_30 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_30, 0, x_28); lean_ctor_set(x_30, 1, x_29); @@ -92861,11 +92852,11 @@ x_31 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect x_32 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_32, 0, x_30); lean_ctor_set(x_32, 1, x_31); -x_33 = l_Lean_throwError___at___Lean_Tactic_FunInd_foldAndCollect_spec__20___redArg(x_32, x_23, x_24, x_25, x_17, x_21); -lean_dec(x_17); -lean_dec_ref(x_25); -lean_dec(x_24); -lean_dec_ref(x_23); +x_33 = l_Lean_throwError___at___Lean_Tactic_FunInd_foldAndCollect_spec__20___redArg(x_32, x_17, x_16, x_18, x_25, x_22); +lean_dec(x_25); +lean_dec_ref(x_18); +lean_dec(x_16); +lean_dec_ref(x_17); x_34 = !lean_is_exclusive(x_33); if (x_34 == 0) { @@ -92888,11 +92879,11 @@ return x_37; else { uint8_t x_38; -lean_dec_ref(x_25); -lean_dec(x_24); -lean_dec_ref(x_23); +lean_dec(x_25); +lean_dec_ref(x_20); lean_dec_ref(x_18); -lean_dec(x_17); +lean_dec_ref(x_17); +lean_dec(x_16); x_38 = !lean_is_exclusive(x_27); if (x_38 == 0) { @@ -92911,16 +92902,16 @@ x_43 = lean_ctor_get(x_26, 0); x_44 = lean_ctor_get(x_26, 1); x_45 = l_Array_toSubarray___redArg(x_4, x_43, x_44); x_46 = l_Lean_Tactic_FunInd_setNaryFunIndInfo___closed__8; -x_47 = lean_array_get(x_46, x_16, x_40); -lean_dec_ref(x_16); -x_48 = l_Array_ofSubarray___redArg(x_19); -lean_dec_ref(x_19); +x_47 = lean_array_get(x_46, x_24, x_40); +lean_dec_ref(x_24); +x_48 = l_Array_ofSubarray___redArg(x_21); +lean_dec_ref(x_21); x_49 = l_Lean_Elab_FixedParamPerm_buildArgs___redArg(x_47, x_48, x_41); lean_dec_ref(x_48); x_50 = lean_box(0); -x_51 = lean_array_get(x_50, x_20, x_40); +x_51 = lean_array_get(x_50, x_19, x_40); lean_dec(x_40); -lean_dec_ref(x_20); +lean_dec_ref(x_19); x_52 = l_Lean_Expr_getAppFn(x_1); lean_dec_ref(x_1); x_53 = l_Lean_Expr_constLevels_x21(x_52); @@ -92935,7 +92926,7 @@ lean_dec_ref(x_56); lean_ctor_set(x_27, 0, x_57); x_58 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_58, 0, x_27); -lean_ctor_set(x_26, 1, x_21); +lean_ctor_set(x_26, 1, x_22); lean_ctor_set(x_26, 0, x_58); return x_26; } @@ -92949,16 +92940,16 @@ lean_inc(x_59); lean_dec(x_26); x_61 = l_Array_toSubarray___redArg(x_4, x_59, x_60); x_62 = l_Lean_Tactic_FunInd_setNaryFunIndInfo___closed__8; -x_63 = lean_array_get(x_62, x_16, x_40); -lean_dec_ref(x_16); -x_64 = l_Array_ofSubarray___redArg(x_19); -lean_dec_ref(x_19); +x_63 = lean_array_get(x_62, x_24, x_40); +lean_dec_ref(x_24); +x_64 = l_Array_ofSubarray___redArg(x_21); +lean_dec_ref(x_21); x_65 = l_Lean_Elab_FixedParamPerm_buildArgs___redArg(x_63, x_64, x_41); lean_dec_ref(x_64); x_66 = lean_box(0); -x_67 = lean_array_get(x_66, x_20, x_40); +x_67 = lean_array_get(x_66, x_19, x_40); lean_dec(x_40); -lean_dec_ref(x_20); +lean_dec_ref(x_19); x_68 = l_Lean_Expr_getAppFn(x_1); lean_dec_ref(x_1); x_69 = l_Lean_Expr_constLevels_x21(x_68); @@ -92975,7 +92966,7 @@ x_74 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_74, 0, x_27); x_75 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_75, 0, x_74); -lean_ctor_set(x_75, 1, x_21); +lean_ctor_set(x_75, 1, x_22); return x_75; } } @@ -93004,16 +92995,16 @@ if (lean_is_exclusive(x_26)) { } x_82 = l_Array_toSubarray___redArg(x_4, x_79, x_80); x_83 = l_Lean_Tactic_FunInd_setNaryFunIndInfo___closed__8; -x_84 = lean_array_get(x_83, x_16, x_77); -lean_dec_ref(x_16); -x_85 = l_Array_ofSubarray___redArg(x_19); -lean_dec_ref(x_19); +x_84 = lean_array_get(x_83, x_24, x_77); +lean_dec_ref(x_24); +x_85 = l_Array_ofSubarray___redArg(x_21); +lean_dec_ref(x_21); x_86 = l_Lean_Elab_FixedParamPerm_buildArgs___redArg(x_84, x_85, x_78); lean_dec_ref(x_85); x_87 = lean_box(0); -x_88 = lean_array_get(x_87, x_20, x_77); +x_88 = lean_array_get(x_87, x_19, x_77); lean_dec(x_77); -lean_dec_ref(x_20); +lean_dec_ref(x_19); x_89 = l_Lean_Expr_getAppFn(x_1); lean_dec_ref(x_1); x_90 = l_Lean_Expr_constLevels_x21(x_89); @@ -93035,7 +93026,7 @@ if (lean_is_scalar(x_81)) { x_97 = x_81; } lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_21); +lean_ctor_set(x_97, 1, x_22); return x_97; } } @@ -93045,12 +93036,12 @@ block_119: lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; uint8_t x_116; lean_inc_ref(x_4); x_110 = l_Array_toSubarray___redArg(x_4, x_108, x_109); -x_111 = lean_array_fget(x_4, x_101); +x_111 = lean_array_fget(x_4, x_105); x_112 = lean_unsigned_to_nat(0u); x_113 = lean_array_get_size(x_4); x_114 = lean_unsigned_to_nat(1u); -x_115 = lean_nat_add(x_101, x_114); -lean_dec(x_101); +x_115 = lean_nat_add(x_105, x_114); +lean_dec(x_105); x_116 = lean_nat_dec_le(x_115, x_112); if (x_116 == 0) { @@ -93060,12 +93051,12 @@ lean_ctor_set(x_117, 0, x_115); lean_ctor_set(x_117, 1, x_113); x_16 = x_100; x_17 = x_99; -x_18 = x_111; -x_19 = x_110; -x_20 = x_102; -x_21 = x_103; -x_22 = x_104; -x_23 = x_105; +x_18 = x_101; +x_19 = x_102; +x_20 = x_111; +x_21 = x_110; +x_22 = x_103; +x_23 = x_104; x_24 = x_106; x_25 = x_107; x_26 = x_117; @@ -93080,12 +93071,12 @@ lean_ctor_set(x_118, 0, x_112); lean_ctor_set(x_118, 1, x_113); x_16 = x_100; x_17 = x_99; -x_18 = x_111; -x_19 = x_110; -x_20 = x_102; -x_21 = x_103; -x_22 = x_104; -x_23 = x_105; +x_18 = x_101; +x_19 = x_102; +x_20 = x_111; +x_21 = x_110; +x_22 = x_103; +x_23 = x_104; x_24 = x_106; x_25 = x_107; x_26 = x_118; @@ -93155,15 +93146,15 @@ x_136 = lean_unsigned_to_nat(0u); x_137 = lean_nat_dec_le(x_130, x_134); if (x_137 == 0) { -x_99 = x_123; -x_100 = x_131; -x_101 = x_130; +x_99 = x_120; +x_100 = x_121; +x_101 = x_122; x_102 = x_125; x_103 = x_124; x_104 = x_127; -x_105 = x_120; -x_106 = x_121; -x_107 = x_122; +x_105 = x_130; +x_106 = x_131; +x_107 = x_123; x_108 = x_136; x_109 = x_134; goto block_119; @@ -93172,15 +93163,15 @@ else { lean_dec(x_134); lean_inc(x_130); -x_99 = x_123; -x_100 = x_131; -x_101 = x_130; +x_99 = x_120; +x_100 = x_121; +x_101 = x_122; x_102 = x_125; x_103 = x_124; x_104 = x_127; -x_105 = x_120; -x_106 = x_121; -x_107 = x_122; +x_105 = x_130; +x_106 = x_131; +x_107 = x_123; x_108 = x_136; x_109 = x_130; goto block_119; @@ -93929,20 +93920,20 @@ return x_14; block_98: { lean_object* x_27; -lean_inc_ref(x_20); -x_27 = l_Lean_Meta_ArgsPacker_unpack(x_17, x_20); -lean_dec_ref(x_17); +lean_inc_ref(x_24); +x_27 = l_Lean_Meta_ArgsPacker_unpack(x_19, x_24); +lean_dec_ref(x_19); if (lean_obj_tag(x_27) == 0) { lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_dec_ref(x_26); lean_dec_ref(x_25); lean_dec_ref(x_23); -lean_dec_ref(x_19); +lean_dec_ref(x_21); lean_dec_ref(x_4); lean_dec_ref(x_1); x_28 = l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_FunInd_cleanPackedArgs_spec__0_spec__0___closed__1; -x_29 = l_Lean_indentExpr(x_20); +x_29 = l_Lean_indentExpr(x_24); x_30 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_30, 0, x_28); lean_ctor_set(x_30, 1, x_29); @@ -93950,11 +93941,11 @@ x_31 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect x_32 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_32, 0, x_30); lean_ctor_set(x_32, 1, x_31); -x_33 = l_Lean_throwError___at___Lean_Tactic_FunInd_foldAndCollect_spec__20___redArg(x_32, x_18, x_24, x_22, x_16, x_21); -lean_dec(x_16); -lean_dec_ref(x_22); -lean_dec(x_24); +x_33 = l_Lean_throwError___at___Lean_Tactic_FunInd_foldAndCollect_spec__20___redArg(x_32, x_16, x_17, x_18, x_22, x_20); +lean_dec(x_22); lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); x_34 = !lean_is_exclusive(x_33); if (x_34 == 0) { @@ -93977,11 +93968,11 @@ return x_37; else { uint8_t x_38; -lean_dec(x_24); -lean_dec_ref(x_22); -lean_dec_ref(x_20); +lean_dec_ref(x_24); +lean_dec(x_22); lean_dec_ref(x_18); -lean_dec(x_16); +lean_dec(x_17); +lean_dec_ref(x_16); x_38 = !lean_is_exclusive(x_27); if (x_38 == 0) { @@ -94002,8 +93993,8 @@ x_45 = l_Array_toSubarray___redArg(x_4, x_43, x_44); x_46 = l_Lean_Tactic_FunInd_setNaryFunIndInfo___closed__8; x_47 = lean_array_get(x_46, x_23, x_40); lean_dec_ref(x_23); -x_48 = l_Array_ofSubarray___redArg(x_19); -lean_dec_ref(x_19); +x_48 = l_Array_ofSubarray___redArg(x_21); +lean_dec_ref(x_21); x_49 = l_Lean_Elab_FixedParamPerm_buildArgs___redArg(x_47, x_48, x_41); lean_dec_ref(x_48); x_50 = lean_box(0); @@ -94024,7 +94015,7 @@ lean_dec_ref(x_56); lean_ctor_set(x_27, 0, x_57); x_58 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_58, 0, x_27); -lean_ctor_set(x_26, 1, x_21); +lean_ctor_set(x_26, 1, x_20); lean_ctor_set(x_26, 0, x_58); return x_26; } @@ -94040,8 +94031,8 @@ x_61 = l_Array_toSubarray___redArg(x_4, x_59, x_60); x_62 = l_Lean_Tactic_FunInd_setNaryFunIndInfo___closed__8; x_63 = lean_array_get(x_62, x_23, x_40); lean_dec_ref(x_23); -x_64 = l_Array_ofSubarray___redArg(x_19); -lean_dec_ref(x_19); +x_64 = l_Array_ofSubarray___redArg(x_21); +lean_dec_ref(x_21); x_65 = l_Lean_Elab_FixedParamPerm_buildArgs___redArg(x_63, x_64, x_41); lean_dec_ref(x_64); x_66 = lean_box(0); @@ -94064,7 +94055,7 @@ x_74 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_74, 0, x_27); x_75 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_75, 0, x_74); -lean_ctor_set(x_75, 1, x_21); +lean_ctor_set(x_75, 1, x_20); return x_75; } } @@ -94095,8 +94086,8 @@ x_82 = l_Array_toSubarray___redArg(x_4, x_79, x_80); x_83 = l_Lean_Tactic_FunInd_setNaryFunIndInfo___closed__8; x_84 = lean_array_get(x_83, x_23, x_77); lean_dec_ref(x_23); -x_85 = l_Array_ofSubarray___redArg(x_19); -lean_dec_ref(x_19); +x_85 = l_Array_ofSubarray___redArg(x_21); +lean_dec_ref(x_21); x_86 = l_Lean_Elab_FixedParamPerm_buildArgs___redArg(x_84, x_85, x_78); lean_dec_ref(x_85); x_87 = lean_box(0); @@ -94124,7 +94115,7 @@ if (lean_is_scalar(x_81)) { x_97 = x_81; } lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_21); +lean_ctor_set(x_97, 1, x_20); return x_97; } } @@ -94134,12 +94125,12 @@ block_119: lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; uint8_t x_116; lean_inc_ref(x_4); x_110 = l_Array_toSubarray___redArg(x_4, x_108, x_109); -x_111 = lean_array_fget(x_4, x_105); +x_111 = lean_array_fget(x_4, x_107); x_112 = lean_unsigned_to_nat(0u); x_113 = lean_array_get_size(x_4); x_114 = lean_unsigned_to_nat(1u); -x_115 = lean_nat_add(x_105, x_114); -lean_dec(x_105); +x_115 = lean_nat_add(x_107, x_114); +lean_dec(x_107); x_116 = lean_nat_dec_le(x_115, x_112); if (x_116 == 0) { @@ -94150,13 +94141,13 @@ lean_ctor_set(x_117, 1, x_113); x_16 = x_99; x_17 = x_100; x_18 = x_101; -x_19 = x_110; -x_20 = x_111; -x_21 = x_103; -x_22 = x_102; -x_23 = x_104; -x_24 = x_106; -x_25 = x_107; +x_19 = x_102; +x_20 = x_103; +x_21 = x_110; +x_22 = x_104; +x_23 = x_105; +x_24 = x_111; +x_25 = x_106; x_26 = x_117; goto block_98; } @@ -94170,13 +94161,13 @@ lean_ctor_set(x_118, 1, x_113); x_16 = x_99; x_17 = x_100; x_18 = x_101; -x_19 = x_110; -x_20 = x_111; -x_21 = x_103; -x_22 = x_102; -x_23 = x_104; -x_24 = x_106; -x_25 = x_107; +x_19 = x_102; +x_20 = x_103; +x_21 = x_110; +x_22 = x_104; +x_23 = x_105; +x_24 = x_111; +x_25 = x_106; x_26 = x_118; goto block_98; } @@ -94244,15 +94235,15 @@ x_136 = lean_unsigned_to_nat(0u); x_137 = lean_nat_dec_le(x_130, x_134); if (x_137 == 0) { -x_99 = x_123; -x_100 = x_127; -x_101 = x_120; -x_102 = x_122; +x_99 = x_120; +x_100 = x_121; +x_101 = x_122; +x_102 = x_127; x_103 = x_124; -x_104 = x_131; -x_105 = x_130; -x_106 = x_121; -x_107 = x_125; +x_104 = x_123; +x_105 = x_131; +x_106 = x_125; +x_107 = x_130; x_108 = x_136; x_109 = x_134; goto block_119; @@ -94261,15 +94252,15 @@ else { lean_dec(x_134); lean_inc(x_130); -x_99 = x_123; -x_100 = x_127; -x_101 = x_120; -x_102 = x_122; +x_99 = x_120; +x_100 = x_121; +x_101 = x_122; +x_102 = x_127; x_103 = x_124; -x_104 = x_131; -x_105 = x_130; -x_106 = x_121; -x_107 = x_125; +x_104 = x_123; +x_105 = x_131; +x_106 = x_125; +x_107 = x_130; x_108 = x_136; x_109 = x_130; goto block_119; @@ -100854,8 +100845,8 @@ return x_10; block_24: { lean_object* x_23; -lean_dec(x_19); -x_23 = l_Array_qsort_sort___at___Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__11___redArg(x_20, x_21, x_22); +lean_dec(x_21); +x_23 = l_Array_qsort_sort___at___Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6_spec__11___redArg(x_19, x_20, x_22); lean_dec(x_22); x_13 = x_23; goto block_18; @@ -100863,23 +100854,23 @@ goto block_18; block_30: { uint8_t x_29; -x_29 = lean_nat_dec_le(x_28, x_25); +x_29 = lean_nat_dec_le(x_28, x_26); if (x_29 == 0) { -lean_dec(x_25); +lean_dec(x_26); lean_inc(x_28); -x_19 = x_26; -x_20 = x_27; -x_21 = x_28; +x_19 = x_25; +x_20 = x_28; +x_21 = x_27; x_22 = x_28; goto block_24; } else { -x_19 = x_26; -x_20 = x_27; -x_21 = x_28; -x_22 = x_25; +x_19 = x_25; +x_20 = x_28; +x_21 = x_27; +x_22 = x_26; goto block_24; } } @@ -100898,17 +100889,17 @@ x_37 = lean_nat_dec_le(x_33, x_36); if (x_37 == 0) { lean_inc(x_36); -x_25 = x_36; -x_26 = x_32; -x_27 = x_31; +x_25 = x_31; +x_26 = x_36; +x_27 = x_32; x_28 = x_36; goto block_30; } else { -x_25 = x_36; -x_26 = x_32; -x_27 = x_31; +x_25 = x_31; +x_26 = x_36; +x_27 = x_32; x_28 = x_33; goto block_30; } @@ -101346,8 +101337,8 @@ block_26: uint8_t x_20; uint8_t x_21; lean_object* x_22; x_20 = 0; x_21 = 1; -x_22 = l_Lean_Meta_mkForallFVars(x_18, x_19, x_20, x_1, x_1, x_21, x_12, x_13, x_14, x_15, x_16); -lean_dec_ref(x_18); +x_22 = l_Lean_Meta_mkForallFVars(x_17, x_19, x_20, x_1, x_1, x_21, x_12, x_13, x_14, x_15, x_16); +lean_dec_ref(x_17); if (lean_obj_tag(x_22) == 0) { lean_object* x_23; lean_object* x_24; lean_object* x_25; @@ -101356,13 +101347,13 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_22, 1); lean_inc(x_24); lean_dec_ref(x_22); -x_25 = l_Lean_Meta_mkLambdaFVars(x_17, x_23, x_20, x_1, x_20, x_1, x_21, x_12, x_13, x_14, x_15, x_24); -lean_dec_ref(x_17); +x_25 = l_Lean_Meta_mkLambdaFVars(x_18, x_23, x_20, x_1, x_20, x_1, x_21, x_12, x_13, x_14, x_15, x_24); +lean_dec_ref(x_18); return x_25; } else { -lean_dec_ref(x_17); +lean_dec_ref(x_18); return x_22; } } @@ -101382,8 +101373,8 @@ if (x_4 == 0) lean_dec_ref(x_27); lean_dec_ref(x_6); lean_dec_ref(x_5); -x_17 = x_29; -x_18 = x_30; +x_17 = x_30; +x_18 = x_29; x_19 = x_31; goto block_26; } @@ -101406,8 +101397,8 @@ x_39 = l_Lean_Expr_const___override(x_33, x_38); x_40 = l_Lean_mkAppN(x_39, x_36); lean_dec_ref(x_36); x_41 = l_Lean_Expr_app___override(x_31, x_40); -x_17 = x_29; -x_18 = x_30; +x_17 = x_30; +x_18 = x_29; x_19 = x_41; goto block_26; } @@ -109821,8 +109812,8 @@ block_51: uint8_t x_27; uint8_t x_28; lean_object* x_29; x_27 = 0; x_28 = 1; -x_29 = l_Lean_Meta_mkLambdaFVars(x_19, x_18, x_27, x_2, x_27, x_2, x_28, x_22, x_23, x_24, x_25, x_26); -lean_dec_ref(x_19); +x_29 = l_Lean_Meta_mkLambdaFVars(x_18, x_19, x_27, x_2, x_27, x_2, x_28, x_22, x_23, x_24, x_25, x_26); +lean_dec_ref(x_18); if (lean_obj_tag(x_29) == 0) { lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; @@ -110000,8 +109991,8 @@ lean_free_object(x_67); lean_free_object(x_66); lean_dec(x_61); lean_dec(x_9); -x_18 = x_76; -x_19 = x_59; +x_18 = x_59; +x_19 = x_76; x_20 = x_77; x_21 = x_73; x_22 = x_54; @@ -110076,8 +110067,8 @@ lean_free_object(x_67); lean_free_object(x_66); lean_dec(x_61); lean_dec(x_9); -x_18 = x_91; -x_19 = x_59; +x_18 = x_59; +x_19 = x_91; x_20 = x_92; x_21 = x_73; x_22 = x_54; @@ -110166,8 +110157,8 @@ lean_dec(x_110); lean_free_object(x_66); lean_dec(x_61); lean_dec(x_9); -x_18 = x_108; -x_19 = x_59; +x_18 = x_59; +x_19 = x_108; x_20 = x_109; x_21 = x_107; x_22 = x_54; @@ -110272,8 +110263,8 @@ lean_dec(x_131); lean_dec(x_128); lean_dec(x_61); lean_dec(x_9); -x_18 = x_129; -x_19 = x_59; +x_18 = x_59; +x_19 = x_129; x_20 = x_130; x_21 = x_127; x_22 = x_54; @@ -110492,11 +110483,11 @@ goto block_67; block_41: { lean_object* x_28; -lean_inc(x_26); +lean_inc(x_25); lean_inc_ref(x_22); lean_inc(x_21); -lean_inc_ref(x_24); -x_28 = l_Lean_Meta_instantiateLambda(x_3, x_18, x_24, x_21, x_22, x_26, x_25); +lean_inc_ref(x_26); +x_28 = l_Lean_Meta_instantiateLambda(x_3, x_18, x_26, x_21, x_22, x_25, x_23); 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; @@ -110521,16 +110512,16 @@ lean_closure_set(x_35, 4, x_33); lean_closure_set(x_35, 5, x_6); lean_closure_set(x_35, 6, x_7); lean_closure_set(x_35, 7, x_10); -x_36 = l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19___redArg(x_29, x_35, x_23, x_20, x_24, x_21, x_22, x_26, x_30); +x_36 = l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32___redArg(x_29, x_35, x_24, x_20, x_26, x_21, x_22, x_25, x_30); return x_36; } else { uint8_t x_37; lean_dec_ref(x_27); -lean_dec(x_26); +lean_dec_ref(x_26); +lean_dec(x_25); lean_dec_ref(x_24); -lean_dec_ref(x_23); lean_dec_ref(x_22); lean_dec(x_21); lean_dec_ref(x_20); @@ -110582,11 +110573,11 @@ lean_ctor_set(x_58, 0, x_56); lean_ctor_set(x_58, 1, x_55); x_18 = x_52; x_19 = x_53; -x_20 = x_43; -x_21 = x_42; +x_20 = x_42; +x_21 = x_43; x_22 = x_44; -x_23 = x_46; -x_24 = x_45; +x_23 = x_45; +x_24 = x_46; x_25 = x_47; x_26 = x_48; x_27 = x_58; @@ -110601,11 +110592,11 @@ lean_ctor_set(x_59, 0, x_54); lean_ctor_set(x_59, 1, x_55); x_18 = x_52; x_19 = x_53; -x_20 = x_43; -x_21 = x_42; +x_20 = x_42; +x_21 = x_43; x_22 = x_44; -x_23 = x_46; -x_24 = x_45; +x_23 = x_45; +x_24 = x_46; x_25 = x_47; x_26 = x_48; x_27 = x_59; @@ -110620,13 +110611,13 @@ x_65 = lean_array_get_size(x_9); x_66 = lean_nat_dec_le(x_2, x_65); if (x_66 == 0) { -x_42 = x_14; -x_43 = x_62; +x_42 = x_62; +x_43 = x_14; x_44 = x_15; -x_45 = x_13; +x_45 = x_63; x_46 = x_61; -x_47 = x_63; -x_48 = x_16; +x_47 = x_16; +x_48 = x_13; x_49 = x_64; x_50 = x_65; goto block_60; @@ -110635,13 +110626,13 @@ else { lean_dec(x_65); lean_inc(x_2); -x_42 = x_14; -x_43 = x_62; +x_42 = x_62; +x_43 = x_14; x_44 = x_15; -x_45 = x_13; +x_45 = x_63; x_46 = x_61; -x_47 = x_63; -x_48 = x_16; +x_47 = x_16; +x_48 = x_13; x_49 = x_64; x_50 = x_2; goto block_60; @@ -111850,11 +111841,11 @@ goto block_67; block_41: { lean_object* x_28; -lean_inc(x_25); -lean_inc_ref(x_21); lean_inc(x_22); -lean_inc_ref(x_24); -x_28 = l_Lean_Meta_instantiateLambda(x_3, x_18, x_24, x_22, x_21, x_25, x_26); +lean_inc_ref(x_21); +lean_inc(x_23); +lean_inc_ref(x_26); +x_28 = l_Lean_Meta_instantiateLambda(x_3, x_19, x_26, x_23, x_21, x_22, x_20); 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; @@ -111873,25 +111864,25 @@ x_34 = lean_box(x_5); x_35 = lean_alloc_closure((void*)(l_Array_forIn_x27Unsafe_loop___at___Array_forIn_x27Unsafe_loop___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__34_spec__34___lam__2___boxed), 17, 8); lean_closure_set(x_35, 0, x_4); lean_closure_set(x_35, 1, x_34); -lean_closure_set(x_35, 2, x_18); -lean_closure_set(x_35, 3, x_19); +lean_closure_set(x_35, 2, x_19); +lean_closure_set(x_35, 3, x_18); lean_closure_set(x_35, 4, x_33); lean_closure_set(x_35, 5, x_6); lean_closure_set(x_35, 6, x_7); lean_closure_set(x_35, 7, x_10); -x_36 = l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__19___redArg(x_29, x_35, x_20, x_23, x_24, x_22, x_21, x_25, x_30); +x_36 = l_Lean_Tactic_FunInd_lambdaTelescope1___at___Lean_Tactic_FunInd_buildInductionBody_spec__32___redArg(x_29, x_35, x_24, x_25, x_26, x_23, x_21, x_22, x_30); return x_36; } else { uint8_t x_37; lean_dec_ref(x_27); -lean_dec(x_25); +lean_dec_ref(x_26); +lean_dec_ref(x_25); lean_dec_ref(x_24); -lean_dec_ref(x_23); +lean_dec(x_23); lean_dec(x_22); lean_dec_ref(x_21); -lean_dec_ref(x_20); lean_dec_ref(x_19); lean_dec_ref(x_18); lean_dec_ref(x_10); @@ -111938,10 +111929,10 @@ lean_object* x_58; x_58 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_58, 0, x_56); lean_ctor_set(x_58, 1, x_55); -x_18 = x_52; -x_19 = x_53; -x_20 = x_43; -x_21 = x_42; +x_18 = x_53; +x_19 = x_52; +x_20 = x_42; +x_21 = x_43; x_22 = x_44; x_23 = x_45; x_24 = x_46; @@ -111957,10 +111948,10 @@ lean_dec(x_56); x_59 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_59, 0, x_54); lean_ctor_set(x_59, 1, x_55); -x_18 = x_52; -x_19 = x_53; -x_20 = x_43; -x_21 = x_42; +x_18 = x_53; +x_19 = x_52; +x_20 = x_42; +x_21 = x_43; x_22 = x_44; x_23 = x_45; x_24 = x_46; @@ -111978,13 +111969,13 @@ x_65 = lean_array_get_size(x_9); x_66 = lean_nat_dec_le(x_2, x_65); if (x_66 == 0) { -x_42 = x_15; -x_43 = x_61; -x_44 = x_14; -x_45 = x_62; -x_46 = x_13; -x_47 = x_16; -x_48 = x_63; +x_42 = x_63; +x_43 = x_15; +x_44 = x_16; +x_45 = x_14; +x_46 = x_61; +x_47 = x_62; +x_48 = x_13; x_49 = x_64; x_50 = x_65; goto block_60; @@ -111993,13 +111984,13 @@ else { lean_dec(x_65); lean_inc(x_2); -x_42 = x_15; -x_43 = x_61; -x_44 = x_14; -x_45 = x_62; -x_46 = x_13; -x_47 = x_16; -x_48 = x_63; +x_42 = x_63; +x_43 = x_15; +x_44 = x_16; +x_45 = x_14; +x_46 = x_61; +x_47 = x_62; +x_48 = x_13; x_49 = x_64; x_50 = x_2; goto block_60; @@ -114109,7 +114100,7 @@ lean_inc(x_151); lean_inc_ref(x_150); lean_inc(x_149); lean_inc_ref(x_148); -x_154 = l_Lean_Tactic_FunInd_withLetDecls___redArg(x_153, x_145, x_146, x_144, x_148, x_149, x_150, x_151, x_152); +x_154 = l_Lean_Tactic_FunInd_withLetDecls___redArg(x_153, x_146, x_145, x_144, x_148, x_149, x_150, x_151, x_152); if (lean_obj_tag(x_154) == 0) { lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; @@ -114135,12 +114126,12 @@ x_162 = lean_ctor_get(x_160, 0); lean_inc(x_162); lean_dec(x_160); x_40 = x_149; -x_41 = x_148; -x_42 = x_147; -x_43 = x_161; -x_44 = x_150; -x_45 = x_155; -x_46 = x_151; +x_41 = x_155; +x_42 = x_161; +x_43 = x_148; +x_44 = x_151; +x_45 = x_150; +x_46 = x_147; x_47 = x_162; goto block_111; } @@ -114290,8 +114281,8 @@ lean_free_object(x_190); x_198 = lean_ctor_get(x_195, 1); lean_inc(x_198); lean_dec_ref(x_195); -x_145 = x_172; -x_146 = x_193; +x_145 = x_193; +x_146 = x_172; x_147 = x_194; x_148 = x_173; x_149 = x_174; @@ -114328,8 +114319,8 @@ x_208 = l_Lean_addTrace___at___Lean_Tactic_FunInd_rwMatcher_spec__6(x_14, x_190, x_209 = lean_ctor_get(x_208, 1); lean_inc(x_209); lean_dec_ref(x_208); -x_145 = x_172; -x_146 = x_193; +x_145 = x_193; +x_146 = x_172; x_147 = x_194; x_148 = x_173; x_149 = x_174; @@ -114362,8 +114353,8 @@ x_218 = l_Lean_addTrace___at___Lean_Tactic_FunInd_rwMatcher_spec__6(x_14, x_190, x_219 = lean_ctor_get(x_218, 1); lean_inc(x_219); lean_dec_ref(x_218); -x_145 = x_172; -x_146 = x_193; +x_145 = x_193; +x_146 = x_172; x_147 = x_194; x_148 = x_173; x_149 = x_174; @@ -114394,8 +114385,8 @@ lean_object* x_225; x_225 = lean_ctor_get(x_222, 1); lean_inc(x_225); lean_dec_ref(x_222); -x_145 = x_172; -x_146 = x_220; +x_145 = x_220; +x_146 = x_172; x_147 = x_221; x_148 = x_173; x_149 = x_174; @@ -114440,8 +114431,8 @@ x_236 = l_Lean_addTrace___at___Lean_Tactic_FunInd_rwMatcher_spec__6(x_14, x_235, x_237 = lean_ctor_get(x_236, 1); lean_inc(x_237); lean_dec_ref(x_236); -x_145 = x_172; -x_146 = x_220; +x_145 = x_220; +x_146 = x_172; x_147 = x_221; x_148 = x_173; x_149 = x_174; @@ -114839,7 +114830,7 @@ lean_inc(x_323); lean_inc_ref(x_322); lean_inc(x_321); lean_inc_ref(x_320); -x_326 = l_Lean_Tactic_FunInd_withLetDecls___redArg(x_325, x_317, x_318, x_316, x_320, x_321, x_322, x_323, x_324); +x_326 = l_Lean_Tactic_FunInd_withLetDecls___redArg(x_325, x_318, x_317, x_316, x_320, x_321, x_322, x_323, x_324); if (lean_obj_tag(x_326) == 0) { lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; @@ -114865,12 +114856,12 @@ x_334 = lean_ctor_get(x_332, 0); lean_inc(x_334); lean_dec(x_332); x_40 = x_321; -x_41 = x_320; -x_42 = x_319; -x_43 = x_333; -x_44 = x_322; -x_45 = x_327; -x_46 = x_323; +x_41 = x_327; +x_42 = x_333; +x_43 = x_320; +x_44 = x_323; +x_45 = x_322; +x_46 = x_319; x_47 = x_334; goto block_111; } @@ -115030,8 +115021,8 @@ lean_dec(x_366); x_370 = lean_ctor_get(x_367, 1); lean_inc(x_370); lean_dec_ref(x_367); -x_317 = x_344; -x_318 = x_364; +x_317 = x_364; +x_318 = x_344; x_319 = x_365; x_320 = x_345; x_321 = x_346; @@ -115081,8 +115072,8 @@ x_381 = l_Lean_addTrace___at___Lean_Tactic_FunInd_rwMatcher_spec__6(x_14, x_380, x_382 = lean_ctor_get(x_381, 1); lean_inc(x_382); lean_dec_ref(x_381); -x_317 = x_344; -x_318 = x_364; +x_317 = x_364; +x_318 = x_344; x_319 = x_365; x_320 = x_345; x_321 = x_346; @@ -115374,10 +115365,10 @@ block_39: { lean_object* x_36; lean_object* x_37; lean_object* x_38; x_36 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_36, 0, x_33); +lean_ctor_set(x_36, 0, x_34); lean_ctor_set(x_36, 1, x_15); x_37 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_37, 0, x_34); +lean_ctor_set(x_37, 0, x_33); lean_ctor_set(x_37, 1, x_36); x_38 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_38, 0, x_37); @@ -115387,11 +115378,11 @@ return x_38; block_111: { lean_object* x_48; -lean_inc(x_46); -lean_inc_ref(x_44); +lean_inc(x_44); +lean_inc_ref(x_45); lean_inc(x_40); -lean_inc_ref(x_41); -x_48 = l_Lean_Tactic_FunInd_abstractIndependentMVars(x_42, x_47, x_45, x_41, x_40, x_44, x_46, x_43); +lean_inc_ref(x_43); +x_48 = l_Lean_Tactic_FunInd_abstractIndependentMVars(x_46, x_47, x_41, x_43, x_40, x_45, x_44, x_42); if (lean_obj_tag(x_48) == 0) { lean_object* x_49; lean_object* x_50; uint8_t x_51; uint8_t x_52; lean_object* x_53; @@ -115402,7 +115393,7 @@ lean_inc(x_50); lean_dec_ref(x_48); x_51 = 0; x_52 = 1; -x_53 = l_Lean_Meta_mkLambdaFVars(x_27, x_49, x_51, x_16, x_51, x_16, x_52, x_41, x_40, x_44, x_46, x_50); +x_53 = l_Lean_Meta_mkLambdaFVars(x_27, x_49, x_51, x_16, x_51, x_16, x_52, x_43, x_40, x_45, x_44, x_50); lean_dec_ref(x_27); if (lean_obj_tag(x_53) == 0) { @@ -115412,7 +115403,7 @@ lean_inc(x_54); x_55 = lean_ctor_get(x_53, 1); lean_inc(x_55); lean_dec_ref(x_53); -x_56 = l_Lean_Tactic_FunInd_mkLambdaFVarsMasked(x_8, x_54, x_41, x_40, x_44, x_46, x_55); +x_56 = l_Lean_Tactic_FunInd_mkLambdaFVarsMasked(x_8, x_54, x_43, x_40, x_45, x_44, x_55); if (lean_obj_tag(x_56) == 0) { lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; @@ -115434,7 +115425,7 @@ lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; uint x_63 = lean_ctor_get(x_61, 0); x_64 = lean_ctor_get(x_61, 1); lean_inc(x_14); -x_65 = l_Lean_isTracingEnabledFor___at___Lean_Tactic_FunInd_rwMatcher_spec__5___redArg(x_14, x_44, x_64); +x_65 = l_Lean_isTracingEnabledFor___at___Lean_Tactic_FunInd_rwMatcher_spec__5___redArg(x_14, x_45, x_64); x_66 = lean_ctor_get(x_65, 0); lean_inc(x_66); x_67 = lean_unbox(x_66); @@ -115443,16 +115434,16 @@ if (x_67 == 0) { lean_object* x_68; lean_free_object(x_61); -lean_dec(x_46); -lean_dec_ref(x_44); -lean_dec_ref(x_41); +lean_dec_ref(x_45); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_40); lean_dec(x_14); x_68 = lean_ctor_get(x_65, 1); lean_inc(x_68); lean_dec_ref(x_65); -x_33 = x_59; -x_34 = x_63; +x_33 = x_63; +x_34 = x_59; x_35 = x_68; goto block_39; } @@ -115476,16 +115467,16 @@ x_74 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect lean_ctor_set_tag(x_61, 7); lean_ctor_set(x_61, 1, x_74); lean_ctor_set(x_61, 0, x_65); -x_75 = l_Lean_addTrace___at___Lean_Tactic_FunInd_rwMatcher_spec__6(x_14, x_61, x_41, x_40, x_44, x_46, x_70); -lean_dec(x_46); -lean_dec_ref(x_44); +x_75 = l_Lean_addTrace___at___Lean_Tactic_FunInd_rwMatcher_spec__6(x_14, x_61, x_43, x_40, x_45, x_44, x_70); +lean_dec(x_44); +lean_dec_ref(x_45); lean_dec(x_40); -lean_dec_ref(x_41); +lean_dec_ref(x_43); x_76 = lean_ctor_get(x_75, 1); lean_inc(x_76); lean_dec_ref(x_75); -x_33 = x_59; -x_34 = x_63; +x_33 = x_63; +x_34 = x_59; x_35 = x_76; goto block_39; } @@ -115505,16 +115496,16 @@ x_81 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect lean_ctor_set_tag(x_61, 7); lean_ctor_set(x_61, 1, x_81); lean_ctor_set(x_61, 0, x_80); -x_82 = l_Lean_addTrace___at___Lean_Tactic_FunInd_rwMatcher_spec__6(x_14, x_61, x_41, x_40, x_44, x_46, x_77); -lean_dec(x_46); -lean_dec_ref(x_44); +x_82 = l_Lean_addTrace___at___Lean_Tactic_FunInd_rwMatcher_spec__6(x_14, x_61, x_43, x_40, x_45, x_44, x_77); +lean_dec(x_44); +lean_dec_ref(x_45); lean_dec(x_40); -lean_dec_ref(x_41); +lean_dec_ref(x_43); x_83 = lean_ctor_get(x_82, 1); lean_inc(x_83); lean_dec_ref(x_82); -x_33 = x_59; -x_34 = x_63; +x_33 = x_63; +x_34 = x_59; x_35 = x_83; goto block_39; } @@ -115529,7 +115520,7 @@ lean_inc(x_85); lean_inc(x_84); lean_dec(x_61); lean_inc(x_14); -x_86 = l_Lean_isTracingEnabledFor___at___Lean_Tactic_FunInd_rwMatcher_spec__5___redArg(x_14, x_44, x_85); +x_86 = l_Lean_isTracingEnabledFor___at___Lean_Tactic_FunInd_rwMatcher_spec__5___redArg(x_14, x_45, x_85); x_87 = lean_ctor_get(x_86, 0); lean_inc(x_87); x_88 = lean_unbox(x_87); @@ -115537,16 +115528,16 @@ lean_dec(x_87); if (x_88 == 0) { lean_object* x_89; -lean_dec(x_46); -lean_dec_ref(x_44); -lean_dec_ref(x_41); +lean_dec_ref(x_45); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_40); lean_dec(x_14); x_89 = lean_ctor_get(x_86, 1); lean_inc(x_89); lean_dec_ref(x_86); -x_33 = x_59; -x_34 = x_84; +x_33 = x_84; +x_34 = x_59; x_35 = x_89; goto block_39; } @@ -115578,16 +115569,16 @@ x_95 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect x_96 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_96, 0, x_94); lean_ctor_set(x_96, 1, x_95); -x_97 = l_Lean_addTrace___at___Lean_Tactic_FunInd_rwMatcher_spec__6(x_14, x_96, x_41, x_40, x_44, x_46, x_90); -lean_dec(x_46); -lean_dec_ref(x_44); +x_97 = l_Lean_addTrace___at___Lean_Tactic_FunInd_rwMatcher_spec__6(x_14, x_96, x_43, x_40, x_45, x_44, x_90); +lean_dec(x_44); +lean_dec_ref(x_45); lean_dec(x_40); -lean_dec_ref(x_41); +lean_dec_ref(x_43); x_98 = lean_ctor_get(x_97, 1); lean_inc(x_98); lean_dec_ref(x_97); -x_33 = x_59; -x_34 = x_84; +x_33 = x_84; +x_34 = x_59; x_35 = x_98; goto block_39; } @@ -115596,9 +115587,9 @@ goto block_39; else { uint8_t x_99; -lean_dec(x_46); -lean_dec_ref(x_44); -lean_dec_ref(x_41); +lean_dec_ref(x_45); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_40); lean_dec_ref(x_15); lean_dec(x_14); @@ -115625,9 +115616,9 @@ return x_102; else { uint8_t x_103; -lean_dec(x_46); -lean_dec_ref(x_44); -lean_dec_ref(x_41); +lean_dec_ref(x_45); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_40); lean_dec_ref(x_15); lean_dec(x_14); @@ -115655,9 +115646,9 @@ return x_106; else { uint8_t x_107; -lean_dec(x_46); -lean_dec_ref(x_44); -lean_dec_ref(x_41); +lean_dec_ref(x_45); +lean_dec(x_44); +lean_dec_ref(x_43); lean_dec(x_40); lean_dec_ref(x_27); lean_dec_ref(x_15); @@ -116172,7 +116163,7 @@ x_23 = l_Lean_Expr_getAppFn(x_22); x_24 = l_Lean_Meta_PProdN_stripProjs(x_15); if (lean_obj_tag(x_23) == 4) { -lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t 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_71; uint8_t x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_290; uint8_t x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_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; uint8_t x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; uint8_t x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; uint8_t x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_433; uint8_t x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; uint8_t x_454; +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_71; uint8_t x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_290; lean_object* x_291; uint8_t x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_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; uint8_t x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_359; uint8_t x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; uint8_t x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; uint8_t x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_433; lean_object* x_434; uint8_t x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; uint8_t x_454; lean_dec_ref(x_13); x_25 = lean_ctor_get(x_23, 0); lean_inc(x_25); @@ -116333,17 +116324,17 @@ x_487 = lean_nat_dec_le(x_477, x_480); if (x_487 == 0) { lean_inc(x_2); -x_433 = x_478; -x_434 = x_486; -x_435 = x_479; -x_436 = x_477; -x_437 = x_476; -x_438 = x_19; -x_439 = x_470; -x_440 = x_16; -x_441 = x_18; -x_442 = x_475; -x_443 = x_17; +x_433 = x_476; +x_434 = x_477; +x_435 = x_486; +x_436 = x_479; +x_437 = x_478; +x_438 = x_18; +x_439 = x_19; +x_440 = x_17; +x_441 = x_475; +x_442 = x_16; +x_443 = x_470; x_444 = x_2; x_445 = x_480; goto block_453; @@ -116353,17 +116344,17 @@ else lean_dec(x_480); lean_inc(x_2); lean_inc(x_477); -x_433 = x_478; -x_434 = x_486; -x_435 = x_479; -x_436 = x_477; -x_437 = x_476; -x_438 = x_19; -x_439 = x_470; -x_440 = x_16; -x_441 = x_18; -x_442 = x_475; -x_443 = x_17; +x_433 = x_476; +x_434 = x_477; +x_435 = x_486; +x_436 = x_479; +x_437 = x_478; +x_438 = x_18; +x_439 = x_19; +x_440 = x_17; +x_441 = x_475; +x_442 = x_16; +x_443 = x_470; x_444 = x_2; x_445 = x_477; goto block_453; @@ -116541,7 +116532,7 @@ block_70: lean_object* x_56; lean_object* x_57; uint8_t x_58; x_56 = lean_array_get_size(x_50); lean_dec_ref(x_50); -x_57 = lean_array_get_size(x_43); +x_57 = lean_array_get_size(x_49); x_58 = lean_nat_dec_eq(x_56, x_57); lean_dec(x_57); lean_dec(x_56); @@ -116550,11 +116541,11 @@ if (x_58 == 0) lean_object* x_59; lean_object* x_60; lean_dec_ref(x_49); lean_dec(x_48); -lean_dec(x_46); +lean_dec_ref(x_47); lean_dec_ref(x_45); lean_dec(x_44); lean_dec_ref(x_43); -lean_dec_ref(x_42); +lean_dec(x_42); lean_dec_ref(x_41); lean_dec_ref(x_40); lean_dec_ref(x_39); @@ -116582,34 +116573,34 @@ x_62 = l_Array_mapMUnsafe_map___at___Lean_Tactic_FunInd_deriveInductionStructura x_63 = lean_mk_empty_array_with_capacity(x_1); x_64 = lean_box(x_9); x_65 = lean_box_usize(x_3); -x_66 = lean_box(x_47); +x_66 = lean_box(x_46); x_67 = lean_box(x_58); x_68 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_deriveInductionStructural_doRealize___lam__5___boxed), 31, 26); lean_closure_set(x_68, 0, x_4); lean_closure_set(x_68, 1, x_5); lean_closure_set(x_68, 2, x_6); -lean_closure_set(x_68, 3, x_44); +lean_closure_set(x_68, 3, x_42); lean_closure_set(x_68, 4, x_64); lean_closure_set(x_68, 5, x_7); lean_closure_set(x_68, 6, x_1); lean_closure_set(x_68, 7, x_2); lean_closure_set(x_68, 8, x_63); -lean_closure_set(x_68, 9, x_46); +lean_closure_set(x_68, 9, x_44); lean_closure_set(x_68, 10, x_65); lean_closure_set(x_68, 11, x_36); -lean_closure_set(x_68, 12, x_41); +lean_closure_set(x_68, 12, x_45); lean_closure_set(x_68, 13, x_66); -lean_closure_set(x_68, 14, x_43); -lean_closure_set(x_68, 15, x_37); +lean_closure_set(x_68, 14, x_49); +lean_closure_set(x_68, 15, x_39); lean_closure_set(x_68, 16, x_67); -lean_closure_set(x_68, 17, x_42); -lean_closure_set(x_68, 18, x_38); -lean_closure_set(x_68, 19, x_39); -lean_closure_set(x_68, 20, x_45); +lean_closure_set(x_68, 17, x_47); +lean_closure_set(x_68, 18, x_37); +lean_closure_set(x_68, 19, x_38); +lean_closure_set(x_68, 20, x_41); lean_closure_set(x_68, 21, x_10); lean_closure_set(x_68, 22, x_11); -lean_closure_set(x_68, 23, x_49); -lean_closure_set(x_68, 24, x_40); +lean_closure_set(x_68, 23, x_40); +lean_closure_set(x_68, 24, x_43); lean_closure_set(x_68, 25, x_48); x_69 = l_Lean_Meta_withErasedFVars___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__36___redArg(x_62, x_68, x_51, x_52, x_53, x_54, x_55); lean_dec_ref(x_62); @@ -116625,8 +116616,8 @@ lean_dec_ref(x_78); lean_dec_ref(x_77); lean_dec_ref(x_76); lean_dec(x_75); -lean_dec_ref(x_74); -lean_dec(x_73); +lean_dec(x_74); +lean_dec_ref(x_73); lean_dec_ref(x_71); lean_dec_ref(x_36); lean_dec_ref(x_14); @@ -116671,14 +116662,14 @@ lean_object* x_91; lean_object* x_92; uint8_t x_93; x_91 = lean_ctor_get(x_26, 1); x_92 = lean_ctor_get(x_26, 0); lean_dec(x_92); -x_93 = !lean_is_exclusive(x_77); +x_93 = !lean_is_exclusive(x_76); if (x_93 == 0) { lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; -x_94 = lean_ctor_get(x_77, 0); -x_95 = lean_ctor_get(x_77, 2); +x_94 = lean_ctor_get(x_76, 0); +x_95 = lean_ctor_get(x_76, 2); lean_dec(x_95); -x_96 = lean_ctor_get(x_77, 1); +x_96 = lean_ctor_get(x_76, 1); lean_dec(x_96); x_97 = l_Lean_Level_ofNat(x_2); lean_inc(x_91); @@ -116714,11 +116705,11 @@ lean_inc(x_105); x_106 = lean_ctor_get(x_104, 1); lean_inc(x_106); lean_dec_ref(x_104); -lean_inc_ref(x_76); -x_107 = l_Lean_Elab_Structural_IndGroupInfo_ofInductiveVal(x_76); -lean_ctor_set(x_77, 2, x_78); -lean_ctor_set(x_77, 1, x_91); -lean_ctor_set(x_77, 0, x_107); +lean_inc_ref(x_77); +x_107 = l_Lean_Elab_Structural_IndGroupInfo_ofInductiveVal(x_77); +lean_ctor_set(x_76, 2, x_78); +lean_ctor_set(x_76, 1, x_91); +lean_ctor_set(x_76, 0, x_107); x_108 = lean_mk_empty_array_with_capacity(x_1); lean_inc(x_82); lean_inc_ref(x_81); @@ -116726,10 +116717,10 @@ lean_inc(x_80); lean_inc_ref(x_79); lean_inc(x_1); lean_inc(x_2); -lean_inc_ref(x_77); +lean_inc_ref(x_76); lean_inc_ref(x_6); lean_inc_ref(x_4); -x_109 = l_Array_mapFinIdxM_map___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__5___redArg(x_4, x_5, x_6, x_77, x_35, x_2, x_7, x_1, x_2, x_108, x_79, x_80, x_81, x_82, x_106); +x_109 = l_Array_mapFinIdxM_map___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__5___redArg(x_4, x_5, x_6, x_76, x_35, x_2, x_7, x_1, x_2, x_108, x_79, x_80, x_81, x_82, x_106); if (lean_obj_tag(x_109) == 0) { lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; @@ -116739,7 +116730,7 @@ x_111 = lean_ctor_get(x_109, 1); lean_inc(x_111); lean_dec_ref(x_109); lean_inc(x_97); -x_112 = l_Lean_Elab_Structural_IndGroupInst_brecOn(x_77, x_97, x_2); +x_112 = l_Lean_Elab_Structural_IndGroupInst_brecOn(x_76, x_97, x_2); lean_inc(x_82); lean_inc_ref(x_81); lean_inc(x_80); @@ -116764,8 +116755,8 @@ x_119 = lean_ctor_get(x_117, 0); x_120 = lean_ctor_get(x_117, 1); x_121 = l_Lean_Elab_Structural_instInhabitedRecArgInfo; x_122 = lean_alloc_closure((void*)(l_instDecidableEqNat___boxed), 2, 0); -x_123 = l_Lean_InductiveVal_numTypeFormers(x_76); -lean_dec_ref(x_76); +x_123 = l_Lean_InductiveVal_numTypeFormers(x_77); +lean_dec_ref(x_77); x_124 = l_Array_range(x_123); x_125 = l_Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6___redArg(x_121, x_8, x_110, x_124); x_126 = lean_unbox(x_119); @@ -116775,19 +116766,19 @@ if (x_126 == 0) lean_free_object(x_117); lean_dec(x_30); lean_inc(x_114); -x_37 = x_114; -x_38 = x_77; -x_39 = x_105; -x_40 = x_112; -x_41 = x_110; -x_42 = x_122; -x_43 = x_125; -x_44 = x_97; -x_45 = x_71; -x_46 = x_116; -x_47 = x_72; -x_48 = x_73; -x_49 = x_74; +x_37 = x_76; +x_38 = x_105; +x_39 = x_114; +x_40 = x_73; +x_41 = x_71; +x_42 = x_97; +x_43 = x_112; +x_44 = x_116; +x_45 = x_110; +x_46 = x_72; +x_47 = x_122; +x_48 = x_74; +x_49 = x_125; x_50 = x_114; x_51 = x_79; x_52 = x_80; @@ -116822,19 +116813,19 @@ x_135 = lean_ctor_get(x_134, 1); lean_inc(x_135); lean_dec_ref(x_134); lean_inc(x_114); -x_37 = x_114; -x_38 = x_77; -x_39 = x_105; -x_40 = x_112; -x_41 = x_110; -x_42 = x_122; -x_43 = x_125; -x_44 = x_97; -x_45 = x_71; -x_46 = x_116; -x_47 = x_72; -x_48 = x_73; -x_49 = x_74; +x_37 = x_76; +x_38 = x_105; +x_39 = x_114; +x_40 = x_73; +x_41 = x_71; +x_42 = x_97; +x_43 = x_112; +x_44 = x_116; +x_45 = x_110; +x_46 = x_72; +x_47 = x_122; +x_48 = x_74; +x_49 = x_125; x_50 = x_114; x_51 = x_79; x_52 = x_80; @@ -116854,8 +116845,8 @@ lean_inc(x_136); lean_dec(x_117); x_138 = l_Lean_Elab_Structural_instInhabitedRecArgInfo; x_139 = lean_alloc_closure((void*)(l_instDecidableEqNat___boxed), 2, 0); -x_140 = l_Lean_InductiveVal_numTypeFormers(x_76); -lean_dec_ref(x_76); +x_140 = l_Lean_InductiveVal_numTypeFormers(x_77); +lean_dec_ref(x_77); x_141 = l_Array_range(x_140); x_142 = l_Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6___redArg(x_138, x_8, x_110, x_141); x_143 = lean_unbox(x_136); @@ -116864,19 +116855,19 @@ if (x_143 == 0) { lean_dec(x_30); lean_inc(x_114); -x_37 = x_114; -x_38 = x_77; -x_39 = x_105; -x_40 = x_112; -x_41 = x_110; -x_42 = x_139; -x_43 = x_142; -x_44 = x_97; -x_45 = x_71; -x_46 = x_116; -x_47 = x_72; -x_48 = x_73; -x_49 = x_74; +x_37 = x_76; +x_38 = x_105; +x_39 = x_114; +x_40 = x_73; +x_41 = x_71; +x_42 = x_97; +x_43 = x_112; +x_44 = x_116; +x_45 = x_110; +x_46 = x_72; +x_47 = x_139; +x_48 = x_74; +x_49 = x_142; x_50 = x_114; x_51 = x_79; x_52 = x_80; @@ -116911,19 +116902,19 @@ x_153 = lean_ctor_get(x_152, 1); lean_inc(x_153); lean_dec_ref(x_152); lean_inc(x_114); -x_37 = x_114; -x_38 = x_77; -x_39 = x_105; -x_40 = x_112; -x_41 = x_110; -x_42 = x_139; -x_43 = x_142; -x_44 = x_97; -x_45 = x_71; -x_46 = x_116; -x_47 = x_72; -x_48 = x_73; -x_49 = x_74; +x_37 = x_76; +x_38 = x_105; +x_39 = x_114; +x_40 = x_73; +x_41 = x_71; +x_42 = x_97; +x_43 = x_112; +x_44 = x_116; +x_45 = x_110; +x_46 = x_72; +x_47 = x_139; +x_48 = x_74; +x_49 = x_142; x_50 = x_114; x_51 = x_79; x_52 = x_80; @@ -116939,16 +116930,16 @@ else uint8_t x_154; lean_dec_ref(x_112); lean_dec(x_110); -lean_dec_ref(x_77); +lean_dec_ref(x_76); lean_dec(x_105); lean_dec(x_97); lean_dec(x_82); lean_dec_ref(x_81); lean_dec(x_80); lean_dec_ref(x_79); -lean_dec_ref(x_76); -lean_dec_ref(x_74); -lean_dec(x_73); +lean_dec_ref(x_77); +lean_dec(x_74); +lean_dec_ref(x_73); lean_dec_ref(x_71); lean_dec_ref(x_36); lean_dec(x_30); @@ -116985,17 +116976,17 @@ return x_157; else { uint8_t x_158; -lean_dec_ref(x_77); +lean_dec_ref(x_76); lean_dec(x_105); lean_dec(x_97); lean_dec(x_82); lean_dec_ref(x_81); lean_dec(x_80); lean_dec_ref(x_79); -lean_dec_ref(x_76); +lean_dec_ref(x_77); lean_dec(x_75); -lean_dec_ref(x_74); -lean_dec(x_73); +lean_dec(x_74); +lean_dec_ref(x_73); lean_dec_ref(x_71); lean_dec_ref(x_36); lean_dec(x_30); @@ -117033,17 +117024,17 @@ else { uint8_t x_162; lean_dec(x_97); -lean_free_object(x_77); +lean_free_object(x_76); lean_dec(x_91); lean_dec(x_82); lean_dec_ref(x_81); lean_dec(x_80); lean_dec_ref(x_79); lean_dec_ref(x_78); -lean_dec_ref(x_76); +lean_dec_ref(x_77); lean_dec(x_75); -lean_dec_ref(x_74); -lean_dec(x_73); +lean_dec(x_74); +lean_dec_ref(x_73); lean_dec_ref(x_71); lean_dec_ref(x_36); lean_dec(x_30); @@ -117081,17 +117072,17 @@ else { uint8_t x_166; lean_dec(x_97); -lean_free_object(x_77); +lean_free_object(x_76); lean_dec(x_91); lean_dec(x_82); lean_dec_ref(x_81); lean_dec(x_80); lean_dec_ref(x_79); lean_dec_ref(x_78); -lean_dec_ref(x_76); +lean_dec_ref(x_77); lean_dec(x_75); -lean_dec_ref(x_74); -lean_dec(x_73); +lean_dec(x_74); +lean_dec_ref(x_73); lean_dec_ref(x_71); lean_dec_ref(x_36); lean_dec(x_30); @@ -117128,9 +117119,9 @@ return x_169; else { lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; -x_170 = lean_ctor_get(x_77, 0); +x_170 = lean_ctor_get(x_76, 0); lean_inc(x_170); -lean_dec(x_77); +lean_dec(x_76); x_171 = l_Lean_Level_ofNat(x_2); lean_inc(x_91); lean_inc(x_171); @@ -117165,8 +117156,8 @@ lean_inc(x_179); x_180 = lean_ctor_get(x_178, 1); lean_inc(x_180); lean_dec_ref(x_178); -lean_inc_ref(x_76); -x_181 = l_Lean_Elab_Structural_IndGroupInfo_ofInductiveVal(x_76); +lean_inc_ref(x_77); +x_181 = l_Lean_Elab_Structural_IndGroupInfo_ofInductiveVal(x_77); x_182 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_182, 0, x_181); lean_ctor_set(x_182, 1, x_91); @@ -117222,8 +117213,8 @@ if (lean_is_exclusive(x_192)) { } x_196 = l_Lean_Elab_Structural_instInhabitedRecArgInfo; x_197 = lean_alloc_closure((void*)(l_instDecidableEqNat___boxed), 2, 0); -x_198 = l_Lean_InductiveVal_numTypeFormers(x_76); -lean_dec_ref(x_76); +x_198 = l_Lean_InductiveVal_numTypeFormers(x_77); +lean_dec_ref(x_77); x_199 = l_Array_range(x_198); x_200 = l_Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6___redArg(x_196, x_8, x_185, x_199); x_201 = lean_unbox(x_193); @@ -117233,19 +117224,19 @@ if (x_201 == 0) lean_dec(x_195); lean_dec(x_30); lean_inc(x_189); -x_37 = x_189; -x_38 = x_182; -x_39 = x_179; -x_40 = x_187; -x_41 = x_185; -x_42 = x_197; -x_43 = x_200; -x_44 = x_171; -x_45 = x_71; -x_46 = x_191; -x_47 = x_72; -x_48 = x_73; -x_49 = x_74; +x_37 = x_182; +x_38 = x_179; +x_39 = x_189; +x_40 = x_73; +x_41 = x_71; +x_42 = x_171; +x_43 = x_187; +x_44 = x_191; +x_45 = x_185; +x_46 = x_72; +x_47 = x_197; +x_48 = x_74; +x_49 = x_200; x_50 = x_189; x_51 = x_79; x_52 = x_80; @@ -117285,19 +117276,19 @@ x_211 = lean_ctor_get(x_210, 1); lean_inc(x_211); lean_dec_ref(x_210); lean_inc(x_189); -x_37 = x_189; -x_38 = x_182; -x_39 = x_179; -x_40 = x_187; -x_41 = x_185; -x_42 = x_197; -x_43 = x_200; -x_44 = x_171; -x_45 = x_71; -x_46 = x_191; -x_47 = x_72; -x_48 = x_73; -x_49 = x_74; +x_37 = x_182; +x_38 = x_179; +x_39 = x_189; +x_40 = x_73; +x_41 = x_71; +x_42 = x_171; +x_43 = x_187; +x_44 = x_191; +x_45 = x_185; +x_46 = x_72; +x_47 = x_197; +x_48 = x_74; +x_49 = x_200; x_50 = x_189; x_51 = x_79; x_52 = x_80; @@ -117319,9 +117310,9 @@ lean_dec(x_82); lean_dec_ref(x_81); lean_dec(x_80); lean_dec_ref(x_79); -lean_dec_ref(x_76); -lean_dec_ref(x_74); -lean_dec(x_73); +lean_dec_ref(x_77); +lean_dec(x_74); +lean_dec_ref(x_73); lean_dec_ref(x_71); lean_dec_ref(x_36); lean_dec(x_30); @@ -117367,10 +117358,10 @@ lean_dec(x_82); lean_dec_ref(x_81); lean_dec(x_80); lean_dec_ref(x_79); -lean_dec_ref(x_76); +lean_dec_ref(x_77); lean_dec(x_75); -lean_dec_ref(x_74); -lean_dec(x_73); +lean_dec(x_74); +lean_dec_ref(x_73); lean_dec_ref(x_71); lean_dec_ref(x_36); lean_dec(x_30); @@ -117416,10 +117407,10 @@ lean_dec_ref(x_81); lean_dec(x_80); lean_dec_ref(x_79); lean_dec_ref(x_78); -lean_dec_ref(x_76); +lean_dec_ref(x_77); lean_dec(x_75); -lean_dec_ref(x_74); -lean_dec(x_73); +lean_dec(x_74); +lean_dec_ref(x_73); lean_dec_ref(x_71); lean_dec_ref(x_36); lean_dec(x_30); @@ -117465,10 +117456,10 @@ lean_dec_ref(x_81); lean_dec(x_80); lean_dec_ref(x_79); lean_dec_ref(x_78); -lean_dec_ref(x_76); +lean_dec_ref(x_77); lean_dec(x_75); -lean_dec_ref(x_74); -lean_dec(x_73); +lean_dec(x_74); +lean_dec_ref(x_73); lean_dec_ref(x_71); lean_dec_ref(x_36); lean_dec(x_30); @@ -117511,15 +117502,15 @@ lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; x_228 = lean_ctor_get(x_26, 1); lean_inc(x_228); lean_dec(x_26); -x_229 = lean_ctor_get(x_77, 0); +x_229 = lean_ctor_get(x_76, 0); lean_inc(x_229); -if (lean_is_exclusive(x_77)) { - lean_ctor_release(x_77, 0); - lean_ctor_release(x_77, 1); - lean_ctor_release(x_77, 2); - x_230 = x_77; +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + lean_ctor_release(x_76, 1); + lean_ctor_release(x_76, 2); + x_230 = x_76; } else { - lean_dec_ref(x_77); + lean_dec_ref(x_76); x_230 = lean_box(0); } x_231 = l_Lean_Level_ofNat(x_2); @@ -117558,8 +117549,8 @@ lean_inc(x_240); x_241 = lean_ctor_get(x_239, 1); lean_inc(x_241); lean_dec_ref(x_239); -lean_inc_ref(x_76); -x_242 = l_Lean_Elab_Structural_IndGroupInfo_ofInductiveVal(x_76); +lean_inc_ref(x_77); +x_242 = l_Lean_Elab_Structural_IndGroupInfo_ofInductiveVal(x_77); if (lean_is_scalar(x_230)) { x_243 = lean_alloc_ctor(0, 3, 0); } else { @@ -117619,8 +117610,8 @@ if (lean_is_exclusive(x_253)) { } x_257 = l_Lean_Elab_Structural_instInhabitedRecArgInfo; x_258 = lean_alloc_closure((void*)(l_instDecidableEqNat___boxed), 2, 0); -x_259 = l_Lean_InductiveVal_numTypeFormers(x_76); -lean_dec_ref(x_76); +x_259 = l_Lean_InductiveVal_numTypeFormers(x_77); +lean_dec_ref(x_77); x_260 = l_Array_range(x_259); x_261 = l_Lean_Elab_Structural_Positions_groupAndSort___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__6___redArg(x_257, x_8, x_246, x_260); x_262 = lean_unbox(x_254); @@ -117630,19 +117621,19 @@ if (x_262 == 0) lean_dec(x_256); lean_dec(x_30); lean_inc(x_250); -x_37 = x_250; -x_38 = x_243; -x_39 = x_240; -x_40 = x_248; -x_41 = x_246; -x_42 = x_258; -x_43 = x_261; -x_44 = x_231; -x_45 = x_71; -x_46 = x_252; -x_47 = x_72; -x_48 = x_73; -x_49 = x_74; +x_37 = x_243; +x_38 = x_240; +x_39 = x_250; +x_40 = x_73; +x_41 = x_71; +x_42 = x_231; +x_43 = x_248; +x_44 = x_252; +x_45 = x_246; +x_46 = x_72; +x_47 = x_258; +x_48 = x_74; +x_49 = x_261; x_50 = x_250; x_51 = x_79; x_52 = x_80; @@ -117682,19 +117673,19 @@ x_272 = lean_ctor_get(x_271, 1); lean_inc(x_272); lean_dec_ref(x_271); lean_inc(x_250); -x_37 = x_250; -x_38 = x_243; -x_39 = x_240; -x_40 = x_248; -x_41 = x_246; -x_42 = x_258; -x_43 = x_261; -x_44 = x_231; -x_45 = x_71; -x_46 = x_252; -x_47 = x_72; -x_48 = x_73; -x_49 = x_74; +x_37 = x_243; +x_38 = x_240; +x_39 = x_250; +x_40 = x_73; +x_41 = x_71; +x_42 = x_231; +x_43 = x_248; +x_44 = x_252; +x_45 = x_246; +x_46 = x_72; +x_47 = x_258; +x_48 = x_74; +x_49 = x_261; x_50 = x_250; x_51 = x_79; x_52 = x_80; @@ -117716,9 +117707,9 @@ lean_dec(x_82); lean_dec_ref(x_81); lean_dec(x_80); lean_dec_ref(x_79); -lean_dec_ref(x_76); -lean_dec_ref(x_74); -lean_dec(x_73); +lean_dec_ref(x_77); +lean_dec(x_74); +lean_dec_ref(x_73); lean_dec_ref(x_71); lean_dec_ref(x_36); lean_dec(x_30); @@ -117764,10 +117755,10 @@ lean_dec(x_82); lean_dec_ref(x_81); lean_dec(x_80); lean_dec_ref(x_79); -lean_dec_ref(x_76); +lean_dec_ref(x_77); lean_dec(x_75); -lean_dec_ref(x_74); -lean_dec(x_73); +lean_dec(x_74); +lean_dec_ref(x_73); lean_dec_ref(x_71); lean_dec_ref(x_36); lean_dec(x_30); @@ -117814,10 +117805,10 @@ lean_dec_ref(x_81); lean_dec(x_80); lean_dec_ref(x_79); lean_dec_ref(x_78); -lean_dec_ref(x_76); +lean_dec_ref(x_77); lean_dec(x_75); -lean_dec_ref(x_74); -lean_dec(x_73); +lean_dec(x_74); +lean_dec_ref(x_73); lean_dec_ref(x_71); lean_dec_ref(x_36); lean_dec(x_30); @@ -117864,10 +117855,10 @@ lean_dec_ref(x_81); lean_dec(x_80); lean_dec_ref(x_79); lean_dec_ref(x_78); -lean_dec_ref(x_76); +lean_dec_ref(x_77); lean_dec(x_75); -lean_dec_ref(x_74); -lean_dec(x_73); +lean_dec(x_74); +lean_dec_ref(x_73); lean_dec_ref(x_71); lean_dec_ref(x_36); lean_dec(x_30); @@ -117908,19 +117899,19 @@ return x_288; block_318: { lean_object* x_304; uint8_t x_305; -x_304 = lean_array_get_size(x_297); +x_304 = lean_array_get_size(x_296); x_305 = lean_nat_dec_lt(x_2, x_304); if (x_305 == 0) { lean_dec(x_304); -lean_dec_ref(x_297); +lean_dec_ref(x_296); x_71 = x_290; -x_72 = x_291; -x_73 = x_292; +x_72 = x_292; +x_73 = x_291; x_74 = x_293; x_75 = x_294; x_76 = x_295; -x_77 = x_296; +x_77 = x_297; x_78 = x_298; x_79 = x_299; x_80 = x_300; @@ -117934,14 +117925,14 @@ else if (x_305 == 0) { lean_dec(x_304); -lean_dec_ref(x_297); +lean_dec_ref(x_296); x_71 = x_290; -x_72 = x_291; -x_73 = x_292; +x_72 = x_292; +x_73 = x_291; x_74 = x_293; x_75 = x_294; x_76 = x_295; -x_77 = x_296; +x_77 = x_297; x_78 = x_298; x_79 = x_299; x_80 = x_300; @@ -117955,17 +117946,17 @@ else size_t x_306; uint8_t x_307; x_306 = lean_usize_of_nat(x_304); lean_dec(x_304); -x_307 = l_Array_anyMUnsafe_any___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__38(x_297, x_3, x_306); -lean_dec_ref(x_297); +x_307 = l_Array_anyMUnsafe_any___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__38(x_296, x_3, x_306); +lean_dec_ref(x_296); if (x_307 == 0) { x_71 = x_290; -x_72 = x_291; -x_73 = x_292; +x_72 = x_292; +x_73 = x_291; x_74 = x_293; x_75 = x_294; x_76 = x_295; -x_77 = x_296; +x_77 = x_297; x_78 = x_298; x_79 = x_299; x_80 = x_300; @@ -117978,11 +117969,11 @@ else { lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; uint8_t x_314; lean_dec_ref(x_298); -lean_dec_ref(x_296); +lean_dec_ref(x_297); lean_dec_ref(x_295); lean_dec(x_294); -lean_dec_ref(x_293); -lean_dec(x_292); +lean_dec(x_293); +lean_dec_ref(x_291); lean_dec_ref(x_290); lean_dec_ref(x_36); lean_dec(x_30); @@ -118039,26 +118030,26 @@ lean_object* x_342; lean_object* x_343; lean_object* x_344; uint8_t x_345; x_342 = l_Array_toSubarray___redArg(x_325, x_340, x_341); x_343 = l_Array_ofSubarray___redArg(x_342); lean_dec_ref(x_342); -x_344 = lean_array_get_size(x_330); +x_344 = lean_array_get_size(x_337); x_345 = lean_nat_dec_lt(x_2, x_344); if (x_345 == 0) { lean_dec(x_344); -lean_dec_ref(x_330); +lean_dec_ref(x_337); x_290 = x_326; -x_291 = x_327; -x_292 = x_328; +x_291 = x_328; +x_292 = x_327; x_293 = x_329; x_294 = x_332; -x_295 = x_333; -x_296 = x_335; -x_297 = x_343; -x_298 = x_337; -x_299 = x_334; -x_300 = x_339; -x_301 = x_336; +x_295 = x_334; +x_296 = x_343; +x_297 = x_338; +x_298 = x_339; +x_299 = x_336; +x_300 = x_333; +x_301 = x_330; x_302 = x_331; -x_303 = x_338; +x_303 = x_335; goto block_318; } else @@ -118066,21 +118057,21 @@ else if (x_345 == 0) { lean_dec(x_344); -lean_dec_ref(x_330); +lean_dec_ref(x_337); x_290 = x_326; -x_291 = x_327; -x_292 = x_328; +x_291 = x_328; +x_292 = x_327; x_293 = x_329; x_294 = x_332; -x_295 = x_333; -x_296 = x_335; -x_297 = x_343; -x_298 = x_337; -x_299 = x_334; -x_300 = x_339; -x_301 = x_336; +x_295 = x_334; +x_296 = x_343; +x_297 = x_338; +x_298 = x_339; +x_299 = x_336; +x_300 = x_333; +x_301 = x_330; x_302 = x_331; -x_303 = x_338; +x_303 = x_335; goto block_318; } else @@ -118088,36 +118079,36 @@ else size_t x_346; uint8_t x_347; x_346 = lean_usize_of_nat(x_344); lean_dec(x_344); -x_347 = l_Array_anyMUnsafe_any___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__38(x_330, x_3, x_346); -lean_dec_ref(x_330); +x_347 = l_Array_anyMUnsafe_any___at___Lean_Tactic_FunInd_deriveInductionStructural_doRealize_spec__38(x_337, x_3, x_346); +lean_dec_ref(x_337); if (x_347 == 0) { x_290 = x_326; -x_291 = x_327; -x_292 = x_328; +x_291 = x_328; +x_292 = x_327; x_293 = x_329; x_294 = x_332; -x_295 = x_333; -x_296 = x_335; -x_297 = x_343; -x_298 = x_337; -x_299 = x_334; -x_300 = x_339; -x_301 = x_336; +x_295 = x_334; +x_296 = x_343; +x_297 = x_338; +x_298 = x_339; +x_299 = x_336; +x_300 = x_333; +x_301 = x_330; x_302 = x_331; -x_303 = x_338; +x_303 = x_335; goto block_318; } else { lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; uint8_t x_354; lean_dec_ref(x_343); -lean_dec_ref(x_337); -lean_dec_ref(x_335); -lean_dec_ref(x_333); +lean_dec_ref(x_339); +lean_dec_ref(x_338); +lean_dec_ref(x_334); lean_dec(x_332); -lean_dec_ref(x_329); -lean_dec(x_328); +lean_dec(x_329); +lean_dec_ref(x_328); lean_dec_ref(x_326); lean_dec_ref(x_36); lean_dec(x_30); @@ -118141,11 +118132,11 @@ x_351 = l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollec x_352 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_352, 0, x_350); lean_ctor_set(x_352, 1, x_351); -x_353 = l_Lean_throwError___at___Lean_Tactic_FunInd_foldAndCollect_spec__20___redArg(x_352, x_334, x_339, x_336, x_331, x_338); +x_353 = l_Lean_throwError___at___Lean_Tactic_FunInd_foldAndCollect_spec__20___redArg(x_352, x_336, x_333, x_330, x_331, x_335); lean_dec(x_331); +lean_dec_ref(x_330); +lean_dec(x_333); lean_dec_ref(x_336); -lean_dec(x_339); -lean_dec_ref(x_334); x_354 = !lean_is_exclusive(x_353); if (x_354 == 0) { @@ -118176,12 +118167,12 @@ x_375 = l_Array_toSubarray___redArg(x_325, x_373, x_374); x_376 = l_Array_ofSubarray___redArg(x_375); lean_dec_ref(x_375); x_377 = lean_array_get_size(x_325); -x_378 = lean_nat_dec_le(x_369, x_2); +x_378 = lean_nat_dec_le(x_371, x_2); if (x_378 == 0) { x_326 = x_376; -x_327 = x_359; -x_328 = x_360; +x_327 = x_360; +x_328 = x_359; x_329 = x_361; x_330 = x_362; x_331 = x_363; @@ -118190,20 +118181,20 @@ x_333 = x_365; x_334 = x_366; x_335 = x_367; x_336 = x_368; -x_337 = x_370; -x_338 = x_371; +x_337 = x_369; +x_338 = x_370; x_339 = x_372; -x_340 = x_369; +x_340 = x_371; x_341 = x_377; goto block_358; } else { -lean_dec(x_369); +lean_dec(x_371); lean_inc(x_2); x_326 = x_376; -x_327 = x_359; -x_328 = x_360; +x_327 = x_360; +x_328 = x_359; x_329 = x_361; x_330 = x_362; x_331 = x_363; @@ -118212,8 +118203,8 @@ x_333 = x_365; x_334 = x_366; x_335 = x_367; x_336 = x_368; -x_337 = x_370; -x_338 = x_371; +x_337 = x_369; +x_338 = x_370; x_339 = x_372; x_340 = x_2; x_341 = x_377; @@ -118223,22 +118214,22 @@ goto block_358; block_396: { uint8_t x_395; -x_395 = lean_nat_dec_le(x_391, x_386); +x_395 = lean_nat_dec_le(x_392, x_386); if (x_395 == 0) { -lean_inc_ref(x_382); -x_359 = x_380; -x_360 = x_381; +lean_inc_ref(x_381); +x_359 = x_381; +x_360 = x_380; x_361 = x_382; -x_362 = x_382; -x_363 = x_383; +x_362 = x_383; +x_363 = x_385; x_364 = x_384; -x_365 = x_385; -x_366 = x_388; -x_367 = x_387; -x_368 = x_389; -x_369 = x_391; -x_370 = x_390; +x_365 = x_388; +x_366 = x_387; +x_367 = x_389; +x_368 = x_390; +x_369 = x_381; +x_370 = x_391; x_371 = x_392; x_372 = x_393; x_373 = x_394; @@ -118248,24 +118239,24 @@ goto block_379; else { lean_dec(x_386); -lean_inc(x_391); -lean_inc_ref(x_382); -x_359 = x_380; -x_360 = x_381; +lean_inc(x_392); +lean_inc_ref(x_381); +x_359 = x_381; +x_360 = x_380; x_361 = x_382; -x_362 = x_382; -x_363 = x_383; +x_362 = x_383; +x_363 = x_385; x_364 = x_384; -x_365 = x_385; -x_366 = x_388; -x_367 = x_387; -x_368 = x_389; -x_369 = x_391; -x_370 = x_390; +x_365 = x_388; +x_366 = x_387; +x_367 = x_389; +x_368 = x_390; +x_369 = x_381; +x_370 = x_391; x_371 = x_392; x_372 = x_393; x_373 = x_394; -x_374 = x_391; +x_374 = x_392; goto block_379; } } @@ -118276,24 +118267,24 @@ lean_inc_ref(x_325); x_411 = l_Array_toSubarray___redArg(x_325, x_409, x_410); x_412 = l_Array_ofSubarray___redArg(x_411); lean_dec_ref(x_411); -x_413 = lean_nat_add(x_402, x_400); +x_413 = lean_nat_add(x_402, x_401); x_414 = lean_array_get_size(x_325); x_415 = lean_nat_dec_le(x_402, x_2); if (x_415 == 0) { x_380 = x_397; -x_381 = x_398; -x_382 = x_412; +x_381 = x_412; +x_382 = x_398; x_383 = x_399; -x_384 = x_400; -x_385 = x_401; +x_384 = x_401; +x_385 = x_400; x_386 = x_414; x_387 = x_403; x_388 = x_404; x_389 = x_405; x_390 = x_406; -x_391 = x_413; -x_392 = x_407; +x_391 = x_407; +x_392 = x_413; x_393 = x_408; x_394 = x_402; goto block_396; @@ -118303,18 +118294,18 @@ else lean_dec(x_402); lean_inc(x_2); x_380 = x_397; -x_381 = x_398; -x_382 = x_412; +x_381 = x_412; +x_382 = x_398; x_383 = x_399; -x_384 = x_400; -x_385 = x_401; +x_384 = x_401; +x_385 = x_400; x_386 = x_414; x_387 = x_403; x_388 = x_404; x_389 = x_405; x_390 = x_406; -x_391 = x_413; -x_392 = x_407; +x_391 = x_407; +x_392 = x_413; x_393 = x_408; x_394 = x_2; goto block_396; @@ -118329,8 +118320,8 @@ if (x_431 == 0) x_397 = x_417; x_398 = x_418; x_399 = x_419; -x_400 = x_420; -x_401 = x_421; +x_400 = x_421; +x_401 = x_420; x_402 = x_422; x_403 = x_424; x_404 = x_423; @@ -118349,8 +118340,8 @@ lean_inc(x_422); x_397 = x_417; x_398 = x_418; x_399 = x_419; -x_400 = x_420; -x_401 = x_421; +x_400 = x_421; +x_401 = x_420; x_402 = x_422; x_403 = x_424; x_404 = x_423; @@ -118370,30 +118361,30 @@ lean_inc_ref(x_325); x_446 = l_Array_toSubarray___redArg(x_325, x_444, x_445); x_447 = l_Array_ofSubarray___redArg(x_446); lean_dec_ref(x_446); -x_448 = lean_nat_add(x_436, x_435); -lean_dec(x_436); -x_449 = lean_nat_add(x_448, x_433); -lean_dec(x_433); +x_448 = lean_nat_add(x_434, x_436); +lean_dec(x_434); +x_449 = lean_nat_add(x_448, x_437); +lean_dec(x_437); x_450 = lean_nat_add(x_449, x_35); lean_dec(x_449); x_451 = lean_array_get_size(x_325); x_452 = lean_nat_dec_le(x_448, x_2); if (x_452 == 0) { -lean_inc(x_435); -x_417 = x_434; -x_418 = x_435; +lean_inc(x_436); +x_417 = x_435; +x_418 = x_436; x_419 = x_438; -x_420 = x_435; +x_420 = x_436; x_421 = x_439; x_422 = x_450; x_423 = x_440; -x_424 = x_437; +x_424 = x_433; x_425 = x_441; -x_426 = x_447; -x_427 = x_442; +x_426 = x_442; +x_427 = x_443; x_428 = x_451; -x_429 = x_443; +x_429 = x_447; x_430 = x_448; goto block_432; } @@ -118401,20 +118392,20 @@ else { lean_dec(x_448); lean_inc(x_2); -lean_inc(x_435); -x_417 = x_434; -x_418 = x_435; +lean_inc(x_436); +x_417 = x_435; +x_418 = x_436; x_419 = x_438; -x_420 = x_435; +x_420 = x_436; x_421 = x_439; x_422 = x_450; x_423 = x_440; -x_424 = x_437; +x_424 = x_433; x_425 = x_441; -x_426 = x_447; -x_427 = x_442; +x_426 = x_442; +x_427 = x_443; x_428 = x_451; -x_429 = x_443; +x_429 = x_447; x_430 = x_2; goto block_432; } @@ -118954,9 +118945,9 @@ if (x_93 == 0) lean_dec(x_92); lean_dec(x_52); lean_dec_ref(x_41); -x_16 = x_57; -x_17 = x_56; -x_18 = x_78; +x_16 = x_56; +x_17 = x_78; +x_18 = x_57; x_19 = x_68; x_20 = x_86; goto block_25; @@ -118973,9 +118964,9 @@ lean_inc(x_95); x_96 = lean_ctor_get(x_94, 1); lean_inc(x_96); lean_dec_ref(x_94); -x_16 = x_57; -x_17 = x_56; -x_18 = x_78; +x_16 = x_56; +x_17 = x_78; +x_18 = x_57; x_19 = x_95; x_20 = x_96; goto block_25; @@ -119018,9 +119009,9 @@ if (x_104 == 0) lean_dec(x_103); lean_dec(x_52); lean_dec_ref(x_41); -x_16 = x_57; -x_17 = x_56; -x_18 = x_78; +x_16 = x_56; +x_17 = x_78; +x_18 = x_57; x_19 = x_68; x_20 = x_97; goto block_25; @@ -119037,9 +119028,9 @@ lean_inc(x_106); x_107 = lean_ctor_get(x_105, 1); lean_inc(x_107); lean_dec_ref(x_105); -x_16 = x_57; -x_17 = x_56; -x_18 = x_78; +x_16 = x_56; +x_17 = x_78; +x_18 = x_57; x_19 = x_106; x_20 = x_107; goto block_25; @@ -119148,9 +119139,9 @@ if (x_128 == 0) lean_dec(x_127); lean_dec(x_52); lean_dec_ref(x_41); -x_16 = x_57; -x_17 = x_56; -x_18 = x_112; +x_16 = x_56; +x_17 = x_112; +x_18 = x_57; x_19 = x_68; x_20 = x_120; goto block_25; @@ -119167,9 +119158,9 @@ lean_inc(x_130); x_131 = lean_ctor_get(x_129, 1); lean_inc(x_131); lean_dec_ref(x_129); -x_16 = x_57; -x_17 = x_56; -x_18 = x_112; +x_16 = x_56; +x_17 = x_112; +x_18 = x_57; x_19 = x_130; x_20 = x_131; goto block_25; @@ -119570,9 +119561,9 @@ if (x_203 == 0) lean_dec(x_202); lean_dec(x_163); lean_dec_ref(x_41); -x_16 = x_168; -x_17 = x_167; -x_18 = x_187; +x_16 = x_167; +x_17 = x_187; +x_18 = x_168; x_19 = x_179; x_20 = x_195; goto block_25; @@ -119589,9 +119580,9 @@ lean_inc(x_205); x_206 = lean_ctor_get(x_204, 1); lean_inc(x_206); lean_dec_ref(x_204); -x_16 = x_168; -x_17 = x_167; -x_18 = x_187; +x_16 = x_167; +x_17 = x_187; +x_18 = x_168; x_19 = x_205; x_20 = x_206; goto block_25; @@ -119762,9 +119753,9 @@ lean_dec_ref(x_2); x_23 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_4); -lean_ctor_set(x_23, 2, x_18); +lean_ctor_set(x_23, 2, x_17); lean_ctor_set(x_23, 3, x_19); -x_24 = l_Lean_Meta_setFunIndInfo(x_23, x_17, x_16, x_20); +x_24 = l_Lean_Meta_setFunIndInfo(x_23, x_16, x_18, x_20); return x_24; } } @@ -121806,8 +121797,8 @@ if (lean_is_scalar(x_124)) { lean_ctor_set(x_139, 0, x_138); lean_ctor_set(x_139, 1, x_136); lean_inc_ref(x_18); -x_140 = l_Std_Iterators_instIteratorMap___redArg(x_131, x_129, x_18, x_137); -x_141 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Tactic_FunInd_refinedArguments_go_spec__0___redArg(x_140, x_1, x_127, x_139, x_127, x_128, x_7, x_8, x_9, x_10, x_130); +x_140 = l_Std_Iterators_instIteratorMap___redArg(x_127, x_130, x_18, x_137); +x_141 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Tactic_FunInd_refinedArguments_go_spec__0___redArg(x_140, x_1, x_131, x_139, x_131, x_129, x_7, x_8, x_9, x_10, x_128); x_142 = lean_ctor_get(x_141, 0); lean_inc(x_142); x_143 = lean_ctor_get(x_141, 1); @@ -121827,29 +121818,29 @@ goto block_113; block_155: { uint8_t x_154; -x_154 = lean_nat_dec_le(x_151, x_147); +x_154 = lean_nat_dec_le(x_148, x_151); if (x_154 == 0) { -lean_dec(x_151); +lean_dec(x_148); x_127 = x_146; -x_128 = x_149; -x_129 = x_148; -x_130 = x_150; +x_128 = x_147; +x_129 = x_150; +x_130 = x_149; x_131 = x_152; x_132 = x_153; -x_133 = x_147; +x_133 = x_151; goto block_145; } else { -lean_dec(x_147); +lean_dec(x_151); x_127 = x_146; -x_128 = x_149; -x_129 = x_148; -x_130 = x_150; +x_128 = x_147; +x_129 = x_150; +x_130 = x_149; x_131 = x_152; x_132 = x_153; -x_133 = x_151; +x_133 = x_148; goto block_145; } } @@ -121897,26 +121888,26 @@ x_177 = lean_array_get_size(x_4); x_178 = lean_nat_dec_le(x_157, x_176); if (x_178 == 0) { -x_146 = x_164; -x_147 = x_177; -x_148 = x_169; -x_149 = x_174; -x_150 = x_173; -x_151 = x_175; -x_152 = x_167; +x_146 = x_167; +x_147 = x_173; +x_148 = x_175; +x_149 = x_169; +x_150 = x_174; +x_151 = x_177; +x_152 = x_164; x_153 = x_157; goto block_155; } else { lean_dec(x_157); -x_146 = x_164; -x_147 = x_177; -x_148 = x_169; -x_149 = x_174; -x_150 = x_173; -x_151 = x_175; -x_152 = x_167; +x_146 = x_167; +x_147 = x_173; +x_148 = x_175; +x_149 = x_169; +x_150 = x_174; +x_151 = x_177; +x_152 = x_164; x_153 = x_176; goto block_155; } @@ -121963,7 +121954,7 @@ x_35 = l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_Fun lean_inc_ref(x_18); x_36 = l_Std_Iterators_Types_ULiftIterator_instIterator___redArg(x_18, x_35, x_34); x_37 = l_Std_Iterators_instIteratorMap___redArg(x_34, x_36, x_18, x_30); -x_38 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Tactic_FunInd_refinedArguments_go_spec__0___redArg(x_37, x_1, x_31, x_33, x_31, x_21, x_20, x_19, x_22, x_23, x_24); +x_38 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Tactic_FunInd_refinedArguments_go_spec__0___redArg(x_37, x_1, x_31, x_33, x_31, x_19, x_20, x_24, x_21, x_23, x_22); x_39 = !lean_is_exclusive(x_38); if (x_39 == 0) { @@ -122051,12 +122042,12 @@ x_65 = lean_array_get_size(x_4); x_66 = lean_nat_dec_le(x_64, x_65); if (x_66 == 0) { -x_19 = x_54; +x_19 = x_52; x_20 = x_53; -x_21 = x_52; -x_22 = x_55; +x_21 = x_55; +x_22 = x_57; x_23 = x_56; -x_24 = x_57; +x_24 = x_54; x_25 = x_63; x_26 = x_65; goto block_51; @@ -122064,12 +122055,12 @@ goto block_51; else { lean_dec(x_65); -x_19 = x_54; +x_19 = x_52; x_20 = x_53; -x_21 = x_52; -x_22 = x_55; +x_21 = x_55; +x_22 = x_57; x_23 = x_56; -x_24 = x_57; +x_24 = x_54; x_25 = x_63; x_26 = x_64; goto block_51; @@ -122099,7 +122090,7 @@ lean_inc_ref(x_18); x_85 = l_Std_Iterators_Types_ULiftIterator_instIterator___redArg(x_18, x_84, x_83); lean_inc_ref(x_18); x_86 = l_Std_Iterators_instIteratorMap___redArg(x_83, x_85, x_18, x_79); -x_87 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Tactic_FunInd_refinedArguments_go_spec__0___redArg(x_86, x_1, x_80, x_82, x_80, x_72, x_70, x_71, x_69, x_68, x_73); +x_87 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Tactic_FunInd_refinedArguments_go_spec__0___redArg(x_86, x_1, x_80, x_82, x_80, x_69, x_72, x_73, x_68, x_70, x_71); x_88 = lean_ctor_get(x_87, 0); lean_inc(x_88); x_89 = lean_ctor_get(x_87, 1); @@ -122109,10 +122100,10 @@ x_90 = lean_ctor_get(x_88, 1); lean_inc(x_90); lean_dec(x_88); x_52 = x_90; -x_53 = x_70; -x_54 = x_71; -x_55 = x_69; -x_56 = x_68; +x_53 = x_72; +x_54 = x_73; +x_55 = x_68; +x_56 = x_70; x_57 = x_89; goto block_67; } @@ -122126,8 +122117,8 @@ x_101 = lean_nat_dec_le(x_99, x_100); if (x_101 == 0) { x_68 = x_92; -x_69 = x_94; -x_70 = x_93; +x_69 = x_93; +x_70 = x_94; x_71 = x_95; x_72 = x_96; x_73 = x_97; @@ -122139,8 +122130,8 @@ else { lean_dec(x_100); x_68 = x_92; -x_69 = x_94; -x_70 = x_93; +x_69 = x_93; +x_70 = x_94; x_71 = x_95; x_72 = x_96; x_73 = x_97; @@ -122171,23 +122162,23 @@ goto block_67; } else { -x_92 = x_107; -x_93 = x_104; -x_94 = x_106; -x_95 = x_105; -x_96 = x_103; -x_97 = x_108; +x_92 = x_106; +x_93 = x_103; +x_94 = x_107; +x_95 = x_108; +x_96 = x_104; +x_97 = x_105; goto block_102; } } else { -x_92 = x_107; -x_93 = x_104; -x_94 = x_106; -x_95 = x_105; -x_96 = x_103; -x_97 = x_108; +x_92 = x_106; +x_93 = x_103; +x_94 = x_107; +x_95 = x_108; +x_96 = x_104; +x_97 = x_105; goto block_102; } } @@ -122325,8 +122316,8 @@ if (lean_is_scalar(x_124)) { lean_ctor_set(x_139, 0, x_138); lean_ctor_set(x_139, 1, x_136); lean_inc_ref(x_18); -x_140 = l_Std_Iterators_instIteratorMap___redArg(x_128, x_127, x_18, x_137); -x_141 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Tactic_FunInd_refinedArguments_go_spec__0___redArg(x_140, x_1, x_129, x_139, x_129, x_130, x_7, x_8, x_9, x_10, x_131); +x_140 = l_Std_Iterators_instIteratorMap___redArg(x_130, x_128, x_18, x_137); +x_141 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Tactic_FunInd_refinedArguments_go_spec__0___redArg(x_140, x_1, x_131, x_139, x_131, x_129, x_7, x_8, x_9, x_10, x_127); x_142 = lean_ctor_get(x_141, 0); lean_inc(x_142); x_143 = lean_ctor_get(x_141, 1); @@ -122346,29 +122337,29 @@ goto block_113; block_155: { uint8_t x_154; -x_154 = lean_nat_dec_le(x_150, x_149); +x_154 = lean_nat_dec_le(x_151, x_148); if (x_154 == 0) { -lean_dec(x_150); -x_127 = x_146; -x_128 = x_147; -x_129 = x_148; -x_130 = x_151; +lean_dec(x_151); +x_127 = x_147; +x_128 = x_146; +x_129 = x_149; +x_130 = x_150; x_131 = x_152; x_132 = x_153; -x_133 = x_149; +x_133 = x_148; goto block_145; } else { -lean_dec(x_149); -x_127 = x_146; -x_128 = x_147; -x_129 = x_148; -x_130 = x_151; +lean_dec(x_148); +x_127 = x_147; +x_128 = x_146; +x_129 = x_149; +x_130 = x_150; x_131 = x_152; x_132 = x_153; -x_133 = x_150; +x_133 = x_151; goto block_145; } } @@ -122417,12 +122408,12 @@ x_178 = lean_nat_dec_le(x_157, x_176); if (x_178 == 0) { x_146 = x_169; -x_147 = x_167; -x_148 = x_164; -x_149 = x_177; -x_150 = x_175; -x_151 = x_174; -x_152 = x_173; +x_147 = x_173; +x_148 = x_177; +x_149 = x_174; +x_150 = x_167; +x_151 = x_175; +x_152 = x_164; x_153 = x_157; goto block_155; } @@ -122430,12 +122421,12 @@ else { lean_dec(x_157); x_146 = x_169; -x_147 = x_167; -x_148 = x_164; -x_149 = x_177; -x_150 = x_175; -x_151 = x_174; -x_152 = x_173; +x_147 = x_173; +x_148 = x_177; +x_149 = x_174; +x_150 = x_167; +x_151 = x_175; +x_152 = x_164; x_153 = x_176; goto block_155; } @@ -122482,7 +122473,7 @@ x_35 = l_Lean_Expr_withAppAux___at___Lean_Expr_withAppAux___at___Lean_Tactic_Fun lean_inc_ref(x_18); x_36 = l_Std_Iterators_Types_ULiftIterator_instIterator___redArg(x_18, x_35, x_34); x_37 = l_Std_Iterators_instIteratorMap___redArg(x_34, x_36, x_18, x_30); -x_38 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Tactic_FunInd_refinedArguments_go_spec__0___redArg(x_37, x_1, x_31, x_33, x_31, x_23, x_21, x_22, x_20, x_24, x_19); +x_38 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Tactic_FunInd_refinedArguments_go_spec__0___redArg(x_37, x_1, x_31, x_33, x_31, x_21, x_19, x_24, x_23, x_22, x_20); x_39 = !lean_is_exclusive(x_38); if (x_39 == 0) { @@ -122570,12 +122561,12 @@ x_65 = lean_array_get_size(x_4); x_66 = lean_nat_dec_le(x_64, x_65); if (x_66 == 0) { -x_19 = x_57; -x_20 = x_55; -x_21 = x_53; -x_22 = x_54; -x_23 = x_52; -x_24 = x_56; +x_19 = x_53; +x_20 = x_57; +x_21 = x_52; +x_22 = x_56; +x_23 = x_55; +x_24 = x_54; x_25 = x_63; x_26 = x_65; goto block_51; @@ -122583,12 +122574,12 @@ goto block_51; else { lean_dec(x_65); -x_19 = x_57; -x_20 = x_55; -x_21 = x_53; -x_22 = x_54; -x_23 = x_52; -x_24 = x_56; +x_19 = x_53; +x_20 = x_57; +x_21 = x_52; +x_22 = x_56; +x_23 = x_55; +x_24 = x_54; x_25 = x_63; x_26 = x_64; goto block_51; @@ -122618,7 +122609,7 @@ lean_inc_ref(x_18); x_85 = l_Std_Iterators_Types_ULiftIterator_instIterator___redArg(x_18, x_84, x_83); lean_inc_ref(x_18); x_86 = l_Std_Iterators_instIteratorMap___redArg(x_83, x_85, x_18, x_79); -x_87 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Tactic_FunInd_refinedArguments_go_spec__0___redArg(x_86, x_1, x_80, x_82, x_80, x_72, x_73, x_68, x_71, x_70, x_69); +x_87 = l_Std_Iterators_IterM_DefaultConsumers_forIn_x27___at___Lean_Tactic_FunInd_refinedArguments_go_spec__0___redArg(x_86, x_1, x_80, x_82, x_80, x_73, x_71, x_70, x_72, x_69, x_68); x_88 = lean_ctor_get(x_87, 0); lean_inc(x_88); x_89 = lean_ctor_get(x_87, 1); @@ -122628,10 +122619,10 @@ x_90 = lean_ctor_get(x_88, 1); lean_inc(x_90); lean_dec(x_88); x_52 = x_90; -x_53 = x_73; -x_54 = x_68; -x_55 = x_71; -x_56 = x_70; +x_53 = x_71; +x_54 = x_70; +x_55 = x_72; +x_56 = x_69; x_57 = x_89; goto block_67; } @@ -122645,8 +122636,8 @@ x_101 = lean_nat_dec_le(x_99, x_100); if (x_101 == 0) { x_68 = x_92; -x_69 = x_93; -x_70 = x_94; +x_69 = x_94; +x_70 = x_93; x_71 = x_95; x_72 = x_96; x_73 = x_97; @@ -122658,8 +122649,8 @@ else { lean_dec(x_100); x_68 = x_92; -x_69 = x_93; -x_70 = x_94; +x_69 = x_94; +x_70 = x_93; x_71 = x_95; x_72 = x_96; x_73 = x_97; @@ -122690,23 +122681,23 @@ goto block_67; } else { -x_92 = x_105; -x_93 = x_108; +x_92 = x_108; +x_93 = x_105; x_94 = x_107; -x_95 = x_106; -x_96 = x_103; -x_97 = x_104; +x_95 = x_104; +x_96 = x_106; +x_97 = x_103; goto block_102; } } else { -x_92 = x_105; -x_93 = x_108; +x_92 = x_108; +x_93 = x_105; x_94 = x_107; -x_95 = x_106; -x_96 = x_103; -x_97 = x_104; +x_95 = x_104; +x_96 = x_106; +x_97 = x_103; goto block_102; } } @@ -128544,7 +128535,7 @@ x_4 = lean_box(x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28711_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28715_() { _start: { lean_object* x_1; lean_object* x_2; @@ -128554,7 +128545,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28711_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28715_() { _start: { lean_object* x_1; lean_object* x_2; @@ -128564,7 +128555,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_28711_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_28715_() { _start: { lean_object* x_1; lean_object* x_2; @@ -128574,7 +128565,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_28711_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_28715_() { _start: { lean_object* x_1; lean_object* x_2; @@ -128584,14 +128575,14 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_28711_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_28715_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; -x_2 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; -x_3 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; -x_4 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_1 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; +x_2 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; +x_3 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; +x_4 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_5 = lean_alloc_ctor(0, 6, 0); lean_ctor_set(x_5, 0, x_4); lean_ctor_set(x_5, 1, x_3); @@ -128602,7 +128593,7 @@ lean_ctor_set(x_5, 5, x_1); return x_5; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_28711_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_28715_() { _start: { lean_object* x_1; lean_object* x_2; @@ -128611,24 +128602,24 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_28711_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_28715_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_1 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_28711_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_28715_() { _start: { size_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = 5; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; -x_4 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_3 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; +x_4 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); lean_ctor_set(x_5, 0, x_4); lean_ctor_set(x_5, 1, x_3); @@ -128638,7 +128629,7 @@ lean_ctor_set_usize(x_5, 4, x_1); return x_5; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_28711_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_28715_() { _start: { lean_object* x_1; lean_object* x_2; @@ -128648,11 +128639,11 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_28711_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_28715_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_1 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_2 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3_spec__3___closed__1; x_3 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_3, 0, x_2); @@ -128662,14 +128653,14 @@ lean_ctor_set(x_3, 3, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28711_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28715_() { _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_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; -x_2 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_1 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; +x_2 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_3 = lean_box(1); -x_4 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_4 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_5 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3_spec__3___closed__7; x_6 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_6, 0, x_5); @@ -128680,7 +128671,7 @@ lean_ctor_set(x_6, 4, x_1); return x_6; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_28711_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_28715_() { _start: { lean_object* x_1; @@ -128688,24 +128679,24 @@ x_1 = l_Lean_Meta_instInhabitedConfigWithKey___private__1; return x_1; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_28711_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_28715_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_1 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_28711_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_28715_() { _start: { size_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = 5; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; -x_4 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_3 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; +x_4 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); lean_ctor_set(x_5, 0, x_4); lean_ctor_set(x_5, 1, x_3); @@ -128715,12 +128706,12 @@ lean_ctor_set_usize(x_5, 4, x_1); return x_5; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_28711_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_28715_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = lean_box(1); -x_2 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_2 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_3 = l_Lean_mkUnknownIdentifierMessage___at___Lean_throwUnknownIdentifierAt___at___Lean_throwUnknownConstantAt___at___Lean_throwUnknownConstant___at___Lean_getConstInfo___at___Lean_Meta_matchMatcherApp_x3f___at___Lean_Tactic_FunInd_foldAndCollect_spec__2_spec__3_spec__3_spec__3_spec__3_spec__3___closed__8; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_3); @@ -128729,7 +128720,7 @@ lean_ctor_set(x_4, 2, x_1); return x_4; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_28711_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_28715_() { _start: { lean_object* x_1; @@ -128737,22 +128728,22 @@ x_1 = lean_mk_string_unchecked("_unfolding", 10, 10); return x_1; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_28711_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_28715_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_1 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_28711_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_28715_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_1 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_3 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_3); lean_ctor_set(x_4, 1, x_2); @@ -128760,7 +128751,7 @@ lean_ctor_set(x_4, 2, x_1); return x_4; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_28711_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_28715_() { _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; uint8_t x_7; lean_object* x_8; lean_object* x_9; @@ -128768,10 +128759,10 @@ x_1 = lean_box(0); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_box(0); x_4 = l_Lean_Meta_withErasedFVars___at___Lean_Tactic_FunInd_buildInductionCase_spec__3___redArg___closed__0; -x_5 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_5 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_6 = lean_box(1); x_7 = 0; -x_8 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_8 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_9 = lean_alloc_ctor(0, 7, 3); lean_ctor_set(x_9, 0, x_8); lean_ctor_set(x_9, 1, x_6); @@ -128786,7 +128777,7 @@ lean_ctor_set_uint8(x_9, sizeof(void*)*7 + 2, x_7); return x_9; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -128868,7 +128859,7 @@ lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean lean_free_object(x_20); x_27 = lean_box(1); x_28 = lean_unsigned_to_nat(0u); -x_29 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_29 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_30 = lean_st_mk_ref(x_29, x_23); x_31 = lean_ctor_get(x_30, 0); lean_inc(x_31); @@ -128878,8 +128869,8 @@ lean_dec_ref(x_30); x_33 = l_Lean_Tactic_FunInd_isFunCasesName___closed__1; x_34 = lean_string_dec_eq(x_19, x_33); lean_dec_ref(x_19); -x_35 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; -x_36 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_35 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; +x_36 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_37 = l_Lean_Meta_withErasedFVars___at___Lean_Tactic_FunInd_buildInductionCase_spec__3___redArg___closed__0; x_38 = lean_box(0); x_39 = lean_box(0); @@ -129013,7 +129004,7 @@ else 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; uint8_t x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; x_66 = lean_box(1); x_67 = lean_unsigned_to_nat(0u); -x_68 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_68 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_69 = lean_st_mk_ref(x_68, x_61); x_70 = lean_ctor_get(x_69, 0); lean_inc(x_70); @@ -129023,8 +129014,8 @@ lean_dec_ref(x_69); x_72 = l_Lean_Tactic_FunInd_isFunCasesName___closed__1; x_73 = lean_string_dec_eq(x_19, x_72); lean_dec_ref(x_19); -x_74 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; -x_75 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_74 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; +x_75 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_76 = l_Lean_Meta_withErasedFVars___at___Lean_Tactic_FunInd_buildInductionCase_spec__3___redArg___closed__0; x_77 = lean_box(0); x_78 = lean_box(0); @@ -129212,7 +129203,7 @@ lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_dec(x_107); x_112 = lean_box(1); x_113 = lean_unsigned_to_nat(0u); -x_114 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_114 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_115 = lean_st_mk_ref(x_114, x_106); x_116 = lean_ctor_get(x_115, 0); lean_inc(x_116); @@ -129222,8 +129213,8 @@ lean_dec_ref(x_115); x_118 = l_Lean_Tactic_FunInd_isFunCasesName___closed__1; x_119 = lean_string_dec_eq(x_103, x_118); lean_dec_ref(x_103); -x_120 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; -x_121 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_120 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; +x_121 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_122 = l_Lean_Meta_withErasedFVars___at___Lean_Tactic_FunInd_buildInductionCase_spec__3___redArg___closed__0; x_123 = lean_box(0); x_124 = lean_box(0); @@ -129376,7 +129367,7 @@ else lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; uint8_t x_163; lean_object* x_164; lean_object* x_165; lean_free_object(x_145); x_152 = lean_unsigned_to_nat(0u); -x_153 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_153 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_154 = lean_st_mk_ref(x_153, x_148); x_155 = lean_ctor_get(x_154, 0); lean_inc(x_155); @@ -129398,9 +129389,9 @@ x_161 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_161, 0, x_144); lean_ctor_set(x_161, 1, x_160); lean_ctor_set(x_161, 2, x_157); -x_162 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_162 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_163 = l_Substring_beq(x_161, x_162); -x_164 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_164 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; lean_inc(x_155); x_165 = l_Lean_Tactic_FunInd_deriveInduction(x_163, x_143, x_164, x_155, x_2, x_3, x_156); if (lean_obj_tag(x_165) == 0) @@ -129519,7 +129510,7 @@ else { lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; uint8_t x_201; lean_object* x_202; lean_object* x_203; x_190 = lean_unsigned_to_nat(0u); -x_191 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_191 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_192 = lean_st_mk_ref(x_191, x_185); x_193 = lean_ctor_get(x_192, 0); lean_inc(x_193); @@ -129541,9 +129532,9 @@ x_199 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_199, 0, x_144); lean_ctor_set(x_199, 1, x_198); lean_ctor_set(x_199, 2, x_195); -x_200 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_200 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_201 = l_Substring_beq(x_199, x_200); -x_202 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_202 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; lean_inc(x_193); x_203 = l_Lean_Tactic_FunInd_deriveInduction(x_201, x_143, x_202, x_193, x_2, x_3, x_194); if (lean_obj_tag(x_203) == 0) @@ -129744,7 +129735,7 @@ lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_dec(x_237); x_242 = lean_box(1); x_243 = lean_unsigned_to_nat(0u); -x_244 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_244 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_245 = lean_st_mk_ref(x_244, x_236); x_246 = lean_ctor_get(x_245, 0); lean_inc(x_246); @@ -129754,8 +129745,8 @@ lean_dec_ref(x_245); x_248 = l_Lean_Tactic_FunInd_isFunCasesName___closed__1; x_249 = lean_string_dec_eq(x_233, x_248); lean_dec_ref(x_233); -x_250 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; -x_251 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_250 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; +x_251 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_252 = l_Lean_Meta_withErasedFVars___at___Lean_Tactic_FunInd_buildInductionCase_spec__3___redArg___closed__0; x_253 = lean_box(0); x_254 = lean_box(0); @@ -129922,7 +129913,7 @@ else lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; lean_object* x_296; lean_dec(x_278); x_283 = lean_unsigned_to_nat(0u); -x_284 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_284 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_285 = lean_st_mk_ref(x_284, x_277); x_286 = lean_ctor_get(x_285, 0); lean_inc(x_286); @@ -129944,9 +129935,9 @@ x_292 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_292, 0, x_274); lean_ctor_set(x_292, 1, x_291); lean_ctor_set(x_292, 2, x_288); -x_293 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_293 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_294 = l_Substring_beq(x_292, x_293); -x_295 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_295 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; lean_inc(x_286); x_296 = l_Lean_Tactic_FunInd_deriveInduction(x_294, x_273, x_295, x_286, x_2, x_3, x_287); if (lean_obj_tag(x_296) == 0) @@ -130048,7 +130039,7 @@ return x_313; } } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28711_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28715_() { _start: { lean_object* x_1; @@ -130056,7 +130047,7 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_isFunInductName___boxed), return x_1; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28711_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28715_() { _start: { lean_object* x_1; @@ -130064,11 +130055,11 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Tactic_FunInd_isFunCasesName___boxed), 2 return x_1; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_2 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_3 = l_Lean_registerReservedNamePredicate(x_2, x_1); if (lean_obj_tag(x_3) == 0) { @@ -130076,7 +130067,7 @@ lean_object* x_4; lean_object* x_5; lean_object* x_6; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); lean_dec_ref(x_3); -x_5 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28711_; +x_5 = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28715_; x_6 = l_Lean_registerReservedNamePredicate(x_5, x_4); if (lean_obj_tag(x_6) == 0) { @@ -130084,7 +130075,7 @@ lean_object* x_7; lean_object* x_8; lean_object* x_9; x_7 = lean_ctor_get(x_6, 1); lean_inc(x_7); lean_dec_ref(x_6); -x_8 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0____x40_Lean_Meta_Tactic_FunInd___hyg_28711_), 4, 0); +x_8 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0____x40_Lean_Meta_Tactic_FunInd___hyg_28715_), 4, 0); x_9 = l_Lean_registerReservedNameAction(x_8, x_7); return x_9; } @@ -130099,7 +130090,7 @@ return x_3; } } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_29107_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_29111_() { _start: { lean_object* x_1; @@ -130107,17 +130098,17 @@ x_1 = lean_mk_string_unchecked("_private", 8, 8); return x_1; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_29107_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_29111_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; +x_1 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; x_2 = lean_box(0); x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_29107_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_29111_() { _start: { lean_object* x_1; @@ -130125,57 +130116,57 @@ x_1 = lean_mk_string_unchecked("Lean", 4, 4); return x_1; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_29107_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_29111_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; -x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; +x_1 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; +x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_29107_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_29111_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Tactic_FunInd_foldAndCollect___closed__0; -x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; +x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_29107_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_29111_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32_spec__32_spec__32___lam__0___closed__2; -x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; +x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_29107_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_29111_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Tactic_FunInd_foldAndCollect___closed__1; -x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; +x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_29107_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_29111_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_unsigned_to_nat(0u); -x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; +x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; x_3 = l_Lean_Name_num___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_29107_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_29111_() { _start: { lean_object* x_1; @@ -130183,17 +130174,17 @@ x_1 = lean_mk_string_unchecked("initFn", 6, 6); return x_1; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_29107_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_29111_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; -x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; +x_1 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; +x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_29107_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_29111_() { _start: { lean_object* x_1; @@ -130201,57 +130192,57 @@ x_1 = lean_mk_string_unchecked("_@", 2, 2); return x_1; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_29107_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_29111_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; -x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; +x_1 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; +x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_29107_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_29111_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; -x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; +x_1 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; +x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_29107_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_29111_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Tactic_FunInd_foldAndCollect___closed__0; -x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; +x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_29107_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_29111_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_logAt___at___Lean_log___at___Lean_logError___at___Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_foldAndCollect_spec__25_spec__32_spec__32_spec__32___lam__0___closed__2; -x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; +x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_29107_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_29111_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Tactic_FunInd_foldAndCollect___closed__1; -x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; +x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_29107_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_29111_() { _start: { lean_object* x_1; @@ -130259,33 +130250,33 @@ x_1 = lean_mk_string_unchecked("_hyg", 4, 4); return x_1; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_29107_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_29111_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; -x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; +x_1 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; +x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; x_3 = l_Lean_Name_str___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_29107_() { +static lean_object* _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_29111_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(29107u); -x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; +x_1 = lean_unsigned_to_nat(29111u); +x_2 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; x_3 = l_Lean_Name_num___override(x_2, x_1); return x_3; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_FunInd_0__initFn____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Tactic_FunInd_foldAndCollect___closed__2; x_3 = 0; -x_4 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_29107_; +x_4 = l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_29111_; x_5 = l_Lean_registerTraceClass(x_2, x_3, x_4, x_1); return x_5; } @@ -130799,8 +130790,8 @@ l_Lean_Tactic_FunInd_rwMatcher___closed__15 = _init_l_Lean_Tactic_FunInd_rwMatch lean_mark_persistent(l_Lean_Tactic_FunInd_rwMatcher___closed__15); l_Lean_Tactic_FunInd_rwMatcher___closed__16 = _init_l_Lean_Tactic_FunInd_rwMatcher___closed__16(); lean_mark_persistent(l_Lean_Tactic_FunInd_rwMatcher___closed__16); -l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__9___boxed__const__1 = _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__9___boxed__const__1(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__21___lam__9___boxed__const__1); +l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__9___boxed__const__1 = _init_l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__9___boxed__const__1(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___Lean_Tactic_FunInd_buildInductionBody_spec__15___lam__9___boxed__const__1); l_Lean_Tactic_FunInd_buildInductionBody___lam__1___closed__0 = _init_l_Lean_Tactic_FunInd_buildInductionBody___lam__1___closed__0(); lean_mark_persistent(l_Lean_Tactic_FunInd_buildInductionBody___lam__1___closed__0); l_Lean_Tactic_FunInd_buildInductionBody___lam__1___closed__1 = _init_l_Lean_Tactic_FunInd_buildInductionBody___lam__1___closed__1(); @@ -131325,90 +131316,90 @@ l_Lean_Tactic_FunInd_isFunCasesName___closed__0 = _init_l_Lean_Tactic_FunInd_isF lean_mark_persistent(l_Lean_Tactic_FunInd_isFunCasesName___closed__0); l_Lean_Tactic_FunInd_isFunCasesName___closed__1 = _init_l_Lean_Tactic_FunInd_isFunCasesName___closed__1(); lean_mark_persistent(l_Lean_Tactic_FunInd_isFunCasesName___closed__1); -l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28711_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28711_); -l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28711_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28711_); -l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_28711_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_28711_); -l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_28711_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_28711_); -l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_28711_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_28711_); -l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_28711_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_28711_); -l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_28711_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_28711_); -l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_28711_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_28711_); -l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_28711_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_28711_); -l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_28711_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_28711_); -l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28711_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28711_); -l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_28711_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_28711_); -l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_28711_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_28711_); -l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_28711_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_28711_); -l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_28711_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_28711_); -l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_28711_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_28711_); -l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_28711_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_28711_); -l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_28711_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_28711_); -l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_28711_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_28711_); -l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28711_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28711_); -l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28711_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28711_); -if (builtin) {res = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn____x40_Lean_Meta_Tactic_FunInd___hyg_28711_(lean_io_mk_world()); +l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28715_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28715_); +l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28715_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28715_); +l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_28715_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_28715_); +l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_28715_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_28715_); +l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_28715_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_28715_); +l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_28715_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_28715_); +l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_28715_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_28715_); +l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_28715_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_28715_); +l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_28715_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_28715_); +l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_28715_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_28715_); +l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28715_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_28715_); +l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_28715_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_28715_); +l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_28715_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_28715_); +l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_28715_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_28715_); +l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_28715_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_28715_); +l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_28715_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_28715_); +l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_28715_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_28715_); +l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_28715_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_28715_); +l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_28715_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___lam__0___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_28715_); +l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28715_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_28715_); +l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28715_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_28715_); +if (builtin) {res = l___private_Lean_Meta_Tactic_FunInd_0__Lean_Tactic_FunInd_initFn____x40_Lean_Meta_Tactic_FunInd___hyg_28715_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_29107_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_29107_); -l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_29107_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_29107_); -l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_29107_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_29107_); -l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_29107_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_29107_); -l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_29107_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_29107_); -l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_29107_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_29107_); -l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_29107_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_29107_); -l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_29107_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_29107_); -l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_29107_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_29107_); -l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_29107_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_29107_); -l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_29107_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_29107_); -l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_29107_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_29107_); -l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_29107_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_29107_); -l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_29107_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_29107_); -l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_29107_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_29107_); -l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_29107_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_29107_); -l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_29107_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_29107_); -l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_29107_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_29107_); -l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_29107_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(); -lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_29107_); -if (builtin) {res = l___private_Lean_Meta_Tactic_FunInd_0__initFn____x40_Lean_Meta_Tactic_FunInd___hyg_29107_(lean_io_mk_world()); +}l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_29111_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__0____x40_Lean_Meta_Tactic_FunInd___hyg_29111_); +l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_29111_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__1____x40_Lean_Meta_Tactic_FunInd___hyg_29111_); +l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_29111_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__2____x40_Lean_Meta_Tactic_FunInd___hyg_29111_); +l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_29111_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__3____x40_Lean_Meta_Tactic_FunInd___hyg_29111_); +l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_29111_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__4____x40_Lean_Meta_Tactic_FunInd___hyg_29111_); +l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_29111_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__5____x40_Lean_Meta_Tactic_FunInd___hyg_29111_); +l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_29111_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__6____x40_Lean_Meta_Tactic_FunInd___hyg_29111_); +l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_29111_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__7____x40_Lean_Meta_Tactic_FunInd___hyg_29111_); +l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_29111_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__8____x40_Lean_Meta_Tactic_FunInd___hyg_29111_); +l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_29111_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__9____x40_Lean_Meta_Tactic_FunInd___hyg_29111_); +l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_29111_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__10____x40_Lean_Meta_Tactic_FunInd___hyg_29111_); +l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_29111_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__11____x40_Lean_Meta_Tactic_FunInd___hyg_29111_); +l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_29111_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__12____x40_Lean_Meta_Tactic_FunInd___hyg_29111_); +l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_29111_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__13____x40_Lean_Meta_Tactic_FunInd___hyg_29111_); +l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_29111_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__14____x40_Lean_Meta_Tactic_FunInd___hyg_29111_); +l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_29111_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__15____x40_Lean_Meta_Tactic_FunInd___hyg_29111_); +l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_29111_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__16____x40_Lean_Meta_Tactic_FunInd___hyg_29111_); +l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_29111_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__17____x40_Lean_Meta_Tactic_FunInd___hyg_29111_); +l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_29111_ = _init_l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_FunInd_0__initFn___closed__18____x40_Lean_Meta_Tactic_FunInd___hyg_29111_); +if (builtin) {res = l___private_Lean_Meta_Tactic_FunInd_0__initFn____x40_Lean_Meta_Tactic_FunInd___hyg_29111_(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/Server/FileWorker.c b/stage0/stdlib/Lean/Server/FileWorker.c index dfbd32b0a0..f761fab91d 100644 --- a/stage0/stdlib/Lean/Server/FileWorker.c +++ b/stage0/stdlib/Lean/Server/FileWorker.c @@ -362,7 +362,6 @@ LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___IO_FS_Stream_readReq LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_insert___at___Lean_Server_FileWorker_handleRpcConnect_spec__0___redArg(uint64_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_erase___at___Lean_Server_FileWorker_mainLoop_spec__0(lean_object*, uint64_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_FileWorker_WorkerContext_resolveServerRequestResponse(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* lean_io_wait_any(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_fromJson_x3f___at___Lean_Json_getObjValAs_x3f___at___IO_FS_Stream_readRequestAs___at___IO_FS_Stream_readLspRequestAs___at___Lean_Server_FileWorker_initAndRunWorker_spec__0_spec__0_spec__6_spec__6_spec__6(size_t, size_t, lean_object*); static lean_object* l_IO_FS_Stream_readRequestAs___at___IO_FS_Stream_readLspRequestAs___at___Lean_Server_FileWorker_initAndRunWorker_spec__0_spec__0___closed__45; LEAN_EXPORT lean_object* l_Array_qsort_sort___at_____private_Lean_Server_FileWorker_0__Lean_Server_FileWorker_reportSnapshots_sendFileProgress_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -371,6 +370,7 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___Lean_Server_FileWor LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at___Lean_Server_FileWorker_runRefreshTasks_sleepWithCancellation_spec__0(lean_object*, uint32_t, lean_object*, lean_object*); static lean_object* l_Lean_Server_FileWorker_setupImports___lam__0___closed__3; static lean_object* l_IO_FS_Stream_readRequestAs___at___IO_FS_Stream_readLspRequestAs___at___Lean_Server_FileWorker_initAndRunWorker_spec__0_spec__0___closed__23; +lean_object* l_IO_waitAny___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestM_parseRequestParams___at___Lean_Server_FileWorker_handlePreRequestSpecialCases_x3f_spec__0___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Array_toJson___at___Lean_Widget_toJsonTaggedText____x40_Lean_Widget_TaggedText___hyg_630____at___Lean_Widget_instRpcEncodableDiagnosticWith_enc____x40_Lean_Widget_InteractiveDiagnostic___hyg_1885____at___Lean_Server_FileWorker_handlePreRequestSpecialCases_x3f_spec__8_spec__10_spec__10_spec__10(size_t, size_t, lean_object*); lean_object* l_IO_CancelToken_set(lean_object*, lean_object*); @@ -8019,8 +8019,7 @@ x_11 = 0; lean_inc_ref(x_7); x_12 = l_Array_mapMUnsafe_map___at_____private_Lean_Server_FileWorker_0__Lean_Server_FileWorker_reportSnapshots_handleTasks_spec__0(x_10, x_11, x_7); x_13 = lean_array_to_list(x_12); -x_14 = lean_io_wait_any(x_13, x_9); -lean_dec(x_13); +x_14 = l_IO_waitAny___redArg(x_13, x_9); x_15 = lean_ctor_get(x_14, 1); lean_inc(x_15); lean_dec_ref(x_14); diff --git a/stage0/stdlib/Lean/Server/GoTo.c b/stage0/stdlib/Lean/Server/GoTo.c index 7352dcd955..051cec8b51 100644 --- a/stage0/stdlib/Lean/Server/GoTo.c +++ b/stage0/stdlib/Lean/Server/GoTo.c @@ -6005,54 +6005,96 @@ return x_1; LEAN_EXPORT lean_object* l_Lean_findDeclarationRangesCore_x3f___at___Lean_findDeclarationRanges_x3f___at___Lean_Server_locationLinksFromDecl_spec__0_spec__1___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_4; uint8_t x_5; +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; x_4 = lean_st_ref_get(x_2, x_3); -x_5 = !lean_is_exclusive(x_4); -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; -x_6 = lean_ctor_get(x_4, 0); -x_7 = lean_ctor_get(x_6, 0); +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_4, 1); +lean_inc(x_6); +lean_dec_ref(x_4); +x_7 = lean_ctor_get(x_5, 0); lean_inc_ref(x_7); -lean_dec(x_6); -x_8 = l_Lean_findDeclarationRangesCore_x3f___at___Lean_findDeclarationRanges_x3f___at___Lean_Server_locationLinksFromDecl_spec__0_spec__1___redArg___closed__0; -x_9 = lean_ctor_get(x_8, 0); -lean_inc_ref(x_9); -x_10 = lean_ctor_get(x_9, 2); -lean_inc(x_10); -lean_dec_ref(x_9); -x_11 = l_Lean_instInhabitedDeclarationRanges; -x_12 = 1; -x_13 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_11, x_8, x_7, x_1, x_10, x_12); +lean_dec(x_5); +x_8 = lean_st_ref_get(x_2, x_6); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_10, 0); +lean_inc_ref(x_11); lean_dec(x_10); -lean_ctor_set(x_4, 0, x_13); -return x_4; +x_12 = l_Lean_findDeclarationRangesCore_x3f___at___Lean_findDeclarationRanges_x3f___at___Lean_Server_locationLinksFromDecl_spec__0_spec__1___redArg___closed__0; +x_13 = lean_ctor_get(x_12, 0); +lean_inc_ref(x_13); +x_14 = lean_ctor_get(x_13, 2); +lean_inc(x_14); +lean_dec_ref(x_13); +x_15 = l_Lean_instInhabitedDeclarationRanges; +x_16 = 0; +lean_inc(x_1); +x_17 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_15, x_12, x_7, x_1, x_14, x_16); +if (lean_obj_tag(x_17) == 0) +{ +uint8_t x_18; lean_object* x_19; +x_18 = 1; +x_19 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_15, x_12, x_11, x_1, x_14, x_18); +lean_dec(x_14); +lean_ctor_set(x_8, 0, x_19); +return x_8; } else { -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; -x_14 = lean_ctor_get(x_4, 0); -x_15 = lean_ctor_get(x_4, 1); -lean_inc(x_15); -lean_inc(x_14); -lean_dec(x_4); -x_16 = lean_ctor_get(x_14, 0); -lean_inc_ref(x_16); lean_dec(x_14); -x_17 = l_Lean_findDeclarationRangesCore_x3f___at___Lean_findDeclarationRanges_x3f___at___Lean_Server_locationLinksFromDecl_spec__0_spec__1___redArg___closed__0; -x_18 = lean_ctor_get(x_17, 0); -lean_inc_ref(x_18); -x_19 = lean_ctor_get(x_18, 2); -lean_inc(x_19); -lean_dec_ref(x_18); -x_20 = l_Lean_instInhabitedDeclarationRanges; -x_21 = 1; -x_22 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_20, x_17, x_16, x_1, x_19, x_21); -lean_dec(x_19); -x_23 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_23, 0, x_22); -lean_ctor_set(x_23, 1, x_15); -return x_23; +lean_dec_ref(x_11); +lean_dec(x_1); +lean_ctor_set(x_8, 0, x_17); +return x_8; +} +} +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; uint8_t x_27; lean_object* x_28; +x_20 = lean_ctor_get(x_8, 0); +x_21 = lean_ctor_get(x_8, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_8); +x_22 = lean_ctor_get(x_20, 0); +lean_inc_ref(x_22); +lean_dec(x_20); +x_23 = l_Lean_findDeclarationRangesCore_x3f___at___Lean_findDeclarationRanges_x3f___at___Lean_Server_locationLinksFromDecl_spec__0_spec__1___redArg___closed__0; +x_24 = lean_ctor_get(x_23, 0); +lean_inc_ref(x_24); +x_25 = lean_ctor_get(x_24, 2); +lean_inc(x_25); +lean_dec_ref(x_24); +x_26 = l_Lean_instInhabitedDeclarationRanges; +x_27 = 0; +lean_inc(x_1); +x_28 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_26, x_23, x_7, x_1, x_25, x_27); +if (lean_obj_tag(x_28) == 0) +{ +uint8_t x_29; lean_object* x_30; lean_object* x_31; +x_29 = 1; +x_30 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_26, x_23, x_22, x_1, x_25, x_29); +lean_dec(x_25); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_21); +return x_31; +} +else +{ +lean_object* x_32; +lean_dec(x_25); +lean_dec_ref(x_22); +lean_dec(x_1); +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_28); +lean_ctor_set(x_32, 1, x_21); +return x_32; +} } } } diff --git a/stage0/stdlib/Lean/Server/References.c b/stage0/stdlib/Lean/Server/References.c index 0af70600c9..d3a7587370 100644 --- a/stage0/stdlib/Lean/Server/References.c +++ b/stage0/stdlib/Lean/Server/References.c @@ -952,54 +952,96 @@ return x_1; LEAN_EXPORT lean_object* l_Lean_findDeclarationRangesCore_x3f___at___Lean_findDeclarationRanges_x3f___at___Lean_Server_RefInfo_toLspRefInfo_spec__0_spec__1___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_4; uint8_t x_5; +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; x_4 = lean_st_ref_get(x_2, x_3); -x_5 = !lean_is_exclusive(x_4); -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; -x_6 = lean_ctor_get(x_4, 0); -x_7 = lean_ctor_get(x_6, 0); +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_4, 1); +lean_inc(x_6); +lean_dec_ref(x_4); +x_7 = lean_ctor_get(x_5, 0); lean_inc_ref(x_7); -lean_dec(x_6); -x_8 = l_Lean_findDeclarationRangesCore_x3f___at___Lean_findDeclarationRanges_x3f___at___Lean_Server_RefInfo_toLspRefInfo_spec__0_spec__1___redArg___closed__0; -x_9 = lean_ctor_get(x_8, 0); -lean_inc_ref(x_9); -x_10 = lean_ctor_get(x_9, 2); -lean_inc(x_10); -lean_dec_ref(x_9); -x_11 = l_Lean_instInhabitedDeclarationRanges; -x_12 = 1; -x_13 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_11, x_8, x_7, x_1, x_10, x_12); +lean_dec(x_5); +x_8 = lean_st_ref_get(x_2, x_6); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_10, 0); +lean_inc_ref(x_11); lean_dec(x_10); -lean_ctor_set(x_4, 0, x_13); -return x_4; +x_12 = l_Lean_findDeclarationRangesCore_x3f___at___Lean_findDeclarationRanges_x3f___at___Lean_Server_RefInfo_toLspRefInfo_spec__0_spec__1___redArg___closed__0; +x_13 = lean_ctor_get(x_12, 0); +lean_inc_ref(x_13); +x_14 = lean_ctor_get(x_13, 2); +lean_inc(x_14); +lean_dec_ref(x_13); +x_15 = l_Lean_instInhabitedDeclarationRanges; +x_16 = 0; +lean_inc(x_1); +x_17 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_15, x_12, x_7, x_1, x_14, x_16); +if (lean_obj_tag(x_17) == 0) +{ +uint8_t x_18; lean_object* x_19; +x_18 = 1; +x_19 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_15, x_12, x_11, x_1, x_14, x_18); +lean_dec(x_14); +lean_ctor_set(x_8, 0, x_19); +return x_8; } else { -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; -x_14 = lean_ctor_get(x_4, 0); -x_15 = lean_ctor_get(x_4, 1); -lean_inc(x_15); -lean_inc(x_14); -lean_dec(x_4); -x_16 = lean_ctor_get(x_14, 0); -lean_inc_ref(x_16); lean_dec(x_14); -x_17 = l_Lean_findDeclarationRangesCore_x3f___at___Lean_findDeclarationRanges_x3f___at___Lean_Server_RefInfo_toLspRefInfo_spec__0_spec__1___redArg___closed__0; -x_18 = lean_ctor_get(x_17, 0); -lean_inc_ref(x_18); -x_19 = lean_ctor_get(x_18, 2); -lean_inc(x_19); -lean_dec_ref(x_18); -x_20 = l_Lean_instInhabitedDeclarationRanges; -x_21 = 1; -x_22 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_20, x_17, x_16, x_1, x_19, x_21); -lean_dec(x_19); -x_23 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_23, 0, x_22); -lean_ctor_set(x_23, 1, x_15); -return x_23; +lean_dec_ref(x_11); +lean_dec(x_1); +lean_ctor_set(x_8, 0, x_17); +return x_8; +} +} +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; uint8_t x_27; lean_object* x_28; +x_20 = lean_ctor_get(x_8, 0); +x_21 = lean_ctor_get(x_8, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_8); +x_22 = lean_ctor_get(x_20, 0); +lean_inc_ref(x_22); +lean_dec(x_20); +x_23 = l_Lean_findDeclarationRangesCore_x3f___at___Lean_findDeclarationRanges_x3f___at___Lean_Server_RefInfo_toLspRefInfo_spec__0_spec__1___redArg___closed__0; +x_24 = lean_ctor_get(x_23, 0); +lean_inc_ref(x_24); +x_25 = lean_ctor_get(x_24, 2); +lean_inc(x_25); +lean_dec_ref(x_24); +x_26 = l_Lean_instInhabitedDeclarationRanges; +x_27 = 0; +lean_inc(x_1); +x_28 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_26, x_23, x_7, x_1, x_25, x_27); +if (lean_obj_tag(x_28) == 0) +{ +uint8_t x_29; lean_object* x_30; lean_object* x_31; +x_29 = 1; +x_30 = l_Lean_MapDeclarationExtension_find_x3f___redArg(x_26, x_23, x_22, x_1, x_25, x_29); +lean_dec(x_25); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_21); +return x_31; +} +else +{ +lean_object* x_32; +lean_dec(x_25); +lean_dec_ref(x_22); +lean_dec(x_1); +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_28); +lean_ctor_set(x_32, 1, x_21); +return x_32; +} } } } diff --git a/stage0/stdlib/Lean/Server/RequestCancellation.c b/stage0/stdlib/Lean/Server/RequestCancellation.c index a4552a3fb3..0bc944c785 100644 --- a/stage0/stdlib/Lean/Server/RequestCancellation.c +++ b/stage0/stdlib/Lean/Server/RequestCancellation.c @@ -29,11 +29,13 @@ LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellationToken_wasCancelledByEd LEAN_EXPORT lean_object* l_Lean_Server_CancellableM_run___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_CancellableM_checkCancelled___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellationToken_cancelByCancelRequest___boxed(lean_object*, lean_object*); -lean_object* l_IO_Promise_result_x21___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_CancellableT_checkCancelled___redArg___lam__0___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellationToken_cancelByEdit(lean_object*, lean_object*); +static lean_object* l_Lean_Server_RequestCancellationToken_editCancellationTask___closed__0; lean_object* lean_io_promise_resolve(lean_object*, lean_object*, lean_object*); +lean_object* lean_io_promise_result_opt(lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellationToken_requestCancellationTask(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellationToken_requestCancellationTask___lam__0(lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellation_requestCancelled; LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellation_noConfusion(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellation_toCtorIdx___boxed(lean_object*); @@ -41,6 +43,7 @@ LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellation_check(lean_object*, l LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellation_toCtorIdx(lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellation_check___redArg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellationToken_requestCancellationTask___lam__0___boxed(lean_object*); lean_object* lean_st_mk_ref(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellation_noConfusion___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellationToken_wasCancelledByEdit(lean_object*, lean_object*); @@ -55,6 +58,7 @@ LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellationToken_wasCancelledByCa lean_object* l_ExceptT_bindCont(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellationToken_wasCancelled(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_CancellableT_checkCancelled(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_task_map(lean_object*, lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellationToken_new(lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellation_noConfusion___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellationToken_editCancellationTask___boxed(lean_object*); @@ -180,13 +184,44 @@ lean_dec_ref(x_1); return x_3; } } +LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellationToken_requestCancellationTask___lam__0(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = lean_box(0); +return x_2; +} +else +{ +lean_object* x_3; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +return x_3; +} +} +} LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellationToken_requestCancellationTask(lean_object* x_1) { _start: { -lean_object* x_2; lean_object* x_3; +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; x_2 = lean_ctor_get(x_1, 2); -x_3 = l_IO_Promise_result_x21___redArg(x_2); -return x_3; +x_3 = lean_alloc_closure((void*)(l_Lean_Server_RequestCancellationToken_requestCancellationTask___lam__0___boxed), 1, 0); +x_4 = lean_io_promise_result_opt(x_2); +x_5 = lean_unsigned_to_nat(0u); +x_6 = 1; +x_7 = lean_task_map(x_3, x_4, x_5, x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellationToken_requestCancellationTask___lam__0___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Server_RequestCancellationToken_requestCancellationTask___lam__0(x_1); +lean_dec(x_1); +return x_2; } } LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellationToken_requestCancellationTask___boxed(lean_object* x_1) { @@ -198,13 +233,25 @@ lean_dec_ref(x_1); return x_2; } } +static lean_object* _init_l_Lean_Server_RequestCancellationToken_editCancellationTask___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Server_RequestCancellationToken_requestCancellationTask___lam__0___boxed), 1, 0); +return x_1; +} +} LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellationToken_editCancellationTask(lean_object* x_1) { _start: { -lean_object* x_2; lean_object* x_3; +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; x_2 = lean_ctor_get(x_1, 3); -x_3 = l_IO_Promise_result_x21___redArg(x_2); -return x_3; +x_3 = l_Lean_Server_RequestCancellationToken_editCancellationTask___closed__0; +x_4 = lean_io_promise_result_opt(x_2); +x_5 = lean_unsigned_to_nat(0u); +x_6 = 1; +x_7 = lean_task_map(x_3, x_4, x_5, x_6); +return x_7; } } LEAN_EXPORT lean_object* l_Lean_Server_RequestCancellationToken_editCancellationTask___boxed(lean_object* x_1) { @@ -726,6 +773,8 @@ lean_dec_ref(res); res = initialize_Lean_Server_ServerTask(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Server_RequestCancellationToken_editCancellationTask___closed__0 = _init_l_Lean_Server_RequestCancellationToken_editCancellationTask___closed__0(); +lean_mark_persistent(l_Lean_Server_RequestCancellationToken_editCancellationTask___closed__0); l_Lean_Server_RequestCancellation_requestCancelled = _init_l_Lean_Server_RequestCancellation_requestCancelled(); lean_mark_persistent(l_Lean_Server_RequestCancellation_requestCancelled); l_Lean_Server_CancellableT_checkCancelled___redArg___lam__1___closed__0 = _init_l_Lean_Server_CancellableT_checkCancelled___redArg___lam__1___closed__0(); diff --git a/stage0/stdlib/Lean/Server/ServerTask.c b/stage0/stdlib/Lean/Server/ServerTask.c index 6302b2bd6d..0ca06fde4d 100644 --- a/stage0/stdlib/Lean/Server/ServerTask.c +++ b/stage0/stdlib/Lean/Server/ServerTask.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Server.ServerTask -// Imports: Init.System.IO +// Imports: Init.Task #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -61,8 +61,8 @@ lean_object* l_Array_empty(lean_object*); static lean_object* l___auto___closed__13____x40_Lean_Server_ServerTask___hyg_842_; static lean_object* l___auto___closed__32____x40_Lean_Server_ServerTask___hyg_842_; LEAN_EXPORT lean_object* l_Lean_Server_ServerTask_join___redArg___boxed(lean_object*); -lean_object* lean_io_wait_any(lean_object*, lean_object*); static lean_object* l___auto___closed__36____x40_Lean_Server_ServerTask___hyg_842_; +lean_object* l_IO_waitAny___redArg(lean_object*, lean_object*); static lean_object* l___auto___closed__41____x40_Lean_Server_ServerTask___hyg_842_; static lean_object* l___auto___closed__18____x40_Lean_Server_ServerTask___hyg_842_; static lean_object* l___auto___closed__33____x40_Lean_Server_ServerTask___hyg_842_; @@ -2010,8 +2010,7 @@ _start: lean_object* x_3; lean_object* x_4; lean_object* x_5; x_3 = lean_box(0); x_4 = l_List_mapTR_loop___at___Lean_Server_ServerTask_waitAny_spec__0___redArg(x_1, x_3); -x_5 = lean_io_wait_any(x_4, x_2); -lean_dec(x_4); +x_5 = l_IO_waitAny___redArg(x_4, x_2); return x_5; } } @@ -2089,13 +2088,13 @@ lean_dec_ref(x_2); return x_3; } } -lean_object* initialize_Init_System_IO(uint8_t builtin, lean_object*); +lean_object* initialize_Init_Task(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Server_ServerTask(uint8_t builtin, lean_object* w) { lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; -res = initialize_Init_System_IO(builtin, lean_io_mk_world()); +res = initialize_Init_Task(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Server_ServerTask_join___redArg___closed__0 = _init_l_Lean_Server_ServerTask_join___redArg___closed__0(); diff --git a/stage0/stdlib/Std/Sat/AIG/Basic.c b/stage0/stdlib/Std/Sat/AIG/Basic.c index 810a6d5cbd..90e175367a 100644 --- a/stage0/stdlib/Std/Sat/AIG/Basic.c +++ b/stage0/stdlib/Std/Sat/AIG/Basic.c @@ -3394,7 +3394,7 @@ return x_1; LEAN_EXPORT lean_object* l_Std_Sat_AIG_toGraphviz_go___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { -lean_object* x_5; lean_object* x_6; uint8_t x_7; lean_object* x_8; uint8_t x_9; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint64_t x_39; uint64_t x_40; uint64_t x_41; uint64_t x_42; uint64_t x_43; uint64_t x_44; uint64_t x_45; size_t x_46; size_t x_47; size_t x_48; size_t x_49; size_t 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; uint8_t x_57; lean_object* x_64; +lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; uint8_t x_9; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint64_t x_39; uint64_t x_40; uint64_t x_41; uint64_t x_42; uint64_t x_43; uint64_t x_44; uint64_t x_45; size_t x_46; size_t x_47; size_t x_48; size_t x_49; size_t 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; uint8_t x_57; lean_object* x_64; x_33 = lean_ctor_get(x_4, 0); lean_inc(x_33); x_34 = lean_ctor_get(x_4, 1); @@ -3545,11 +3545,11 @@ x_10 = l_Nat_reprFast(x_3); x_11 = l_Std_Sat_AIG_toGraphviz_go___redArg___closed__0; lean_inc_ref(x_10); x_12 = lean_string_append(x_10, x_11); -lean_inc(x_8); -x_13 = l_Nat_reprFast(x_8); +lean_inc(x_5); +x_13 = l_Nat_reprFast(x_5); x_14 = lean_string_append(x_12, x_13); lean_dec_ref(x_13); -x_15 = l_Std_Sat_AIG_toGraphviz_invEdgeStyle(x_7); +x_15 = l_Std_Sat_AIG_toGraphviz_invEdgeStyle(x_8); x_16 = lean_string_append(x_14, x_15); lean_dec_ref(x_15); x_17 = l_Std_Sat_AIG_toGraphviz_go___redArg___closed__1; @@ -3557,8 +3557,8 @@ x_18 = lean_string_append(x_16, x_17); x_19 = lean_string_append(x_18, x_10); lean_dec_ref(x_10); x_20 = lean_string_append(x_19, x_11); -lean_inc(x_5); -x_21 = l_Nat_reprFast(x_5); +lean_inc(x_7); +x_21 = l_Nat_reprFast(x_7); x_22 = lean_string_append(x_20, x_21); lean_dec_ref(x_21); x_23 = l_Std_Sat_AIG_toGraphviz_invEdgeStyle(x_9); @@ -3568,22 +3568,22 @@ x_25 = l_Std_Sat_AIG_toGraphviz_go___redArg___closed__2; x_26 = lean_string_append(x_24, x_25); x_27 = lean_string_append(x_1, x_26); lean_dec_ref(x_26); -x_28 = l_Std_Sat_AIG_toGraphviz_go___redArg(x_27, x_2, x_8, x_6); +x_28 = l_Std_Sat_AIG_toGraphviz_go___redArg(x_27, x_2, x_5, x_6); x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); x_30 = lean_ctor_get(x_28, 1); lean_inc(x_30); lean_dec_ref(x_28); x_1 = x_29; -x_3 = x_5; +x_3 = x_7; x_4 = x_30; goto _start; } block_63: { lean_object* x_58; lean_object* x_59; lean_object* x_60; uint8_t x_61; -x_58 = lean_nat_shiftr(x_53, x_55); -x_59 = lean_nat_land(x_55, x_53); +x_58 = lean_nat_shiftr(x_53, x_56); +x_59 = lean_nat_land(x_56, x_53); lean_dec(x_53); x_60 = lean_unsigned_to_nat(0u); x_61 = lean_nat_dec_eq(x_59, x_60); @@ -3592,19 +3592,19 @@ if (x_61 == 0) { uint8_t x_62; x_62 = 1; -x_5 = x_58; -x_6 = x_54; -x_7 = x_57; -x_8 = x_56; +x_5 = x_54; +x_6 = x_55; +x_7 = x_58; +x_8 = x_57; x_9 = x_62; goto block_32; } else { -x_5 = x_58; -x_6 = x_54; -x_7 = x_57; -x_8 = x_56; +x_5 = x_54; +x_6 = x_55; +x_7 = x_58; +x_8 = x_57; x_9 = x_52; goto block_32; } @@ -3633,18 +3633,18 @@ if (x_72 == 0) uint8_t x_73; x_73 = 1; x_53 = x_67; -x_54 = x_64; -x_55 = x_68; -x_56 = x_69; +x_54 = x_69; +x_55 = x_64; +x_56 = x_68; x_57 = x_73; goto block_63; } else { x_53 = x_67; -x_54 = x_64; -x_55 = x_68; -x_56 = x_69; +x_54 = x_69; +x_55 = x_64; +x_56 = x_68; x_57 = x_52; goto block_63; } diff --git a/stage0/stdlib/Std/Tactic/Do/Syntax.c b/stage0/stdlib/Std/Tactic/Do/Syntax.c index 9753e29dd7..b2dec41f3a 100644 --- a/stage0/stdlib/Std/Tactic/Do/Syntax.c +++ b/stage0/stdlib/Std/Tactic/Do/Syntax.c @@ -16,7 +16,6 @@ extern "C" { static lean_object* l_Lean_Parser_Tactic_mdup___closed__1; static lean_object* l_Lean_Parser_Tactic_mdup___closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mpureIntro__1___closed__4; -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793____boxed(lean_object*, lean_object*); lean_object* l_Lean_Syntax_reprTSyntax___redArg____x40_Init_Meta___hyg_2333_(lean_object*); static lean_object* l_Lean_Parser_Tactic_mconstructor___closed__1; static lean_object* l_Lean_Parser_Tactic_mrefine___closed__4; @@ -27,21 +26,21 @@ static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______mac static lean_object* l_Lean_Parser_Attr_spec___closed__17; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__64; static lean_object* l_Lean_Parser_Tactic_mexfalso___closed__3; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142_(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mstart___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mrefinePat__; static lean_object* l_Lean_Parser_Tactic_mexists___closed__4; static lean_object* l_Lean_Parser_Tactic_mvcgen___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__36; +static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__0; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__29; static lean_object* l_Lean_Parser_Tactic_mcasesPat_u231c___u231d___closed__3; +static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_1895_; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__0; static lean_object* l_Lean_Parser_Tactic_mvcgen___closed__14; static lean_object* l_Lean_Parser_Attr_spec___closed__36; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Parser_Tactic_MRefinePat_parse_go_spec__0(size_t, size_t, lean_object*); -static lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__14; -static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__16____x40_Std_Tactic_Do_Syntax___hyg_1793_; -static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_1793_; static lean_object* l_Lean_Parser_Attr_spec___closed__24; static lean_object* l_Lean_Parser_Tactic_mvcgen___closed__16; static lean_object* l_Lean_Parser_Tactic_mexfalso___closed__1; @@ -54,7 +53,6 @@ static lean_object* l_Lean_Parser_Tactic_mrevert___closed__0; static lean_object* l_Lean_Parser_Tactic_mclear___closed__0; lean_object* l_Lean_Macro_throwUnsupported___redArg(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__81; -static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_1793_; lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__100; static lean_object* l_Lean_Parser_Tactic_mcasesPat_quot___closed__8; @@ -81,10 +79,10 @@ static lean_object* l_Lean_Parser_Tactic_mintroPat_u2200_____closed__0; static lean_object* l_Lean_Parser_Tactic_mrevertPat_quot___closed__7; static lean_object* l_Lean_Parser_Tactic_mrefinePat_u231c___u231d___closed__2; static lean_object* l_Lean_Parser_Tactic_mright___closed__0; +static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__126; static lean_object* l_Lean_Parser_Attr_spec___closed__38; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__114; static lean_object* l_Lean_Parser_Tactic_mcasesPat_u231c___u231d___closed__8; -static lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__6; static lean_object* l_Lean_Parser_Tactic_massumption___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mpureIntro__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mspecialize___closed__1; @@ -96,11 +94,13 @@ static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______mac static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__15; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_massumption; static lean_object* l_Lean_Parser_Tactic_mhave___closed__0; +static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_1895_; static lean_object* l_Lean_Parser_Tactic_mconstructor___closed__0; static lean_object* l_Lean_Parser_Tactic_mrefinePat_x28___x29___closed__1; static lean_object* l_Lean_Parser_Tactic_mhave___closed__4; static lean_object* l_Lean_Parser_Tactic_mrefinePat_x25_____closed__0; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__109; +LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg(lean_object*); static lean_object* l_Lean_Parser_Tactic_mintroPat_quot___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mvcgenNoTrivial; static lean_object* l_Lean_Parser_Tactic_mreplace___closed__0; @@ -108,27 +108,24 @@ static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______mac LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mcasesPat_u27e8___u27e9; static lean_object* l_Lean_Parser_Tactic_mvcgenNoTrivial___closed__4; static lean_object* l_Lean_Parser_Tactic_mexact___closed__3; -static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_3040_; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mcasesPat_x25____1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mrenameI___closed__9; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__18; static lean_object* l_Lean_Parser_Tactic_mspec___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_MCasesPat_parse___lam__0___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic_mrevert___closed__5; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895____boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mrefinePat_quot___closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mleft; static lean_object* l_Lean_Parser_Tactic_mleave___closed__1; static lean_object* l_Lean_Parser_Tactic_mcasesPatAlts___closed__3; -LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0_spec__0___lam__0(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__31; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mspec; -static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_3040_; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_MCasesPat_parse(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mhave___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mright; static lean_object* l_Lean_Parser_Tactic_mrefinePat_u27e8___u27e9___closed__0; static lean_object* l_Lean_Parser_Tactic_MRefinePat_parse___closed__0; -static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_1793_; lean_object* lean_array_push(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mreplace___closed__7; static lean_object* l_Lean_Parser_Tactic_mspecNoBind___closed__2; @@ -147,13 +144,15 @@ uint8_t lean_usize_dec_eq(size_t, size_t); static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__26; static lean_object* l_Lean_Parser_Tactic_mspec___closed__0; static lean_object* l_Lean_Parser_Tactic_mrefinePat_u27e8___u27e9___closed__1; -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040____boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mrefinePat_quot___closed__4; static lean_object* l_Lean_Parser_Tactic_mspecialize___closed__7; lean_object* l_Lean_Syntax_getArgs(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mrefinePat_quot; +static lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__5; static lean_object* l_Lean_Parser_Tactic_MCasesPat_parse___lam__0___closed__0; +static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__4; static lean_object* l_Lean_Parser_Attr_spec___closed__35; +static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__124; static lean_object* l_Lean_Parser_Tactic_mspecNoSimp___closed__3; static lean_object* l_Lean_Parser_Attr_spec___closed__40; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___boxed(lean_object*, lean_object*, lean_object*); @@ -162,10 +161,11 @@ static lean_object* l_Lean_Parser_Tactic_mexists___closed__1; static lean_object* l_Lean_Parser_Attr_spec___closed__12; static lean_object* l_Lean_Parser_Tactic_mright___closed__2; static lean_object* l_Lean_Parser_Tactic_mrevertPat_quot___closed__2; +LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0___redArg(lean_object*); static lean_object* l_Lean_Parser_Tactic_mintroPat_quot___closed__2; -static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_3040_; static lean_object* l_Lean_Parser_Tactic_mcasesPat_x25_____closed__2; static lean_object* l_Lean_Parser_Tactic_mcasesPat_u27e8___u27e9___closed__8; +LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mrevertPat_____closed__1; static lean_object* l_Lean_Parser_Tactic_mintro___closed__4; static lean_object* l_Lean_Parser_Tactic_mrevertPat_u2200_____closed__1; @@ -176,15 +176,16 @@ static lean_object* l_Lean_Parser_Attr_spec___closed__16; static lean_object* l_Lean_Parser_Attr_spec___closed__0; static lean_object* l_Lean_Parser_Tactic_mrefinePats___closed__1; static lean_object* l_Lean_Parser_Tactic_mrevertPat_u2200_____closed__3; +static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__127; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__101; static lean_object* l_Lean_Parser_Tactic_mexists___closed__0; +static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_3142_; static lean_object* l_Lean_Parser_Tactic_mclear___closed__1; +static lean_object* l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mcasesPat_x25____1(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mclear___closed__5; static lean_object* l_Lean_Parser_Tactic_mrefinePat_quot___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_instInhabitedMCasesPat; -static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_1793_; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__52; static lean_object* l_Lean_Parser_Tactic_mintroPat_quot___closed__0; static lean_object* l_Lean_Parser_Attr_spec___closed__41; @@ -227,9 +228,8 @@ static lean_object* l_Lean_Parser_Attr_spec___closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__84; lean_object* l_Array_mkArray0(lean_object*); static lean_object* l_Lean_Parser_Tactic_mrevertPat_quot___closed__5; -static lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__5; -LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg(lean_object*); static lean_object* l_Lean_Parser_Tactic_mrefinePats___closed__3; +static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_3142_; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mrefinePat_x25____1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mcasesPat_x23_____closed__2; static lean_object* l_Lean_Parser_Tactic_MCasesPat_parse___lam__0___closed__1; @@ -238,6 +238,7 @@ static lean_object* l_Lean_Parser_Tactic_mspecializePure___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mrefinePat_x23____1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mrefinePat_____closed__1; lean_object* l_Lean_Syntax_getNumArgs(lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__3; static lean_object* l_Lean_Parser_Tactic_mrefinePat_x25_____closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspecNoSimp__1___closed__0; static lean_object* l_Lean_Parser_Tactic_mintroPat_quot___closed__5; @@ -245,11 +246,11 @@ static lean_object* l_Lean_Parser_Tactic_mintro___closed__2; static lean_object* l_Lean_Parser_Tactic_MCasesPat_parse_go___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__30; static lean_object* l_Lean_Parser_Attr_spec___closed__22; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible; static lean_object* l_Lean_Parser_Tactic_mright___closed__1; -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040_(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mhave___closed__8; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__97; -static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_1793_; +static lean_object* l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__4; static lean_object* l_Lean_Parser_Tactic_mhave___closed__5; static lean_object* l_Lean_Parser_Tactic_mrevertPat_u2200_____closed__7; static lean_object* l_Lean_Parser_Attr_spec___closed__33; @@ -258,14 +259,15 @@ static lean_object* l_Lean_Parser_Tactic_mleave___closed__0; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__80; static lean_object* l_Lean_Parser_Tactic_mrefinePat_u27e8___u27e9___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__106; -static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__15____x40_Std_Tactic_Do_Syntax___hyg_1793_; size_t lean_usize_of_nat(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__116; static lean_object* l_Lean_Parser_Tactic_mspecializePure___closed__4; +static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_1895_; lean_object* l_Array_mkArray1___redArg(lean_object*); static lean_object* l_Lean_Parser_Tactic_mcasesPat_____closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_MRefinePat_parse(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mcasesPat_x28___x29___closed__4; +static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_3142_; static lean_object* l_Lean_Parser_Tactic_mclear___closed__8; static lean_object* l_Lean_Parser_Tactic_mcasesPat_u25a1_____closed__1; static lean_object* l_Lean_Parser_Tactic_mstop___closed__1; @@ -275,8 +277,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mrefinePat_x23__; static lean_object* l_Lean_Parser_Tactic_mclear___closed__11; static lean_object* l_Lean_Parser_Tactic_mspecNoBind___closed__0; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mpureIntro__1___closed__0; -static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_3040_; -static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_3040_; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__55; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mreplace; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mcasesPat_x23____1(lean_object*, lean_object*, lean_object*); @@ -303,19 +303,19 @@ static lean_object* l_Lean_Parser_Tactic_mhave___closed__7; static lean_object* l_Lean_Parser_Tactic_mvcgenNoTrivial___closed__1; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___Lean_Parser_Tactic_MCasesPat_parse_go_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mclear___closed__6; +static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_1895_; static lean_object* l_Lean_Parser_Tactic_mvcgen___closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mexact; static lean_object* l_Lean_Parser_Tactic_mrefinePat_quot___closed__8; static lean_object* l_Lean_Parser_Tactic_mframe___closed__1; static lean_object* l_Lean_Parser_Tactic_mexists___closed__7; -LEAN_EXPORT lean_object* l_List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); static lean_object* l_Lean_Parser_Attr_spec___closed__25; lean_object* lean_nat_to_int(lean_object*); static lean_object* l_Lean_Parser_Tactic_mdup___closed__7; static lean_object* l_Lean_Parser_Tactic_mreplace___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspecNoSimp__1___closed__4; +LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___boxed(lean_object*, lean_object*); lean_object* l_Lean_Syntax_node6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mexact___closed__2; static lean_object* l_Lean_Parser_Tactic_mcasesPat_x23_____closed__4; @@ -336,37 +336,35 @@ static lean_object* l_Lean_Parser_Tactic_massumption___closed__0; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__19; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspecNoSimp__1___closed__1; -static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_1793_; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895_(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mvcgenStep___closed__3; static lean_object* l_Lean_Parser_Tactic_mstop___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__62; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__35; static lean_object* l_Lean_Parser_Tactic_mspecialize___closed__9; -static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_3040_; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mspecNoSimp; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mintro__1___closed__5; -static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_1793_; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__34; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspecNoSimp__1___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Attr_spec; -static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_3040_; extern lean_object* l_Lean_Parser_Tactic_simpLemma; +static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_3142_; lean_object* l_Lean_Syntax_TSepArray_getElems___redArg(lean_object*); static lean_object* l_Lean_Parser_Tactic_mrefinePat_____closed__2; static lean_object* l_Lean_Parser_Attr_spec___closed__37; -LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0___redArg(lean_object*); static lean_object* l_Lean_Parser_Tactic_mrefine___closed__3; -static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_3040_; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__23; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__113; static lean_object* l_Lean_Parser_Tactic_mexists___closed__8; static lean_object* l_Lean_Parser_Tactic_mintroPat_quot___closed__8; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mpureIntro__1___closed__3; +static lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__4; static lean_object* l_Lean_Parser_Attr_spec___closed__19; static lean_object* l_Lean_Parser_Tactic_mpureIntro___closed__0; static lean_object* l_Lean_Parser_Tactic_mexact___closed__1; static lean_object* l_Lean_Parser_Tactic_mclear___closed__4; static lean_object* l_Lean_Parser_Tactic_mvcgen___closed__7; +static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_1895_; static lean_object* l_Lean_Parser_Tactic_mvcgen___closed__20; static lean_object* l_Lean_Parser_Tactic_mcasesPat_u27e8___u27e9___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___boxed(lean_object*, lean_object*, lean_object*); @@ -375,13 +373,13 @@ static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______mac static lean_object* l_Lean_Parser_Tactic_mexact___closed__7; static lean_object* l_Lean_Parser_Tactic_mcasesPat_u231c___u231d___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__39; +static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__123; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__120; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mcasesPat_u231c___u231d; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mrevertPat__; static lean_object* l_Lean_Parser_Tactic_mexact___closed__6; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__32; static lean_object* l_Lean_Parser_Tactic_mleft___closed__3; -static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_1793_; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mvcgen___closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__79; @@ -393,21 +391,19 @@ static lean_object* l_Lean_Parser_Tactic_mvcgen___closed__11; static lean_object* l_Lean_Parser_Tactic_mspecNoSimp___closed__2; static lean_object* l_Lean_Parser_Tactic_mpureIntro___closed__2; lean_object* l_Lean_Syntax_getOptional_x3f(lean_object*); -LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0_spec__0(lean_object*, lean_object*); -static lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__3; +static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_1895_; static lean_object* l_Lean_Parser_Tactic_mcasesPat_quot___closed__3; lean_object* lean_array_to_list(lean_object*); -static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_3040_; static lean_object* l_Lean_Parser_Tactic_mcasesPat_x2d___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__102; static lean_object* l_Lean_Parser_Tactic_mspecializePure___closed__3; static lean_object* l_Lean_Parser_Tactic_mvcgenStep___closed__2; +static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_3142_; lean_object* l_Lean_Syntax_node3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mvcgen___closed__13; static lean_object* l_Lean_Parser_Tactic_mintroPat_____closed__1; static lean_object* l_Lean_Parser_Tactic_mexact___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mintro__1(lean_object*, lean_object*, lean_object*); -static lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__0; static lean_object* l_Lean_Parser_Tactic_mreplace___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__61; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__98; @@ -416,14 +412,14 @@ static lean_object* l_Lean_Parser_Tactic_mcasesPatAlts___closed__0; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mdup; static lean_object* l_Lean_Parser_Tactic_mstart___closed__1; static lean_object* l_Lean_Parser_Tactic_mspecializePure___closed__2; -LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0_spec__0(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_1793_; static lean_object* l_Lean_Parser_Tactic_mintroPat_____closed__2; static lean_object* l_Lean_Parser_Tactic_mcasesPat_u231c___u231d___closed__4; static lean_object* l_Lean_Parser_Attr_spec___closed__30; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mrefinePats; static lean_object* l_Lean_Parser_Tactic_mrevertPat_u2200_____closed__6; static lean_object* l_Lean_Parser_Attr_spec___closed__15; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__3; static lean_object* l_Lean_Parser_Tactic_mspecNoBind___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__51; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mpureIntro__1___boxed(lean_object*, lean_object*, lean_object*); @@ -434,7 +430,6 @@ static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______mac static lean_object* l_Lean_Parser_Tactic_mrenameI___closed__10; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__65; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mcasesPat__; -static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_1793_; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__59; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mspecializePure; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__48; @@ -444,10 +439,13 @@ static lean_object* l_Lean_Parser_Tactic_mexact___closed__0; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__43; static lean_object* l_Lean_Parser_Tactic_mspecializePure___closed__0; static lean_object* l_Lean_Parser_Tactic_mrevert___closed__2; +LEAN_EXPORT lean_object* l_List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_instInhabitedMRefinePat; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__86; +static lean_object* l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__3; static lean_object* l_Lean_Parser_Tactic_mcases___closed__8; uint8_t lean_name_eq(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_foldl___at___List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mspecializePure___closed__7; static lean_object* l_Lean_Parser_Tactic_mrefinePat_x3f_____closed__1; static lean_object* l_Lean_Parser_Tactic_mrefinePat_x25_____closed__2; @@ -457,7 +455,6 @@ static lean_object* l_Lean_Parser_Tactic_mrefinePat_quot___closed__0; static lean_object* l_Lean_Parser_Tactic_mvcgenStep___closed__6; lean_object* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__85; -static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_3040_; static lean_object* l_Lean_Parser_Tactic_mrevertPat_quot___closed__3; static lean_object* l_Lean_Parser_Tactic_mvcgenStep___closed__5; static lean_object* l_Lean_Parser_Tactic_mspecialize___closed__3; @@ -468,9 +465,9 @@ static lean_object* l_Lean_Parser_Tactic_mhave___closed__12; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mcasesPat_x23_____closed__3; static lean_object* l_Lean_Parser_Tactic_mcasesPat_quot___closed__12; -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793_(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mrefine___closed__2; static lean_object* l_Lean_Parser_Tactic_mspecialize___closed__8; +static lean_object* l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__0; static lean_object* l_Lean_Parser_Tactic_mexfalso___closed__0; static lean_object* l_Lean_Parser_Tactic_mcasesPat_u27e8___u27e9___closed__4; uint8_t l_Lean_Syntax_matchesNull(lean_object*, lean_object*); @@ -483,19 +480,21 @@ static lean_object* l_Lean_Parser_Attr_spec___closed__32; static lean_object* l_Lean_Parser_Tactic_mrevertPat_quot___closed__6; static lean_object* l_Lean_Parser_Tactic_mpureIntro___closed__4; static lean_object* l_Lean_Parser_Tactic_mreplace___closed__4; -static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_1793_; static lean_object* l_Lean_Parser_Attr_spec___closed__29; static lean_object* l_Lean_Parser_Tactic_mstop___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__50; static lean_object* l_Lean_Parser_Tactic_mcasesPat_x28___x29___closed__3; static lean_object* l_Lean_Parser_Tactic_mhave___closed__10; -static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_1793_; +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0_spec__0(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mvcgen___closed__0; lean_object* lean_mk_syntax_ident(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__105; +static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__15____x40_Std_Tactic_Do_Syntax___hyg_1895_; +static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_1895_; static lean_object* l_Lean_Parser_Tactic_mvcgen___closed__3; +static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__16____x40_Std_Tactic_Do_Syntax___hyg_1895_; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__117; -static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__7; +static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_3142_; static lean_object* l_Lean_Parser_Tactic_mrenameI___closed__11; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mrefinePat_u231c___u231d; static lean_object* l_Lean_Parser_Tactic_mcasesPat_u231c___u231d___closed__6; @@ -504,7 +503,12 @@ static lean_object* l_Lean_Parser_Tactic_mrevertPat_u2200_____closed__5; static lean_object* l_Lean_Parser_Tactic_mcasesPat_x28___x29___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__6; static lean_object* l_Lean_Parser_Tactic_mspecialize___closed__0; +static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__125; +static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_3142_; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__11; +static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_1895_; +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0_spec__0___lam__0(lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__6; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Parser_Tactic_MRefinePat_parse_go_spec__1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__78; static lean_object* l_Lean_Parser_Tactic_mrefinePat_quot___closed__2; @@ -519,8 +523,6 @@ static lean_object* l_Lean_Parser_Tactic_mreplace___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mcasesPat_quot; static lean_object* l_Lean_Parser_Tactic_mintroPat_quot___closed__4; static lean_object* l_Lean_Parser_Tactic_mrefinePat_x28___x29___closed__2; -static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1793_; -LEAN_EXPORT lean_object* l_List_foldl___at___List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mrefinePat_u27e8___u27e9___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mintroPat_quot; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__4; @@ -528,6 +530,7 @@ static lean_object* l_Lean_Parser_Tactic_mhave___closed__11; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Parser_Tactic_MCasesPat_parse_go_spec__1(size_t, size_t, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__60; static lean_object* l_Lean_Parser_Tactic_mrenameI___closed__7; +static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_3142_; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Parser_Tactic_MCasesPat_parse_goAlts_spec__0___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_instReprMRefinePat___closed__0; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__27; @@ -536,7 +539,6 @@ static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______mac static lean_object* l_Lean_Parser_Tactic_mvcgenNoTrivial___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mvcgen; static lean_object* l_Lean_Parser_Tactic_massumption___closed__1; -static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_1793_; static lean_object* l_Lean_Parser_Tactic_mstart___closed__2; static lean_object* l_Lean_Parser_Tactic_mspec___closed__4; static lean_object* l_Lean_Parser_Tactic_mcasesPat_u231c___u231d___closed__2; @@ -551,6 +553,7 @@ static lean_object* l_Lean_Parser_Tactic_mrefinePat_u231c___u231d___closed__3; static lean_object* l_Lean_Parser_Tactic_mrefinePat_x28___x29___closed__3; extern lean_object* l_Lean_Parser_Tactic_simpPost; static lean_object* l_Lean_Parser_Tactic_mrefinePat_quot___closed__1; +static lean_object* l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__4; static lean_object* l_Lean_Parser_Tactic_instInhabitedMCasesPat___closed__0; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__22; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_MRefinePat_parse_go(lean_object*); @@ -558,9 +561,8 @@ static lean_object* l_Lean_Parser_Tactic_mvcgenStep___closed__0; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mpure; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__20; static lean_object* l_Lean_Parser_Attr_spec___closed__23; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticMvcgen__trivial; static lean_object* l_Lean_Parser_Tactic_mrevertPat_____closed__0; -static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__8; -static lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__40; static lean_object* l_Lean_Parser_Tactic_mrenameI___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mstart; @@ -572,6 +574,7 @@ static lean_object* l_Lean_Parser_Tactic_mspec___closed__1; static lean_object* l_Lean_Parser_Tactic_mcases___closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__21; LEAN_EXPORT lean_object* l_Lean_Parser_Category_mintroPat; +static lean_object* l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__0; static lean_object* l_Lean_Parser_Attr_spec___closed__39; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mrenameI; static lean_object* l_Lean_Parser_Tactic_mcasesPatAlts___closed__2; @@ -583,19 +586,20 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mcasesPat_x25__; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mstop; static lean_object* l_Lean_Parser_Tactic_mrefinePat_x25_____closed__3; static lean_object* l_Lean_Parser_Tactic_mrefinePat_x3f_____closed__0; +static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_1895_; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__71; +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0_spec__0___lam__0(lean_object*); static lean_object* l_Lean_Parser_Attr_spec___closed__20; -static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_3040_; static lean_object* l_Lean_Parser_Tactic_instInhabitedMRefinePat___closed__0; static lean_object* l_Lean_Parser_Tactic_mrefinePat_x23_____closed__1; -static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_3040_; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mrevert; static lean_object* l_Lean_Parser_Tactic_mcasesPat_quot___closed__6; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__2; -static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_1793_; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mclear; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__115; +static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_1895_; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mrefinePat_x3f__; +static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__16; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mvcgen___closed__17; @@ -603,22 +607,28 @@ static lean_object* l_Lean_Parser_Tactic_mrevertPat_quot___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__118; static lean_object* l_Lean_Parser_Tactic_mspecNoSimp___closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__3; -static lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__4; static lean_object* l_Lean_Parser_Tactic_mrefinePat_x23_____closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mrevert__1___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_1895_; +LEAN_EXPORT lean_object* l_Nat_cast___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0_spec__3(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mintro__1___closed__6; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +static lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__0; static lean_object* l_Lean_Parser_Tactic_mcasesPat_____closed__0; static lean_object* l_Lean_Parser_Tactic_mclear___closed__3; -LEAN_EXPORT lean_object* l_Nat_cast___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0_spec__3(lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__7; +static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__17____x40_Std_Tactic_Do_Syntax___hyg_1895_; static lean_object* l_Lean_Parser_Attr_spec___closed__26; static lean_object* l_Lean_Parser_Tactic_mcasesPat_u27e8___u27e9___closed__3; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__38; +static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_3142_; static lean_object* l_Lean_Parser_Tactic_mrenameI___closed__6; static lean_object* l_Lean_Parser_Tactic_mvcgenStep___closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__7; static lean_object* l_Lean_Parser_Tactic_mcasesPat_x23_____closed__0; +static lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__6; +LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mrevertPat_quot; static lean_object* l_Lean_Parser_Tactic_mspecialize___closed__4; static lean_object* l_Lean_Parser_Tactic_mpure___closed__2; @@ -626,11 +636,13 @@ static lean_object* l_Lean_Parser_Tactic_mframe___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__58; static lean_object* l_Lean_Parser_Tactic_mrevert___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mframe; +static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1895_; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mexfalso; static lean_object* l_Lean_Parser_Tactic_mleft___closed__0; static lean_object* l_Lean_Parser_Tactic_mrefinePat_x3f_____closed__3; static lean_object* l_Lean_Parser_Tactic_mcasesPat_x23_____closed__1; lean_object* l_Lean_Syntax_node1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_1895_; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__42; static lean_object* l_Lean_Parser_Tactic_mcasesPatAlts___closed__1; static lean_object* l_Lean_Parser_Tactic_mrefine___closed__0; @@ -644,17 +656,19 @@ static lean_object* l_Lean_Parser_Attr_spec___closed__1; static lean_object* l_Lean_Parser_Tactic_mhave___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__1; static lean_object* l_Lean_Parser_Tactic_mspecialize___closed__5; -static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_3040_; extern lean_object* l_Lean_binderIdent; static lean_object* l_Lean_Parser_Tactic_mleave___closed__3; static lean_object* l_Lean_Parser_Tactic_mexact___closed__4; lean_object* l_Repr_addAppParen(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mdup___closed__5; +static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_3142_; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__76; +static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__1; static lean_object* l_Lean_Parser_Tactic_mrevert___closed__4; static lean_object* l_Lean_Parser_Tactic_mpure___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mrefinePat_u27e8___u27e9; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__77; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142____boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mcasesPat_x28___x29___closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Parser_Tactic_MCasesPat_parse_go_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_append___redArg(lean_object*, lean_object*); @@ -678,6 +692,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mintro; static lean_object* l_Lean_Parser_Tactic_mpureIntro___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__45; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__72; +static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_3142_; static lean_object* l_Lean_Parser_Tactic_mintroPat_u2200_____closed__3; static lean_object* l_Lean_Parser_Attr_spec___closed__5; static lean_object* l_Lean_Parser_Attr_spec___closed__6; @@ -693,13 +708,13 @@ static lean_object* l_Lean_Parser_Tactic_mrefinePat_quot___closed__5; static lean_object* l_Lean_Parser_Tactic_mintro___closed__5; static lean_object* l_Lean_Parser_Tactic_mrefine___closed__1; static lean_object* l_Lean_Parser_Tactic_mrevertPat_u2200_____closed__0; -static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_3040_; +static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_1895_; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mvcgenStep; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_instReprMCasesPat; +static lean_object* l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__49; static lean_object* l_Lean_Parser_Tactic_mvcgenNoTrivial___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mconstructor; -static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__9; static lean_object* l_Lean_Parser_Tactic_mexists___closed__3; static lean_object* l_Lean_Parser_Tactic_mrenameI___closed__4; static lean_object* l_Lean_Parser_Tactic_mclear___closed__7; @@ -710,24 +725,28 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax____ static lean_object* l_Lean_Parser_Tactic_mvcgenNoTrivial___closed__0; static lean_object* l_Lean_Parser_Tactic_mintroPat_quot___closed__3; static lean_object* l_Lean_Parser_Tactic_mcasesPat_quot___closed__13; +static lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__1; static lean_object* l_Lean_Parser_Tactic_mcasesPat_____closed__1; +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0_spec__0(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mintroPat_u2200_____closed__5; static lean_object* l_Lean_Parser_Tactic_mcasesPat_quot___closed__2; static lean_object* l_Lean_Parser_Tactic_mcasesPat_u231c___u231d___closed__7; static lean_object* l_Lean_Parser_Attr_spec___closed__18; static lean_object* l_Lean_Parser_Attr_spec___closed__21; +static lean_object* l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__2; lean_object* lean_array_uget(lean_object*, size_t); static lean_object* l_Lean_Parser_Attr_spec___closed__2; size_t lean_array_size(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__69; +static lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__2; static lean_object* l_Lean_Parser_Tactic_mhave___closed__13; static lean_object* l_Lean_Parser_Tactic_mspecialize___closed__2; -LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mdup___closed__8; static lean_object* l_Lean_Parser_Tactic_mcasesPat_u25a1_____closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__95; -LEAN_EXPORT lean_object* l_List_foldl___at___List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_1895_; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mintro__1___closed__2; static lean_object* l_Lean_Parser_Tactic_mrenameI___closed__2; lean_object* l_Lean_Name_mkStr1(lean_object*); @@ -736,11 +755,11 @@ lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_o static lean_object* l_Lean_Parser_Tactic_mdup___closed__0; static lean_object* l_Lean_Parser_Tactic_mrefinePat_u231c___u231d___closed__4; static lean_object* l_Lean_Parser_Tactic_mcases___closed__2; +static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_3142_; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__90; static lean_object* l_Lean_Parser_Tactic_mleft___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Category_mcasesPat; static lean_object* l_Lean_Parser_Tactic_mcases___closed__3; -LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0_spec__0___lam__0(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__82; static lean_object* l_Lean_Parser_Tactic_mdup___closed__2; static lean_object* l_Lean_Parser_Tactic_mintroPat_u2200_____closed__2; @@ -754,6 +773,7 @@ static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______mac static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mpureIntro__1___closed__1; static lean_object* l_Lean_Parser_Tactic_mintroPat_____closed__0; lean_object* lean_array_get_size(lean_object*); +LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__68; static lean_object* l_Lean_Parser_Tactic_mcasesPat_quot___closed__4; static lean_object* l_Lean_Parser_Tactic_mrevert___closed__3; @@ -774,15 +794,18 @@ static lean_object* l_Lean_Parser_Attr_spec___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mcasesPat_u25a1__; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mcasesPat_x2d; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mintro__1___closed__0; +static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__93; static lean_object* l_Lean_Parser_Tactic_mrenameI___closed__8; static lean_object* l_Lean_Parser_Tactic_massumption___closed__4; +static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_3142_; static lean_object* l_Lean_Parser_Tactic_mrefinePat_u25a1_____closed__1; static lean_object* l_Lean_Parser_Tactic_mvcgenNoTrivial___closed__5; +LEAN_EXPORT lean_object* l_List_foldl___at___List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0_spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspecNoSimp__1(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_reprMCasesPat___closed__17____x40_Std_Tactic_Do_Syntax___hyg_1793_; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__67; static lean_object* l_Lean_Parser_Tactic_mrefinePat_u27e8___u27e9___closed__2; +static lean_object* l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__3; lean_object* l_Lean_expandMacros(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mhave___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__33; @@ -792,38 +815,41 @@ static lean_object* l_Lean_Parser_Tactic_mrefinePat_quot___closed__6; lean_object* l_String_toSubstring_x27(lean_object*); static lean_object* l_Lean_Parser_Tactic_mcasesPat_x25_____closed__4; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); +static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_3142_; static lean_object* l_Lean_Parser_Tactic_mcasesPat_u27e8___u27e9___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_MCasesPat_parse_go(lean_object*); static lean_object* l_Lean_Parser_Tactic_mrefinePat_u231c___u231d___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mrefinePat_u25a1__; +LEAN_EXPORT lean_object* l_List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0_spec__0_spec__0(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mcases___closed__1; LEAN_EXPORT uint8_t l_Lean_Parser_Tactic_MCasesPat_parse___lam__0(lean_object*); static lean_object* l_Lean_Parser_Tactic_mcasesPat_x23_____closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__37; static lean_object* l_Lean_Parser_Tactic_mcasesPat_quot___closed__11; static lean_object* l_Lean_Parser_Tactic_mintro___closed__6; -LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_mvcgen___closed__2; static lean_object* l_Lean_Parser_Tactic_mcasesPat_u27e8___u27e9___closed__9; static lean_object* l_Lean_Parser_Attr_spec___closed__10; static lean_object* l_Lean_Parser_Tactic_mintroPat_quot___closed__9; static lean_object* l_Lean_Parser_Tactic_mcasesPat_x2d___closed__4; static lean_object* l_Lean_Parser_Tactic_mvcgen___closed__18; -LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__91; static lean_object* l_Lean_Parser_Tactic_mrefinePat_x3f_____closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mcasesPat_x28___x29; static lean_object* l_Lean_Parser_Tactic_mreplace___closed__5; static lean_object* l_Lean_Parser_Attr_spec___closed__31; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__89; +static lean_object* l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__53; static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__41; +static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__129; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___Lean_Parser_Tactic_MRefinePat_parse_go_spec__1(size_t, size_t, lean_object*); static lean_object* l_Lean_Parser_Attr_spec___closed__34; static lean_object* l_Lean_Parser_Tactic_mrevertPat_u2200_____closed__2; +static lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__128; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mrefinePat_x23____1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_3142_; static lean_object* l_Lean_Parser_Tactic_mvcgen___closed__12; -static lean_object* l_Lean_Parser_Tactic_reprMRefinePat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_3040_; static lean_object* _init_l_Lean_Parser_Attr_spec___closed__0() { _start: { @@ -4132,69 +4158,70 @@ static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax___ _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("and_imp", 7, 7); +x_1 = lean_mk_string_unchecked("ULift", 5, 5); return x_1; } } static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__100() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__99; -x_2 = l_Lean_Name_mkStr1(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_unchecked("down_ite", 8, 8); +return x_1; } } static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__101() { _start: { -lean_object* x_1; lean_object* x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__100; -x_2 = lean_mk_syntax_ident(x_1); -return x_2; +x_2 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__99; +x_3 = l_Lean_Name_mkStr2(x_2, x_1); +return x_3; } } static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__102() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_unchecked("and_true", 8, 8); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__101; +x_2 = lean_mk_syntax_ident(x_1); +return x_2; } } static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__103() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__102; -x_2 = l_Lean_Name_mkStr1(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_unchecked("down_dite", 9, 9); +return x_1; } } static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__104() { _start: { -lean_object* x_1; lean_object* x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__103; -x_2 = lean_mk_syntax_ident(x_1); -return x_2; +x_2 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__99; +x_3 = l_Lean_Name_mkStr2(x_2, x_1); +return x_3; } } static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__105() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_unchecked("dite_eq_ite", 11, 11); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__104; +x_2 = lean_mk_syntax_ident(x_1); +return x_2; } } static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__106() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__105; -x_2 = l_Lean_Name_mkStr1(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_unchecked("and_imp", 7, 7); +return x_1; } } static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__107() { @@ -4202,25 +4229,25 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__106; -x_2 = lean_mk_syntax_ident(x_1); +x_2 = l_Lean_Name_mkStr1(x_1); return x_2; } } static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__108() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_unchecked("exists_prop", 11, 11); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__107; +x_2 = lean_mk_syntax_ident(x_1); +return x_2; } } static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__109() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__108; -x_2 = l_Lean_Name_mkStr1(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_unchecked("and_true", 8, 8); +return x_1; } } static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__110() { @@ -4228,25 +4255,25 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__109; -x_2 = lean_mk_syntax_ident(x_1); +x_2 = l_Lean_Name_mkStr1(x_1); return x_2; } } static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__111() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_unchecked("true_implies", 12, 12); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__110; +x_2 = lean_mk_syntax_ident(x_1); +return x_2; } } static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__112() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__111; -x_2 = l_Lean_Name_mkStr1(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string_unchecked("dite_eq_ite", 11, 11); +return x_1; } } static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__113() { @@ -4254,7 +4281,7 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__112; -x_2 = lean_mk_syntax_ident(x_1); +x_2 = l_Lean_Name_mkStr1(x_1); return x_2; } } @@ -4262,8 +4289,8 @@ static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax___ _start: { lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(59u); -x_2 = lean_mk_empty_array_with_capacity(x_1); +x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__113; +x_2 = lean_mk_syntax_ident(x_1); return x_2; } } @@ -4271,23 +4298,84 @@ static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax___ _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("]", 1, 1); +x_1 = lean_mk_string_unchecked("exists_prop", 11, 11); return x_1; } } static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__116() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__115; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__117() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__116; +x_2 = lean_mk_syntax_ident(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__118() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("true_implies", 12, 12); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__119() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__118; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__120() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__119; +x_2 = lean_mk_syntax_ident(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__121() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(63u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__122() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("]", 1, 1); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__123() { +_start: +{ lean_object* x_1; x_1 = lean_mk_string_unchecked("location", 8, 8); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__117() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__124() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__116; +x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__123; x_2 = l_Lean_Parser_Tactic_massumption___closed__0; x_3 = l_Lean_Parser_Attr_spec___closed__1; x_4 = l_Lean_Parser_Attr_spec___closed__0; @@ -4295,7 +4383,7 @@ x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__118() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__125() { _start: { lean_object* x_1; @@ -4303,7 +4391,7 @@ x_1 = lean_mk_string_unchecked("at", 2, 2); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__119() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__126() { _start: { lean_object* x_1; @@ -4311,11 +4399,11 @@ x_1 = lean_mk_string_unchecked("locationWildcard", 16, 16); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__120() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__127() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__119; +x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__126; x_2 = l_Lean_Parser_Tactic_massumption___closed__0; x_3 = l_Lean_Parser_Attr_spec___closed__1; x_4 = l_Lean_Parser_Attr_spec___closed__0; @@ -4323,7 +4411,7 @@ x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); return x_5; } } -static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__121() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__128() { _start: { lean_object* x_1; @@ -4331,7 +4419,7 @@ x_1 = lean_mk_string_unchecked("*", 1, 1); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__122() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__129() { _start: { lean_object* x_1; @@ -4356,7 +4444,7 @@ return x_7; } else { -lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; +lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; x_8 = lean_ctor_get(x_2, 5); x_9 = 0; x_10 = l_Lean_SourceInfo_fromRef(x_8, x_9); @@ -4509,170 +4597,184 @@ x_83 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean lean_inc_ref_n(x_25, 2); lean_inc(x_10); x_84 = l_Lean_Syntax_node3(x_10, x_32, x_25, x_25, x_83); -x_85 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__101; +x_85 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__102; lean_inc_ref_n(x_25, 2); lean_inc(x_10); x_86 = l_Lean_Syntax_node3(x_10, x_32, x_25, x_25, x_85); -x_87 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__104; +x_87 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__105; lean_inc_ref_n(x_25, 2); lean_inc(x_10); x_88 = l_Lean_Syntax_node3(x_10, x_32, x_25, x_25, x_87); -x_89 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__107; +x_89 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__108; lean_inc_ref_n(x_25, 2); lean_inc(x_10); x_90 = l_Lean_Syntax_node3(x_10, x_32, x_25, x_25, x_89); -x_91 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__110; +x_91 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__111; lean_inc_ref_n(x_25, 2); lean_inc(x_10); x_92 = l_Lean_Syntax_node3(x_10, x_32, x_25, x_25, x_91); -x_93 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__113; +x_93 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__114; lean_inc_ref_n(x_25, 2); lean_inc(x_10); x_94 = l_Lean_Syntax_node3(x_10, x_32, x_25, x_25, x_93); -x_95 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__114; -x_96 = lean_array_push(x_95, x_34); -lean_inc_ref(x_36); -x_97 = lean_array_push(x_96, x_36); -x_98 = lean_array_push(x_97, x_38); -lean_inc_ref(x_36); -x_99 = lean_array_push(x_98, x_36); -x_100 = lean_array_push(x_99, x_40); +x_95 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__117; +lean_inc_ref_n(x_25, 2); +lean_inc(x_10); +x_96 = l_Lean_Syntax_node3(x_10, x_32, x_25, x_25, x_95); +x_97 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__120; +lean_inc_ref_n(x_25, 2); +lean_inc(x_10); +x_98 = l_Lean_Syntax_node3(x_10, x_32, x_25, x_25, x_97); +x_99 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__121; +x_100 = lean_array_push(x_99, x_34); lean_inc_ref(x_36); x_101 = lean_array_push(x_100, x_36); -x_102 = lean_array_push(x_101, x_42); +x_102 = lean_array_push(x_101, x_38); lean_inc_ref(x_36); x_103 = lean_array_push(x_102, x_36); -x_104 = lean_array_push(x_103, x_44); +x_104 = lean_array_push(x_103, x_40); lean_inc_ref(x_36); x_105 = lean_array_push(x_104, x_36); -x_106 = lean_array_push(x_105, x_46); +x_106 = lean_array_push(x_105, x_42); lean_inc_ref(x_36); x_107 = lean_array_push(x_106, x_36); -x_108 = lean_array_push(x_107, x_48); +x_108 = lean_array_push(x_107, x_44); lean_inc_ref(x_36); x_109 = lean_array_push(x_108, x_36); -x_110 = lean_array_push(x_109, x_50); +x_110 = lean_array_push(x_109, x_46); lean_inc_ref(x_36); x_111 = lean_array_push(x_110, x_36); -x_112 = lean_array_push(x_111, x_52); +x_112 = lean_array_push(x_111, x_48); lean_inc_ref(x_36); x_113 = lean_array_push(x_112, x_36); -x_114 = lean_array_push(x_113, x_54); +x_114 = lean_array_push(x_113, x_50); lean_inc_ref(x_36); x_115 = lean_array_push(x_114, x_36); -x_116 = lean_array_push(x_115, x_56); +x_116 = lean_array_push(x_115, x_52); lean_inc_ref(x_36); x_117 = lean_array_push(x_116, x_36); -x_118 = lean_array_push(x_117, x_58); +x_118 = lean_array_push(x_117, x_54); lean_inc_ref(x_36); x_119 = lean_array_push(x_118, x_36); -x_120 = lean_array_push(x_119, x_60); +x_120 = lean_array_push(x_119, x_56); lean_inc_ref(x_36); x_121 = lean_array_push(x_120, x_36); -x_122 = lean_array_push(x_121, x_62); +x_122 = lean_array_push(x_121, x_58); lean_inc_ref(x_36); x_123 = lean_array_push(x_122, x_36); -x_124 = lean_array_push(x_123, x_64); +x_124 = lean_array_push(x_123, x_60); lean_inc_ref(x_36); x_125 = lean_array_push(x_124, x_36); -x_126 = lean_array_push(x_125, x_66); +x_126 = lean_array_push(x_125, x_62); lean_inc_ref(x_36); x_127 = lean_array_push(x_126, x_36); -x_128 = lean_array_push(x_127, x_68); +x_128 = lean_array_push(x_127, x_64); lean_inc_ref(x_36); x_129 = lean_array_push(x_128, x_36); -x_130 = lean_array_push(x_129, x_70); +x_130 = lean_array_push(x_129, x_66); lean_inc_ref(x_36); x_131 = lean_array_push(x_130, x_36); -x_132 = lean_array_push(x_131, x_72); +x_132 = lean_array_push(x_131, x_68); lean_inc_ref(x_36); x_133 = lean_array_push(x_132, x_36); -x_134 = lean_array_push(x_133, x_74); +x_134 = lean_array_push(x_133, x_70); lean_inc_ref(x_36); x_135 = lean_array_push(x_134, x_36); -x_136 = lean_array_push(x_135, x_76); +x_136 = lean_array_push(x_135, x_72); lean_inc_ref(x_36); x_137 = lean_array_push(x_136, x_36); -x_138 = lean_array_push(x_137, x_78); +x_138 = lean_array_push(x_137, x_74); lean_inc_ref(x_36); x_139 = lean_array_push(x_138, x_36); -x_140 = lean_array_push(x_139, x_80); +x_140 = lean_array_push(x_139, x_76); lean_inc_ref(x_36); x_141 = lean_array_push(x_140, x_36); -x_142 = lean_array_push(x_141, x_82); +x_142 = lean_array_push(x_141, x_78); lean_inc_ref(x_36); x_143 = lean_array_push(x_142, x_36); -x_144 = lean_array_push(x_143, x_84); +x_144 = lean_array_push(x_143, x_80); lean_inc_ref(x_36); x_145 = lean_array_push(x_144, x_36); -x_146 = lean_array_push(x_145, x_86); +x_146 = lean_array_push(x_145, x_82); lean_inc_ref(x_36); x_147 = lean_array_push(x_146, x_36); -x_148 = lean_array_push(x_147, x_88); +x_148 = lean_array_push(x_147, x_84); lean_inc_ref(x_36); x_149 = lean_array_push(x_148, x_36); -x_150 = lean_array_push(x_149, x_90); +x_150 = lean_array_push(x_149, x_86); lean_inc_ref(x_36); x_151 = lean_array_push(x_150, x_36); -x_152 = lean_array_push(x_151, x_92); +x_152 = lean_array_push(x_151, x_88); +lean_inc_ref(x_36); x_153 = lean_array_push(x_152, x_36); -x_154 = lean_array_push(x_153, x_94); +x_154 = lean_array_push(x_153, x_90); +lean_inc_ref(x_36); +x_155 = lean_array_push(x_154, x_36); +x_156 = lean_array_push(x_155, x_92); +lean_inc_ref(x_36); +x_157 = lean_array_push(x_156, x_36); +x_158 = lean_array_push(x_157, x_94); +lean_inc_ref(x_36); +x_159 = lean_array_push(x_158, x_36); +x_160 = lean_array_push(x_159, x_96); +x_161 = lean_array_push(x_160, x_36); +x_162 = lean_array_push(x_161, x_98); lean_inc(x_10); -x_155 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_155, 0, x_10); -lean_ctor_set(x_155, 1, x_16); -lean_ctor_set(x_155, 2, x_154); -x_156 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__115; +x_163 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_163, 0, x_10); +lean_ctor_set(x_163, 1, x_16); +lean_ctor_set(x_163, 2, x_162); +x_164 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__122; lean_inc(x_10); -x_157 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_157, 0, x_10); -lean_ctor_set(x_157, 1, x_156); +x_165 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_165, 0, x_10); +lean_ctor_set(x_165, 1, x_164); lean_inc(x_10); -x_158 = l_Lean_Syntax_node3(x_10, x_16, x_31, x_155, x_157); -x_159 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__117; -x_160 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__118; +x_166 = l_Lean_Syntax_node3(x_10, x_16, x_31, x_163, x_165); +x_167 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__124; +x_168 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__125; lean_inc(x_10); -x_161 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_161, 0, x_10); -lean_ctor_set(x_161, 1, x_160); -x_162 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__120; -x_163 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__121; +x_169 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_169, 0, x_10); +lean_ctor_set(x_169, 1, x_168); +x_170 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__127; +x_171 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__128; lean_inc(x_10); -x_164 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_164, 0, x_10); -lean_ctor_set(x_164, 1, x_163); +x_172 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_172, 0, x_10); +lean_ctor_set(x_172, 1, x_171); lean_inc(x_10); -x_165 = l_Lean_Syntax_node1(x_10, x_162, x_164); +x_173 = l_Lean_Syntax_node1(x_10, x_170, x_172); lean_inc(x_10); -x_166 = l_Lean_Syntax_node2(x_10, x_159, x_161, x_165); +x_174 = l_Lean_Syntax_node2(x_10, x_167, x_169, x_173); lean_inc(x_10); -x_167 = l_Lean_Syntax_node1(x_10, x_16, x_166); +x_175 = l_Lean_Syntax_node1(x_10, x_16, x_174); lean_inc(x_10); -x_168 = l_Lean_Syntax_node6(x_10, x_21, x_22, x_26, x_25, x_29, x_158, x_167); +x_176 = l_Lean_Syntax_node6(x_10, x_21, x_22, x_26, x_25, x_29, x_166, x_175); lean_inc(x_10); -x_169 = l_Lean_Syntax_node1(x_10, x_16, x_168); +x_177 = l_Lean_Syntax_node1(x_10, x_16, x_176); lean_inc(x_10); -x_170 = l_Lean_Syntax_node1(x_10, x_15, x_169); +x_178 = l_Lean_Syntax_node1(x_10, x_15, x_177); lean_inc(x_10); -x_171 = l_Lean_Syntax_node1(x_10, x_14, x_170); +x_179 = l_Lean_Syntax_node1(x_10, x_14, x_178); lean_inc(x_10); -x_172 = l_Lean_Syntax_node2(x_10, x_17, x_19, x_171); +x_180 = l_Lean_Syntax_node2(x_10, x_17, x_19, x_179); lean_inc(x_10); -x_173 = l_Lean_Syntax_node1(x_10, x_16, x_172); +x_181 = l_Lean_Syntax_node1(x_10, x_16, x_180); lean_inc(x_10); -x_174 = l_Lean_Syntax_node1(x_10, x_15, x_173); +x_182 = l_Lean_Syntax_node1(x_10, x_15, x_181); lean_inc(x_10); -x_175 = l_Lean_Syntax_node1(x_10, x_14, x_174); -x_176 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__122; +x_183 = l_Lean_Syntax_node1(x_10, x_14, x_182); +x_184 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__129; lean_inc(x_10); -x_177 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_177, 0, x_10); -lean_ctor_set(x_177, 1, x_176); -x_178 = l_Lean_Syntax_node3(x_10, x_11, x_13, x_175, x_177); -x_179 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_179, 0, x_178); -lean_ctor_set(x_179, 1, x_3); -return x_179; +x_185 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_185, 0, x_10); +lean_ctor_set(x_185, 1, x_184); +x_186 = l_Lean_Syntax_node3(x_10, x_11, x_13, x_183, x_185); +x_187 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_187, 0, x_186); +lean_ctor_set(x_187, 1, x_3); +return x_187; } } } @@ -4774,7 +4876,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_mcasesPat_quot___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__122; +x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__129; x_2 = lean_alloc_ctor(5, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -5663,7 +5765,7 @@ lean_dec_ref(x_2); return x_4; } } -LEAN_EXPORT lean_object* l_List_foldl___at___List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0_spec__0_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_List_foldl___at___List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0_spec__0_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -5685,7 +5787,7 @@ lean_ctor_set_tag(x_3, 5); lean_ctor_set(x_3, 1, x_1); lean_ctor_set(x_3, 0, x_2); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793_(x_5, x_7); +x_8 = l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895_(x_5, x_7); x_9 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_9, 0, x_3); lean_ctor_set(x_9, 1, x_8); @@ -5706,7 +5808,7 @@ x_13 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_13, 0, x_2); lean_ctor_set(x_13, 1, x_1); x_14 = lean_unsigned_to_nat(0u); -x_15 = l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793_(x_11, x_14); +x_15 = l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895_(x_11, x_14); x_16 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_16, 0, x_13); lean_ctor_set(x_16, 1, x_15); @@ -5717,7 +5819,7 @@ goto _start; } } } -LEAN_EXPORT lean_object* l_List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -5739,11 +5841,11 @@ lean_ctor_set_tag(x_3, 5); lean_ctor_set(x_3, 1, x_1); lean_ctor_set(x_3, 0, x_2); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793_(x_5, x_7); +x_8 = l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895_(x_5, x_7); x_9 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_9, 0, x_3); lean_ctor_set(x_9, 1, x_8); -x_10 = l_List_foldl___at___List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0_spec__0_spec__0_spec__0(x_1, x_9, x_6); +x_10 = l_List_foldl___at___List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0_spec__0_spec__0_spec__0(x_1, x_9, x_6); return x_10; } else @@ -5759,26 +5861,26 @@ x_13 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_13, 0, x_2); lean_ctor_set(x_13, 1, x_1); x_14 = lean_unsigned_to_nat(0u); -x_15 = l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793_(x_11, x_14); +x_15 = l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895_(x_11, x_14); x_16 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_16, 0, x_13); lean_ctor_set(x_16, 1, x_15); -x_17 = l_List_foldl___at___List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0_spec__0_spec__0_spec__0(x_1, x_16, x_12); +x_17 = l_List_foldl___at___List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0_spec__0_spec__0_spec__0(x_1, x_16, x_12); return x_17; } } } } -LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0_spec__0___lam__0(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0_spec__0___lam__0(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793_(x_1, x_2); +x_3 = l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895_(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0_spec__0(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0_spec__0(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -5800,7 +5902,7 @@ lean_dec(x_2); x_5 = lean_ctor_get(x_1, 0); lean_inc(x_5); lean_dec_ref(x_1); -x_6 = l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0_spec__0___lam__0(x_5); +x_6 = l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0_spec__0___lam__0(x_5); return x_6; } else @@ -5809,14 +5911,14 @@ lean_object* x_7; lean_object* x_8; lean_object* x_9; x_7 = lean_ctor_get(x_1, 0); lean_inc(x_7); lean_dec_ref(x_1); -x_8 = l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0_spec__0___lam__0(x_7); -x_9 = l_List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0_spec__0_spec__0(x_2, x_8, x_4); +x_8 = l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0_spec__0___lam__0(x_7); +x_9 = l_List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0_spec__0_spec__0(x_2, x_8, x_4); return x_9; } } } } -LEAN_EXPORT lean_object* l_Nat_cast___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0_spec__3(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Nat_cast___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0_spec__3(lean_object* x_1) { _start: { lean_object* x_2; @@ -5824,7 +5926,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__0() { +static lean_object* _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__0() { _start: { lean_object* x_1; @@ -5832,17 +5934,17 @@ x_1 = lean_mk_string_unchecked("[]", 2, 2); return x_1; } } -static lean_object* _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__1() { +static lean_object* _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__0; +x_1 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__0; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__2() { +static lean_object* _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__2() { _start: { lean_object* x_1; lean_object* x_2; @@ -5852,19 +5954,19 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__3() { +static lean_object* _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(1); -x_2 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__2; +x_2 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__2; x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__4() { +static lean_object* _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -5873,7 +5975,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__5() { +static lean_object* _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -5883,31 +5985,31 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__6() { +static lean_object* _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__115; +x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__122; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg(lean_object* x_1) { +LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) { lean_object* x_2; -x_2 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__1; +x_2 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__1; return x_2; } else { lean_object* x_3; lean_object* x_4; uint8_t x_5; -x_3 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__3; +x_3 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__3; lean_inc_ref(x_1); -x_4 = l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0_spec__0(x_1, x_3); +x_4 = l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0_spec__0(x_1, x_3); x_5 = !lean_is_exclusive(x_1); if (x_5 == 0) { @@ -5916,12 +6018,12 @@ x_6 = lean_ctor_get(x_1, 1); lean_dec(x_6); x_7 = lean_ctor_get(x_1, 0); lean_dec(x_7); -x_8 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__4; -x_9 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__5; +x_8 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__4; +x_9 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__5; lean_ctor_set_tag(x_1, 5); lean_ctor_set(x_1, 1, x_4); lean_ctor_set(x_1, 0, x_9); -x_10 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__6; +x_10 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__6; x_11 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_11, 0, x_1); lean_ctor_set(x_11, 1, x_10); @@ -5938,12 +6040,12 @@ else { lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_dec(x_1); -x_15 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__4; -x_16 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__5; +x_15 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__4; +x_16 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__5; x_17 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_17, 0, x_16); lean_ctor_set(x_17, 1, x_4); -x_18 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__6; +x_18 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__6; x_19 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_19, 0, x_17); lean_ctor_set(x_19, 1, x_18); @@ -5959,15 +6061,15 @@ return x_22; } } } -LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg(x_1); +x_3 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg(x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_1793_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_1895_() { _start: { lean_object* x_1; @@ -5975,17 +6077,17 @@ x_1 = lean_mk_string_unchecked("Lean.Parser.Tactic.MCasesPat.clear", 34, 34); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_1793_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_1895_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_reprMCasesPat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_1 = l_Lean_Parser_Tactic_reprMCasesPat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_1793_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_1895_() { _start: { lean_object* x_1; @@ -5993,29 +6095,29 @@ x_1 = lean_mk_string_unchecked("Lean.Parser.Tactic.MCasesPat.one", 32, 32); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_1793_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_1895_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_reprMCasesPat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_1 = l_Lean_Parser_Tactic_reprMCasesPat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_1793_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_1895_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(1); -x_2 = l_Lean_Parser_Tactic_reprMCasesPat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_2 = l_Lean_Parser_Tactic_reprMCasesPat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1793_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1895_() { _start: { lean_object* x_1; lean_object* x_2; @@ -6024,7 +6126,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_1793_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_1895_() { _start: { lean_object* x_1; @@ -6032,29 +6134,29 @@ x_1 = lean_mk_string_unchecked("Lean.Parser.Tactic.MCasesPat.tuple", 34, 34); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_1793_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_1895_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_reprMCasesPat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_1 = l_Lean_Parser_Tactic_reprMCasesPat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_1793_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_1895_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(1); -x_2 = l_Lean_Parser_Tactic_reprMCasesPat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_2 = l_Lean_Parser_Tactic_reprMCasesPat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_1793_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_1895_() { _start: { lean_object* x_1; @@ -6062,29 +6164,29 @@ x_1 = lean_mk_string_unchecked("Lean.Parser.Tactic.MCasesPat.alts", 33, 33); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_1793_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_1895_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_reprMCasesPat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_1 = l_Lean_Parser_Tactic_reprMCasesPat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_1793_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_1895_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(1); -x_2 = l_Lean_Parser_Tactic_reprMCasesPat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_2 = l_Lean_Parser_Tactic_reprMCasesPat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_1793_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_1895_() { _start: { lean_object* x_1; @@ -6092,29 +6194,29 @@ x_1 = lean_mk_string_unchecked("Lean.Parser.Tactic.MCasesPat.pure", 33, 33); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_1793_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_1895_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_reprMCasesPat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_1 = l_Lean_Parser_Tactic_reprMCasesPat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_1793_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_1895_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(1); -x_2 = l_Lean_Parser_Tactic_reprMCasesPat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_2 = l_Lean_Parser_Tactic_reprMCasesPat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__15____x40_Std_Tactic_Do_Syntax___hyg_1793_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__15____x40_Std_Tactic_Do_Syntax___hyg_1895_() { _start: { lean_object* x_1; @@ -6122,29 +6224,29 @@ x_1 = lean_mk_string_unchecked("Lean.Parser.Tactic.MCasesPat.stateful", 37, 37); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__16____x40_Std_Tactic_Do_Syntax___hyg_1793_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__16____x40_Std_Tactic_Do_Syntax___hyg_1895_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_reprMCasesPat___closed__15____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_1 = l_Lean_Parser_Tactic_reprMCasesPat___closed__15____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__17____x40_Std_Tactic_Do_Syntax___hyg_1793_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__17____x40_Std_Tactic_Do_Syntax___hyg_1895_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(1); -x_2 = l_Lean_Parser_Tactic_reprMCasesPat___closed__16____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_2 = l_Lean_Parser_Tactic_reprMCasesPat___closed__16____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895_(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -6160,21 +6262,21 @@ x_21 = lean_nat_dec_le(x_20, x_2); if (x_21 == 0) { lean_object* x_22; -x_22 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_22 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_11 = x_22; goto block_19; } else { lean_object* x_23; -x_23 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__4; +x_23 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__4; x_11 = x_23; goto block_19; } block_19: { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; -x_12 = l_Lean_Parser_Tactic_reprMCasesPat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_12 = l_Lean_Parser_Tactic_reprMCasesPat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_13 = l_Lean_Syntax_reprTSyntax___redArg____x40_Init_Meta___hyg_2333_(x_10); x_14 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_14, 0, x_12); @@ -6198,14 +6300,14 @@ x_25 = lean_nat_dec_le(x_24, x_2); if (x_25 == 0) { lean_object* x_26; -x_26 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_26 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_3 = x_26; goto block_9; } else { lean_object* x_27; -x_27 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__4; +x_27 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__4; x_3 = x_27; goto block_9; } @@ -6221,22 +6323,22 @@ x_39 = lean_nat_dec_le(x_38, x_2); if (x_39 == 0) { lean_object* x_40; -x_40 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_40 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_29 = x_40; goto block_37; } else { lean_object* x_41; -x_41 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__4; +x_41 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__4; x_29 = x_41; goto block_37; } block_37: { lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_object* x_35; lean_object* x_36; -x_30 = l_Lean_Parser_Tactic_reprMCasesPat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_1793_; -x_31 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg(x_28); +x_30 = l_Lean_Parser_Tactic_reprMCasesPat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_1895_; +x_31 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg(x_28); x_32 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_32, 0, x_30); lean_ctor_set(x_32, 1, x_31); @@ -6262,22 +6364,22 @@ x_53 = lean_nat_dec_le(x_52, x_2); if (x_53 == 0) { lean_object* x_54; -x_54 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_54 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_43 = x_54; goto block_51; } else { lean_object* x_55; -x_55 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__4; +x_55 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__4; x_43 = x_55; goto block_51; } block_51: { lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; -x_44 = l_Lean_Parser_Tactic_reprMCasesPat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_1793_; -x_45 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg(x_42); +x_44 = l_Lean_Parser_Tactic_reprMCasesPat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_1895_; +x_45 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg(x_42); x_46 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_46, 0, x_44); lean_ctor_set(x_46, 1, x_45); @@ -6303,21 +6405,21 @@ x_67 = lean_nat_dec_le(x_66, x_2); if (x_67 == 0) { lean_object* x_68; -x_68 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_68 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_57 = x_68; goto block_65; } else { lean_object* x_69; -x_69 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__4; +x_69 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__4; x_57 = x_69; goto block_65; } block_65: { lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; lean_object* x_63; lean_object* x_64; -x_58 = l_Lean_Parser_Tactic_reprMCasesPat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_58 = l_Lean_Parser_Tactic_reprMCasesPat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_59 = l_Lean_Syntax_reprTSyntax___redArg____x40_Init_Meta___hyg_2333_(x_56); x_60 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_60, 0, x_58); @@ -6344,21 +6446,21 @@ x_81 = lean_nat_dec_le(x_80, x_2); if (x_81 == 0) { lean_object* x_82; -x_82 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_82 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_71 = x_82; goto block_79; } else { lean_object* x_83; -x_83 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__4; +x_83 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__4; x_71 = x_83; goto block_79; } block_79: { lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; uint8_t x_76; lean_object* x_77; lean_object* x_78; -x_72 = l_Lean_Parser_Tactic_reprMCasesPat___closed__17____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_72 = l_Lean_Parser_Tactic_reprMCasesPat___closed__17____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_73 = l_Lean_Syntax_reprTSyntax___redArg____x40_Init_Meta___hyg_2333_(x_70); x_74 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_74, 0, x_72); @@ -6378,7 +6480,7 @@ return x_78; block_9: { lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; lean_object* x_8; -x_4 = l_Lean_Parser_Tactic_reprMCasesPat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_4 = l_Lean_Parser_Tactic_reprMCasesPat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_5 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_5, 0, x_3); lean_ctor_set(x_5, 1, x_4); @@ -6391,20 +6493,20 @@ return x_8; } } } -LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0(x_1, x_2); +x_3 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0(x_1, x_2); lean_dec(x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895____boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793_(x_1, x_2); +x_3 = l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895_(x_1, x_2); lean_dec(x_2); return x_3; } @@ -6413,7 +6515,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_instReprMCasesPat___closed__0() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895____boxed), 2, 0); return x_1; } } @@ -8094,7 +8196,7 @@ lean_dec_ref(x_2); return x_4; } } -LEAN_EXPORT lean_object* l_List_foldl___at___List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0_spec__0_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_List_foldl___at___List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0_spec__0_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -8116,7 +8218,7 @@ lean_ctor_set_tag(x_3, 5); lean_ctor_set(x_3, 1, x_1); lean_ctor_set(x_3, 0, x_2); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040_(x_5, x_7); +x_8 = l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142_(x_5, x_7); x_9 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_9, 0, x_3); lean_ctor_set(x_9, 1, x_8); @@ -8137,7 +8239,7 @@ x_13 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_13, 0, x_2); lean_ctor_set(x_13, 1, x_1); x_14 = lean_unsigned_to_nat(0u); -x_15 = l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040_(x_11, x_14); +x_15 = l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142_(x_11, x_14); x_16 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_16, 0, x_13); lean_ctor_set(x_16, 1, x_15); @@ -8148,7 +8250,7 @@ goto _start; } } } -LEAN_EXPORT lean_object* l_List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -8170,11 +8272,11 @@ lean_ctor_set_tag(x_3, 5); lean_ctor_set(x_3, 1, x_1); lean_ctor_set(x_3, 0, x_2); x_7 = lean_unsigned_to_nat(0u); -x_8 = l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040_(x_5, x_7); +x_8 = l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142_(x_5, x_7); x_9 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_9, 0, x_3); lean_ctor_set(x_9, 1, x_8); -x_10 = l_List_foldl___at___List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0_spec__0_spec__0_spec__0(x_1, x_9, x_6); +x_10 = l_List_foldl___at___List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0_spec__0_spec__0_spec__0(x_1, x_9, x_6); return x_10; } else @@ -8190,26 +8292,26 @@ x_13 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_13, 0, x_2); lean_ctor_set(x_13, 1, x_1); x_14 = lean_unsigned_to_nat(0u); -x_15 = l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040_(x_11, x_14); +x_15 = l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142_(x_11, x_14); x_16 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_16, 0, x_13); lean_ctor_set(x_16, 1, x_15); -x_17 = l_List_foldl___at___List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0_spec__0_spec__0_spec__0(x_1, x_16, x_12); +x_17 = l_List_foldl___at___List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0_spec__0_spec__0_spec__0(x_1, x_16, x_12); return x_17; } } } } -LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0_spec__0___lam__0(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0_spec__0___lam__0(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040_(x_1, x_2); +x_3 = l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142_(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0_spec__0(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0_spec__0(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -8231,7 +8333,7 @@ lean_dec(x_2); x_5 = lean_ctor_get(x_1, 0); lean_inc(x_5); lean_dec_ref(x_1); -x_6 = l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0_spec__0___lam__0(x_5); +x_6 = l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0_spec__0___lam__0(x_5); return x_6; } else @@ -8240,28 +8342,28 @@ lean_object* x_7; lean_object* x_8; lean_object* x_9; x_7 = lean_ctor_get(x_1, 0); lean_inc(x_7); lean_dec_ref(x_1); -x_8 = l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0_spec__0___lam__0(x_7); -x_9 = l_List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0_spec__0_spec__0(x_2, x_8, x_4); +x_8 = l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0_spec__0___lam__0(x_7); +x_9 = l_List_foldl___at___Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0_spec__0_spec__0(x_2, x_8, x_4); return x_9; } } } } -LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0___redArg(lean_object* x_1) { +LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0___redArg(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) { lean_object* x_2; -x_2 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__1; +x_2 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__1; return x_2; } else { lean_object* x_3; lean_object* x_4; uint8_t x_5; -x_3 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__3; +x_3 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__3; lean_inc_ref(x_1); -x_4 = l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0_spec__0(x_1, x_3); +x_4 = l_Std_Format_joinSep___at___List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0_spec__0(x_1, x_3); x_5 = !lean_is_exclusive(x_1); if (x_5 == 0) { @@ -8270,12 +8372,12 @@ x_6 = lean_ctor_get(x_1, 1); lean_dec(x_6); x_7 = lean_ctor_get(x_1, 0); lean_dec(x_7); -x_8 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__4; -x_9 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__5; +x_8 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__4; +x_9 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__5; lean_ctor_set_tag(x_1, 5); lean_ctor_set(x_1, 1, x_4); lean_ctor_set(x_1, 0, x_9); -x_10 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__6; +x_10 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__6; x_11 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_11, 0, x_1); lean_ctor_set(x_11, 1, x_10); @@ -8292,12 +8394,12 @@ else { lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_dec(x_1); -x_15 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__4; -x_16 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__5; +x_15 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__4; +x_16 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__5; x_17 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_17, 0, x_16); lean_ctor_set(x_17, 1, x_4); -x_18 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__6; +x_18 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__6; x_19 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_19, 0, x_17); lean_ctor_set(x_19, 1, x_18); @@ -8313,15 +8415,15 @@ return x_22; } } } -LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0___redArg(x_1); +x_3 = l_List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0___redArg(x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_3040_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_3142_() { _start: { lean_object* x_1; @@ -8329,29 +8431,29 @@ x_1 = lean_mk_string_unchecked("Lean.Parser.Tactic.MRefinePat.one", 33, 33); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_3040_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_3142_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_reprMRefinePat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_3040_; +x_1 = l_Lean_Parser_Tactic_reprMRefinePat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_3142_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_3040_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_3142_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(1); -x_2 = l_Lean_Parser_Tactic_reprMRefinePat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_3040_; +x_2 = l_Lean_Parser_Tactic_reprMRefinePat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_3142_; x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_3040_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_3142_() { _start: { lean_object* x_1; @@ -8359,29 +8461,29 @@ x_1 = lean_mk_string_unchecked("Lean.Parser.Tactic.MRefinePat.tuple", 35, 35); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_3040_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_3142_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_reprMRefinePat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_3040_; +x_1 = l_Lean_Parser_Tactic_reprMRefinePat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_3142_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_3040_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_3142_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(1); -x_2 = l_Lean_Parser_Tactic_reprMRefinePat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_3040_; +x_2 = l_Lean_Parser_Tactic_reprMRefinePat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_3142_; x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_3040_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_3142_() { _start: { lean_object* x_1; @@ -8389,29 +8491,29 @@ x_1 = lean_mk_string_unchecked("Lean.Parser.Tactic.MRefinePat.pure", 34, 34); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_3040_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_3142_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_reprMRefinePat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_3040_; +x_1 = l_Lean_Parser_Tactic_reprMRefinePat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_3142_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_3040_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_3142_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(1); -x_2 = l_Lean_Parser_Tactic_reprMRefinePat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_3040_; +x_2 = l_Lean_Parser_Tactic_reprMRefinePat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_3142_; x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_3040_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_3142_() { _start: { lean_object* x_1; @@ -8419,29 +8521,29 @@ x_1 = lean_mk_string_unchecked("Lean.Parser.Tactic.MRefinePat.stateful", 38, 38) return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_3040_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_3142_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_reprMRefinePat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_3040_; +x_1 = l_Lean_Parser_Tactic_reprMRefinePat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_3142_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_3040_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_3142_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(1); -x_2 = l_Lean_Parser_Tactic_reprMRefinePat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_3040_; +x_2 = l_Lean_Parser_Tactic_reprMRefinePat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_3142_; x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_3040_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_3142_() { _start: { lean_object* x_1; @@ -8449,29 +8551,29 @@ x_1 = lean_mk_string_unchecked("Lean.Parser.Tactic.MRefinePat.hole", 34, 34); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_3040_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_3142_() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_reprMRefinePat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_3040_; +x_1 = l_Lean_Parser_Tactic_reprMRefinePat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_3142_; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_3040_() { +static lean_object* _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_3142_() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(1); -x_2 = l_Lean_Parser_Tactic_reprMRefinePat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_3040_; +x_2 = l_Lean_Parser_Tactic_reprMRefinePat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_3142_; x_3 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142_(lean_object* x_1, lean_object* x_2) { _start: { switch (lean_obj_tag(x_1)) { @@ -8486,21 +8588,21 @@ x_14 = lean_nat_dec_le(x_13, x_2); if (x_14 == 0) { lean_object* x_15; -x_15 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_15 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_4 = x_15; goto block_12; } else { lean_object* x_16; -x_16 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__4; +x_16 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__4; x_4 = x_16; goto block_12; } block_12: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; -x_5 = l_Lean_Parser_Tactic_reprMRefinePat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_3040_; +x_5 = l_Lean_Parser_Tactic_reprMRefinePat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_3142_; x_6 = l_Lean_Syntax_reprTSyntax___redArg____x40_Init_Meta___hyg_2333_(x_3); x_7 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_7, 0, x_5); @@ -8527,22 +8629,22 @@ x_28 = lean_nat_dec_le(x_27, x_2); if (x_28 == 0) { lean_object* x_29; -x_29 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_29 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_18 = x_29; goto block_26; } else { lean_object* x_30; -x_30 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__4; +x_30 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__4; x_18 = x_30; goto block_26; } block_26: { lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_24; lean_object* x_25; -x_19 = l_Lean_Parser_Tactic_reprMRefinePat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_3040_; -x_20 = l_List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0___redArg(x_17); +x_19 = l_Lean_Parser_Tactic_reprMRefinePat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_3142_; +x_20 = l_List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0___redArg(x_17); x_21 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_21, 0, x_19); lean_ctor_set(x_21, 1, x_20); @@ -8568,21 +8670,21 @@ x_42 = lean_nat_dec_le(x_41, x_2); if (x_42 == 0) { lean_object* x_43; -x_43 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_43 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_32 = x_43; goto block_40; } else { lean_object* x_44; -x_44 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__4; +x_44 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__4; x_32 = x_44; goto block_40; } block_40: { 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_39; -x_33 = l_Lean_Parser_Tactic_reprMRefinePat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_3040_; +x_33 = l_Lean_Parser_Tactic_reprMRefinePat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_3142_; x_34 = l_Lean_Syntax_reprTSyntax___redArg____x40_Init_Meta___hyg_2333_(x_31); x_35 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_35, 0, x_33); @@ -8609,21 +8711,21 @@ x_56 = lean_nat_dec_le(x_55, x_2); if (x_56 == 0) { lean_object* x_57; -x_57 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_57 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_46 = x_57; goto block_54; } else { lean_object* x_58; -x_58 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__4; +x_58 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__4; x_46 = x_58; goto block_54; } block_54: { 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; -x_47 = l_Lean_Parser_Tactic_reprMRefinePat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_3040_; +x_47 = l_Lean_Parser_Tactic_reprMRefinePat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_3142_; x_48 = l_Lean_Syntax_reprTSyntax___redArg____x40_Init_Meta___hyg_2333_(x_45); x_49 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_49, 0, x_47); @@ -8650,21 +8752,21 @@ x_70 = lean_nat_dec_le(x_69, x_2); if (x_70 == 0) { lean_object* x_71; -x_71 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1793_; +x_71 = l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1895_; x_60 = x_71; goto block_68; } else { lean_object* x_72; -x_72 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__4; +x_72 = l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__4; x_60 = x_72; goto block_68; } block_68: { 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; -x_61 = l_Lean_Parser_Tactic_reprMRefinePat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_3040_; +x_61 = l_Lean_Parser_Tactic_reprMRefinePat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_3142_; x_62 = l_Lean_Syntax_reprTSyntax___redArg____x40_Init_Meta___hyg_2333_(x_59); x_63 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_63, 0, x_61); @@ -8683,20 +8785,20 @@ return x_67; } } } -LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040__spec__0(x_1, x_2); +x_3 = l_List_repr___at___Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142__spec__0(x_1, x_2); lean_dec(x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142____boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040_(x_1, x_2); +x_3 = l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142_(x_1, x_2); lean_dec(x_2); return x_3; } @@ -8705,7 +8807,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_instReprMRefinePat___closed__0() _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3040____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_reprMRefinePat____x40_Std_Tactic_Do_Syntax___hyg_3142____boxed), 2, 0); return x_1; } } @@ -10706,23 +10808,23 @@ goto block_68; block_25: { lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_17 = l_Array_append___redArg(x_8, x_16); +x_17 = l_Array_append___redArg(x_5, x_16); lean_dec_ref(x_16); +lean_inc(x_6); lean_inc(x_13); -lean_inc(x_7); x_18 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_18, 0, x_7); -lean_ctor_set(x_18, 1, x_13); +lean_ctor_set(x_18, 0, x_13); +lean_ctor_set(x_18, 1, x_6); lean_ctor_set(x_18, 2, x_17); -lean_inc(x_7); -x_19 = l_Lean_Syntax_node2(x_7, x_6, x_12, x_18); -lean_inc(x_7); -x_20 = l_Lean_Syntax_node3(x_7, x_13, x_9, x_5, x_19); -lean_inc(x_7); -x_21 = l_Lean_Syntax_node1(x_7, x_14, x_20); -lean_inc(x_7); -x_22 = l_Lean_Syntax_node1(x_7, x_4, x_21); -x_23 = l_Lean_Syntax_node3(x_7, x_11, x_10, x_22, x_15); +lean_inc(x_13); +x_19 = l_Lean_Syntax_node2(x_13, x_10, x_12, x_18); +lean_inc(x_13); +x_20 = l_Lean_Syntax_node3(x_13, x_6, x_15, x_11, x_19); +lean_inc(x_13); +x_21 = l_Lean_Syntax_node1(x_13, x_8, x_20); +lean_inc(x_13); +x_22 = l_Lean_Syntax_node1(x_13, x_4, x_21); +x_23 = l_Lean_Syntax_node3(x_13, x_7, x_14, x_22, x_9); x_24 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_3); @@ -10789,7 +10891,7 @@ lean_inc(x_29); x_57 = l_Lean_Syntax_node1(x_29, x_34, x_56); lean_inc(x_29); x_58 = l_Lean_Syntax_node1(x_29, x_33, x_57); -x_59 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__122; +x_59 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__129; lean_inc(x_29); x_60 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_60, 0, x_29); @@ -10809,17 +10911,17 @@ if (lean_obj_tag(x_26) == 0) lean_object* x_65; x_65 = l_Lean_Parser_Tactic_MCasesPat_parse_go___closed__0; x_4 = x_33; -x_5 = x_63; -x_6 = x_42; -x_7 = x_29; -x_8 = x_64; -x_9 = x_61; -x_10 = x_32; -x_11 = x_30; +x_5 = x_64; +x_6 = x_35; +x_7 = x_30; +x_8 = x_34; +x_9 = x_60; +x_10 = x_42; +x_11 = x_63; x_12 = x_44; -x_13 = x_35; -x_14 = x_34; -x_15 = x_60; +x_13 = x_29; +x_14 = x_32; +x_15 = x_61; x_16 = x_65; goto block_25; } @@ -10831,17 +10933,17 @@ lean_inc(x_66); lean_dec_ref(x_26); x_67 = l_Array_mkArray1___redArg(x_66); x_4 = x_33; -x_5 = x_63; -x_6 = x_42; -x_7 = x_29; -x_8 = x_64; -x_9 = x_61; -x_10 = x_32; -x_11 = x_30; +x_5 = x_64; +x_6 = x_35; +x_7 = x_30; +x_8 = x_34; +x_9 = x_60; +x_10 = x_42; +x_11 = x_63; x_12 = x_44; -x_13 = x_35; -x_14 = x_34; -x_15 = x_60; +x_13 = x_29; +x_14 = x_32; +x_15 = x_61; x_16 = x_67; goto block_25; } @@ -10857,6 +10959,346 @@ lean_dec_ref(x_2); return x_4; } } +static lean_object* _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("tacticMvcgen_trivial_extensible", 31, 31); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__0; +x_2 = l_Lean_Parser_Tactic_massumption___closed__0; +x_3 = l_Lean_Parser_Attr_spec___closed__1; +x_4 = l_Lean_Parser_Attr_spec___closed__0; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("mvcgen_trivial_extensible", 25, 25); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__3() { +_start: +{ +uint8_t x_1; lean_object* x_2; lean_object* x_3; +x_1 = 0; +x_2 = l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__2; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__3; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__1; +x_4 = lean_alloc_ctor(3, 3, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_1); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__4; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("tacticMvcgen_trivial", 20, 20); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__0; +x_2 = l_Lean_Parser_Tactic_massumption___closed__0; +x_3 = l_Lean_Parser_Attr_spec___closed__1; +x_4 = l_Lean_Parser_Attr_spec___closed__0; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("mvcgen_trivial", 14, 14); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__3() { +_start: +{ +uint8_t x_1; lean_object* x_2; lean_object* x_3; +x_1 = 0; +x_2 = l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__2; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__3; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__1; +x_4 = lean_alloc_ctor(3, 3, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_1); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__4; +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("first", 5, 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__0; +x_2 = l_Lean_Parser_Tactic_massumption___closed__0; +x_3 = l_Lean_Parser_Attr_spec___closed__1; +x_4 = l_Lean_Parser_Attr_spec___closed__0; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("group", 5, 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__2; +x_2 = l_Lean_Name_mkStr1(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("|", 1, 1); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("tacticTrivial", 13, 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__5; +x_2 = l_Lean_Parser_Tactic_massumption___closed__0; +x_3 = l_Lean_Parser_Attr_spec___closed__1; +x_4 = l_Lean_Parser_Attr_spec___closed__0; +x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("trivial", 7, 7); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__1; +x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; +x_6 = lean_box(1); +x_7 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_3); +return x_7; +} +else +{ +lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_8 = lean_ctor_get(x_2, 5); +x_9 = 0; +x_10 = l_Lean_SourceInfo_fromRef(x_8, x_9); +x_11 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__0; +x_12 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__1; +lean_inc(x_10); +x_13 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_13, 0, x_10); +lean_ctor_set(x_13, 1, x_11); +x_14 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__8; +x_15 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__3; +x_16 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__4; +lean_inc(x_10); +x_17 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_17, 0, x_10); +lean_ctor_set(x_17, 1, x_16); +x_18 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__4; +x_19 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__6; +x_20 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__1; +x_21 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__2; +lean_inc(x_10); +x_22 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_22, 0, x_10); +lean_ctor_set(x_22, 1, x_21); +x_23 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__10; +x_24 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__11; +lean_inc(x_10); +x_25 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_25, 0, x_10); +lean_ctor_set(x_25, 1, x_24); +x_26 = l_Lean_Parser_Tactic_mpureIntro___closed__1; +x_27 = l_Lean_Parser_Tactic_mpureIntro___closed__2; +lean_inc(x_10); +x_28 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_28, 0, x_10); +lean_ctor_set(x_28, 1, x_27); +lean_inc(x_10); +x_29 = l_Lean_Syntax_node1(x_10, x_26, x_28); +lean_inc(x_10); +x_30 = l_Lean_Syntax_node1(x_10, x_14, x_29); +lean_inc(x_10); +x_31 = l_Lean_Syntax_node1(x_10, x_19, x_30); +lean_inc(x_10); +x_32 = l_Lean_Syntax_node1(x_10, x_18, x_31); +lean_inc_ref(x_25); +lean_inc(x_10); +x_33 = l_Lean_Syntax_node2(x_10, x_23, x_25, x_32); +lean_inc(x_10); +x_34 = l_Lean_Syntax_node1(x_10, x_14, x_33); +lean_inc(x_10); +x_35 = l_Lean_Syntax_node1(x_10, x_19, x_34); +lean_inc(x_10); +x_36 = l_Lean_Syntax_node1(x_10, x_18, x_35); +x_37 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__129; +lean_inc(x_10); +x_38 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_38, 0, x_10); +lean_ctor_set(x_38, 1, x_37); +lean_inc(x_10); +x_39 = l_Lean_Syntax_node3(x_10, x_20, x_22, x_36, x_38); +x_40 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mintro__1___closed__5; +lean_inc(x_10); +x_41 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_41, 0, x_10); +lean_ctor_set(x_41, 1, x_40); +x_42 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__6; +x_43 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__7; +lean_inc(x_10); +x_44 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_44, 0, x_10); +lean_ctor_set(x_44, 1, x_43); +lean_inc(x_10); +x_45 = l_Lean_Syntax_node1(x_10, x_42, x_44); +lean_inc(x_10); +x_46 = l_Lean_Syntax_node3(x_10, x_14, x_39, x_41, x_45); +lean_inc(x_10); +x_47 = l_Lean_Syntax_node1(x_10, x_19, x_46); +lean_inc(x_10); +x_48 = l_Lean_Syntax_node1(x_10, x_18, x_47); +lean_inc_ref(x_17); +lean_inc(x_10); +x_49 = l_Lean_Syntax_node2(x_10, x_15, x_17, x_48); +x_50 = l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__1; +x_51 = l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__2; +lean_inc(x_10); +x_52 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_52, 0, x_10); +lean_ctor_set(x_52, 1, x_51); +lean_inc(x_10); +x_53 = l_Lean_Syntax_node1(x_10, x_50, x_52); +lean_inc(x_10); +x_54 = l_Lean_Syntax_node1(x_10, x_14, x_53); +lean_inc(x_10); +x_55 = l_Lean_Syntax_node1(x_10, x_19, x_54); +lean_inc(x_10); +x_56 = l_Lean_Syntax_node1(x_10, x_18, x_55); +lean_inc(x_10); +x_57 = l_Lean_Syntax_node2(x_10, x_23, x_25, x_56); +lean_inc(x_10); +x_58 = l_Lean_Syntax_node1(x_10, x_14, x_57); +lean_inc(x_10); +x_59 = l_Lean_Syntax_node1(x_10, x_19, x_58); +lean_inc(x_10); +x_60 = l_Lean_Syntax_node1(x_10, x_18, x_59); +lean_inc(x_10); +x_61 = l_Lean_Syntax_node2(x_10, x_15, x_17, x_60); +lean_inc(x_10); +x_62 = l_Lean_Syntax_node2(x_10, x_14, x_49, x_61); +x_63 = l_Lean_Syntax_node2(x_10, x_12, x_13, 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_3); +return x_64; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1(x_1, x_2, x_3); +lean_dec_ref(x_2); +return x_4; +} +} static lean_object* _init_l_Lean_Parser_Tactic_mspec___closed__0() { _start: { @@ -10991,34 +11433,6 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__7() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("tacticTrivial", 13, 13); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__7; -x_2 = l_Lean_Parser_Tactic_massumption___closed__0; -x_3 = l_Lean_Parser_Attr_spec___closed__1; -x_4 = l_Lean_Parser_Attr_spec___closed__0; -x_5 = l_Lean_Name_mkStr4(x_4, x_3, x_2, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__9() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("trivial", 7, 7); -return x_1; -} -} LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -11076,88 +11490,88 @@ goto block_125; block_107: { lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; -lean_inc_ref(x_11); -x_14 = l_Array_append___redArg(x_11, x_13); +lean_inc_ref(x_5); +x_14 = l_Array_append___redArg(x_5, x_13); lean_dec_ref(x_13); -lean_inc(x_6); -lean_inc(x_12); +lean_inc(x_4); +lean_inc(x_7); x_15 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_15, 0, x_12); -lean_ctor_set(x_15, 1, x_6); +lean_ctor_set(x_15, 0, x_7); +lean_ctor_set(x_15, 1, x_4); lean_ctor_set(x_15, 2, x_14); -lean_inc(x_12); -x_16 = l_Lean_Syntax_node2(x_12, x_9, x_5, x_15); -lean_inc(x_6); -lean_inc(x_12); +lean_inc(x_7); +x_16 = l_Lean_Syntax_node2(x_7, x_11, x_12, x_15); +lean_inc(x_4); +lean_inc(x_7); x_17 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_17, 0, x_12); -lean_ctor_set(x_17, 1, x_6); -lean_ctor_set(x_17, 2, x_11); +lean_ctor_set(x_17, 0, x_7); +lean_ctor_set(x_17, 1, x_4); +lean_ctor_set(x_17, 2, x_5); x_18 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__1; x_19 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__2; -lean_inc(x_12); +lean_inc(x_7); x_20 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_20, 0, x_12); +lean_ctor_set(x_20, 0, x_7); lean_ctor_set(x_20, 1, x_19); x_21 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__10; x_22 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__11; -lean_inc(x_12); +lean_inc(x_7); x_23 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_23, 0, x_12); +lean_ctor_set(x_23, 0, x_7); lean_ctor_set(x_23, 1, x_22); x_24 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__12; x_25 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__13; -lean_inc(x_12); +lean_inc(x_7); x_26 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_26, 0, x_12); +lean_ctor_set(x_26, 0, x_7); lean_ctor_set(x_26, 1, x_24); x_27 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__15; lean_inc_ref(x_17); -lean_inc(x_12); -x_28 = l_Lean_Syntax_node1(x_12, x_27, x_17); +lean_inc(x_7); +x_28 = l_Lean_Syntax_node1(x_7, x_27, x_17); x_29 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__17; -lean_inc(x_12); +lean_inc(x_7); x_30 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_30, 0, x_12); +lean_ctor_set(x_30, 0, x_7); lean_ctor_set(x_30, 1, x_29); -lean_inc(x_6); -lean_inc(x_12); -x_31 = l_Lean_Syntax_node1(x_12, x_6, x_30); +lean_inc(x_4); +lean_inc(x_7); +x_31 = l_Lean_Syntax_node1(x_7, x_4, x_30); x_32 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__18; -lean_inc(x_12); +lean_inc(x_7); x_33 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_33, 0, x_12); +lean_ctor_set(x_33, 0, x_7); lean_ctor_set(x_33, 1, x_32); x_34 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__20; x_35 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__5; lean_inc_ref_n(x_17, 2); -lean_inc(x_12); -x_36 = l_Lean_Syntax_node3(x_12, x_34, x_17, x_17, x_35); +lean_inc(x_7); +x_36 = l_Lean_Syntax_node3(x_7, x_34, x_17, x_17, x_35); x_37 = l_Lean_Parser_Tactic_mexists___closed__3; -lean_inc(x_12); +lean_inc(x_7); x_38 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_38, 0, x_12); +lean_ctor_set(x_38, 0, x_7); lean_ctor_set(x_38, 1, x_37); x_39 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__72; lean_inc_ref_n(x_17, 2); -lean_inc(x_12); -x_40 = l_Lean_Syntax_node3(x_12, x_34, x_17, x_17, x_39); +lean_inc(x_7); +x_40 = l_Lean_Syntax_node3(x_7, x_34, x_17, x_17, x_39); x_41 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__81; lean_inc_ref_n(x_17, 2); -lean_inc(x_12); -x_42 = l_Lean_Syntax_node3(x_12, x_34, x_17, x_17, x_41); +lean_inc(x_7); +x_42 = l_Lean_Syntax_node3(x_7, x_34, x_17, x_17, x_41); x_43 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__78; lean_inc_ref_n(x_17, 2); -lean_inc(x_12); -x_44 = l_Lean_Syntax_node3(x_12, x_34, x_17, x_17, x_43); +lean_inc(x_7); +x_44 = l_Lean_Syntax_node3(x_7, x_34, x_17, x_17, x_43); x_45 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__84; lean_inc_ref_n(x_17, 2); -lean_inc(x_12); -x_46 = l_Lean_Syntax_node3(x_12, x_34, x_17, x_17, x_45); +lean_inc(x_7); +x_46 = l_Lean_Syntax_node3(x_7, x_34, x_17, x_17, x_45); x_47 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__87; lean_inc_ref_n(x_17, 2); -lean_inc(x_12); -x_48 = l_Lean_Syntax_node3(x_12, x_34, x_17, x_17, x_47); +lean_inc(x_7); +x_48 = l_Lean_Syntax_node3(x_7, x_34, x_17, x_17, x_47); x_49 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__6; x_50 = lean_array_push(x_49, x_36); lean_inc_ref(x_38); @@ -11174,133 +11588,133 @@ x_57 = lean_array_push(x_56, x_38); x_58 = lean_array_push(x_57, x_46); x_59 = lean_array_push(x_58, x_38); x_60 = lean_array_push(x_59, x_48); -lean_inc(x_6); -lean_inc(x_12); +lean_inc(x_4); +lean_inc(x_7); x_61 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_61, 0, x_12); -lean_ctor_set(x_61, 1, x_6); +lean_ctor_set(x_61, 0, x_7); +lean_ctor_set(x_61, 1, x_4); lean_ctor_set(x_61, 2, x_60); -x_62 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__115; -lean_inc(x_12); +x_62 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__122; +lean_inc(x_7); x_63 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_63, 0, x_12); +lean_ctor_set(x_63, 0, x_7); lean_ctor_set(x_63, 1, x_62); -lean_inc(x_6); -lean_inc(x_12); -x_64 = l_Lean_Syntax_node3(x_12, x_6, x_33, x_61, x_63); +lean_inc(x_4); +lean_inc(x_7); +x_64 = l_Lean_Syntax_node3(x_7, x_4, x_33, x_61, x_63); lean_inc_ref_n(x_17, 2); -lean_inc(x_12); -x_65 = l_Lean_Syntax_node6(x_12, x_25, x_26, x_28, x_17, x_31, x_64, x_17); -lean_inc(x_6); -lean_inc(x_12); -x_66 = l_Lean_Syntax_node1(x_12, x_6, x_65); -lean_inc(x_8); -lean_inc(x_12); -x_67 = l_Lean_Syntax_node1(x_12, x_8, x_66); lean_inc(x_7); -lean_inc(x_12); -x_68 = l_Lean_Syntax_node1(x_12, x_7, x_67); +x_65 = l_Lean_Syntax_node6(x_7, x_25, x_26, x_28, x_17, x_31, x_64, x_17); +lean_inc(x_4); +lean_inc(x_7); +x_66 = l_Lean_Syntax_node1(x_7, x_4, x_65); +lean_inc(x_8); +lean_inc(x_7); +x_67 = l_Lean_Syntax_node1(x_7, x_8, x_66); +lean_inc(x_6); +lean_inc(x_7); +x_68 = l_Lean_Syntax_node1(x_7, x_6, x_67); lean_inc_ref(x_23); -lean_inc(x_12); -x_69 = l_Lean_Syntax_node2(x_12, x_21, x_23, x_68); -lean_inc(x_6); -lean_inc(x_12); -x_70 = l_Lean_Syntax_node1(x_12, x_6, x_69); -lean_inc(x_8); -lean_inc(x_12); -x_71 = l_Lean_Syntax_node1(x_12, x_8, x_70); lean_inc(x_7); -lean_inc(x_12); -x_72 = l_Lean_Syntax_node1(x_12, x_7, x_71); -x_73 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__122; -lean_inc(x_12); +x_69 = l_Lean_Syntax_node2(x_7, x_21, x_23, x_68); +lean_inc(x_4); +lean_inc(x_7); +x_70 = l_Lean_Syntax_node1(x_7, x_4, x_69); +lean_inc(x_8); +lean_inc(x_7); +x_71 = l_Lean_Syntax_node1(x_7, x_8, x_70); +lean_inc(x_6); +lean_inc(x_7); +x_72 = l_Lean_Syntax_node1(x_7, x_6, x_71); +x_73 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__129; +lean_inc(x_7); x_74 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_74, 0, x_12); +lean_ctor_set(x_74, 0, x_7); lean_ctor_set(x_74, 1, x_73); lean_inc_ref(x_74); -lean_inc(x_4); lean_inc(x_10); -lean_inc(x_12); -x_75 = l_Lean_Syntax_node3(x_12, x_10, x_4, x_72, x_74); +lean_inc(x_9); +lean_inc(x_7); +x_75 = l_Lean_Syntax_node3(x_7, x_9, x_10, x_72, x_74); x_76 = l_Lean_Parser_Tactic_mpureIntro___closed__1; x_77 = l_Lean_Parser_Tactic_mpureIntro___closed__2; -lean_inc(x_12); +lean_inc(x_7); x_78 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_78, 0, x_12); +lean_ctor_set(x_78, 0, x_7); lean_ctor_set(x_78, 1, x_77); -lean_inc(x_12); -x_79 = l_Lean_Syntax_node1(x_12, x_76, x_78); +lean_inc(x_7); +x_79 = l_Lean_Syntax_node1(x_7, x_76, x_78); x_80 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mintro__1___closed__5; -lean_inc(x_12); +lean_inc(x_7); x_81 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_81, 0, x_12); +lean_ctor_set(x_81, 0, x_7); lean_ctor_set(x_81, 1, x_80); -x_82 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__8; -x_83 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__9; -lean_inc(x_12); +x_82 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__6; +x_83 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__7; +lean_inc(x_7); x_84 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_84, 0, x_12); +lean_ctor_set(x_84, 0, x_7); lean_ctor_set(x_84, 1, x_83); -lean_inc(x_12); -x_85 = l_Lean_Syntax_node1(x_12, x_82, x_84); -lean_inc(x_6); -lean_inc(x_12); -x_86 = l_Lean_Syntax_node3(x_12, x_6, x_79, x_81, x_85); -lean_inc(x_8); -lean_inc(x_12); -x_87 = l_Lean_Syntax_node1(x_12, x_8, x_86); lean_inc(x_7); -lean_inc(x_12); -x_88 = l_Lean_Syntax_node1(x_12, x_7, x_87); -lean_inc(x_12); -x_89 = l_Lean_Syntax_node2(x_12, x_21, x_23, x_88); -lean_inc(x_6); -lean_inc(x_12); -x_90 = l_Lean_Syntax_node1(x_12, x_6, x_89); -lean_inc(x_8); -lean_inc(x_12); -x_91 = l_Lean_Syntax_node1(x_12, x_8, x_90); -lean_inc(x_7); -lean_inc(x_12); -x_92 = l_Lean_Syntax_node1(x_12, x_7, x_91); -lean_inc_ref(x_74); +x_85 = l_Lean_Syntax_node1(x_7, x_82, x_84); lean_inc(x_4); +lean_inc(x_7); +x_86 = l_Lean_Syntax_node3(x_7, x_4, x_79, x_81, x_85); +lean_inc(x_8); +lean_inc(x_7); +x_87 = l_Lean_Syntax_node1(x_7, x_8, x_86); +lean_inc(x_6); +lean_inc(x_7); +x_88 = l_Lean_Syntax_node1(x_7, x_6, x_87); +lean_inc(x_7); +x_89 = l_Lean_Syntax_node2(x_7, x_21, x_23, x_88); +lean_inc(x_4); +lean_inc(x_7); +x_90 = l_Lean_Syntax_node1(x_7, x_4, x_89); +lean_inc(x_8); +lean_inc(x_7); +x_91 = l_Lean_Syntax_node1(x_7, x_8, x_90); +lean_inc(x_6); +lean_inc(x_7); +x_92 = l_Lean_Syntax_node1(x_7, x_6, x_91); +lean_inc_ref(x_74); lean_inc(x_10); -lean_inc(x_12); -x_93 = l_Lean_Syntax_node3(x_12, x_10, x_4, x_92, x_74); +lean_inc(x_9); +lean_inc(x_7); +x_93 = l_Lean_Syntax_node3(x_7, x_9, x_10, x_92, x_74); lean_inc_ref(x_17); -lean_inc(x_6); -lean_inc(x_12); -x_94 = l_Lean_Syntax_node3(x_12, x_6, x_75, x_17, x_93); -lean_inc(x_8); -lean_inc(x_12); -x_95 = l_Lean_Syntax_node1(x_12, x_8, x_94); -lean_inc(x_7); -lean_inc(x_12); -x_96 = l_Lean_Syntax_node1(x_12, x_7, x_95); -lean_inc_ref(x_74); lean_inc(x_4); -lean_inc(x_10); -lean_inc(x_12); -x_97 = l_Lean_Syntax_node3(x_12, x_10, x_4, x_96, x_74); -lean_inc(x_6); -lean_inc(x_12); -x_98 = l_Lean_Syntax_node1(x_12, x_6, x_97); -lean_inc(x_8); -lean_inc(x_12); -x_99 = l_Lean_Syntax_node1(x_12, x_8, x_98); lean_inc(x_7); -lean_inc(x_12); -x_100 = l_Lean_Syntax_node1(x_12, x_7, x_99); -lean_inc(x_12); -x_101 = l_Lean_Syntax_node2(x_12, x_18, x_20, x_100); -lean_inc(x_12); -x_102 = l_Lean_Syntax_node3(x_12, x_6, x_16, x_17, x_101); -lean_inc(x_12); -x_103 = l_Lean_Syntax_node1(x_12, x_8, x_102); -lean_inc(x_12); -x_104 = l_Lean_Syntax_node1(x_12, x_7, x_103); -x_105 = l_Lean_Syntax_node3(x_12, x_10, x_4, x_104, x_74); +x_94 = l_Lean_Syntax_node3(x_7, x_4, x_75, x_17, x_93); +lean_inc(x_8); +lean_inc(x_7); +x_95 = l_Lean_Syntax_node1(x_7, x_8, x_94); +lean_inc(x_6); +lean_inc(x_7); +x_96 = l_Lean_Syntax_node1(x_7, x_6, x_95); +lean_inc_ref(x_74); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_7); +x_97 = l_Lean_Syntax_node3(x_7, x_9, x_10, x_96, x_74); +lean_inc(x_4); +lean_inc(x_7); +x_98 = l_Lean_Syntax_node1(x_7, x_4, x_97); +lean_inc(x_8); +lean_inc(x_7); +x_99 = l_Lean_Syntax_node1(x_7, x_8, x_98); +lean_inc(x_6); +lean_inc(x_7); +x_100 = l_Lean_Syntax_node1(x_7, x_6, x_99); +lean_inc(x_7); +x_101 = l_Lean_Syntax_node2(x_7, x_18, x_20, x_100); +lean_inc(x_7); +x_102 = l_Lean_Syntax_node3(x_7, x_4, x_16, x_17, x_101); +lean_inc(x_7); +x_103 = l_Lean_Syntax_node1(x_7, x_8, x_102); +lean_inc(x_7); +x_104 = l_Lean_Syntax_node1(x_7, x_6, x_103); +x_105 = l_Lean_Syntax_node3(x_7, x_9, x_10, x_104, x_74); x_106 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_106, 0, x_105); lean_ctor_set(x_106, 1, x_3); @@ -11332,15 +11746,15 @@ if (lean_obj_tag(x_108) == 0) { lean_object* x_122; x_122 = l_Lean_Parser_Tactic_MCasesPat_parse_go___closed__0; -x_4 = x_114; -x_5 = x_120; -x_6 = x_117; -x_7 = x_115; +x_4 = x_117; +x_5 = x_121; +x_6 = x_115; +x_7 = x_111; x_8 = x_116; -x_9 = x_118; -x_10 = x_112; -x_11 = x_121; -x_12 = x_111; +x_9 = x_112; +x_10 = x_114; +x_11 = x_118; +x_12 = x_120; x_13 = x_122; goto block_107; } @@ -11351,15 +11765,15 @@ x_123 = lean_ctor_get(x_108, 0); lean_inc(x_123); lean_dec_ref(x_108); x_124 = l_Array_mkArray1___redArg(x_123); -x_4 = x_114; -x_5 = x_120; -x_6 = x_117; -x_7 = x_115; +x_4 = x_117; +x_5 = x_121; +x_6 = x_115; +x_7 = x_111; x_8 = x_116; -x_9 = x_118; -x_10 = x_112; -x_11 = x_121; -x_12 = x_111; +x_9 = x_112; +x_10 = x_114; +x_11 = x_118; +x_12 = x_120; x_13 = x_124; goto block_107; } @@ -11562,7 +11976,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_mvcgen___closed__17() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__115; +x_1 = l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__122; x_2 = lean_alloc_ctor(5, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -12513,6 +12927,20 @@ l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parse lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__121); l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__122 = _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__122(); lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__122); +l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__123 = _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__123(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__123); +l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__124 = _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__124(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__124); +l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__125 = _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__125(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__125); +l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__126 = _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__126(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__126); +l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__127 = _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__127(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__127); +l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__128 = _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__128(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__128); +l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__129 = _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__129(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__129); l_Lean_Parser_Tactic_mcasesPat_quot___closed__0 = _init_l_Lean_Parser_Tactic_mcasesPat_quot___closed__0(); lean_mark_persistent(l_Lean_Parser_Tactic_mcasesPat_quot___closed__0); l_Lean_Parser_Tactic_mcasesPat_quot___closed__1 = _init_l_Lean_Parser_Tactic_mcasesPat_quot___closed__1(); @@ -12677,56 +13105,56 @@ l_Lean_Parser_Tactic_mcasesPat_x23_____closed__5 = _init_l_Lean_Parser_Tactic_mc lean_mark_persistent(l_Lean_Parser_Tactic_mcasesPat_x23_____closed__5); l_Lean_Parser_Tactic_mcasesPat_x23__ = _init_l_Lean_Parser_Tactic_mcasesPat_x23__(); lean_mark_persistent(l_Lean_Parser_Tactic_mcasesPat_x23__); -l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__0 = _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__0(); -lean_mark_persistent(l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__0); -l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__1 = _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__1(); -lean_mark_persistent(l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__1); -l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__2 = _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__2(); -lean_mark_persistent(l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__2); -l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__3 = _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__3(); -lean_mark_persistent(l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__3); -l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__4 = _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__4(); -lean_mark_persistent(l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__4); -l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__5 = _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__5(); -lean_mark_persistent(l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__5); -l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__6 = _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__6(); -lean_mark_persistent(l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1793__spec__0___redArg___closed__6); -l_Lean_Parser_Tactic_reprMCasesPat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_1793_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_1793_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_1793_); -l_Lean_Parser_Tactic_reprMCasesPat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_1793_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_1793_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_1793_); -l_Lean_Parser_Tactic_reprMCasesPat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_1793_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_1793_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_1793_); -l_Lean_Parser_Tactic_reprMCasesPat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_1793_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_1793_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_1793_); -l_Lean_Parser_Tactic_reprMCasesPat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_1793_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_1793_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_1793_); -l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1793_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1793_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1793_); -l_Lean_Parser_Tactic_reprMCasesPat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_1793_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_1793_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_1793_); -l_Lean_Parser_Tactic_reprMCasesPat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_1793_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_1793_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_1793_); -l_Lean_Parser_Tactic_reprMCasesPat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_1793_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_1793_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_1793_); -l_Lean_Parser_Tactic_reprMCasesPat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_1793_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_1793_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_1793_); -l_Lean_Parser_Tactic_reprMCasesPat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_1793_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_1793_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_1793_); -l_Lean_Parser_Tactic_reprMCasesPat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_1793_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_1793_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_1793_); -l_Lean_Parser_Tactic_reprMCasesPat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_1793_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_1793_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_1793_); -l_Lean_Parser_Tactic_reprMCasesPat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_1793_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_1793_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_1793_); -l_Lean_Parser_Tactic_reprMCasesPat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_1793_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_1793_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_1793_); -l_Lean_Parser_Tactic_reprMCasesPat___closed__15____x40_Std_Tactic_Do_Syntax___hyg_1793_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__15____x40_Std_Tactic_Do_Syntax___hyg_1793_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__15____x40_Std_Tactic_Do_Syntax___hyg_1793_); -l_Lean_Parser_Tactic_reprMCasesPat___closed__16____x40_Std_Tactic_Do_Syntax___hyg_1793_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__16____x40_Std_Tactic_Do_Syntax___hyg_1793_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__16____x40_Std_Tactic_Do_Syntax___hyg_1793_); -l_Lean_Parser_Tactic_reprMCasesPat___closed__17____x40_Std_Tactic_Do_Syntax___hyg_1793_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__17____x40_Std_Tactic_Do_Syntax___hyg_1793_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__17____x40_Std_Tactic_Do_Syntax___hyg_1793_); +l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__0 = _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__0(); +lean_mark_persistent(l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__0); +l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__1 = _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__1(); +lean_mark_persistent(l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__1); +l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__2 = _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__2(); +lean_mark_persistent(l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__2); +l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__3 = _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__3(); +lean_mark_persistent(l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__3); +l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__4 = _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__4(); +lean_mark_persistent(l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__4); +l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__5 = _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__5(); +lean_mark_persistent(l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__5); +l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__6 = _init_l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__6(); +lean_mark_persistent(l_List_repr___at___Lean_Parser_Tactic_reprMCasesPat____x40_Std_Tactic_Do_Syntax___hyg_1895__spec__0___redArg___closed__6); +l_Lean_Parser_Tactic_reprMCasesPat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_1895_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_1895_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_1895_); +l_Lean_Parser_Tactic_reprMCasesPat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_1895_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_1895_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_1895_); +l_Lean_Parser_Tactic_reprMCasesPat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_1895_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_1895_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_1895_); +l_Lean_Parser_Tactic_reprMCasesPat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_1895_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_1895_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_1895_); +l_Lean_Parser_Tactic_reprMCasesPat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_1895_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_1895_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_1895_); +l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1895_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1895_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_1895_); +l_Lean_Parser_Tactic_reprMCasesPat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_1895_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_1895_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_1895_); +l_Lean_Parser_Tactic_reprMCasesPat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_1895_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_1895_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_1895_); +l_Lean_Parser_Tactic_reprMCasesPat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_1895_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_1895_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_1895_); +l_Lean_Parser_Tactic_reprMCasesPat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_1895_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_1895_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_1895_); +l_Lean_Parser_Tactic_reprMCasesPat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_1895_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_1895_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_1895_); +l_Lean_Parser_Tactic_reprMCasesPat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_1895_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_1895_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_1895_); +l_Lean_Parser_Tactic_reprMCasesPat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_1895_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_1895_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_1895_); +l_Lean_Parser_Tactic_reprMCasesPat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_1895_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_1895_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_1895_); +l_Lean_Parser_Tactic_reprMCasesPat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_1895_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_1895_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_1895_); +l_Lean_Parser_Tactic_reprMCasesPat___closed__15____x40_Std_Tactic_Do_Syntax___hyg_1895_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__15____x40_Std_Tactic_Do_Syntax___hyg_1895_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__15____x40_Std_Tactic_Do_Syntax___hyg_1895_); +l_Lean_Parser_Tactic_reprMCasesPat___closed__16____x40_Std_Tactic_Do_Syntax___hyg_1895_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__16____x40_Std_Tactic_Do_Syntax___hyg_1895_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__16____x40_Std_Tactic_Do_Syntax___hyg_1895_); +l_Lean_Parser_Tactic_reprMCasesPat___closed__17____x40_Std_Tactic_Do_Syntax___hyg_1895_ = _init_l_Lean_Parser_Tactic_reprMCasesPat___closed__17____x40_Std_Tactic_Do_Syntax___hyg_1895_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMCasesPat___closed__17____x40_Std_Tactic_Do_Syntax___hyg_1895_); l_Lean_Parser_Tactic_instReprMCasesPat___closed__0 = _init_l_Lean_Parser_Tactic_instReprMCasesPat___closed__0(); lean_mark_persistent(l_Lean_Parser_Tactic_instReprMCasesPat___closed__0); l_Lean_Parser_Tactic_instReprMCasesPat = _init_l_Lean_Parser_Tactic_instReprMCasesPat(); @@ -12885,36 +13313,36 @@ l_Lean_Parser_Tactic_mrefinePat_x23_____closed__2 = _init_l_Lean_Parser_Tactic_m lean_mark_persistent(l_Lean_Parser_Tactic_mrefinePat_x23_____closed__2); l_Lean_Parser_Tactic_mrefinePat_x23__ = _init_l_Lean_Parser_Tactic_mrefinePat_x23__(); lean_mark_persistent(l_Lean_Parser_Tactic_mrefinePat_x23__); -l_Lean_Parser_Tactic_reprMRefinePat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_3040_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_3040_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_3040_); -l_Lean_Parser_Tactic_reprMRefinePat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_3040_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_3040_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_3040_); -l_Lean_Parser_Tactic_reprMRefinePat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_3040_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_3040_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_3040_); -l_Lean_Parser_Tactic_reprMRefinePat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_3040_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_3040_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_3040_); -l_Lean_Parser_Tactic_reprMRefinePat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_3040_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_3040_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_3040_); -l_Lean_Parser_Tactic_reprMRefinePat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_3040_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_3040_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_3040_); -l_Lean_Parser_Tactic_reprMRefinePat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_3040_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_3040_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_3040_); -l_Lean_Parser_Tactic_reprMRefinePat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_3040_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_3040_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_3040_); -l_Lean_Parser_Tactic_reprMRefinePat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_3040_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_3040_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_3040_); -l_Lean_Parser_Tactic_reprMRefinePat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_3040_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_3040_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_3040_); -l_Lean_Parser_Tactic_reprMRefinePat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_3040_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_3040_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_3040_); -l_Lean_Parser_Tactic_reprMRefinePat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_3040_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_3040_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_3040_); -l_Lean_Parser_Tactic_reprMRefinePat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_3040_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_3040_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_3040_); -l_Lean_Parser_Tactic_reprMRefinePat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_3040_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_3040_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_3040_); -l_Lean_Parser_Tactic_reprMRefinePat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_3040_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_3040_(); -lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_3040_); +l_Lean_Parser_Tactic_reprMRefinePat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_3142_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_3142_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__0____x40_Std_Tactic_Do_Syntax___hyg_3142_); +l_Lean_Parser_Tactic_reprMRefinePat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_3142_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_3142_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__1____x40_Std_Tactic_Do_Syntax___hyg_3142_); +l_Lean_Parser_Tactic_reprMRefinePat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_3142_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_3142_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__2____x40_Std_Tactic_Do_Syntax___hyg_3142_); +l_Lean_Parser_Tactic_reprMRefinePat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_3142_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_3142_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__3____x40_Std_Tactic_Do_Syntax___hyg_3142_); +l_Lean_Parser_Tactic_reprMRefinePat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_3142_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_3142_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__4____x40_Std_Tactic_Do_Syntax___hyg_3142_); +l_Lean_Parser_Tactic_reprMRefinePat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_3142_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_3142_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__5____x40_Std_Tactic_Do_Syntax___hyg_3142_); +l_Lean_Parser_Tactic_reprMRefinePat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_3142_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_3142_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__6____x40_Std_Tactic_Do_Syntax___hyg_3142_); +l_Lean_Parser_Tactic_reprMRefinePat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_3142_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_3142_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__7____x40_Std_Tactic_Do_Syntax___hyg_3142_); +l_Lean_Parser_Tactic_reprMRefinePat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_3142_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_3142_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__8____x40_Std_Tactic_Do_Syntax___hyg_3142_); +l_Lean_Parser_Tactic_reprMRefinePat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_3142_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_3142_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__9____x40_Std_Tactic_Do_Syntax___hyg_3142_); +l_Lean_Parser_Tactic_reprMRefinePat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_3142_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_3142_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__10____x40_Std_Tactic_Do_Syntax___hyg_3142_); +l_Lean_Parser_Tactic_reprMRefinePat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_3142_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_3142_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__11____x40_Std_Tactic_Do_Syntax___hyg_3142_); +l_Lean_Parser_Tactic_reprMRefinePat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_3142_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_3142_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__12____x40_Std_Tactic_Do_Syntax___hyg_3142_); +l_Lean_Parser_Tactic_reprMRefinePat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_3142_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_3142_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__13____x40_Std_Tactic_Do_Syntax___hyg_3142_); +l_Lean_Parser_Tactic_reprMRefinePat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_3142_ = _init_l_Lean_Parser_Tactic_reprMRefinePat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_3142_(); +lean_mark_persistent(l_Lean_Parser_Tactic_reprMRefinePat___closed__14____x40_Std_Tactic_Do_Syntax___hyg_3142_); l_Lean_Parser_Tactic_instReprMRefinePat___closed__0 = _init_l_Lean_Parser_Tactic_instReprMRefinePat___closed__0(); lean_mark_persistent(l_Lean_Parser_Tactic_instReprMRefinePat___closed__0); l_Lean_Parser_Tactic_instReprMRefinePat = _init_l_Lean_Parser_Tactic_instReprMRefinePat(); @@ -13125,6 +13553,46 @@ l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parse lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspecNoSimp__1___closed__5); l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspecNoSimp__1___closed__6 = _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspecNoSimp__1___closed__6(); lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspecNoSimp__1___closed__6); +l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__0 = _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__0(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__0); +l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__1 = _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__1); +l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__2 = _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__2); +l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__3 = _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__3); +l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__4 = _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible___closed__4); +l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible = _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticMvcgen__trivial__extensible); +l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__0 = _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__0(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__0); +l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__1 = _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__1); +l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__2 = _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__2); +l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__3 = _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__3); +l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__4 = _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticMvcgen__trivial___closed__4); +l_Lean_Parser_Tactic_tacticMvcgen__trivial = _init_l_Lean_Parser_Tactic_tacticMvcgen__trivial(); +lean_mark_persistent(l_Lean_Parser_Tactic_tacticMvcgen__trivial); +l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__0 = _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__0(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__0); +l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__1 = _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__1); +l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__2 = _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__2); +l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__3 = _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__3); +l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__4 = _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__4); +l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__5 = _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__5); +l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__6 = _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__6); +l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__7 = _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__tacticMvcgen__trivial__1___closed__7); l_Lean_Parser_Tactic_mspec___closed__0 = _init_l_Lean_Parser_Tactic_mspec___closed__0(); lean_mark_persistent(l_Lean_Parser_Tactic_mspec___closed__0); l_Lean_Parser_Tactic_mspec___closed__1 = _init_l_Lean_Parser_Tactic_mspec___closed__1(); @@ -13151,12 +13619,6 @@ l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parse lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__5); l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__6 = _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__6(); lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__6); -l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__7 = _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__7); -l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__8 = _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__8); -l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__9 = _init_l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mspec__1___closed__9); l_Lean_Parser_Tactic_mvcgen___closed__0 = _init_l_Lean_Parser_Tactic_mvcgen___closed__0(); lean_mark_persistent(l_Lean_Parser_Tactic_mvcgen___closed__0); l_Lean_Parser_Tactic_mvcgen___closed__1 = _init_l_Lean_Parser_Tactic_mvcgen___closed__1();